:root {
  --bg: #f3ecdf;
  --bg-2: #efe5d5;
  --paper: rgba(255, 251, 244, 0.88);
  --paper-strong: #fffaf1;
  --surface: rgba(255, 248, 239, 0.74);
  --surface-dark: rgba(10, 20, 33, 0.74);
  --ink: #11161d;
  --muted: #5a6370;
  --muted-strong: #3b4654;
  --line: rgba(17, 22, 29, 0.09);
  --deep: #0b1320;
  --deep-2: #132238;
  --deep-3: #18314d;
  --teal: #1d8f7a;
  --teal-soft: rgba(29, 143, 122, 0.14);
  --gold: #d89a2b;
  --gold-soft: rgba(216, 154, 43, 0.12);
  --glow: rgba(216, 154, 43, 0.3);
  --danger-soft: #ffd0c7;
  --shadow: 0 24px 72px rgba(18, 24, 34, 0.09);
  --shadow-strong: 0 28px 80px rgba(12, 18, 29, 0.18);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 154, 43, 0.14), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(29, 143, 122, 0.16), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 22, 29, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 29, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 86%);
  opacity: 0.34;
}

main,
section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

a {
  color: inherit;
}

img {
  display: block;
}

.site-shell {
  position: relative;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 42px rgba(18, 24, 34, 0.08);
}

.enterprise-strip-wrap {
  padding-top: 6px;
}

.enterprise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.enterprise-strip-compact {
  margin-bottom: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enterprise-chip {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(248, 242, 233, 0.88));
  border: 1px solid rgba(17, 22, 29, 0.08);
  box-shadow: 0 14px 36px rgba(18, 24, 34, 0.06);
}

.enterprise-chip span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-chip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.enterprise-chip p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.5;
}

.product-topbar {
  padding-bottom: 12px;
}

.topbar-stack {
  display: grid;
  gap: 6px;
}

.topbar-main,
.topbar-sub {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 42px rgba(18, 24, 34, 0.08);
}

.topbar-main {
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.78);
  backdrop-filter: blur(16px);
}

.topbar-sub {
  justify-content: space-between;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.86), rgba(245, 239, 230, 0.8));
  backdrop-filter: blur(16px);
  margin: 0 56px;
  padding: 8px 14px;
}

.topbar-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 30%, rgba(29, 143, 122, 0.11), transparent 24%),
    radial-gradient(circle at 86% 30%, rgba(216, 154, 43, 0.14), transparent 24%);
  pointer-events: none;
}

.product-meta,
.product-subnav {
  position: relative;
  z-index: 1;
}

.product-meta {
  display: grid;
  gap: 2px;
}

.product-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  line-height: 1;
}

.product-meta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.product-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(17, 22, 29, 0.03);
  border: 1px solid rgba(17, 22, 29, 0.06);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-subnav a:hover,
.product-subnav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand span {
  position: relative;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a,
.nav-dropdown-toggle {
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 800;
  padding: 11px 16px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
  background: rgba(17, 22, 29, 0.06);
}

.site-nav a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(29, 143, 122, 0.6);
  outline-offset: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 20px 42px rgba(18, 24, 34, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 18px;
  padding: 12px 14px;
}

.nav-dropdown-menu a span {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-dropdown-menu a.is-coming-soon {
  color: rgba(59, 70, 84, 0.72);
  background: rgba(17, 22, 29, 0.04);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--gold), #efba58);
  color: #15110a;
  box-shadow: 0 16px 36px rgba(216, 154, 43, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: linear-gradient(135deg, #e0a43b, #f3c570);
  color: #15110a;
}

.nav-toggle {
  display: none;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 0 14px;
  font-weight: 800;
}

.hero,
.page-hero,
.section {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 88px 0 96px;
}

.page-hero {
  padding: 92px 0 78px;
}

.section {
  padding: 92px 0;
}

.hero-background,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 154, 43, 0.24), transparent 25%),
    radial-gradient(circle at 13% 16%, rgba(29, 143, 122, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-grid,
.split-layout,
.cta-grid,
.login-grid,
.comparison-band,
.menu-highlight,
.story-grid,
.credibility-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
}

.split-layout,
.cta-grid,
.login-grid,
.comparison-band,
.story-grid,
.credibility-grid {
  grid-template-columns: 1fr 1fr;
}

.menu-highlight {
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 30px;
}

.eyebrow,
.kicker,
.panel-label,
.product-tag,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal);
}

.eyebrow::before,
.kicker::before,
.mini-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero h1,
.page-hero h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  line-height: 0.93;
  margin: 18px 0 20px;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.lead,
.long-copy,
.section-copy {
  font-size: 1.08rem;
  color: var(--muted);
}

.lead {
  max-width: 62ch;
}

.section-dark,
.section-accent,
.page-hero-products,
.page-hero-company,
.page-hero-comparison,
.dashboard-body,
.site-footer {
  color: #edf4ef;
}

.section-dark,
.page-hero-products,
.page-hero-company,
.page-hero-comparison {
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 154, 43, 0.18), transparent 24%),
    linear-gradient(160deg, var(--deep), var(--deep-2));
}

.section-accent {
  background:
    radial-gradient(circle at 18% 12%, rgba(29, 143, 122, 0.18), transparent 24%),
    linear-gradient(140deg, rgba(11, 19, 32, 0.98), rgba(24, 37, 57, 0.98));
}

.section-light {
  background: transparent;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 8%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 154, 43, 0.2), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

.hero-actions,
.hero-proof,
.button-row,
.section-actions,
.metric-strip,
.micro-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.hero-proof {
  margin-top: 22px;
}

.hero-proof span,
.micro-stats span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 21, 31, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(18, 24, 34, 0.06);
}

.metric-strip {
  margin-top: 24px;
}

.metric-chip {
  min-width: 142px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(17, 21, 31, 0.06);
  box-shadow: 0 16px 36px rgba(18, 24, 34, 0.06);
}

.metric-chip strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.metric-chip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #efba58);
  color: #15110a;
  box-shadow: 0 18px 36px rgba(216, 154, 43, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 21, 31, 0.08);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(237, 244, 239, 0.16);
  color: #edf4ef;
}

.btn-block {
  width: 100%;
}

.surface-glass,
.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.comparison-table,
.dashboard-card,
.hero-proof span,
.metric-chip,
.menu-card,
.signal-card,
.timeline-card,
.principle-band,
.story-panel {
  box-shadow: var(--shadow);
}

.surface-glass,
.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.comparison-table,
.dashboard-card,
.menu-card,
.signal-card,
.timeline-card,
.principle-band,
.story-panel {
  border: 1px solid var(--line);
}

.surface-glass {
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.85), rgba(255, 248, 239, 0.7));
  position: relative;
  overflow: hidden;
}

.surface-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(216, 154, 43, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.hero-panel {
  isolation: isolate;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hero-panel-header strong {
  display: block;
  max-width: 18ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.signal-card {
  min-width: 132px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(11, 19, 32, 0.88);
  color: #edf4ef;
  box-shadow: var(--shadow-strong);
}

.signal-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.signal-card span {
  display: block;
  margin-top: 6px;
  color: rgba(237, 244, 239, 0.68);
  font-size: 0.88rem;
}

.flow-stack,
.statement-stack,
.stack-gap,
.timeline-stack {
  display: grid;
  gap: 18px;
}

.flow-card,
.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.dashboard-card,
.menu-card,
.signal-card,
.timeline-card,
.story-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
}

.flow-card {
  position: relative;
  padding: 22px;
}

.flow-card span,
.surface-card span,
.timeline-card span,
.menu-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-card.accent,
.menu-card.featured {
  background: linear-gradient(160deg, var(--deep), #223553);
  color: #f5f7fb;
}

.flow-card.accent span,
.menu-card.featured span {
  color: #f6d18c;
}

.flow-arrow {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--muted);
}

.micro-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

.menu-card p,
.feature-card p,
.surface-card p,
.product-card p,
.detail-card p,
.statement-card p,
.story-panel p,
.timeline-card p {
  color: var(--muted);
}

.menu-card ul,
.story-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.menu-card li + li,
.story-panel li + li {
  margin-top: 8px;
}

.card-grid,
.surface-grid,
.footer-grid,
.dashboard-grid,
.logo-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three,
.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-grid,
.logo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card.emphasis {
  background: linear-gradient(145deg, #fff3d9, #fffdf8);
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card-spotlight {
  min-height: 100%;
}

.product-card.is-muted,
.detail-card.is-muted,
.statement-card.is-muted {
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.76), rgba(246, 241, 232, 0.86));
  color: rgba(17, 22, 29, 0.76);
}

.badge-row,
.badge-cluster {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 22, 29, 0.06);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-badge.success {
  background: rgba(29, 143, 122, 0.14);
  color: var(--teal);
}

.status-badge.warn {
  background: rgba(216, 154, 43, 0.14);
  color: #9b6612;
}

.status-badge.muted {
  background: rgba(17, 22, 29, 0.05);
  color: rgba(59, 70, 84, 0.72);
}

.product-card::after,
.detail-card::after,
.menu-card::after,
.story-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 154, 43, 0.14), transparent 72%);
}

.product-card a,
.register-link a,
.text-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-tag {
  color: var(--gold);
  margin-bottom: 10px;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 10px;
}

.principle-band {
  padding: 24px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.9), rgba(255, 252, 247, 0.72));
}

.impact-grid,
.proof-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-card,
.proof-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.impact-card strong,
.proof-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.impact-card p,
.proof-card p {
  color: var(--muted);
}

.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.menu-card,
.timeline-card,
.story-panel,
.surface-glass {
  color: var(--ink);
}

.feature-card h3,
.product-card h3,
.detail-card h2,
.detail-card h3,
.statement-card strong,
.surface-card h3,
.contact-card h3,
.menu-card h3,
.timeline-card h3,
.story-panel h3,
.surface-glass strong {
  color: var(--ink);
}

.risk-quote {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(11, 19, 32, 0.96), rgba(24, 49, 77, 0.96));
  color: #edf4ef;
  border: 1px solid rgba(237, 244, 239, 0.08);
  box-shadow: var(--shadow-strong);
}

.risk-quote p:last-child {
  margin-bottom: 0;
}

.pricing-band {
  display: grid;
  gap: 18px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.pricing-row span {
  color: var(--muted);
}

.page-hero-product::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 154, 43, 0.26), transparent 25%),
    radial-gradient(circle at 13% 16%, rgba(29, 143, 122, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 55%);
}

.visual-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(29, 143, 122, 0.08);
  border: 1px dashed rgba(29, 143, 122, 0.34);
  color: var(--muted-strong);
  font-weight: 700;
}

.visual-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
}

.principle-band strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.comparison-table {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
}

.comparison-table-large {
  max-width: 980px;
  margin: 0 auto;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-row span {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-row span:last-child {
  background: rgba(29, 143, 122, 0.06);
  font-weight: 800;
}

.comparison-head span {
  background: var(--deep);
  color: #edf4ef;
  font-weight: 800;
}

.comparison-head span:last-child {
  background: linear-gradient(145deg, #20344f, #1d8f7a);
}

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}

.auth-card {
  max-width: 520px;
}

.register-link {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
}

.form-heading {
  margin-bottom: 6px;
}

input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 16px;
  font: inherit;
}

input:focus {
  outline: 2px solid rgba(29, 143, 122, 0.18);
  border-color: rgba(29, 143, 122, 0.55);
}

.message {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 700;
}

.message-dark {
  color: var(--muted);
}

select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 16px;
  font: inherit;
}

.section-divider {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 21, 31, 0.08);
}

.auth-layout,
.wizard-grid,
.org-grid {
  display: grid;
  gap: 20px;
}

.auth-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.wizard-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.org-grid {
  grid-template-columns: 1fr 1fr;
}

.app-panel,
.org-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(237, 244, 239, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.org-card span {
  display: inline-flex;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #f6d18c;
}

.org-card h3,
.app-panel h3 {
  margin-bottom: 10px;
}

.org-card p,
.app-panel p,
.app-panel label {
  color: rgba(237, 244, 239, 0.78);
}

.app-panel input,
.app-panel select,
.app-panel textarea,
.org-card input,
.org-card select {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.app-panel textarea,
.org-card textarea {
  width: 100%;
  min-height: 180px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.app-panel select[multiple] {
  min-height: 180px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  padding: 10px 12px;
}

.org-member-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(237, 244, 239, 0.08);
}

.org-member-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.invite-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.promptcloak-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(237, 244, 239, 0.08);
}

.promptcloak-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.promptcloak-row-stack {
  display: grid;
  justify-content: start;
}

.promptcloak-inline-btn {
  min-height: 38px;
  padding: 0 14px;
}

.promptcloak-policy-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.promptcloak-policy-controls select,
[data-type-policy] {
  min-width: 140px;
}

.hidden {
  display: none !important;
}

.story-panel,
.timeline-card {
  background: rgba(255, 250, 241, 0.88);
}

.timeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-index {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 143, 122, 0.1);
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.site-footer {
  position: relative;
  padding: 38px 0 48px;
  background:
    radial-gradient(circle at 18% 12%, rgba(29, 143, 122, 0.14), transparent 26%),
    linear-gradient(160deg, #0b1320, #132238);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-footer {
  margin-bottom: 12px;
}

.site-footer h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(237, 244, 239, 0.72);
  text-decoration: none;
}

.site-footer p {
  color: rgba(237, 244, 239, 0.72);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
}

.dashboard-body {
  background:
    radial-gradient(circle at top left, rgba(29, 143, 122, 0.1), transparent 30%),
    #0f1825;
}

.dashboard-topbar {
  background: rgba(15, 24, 37, 0.82);
  border-bottom-color: rgba(237, 244, 239, 0.08);
}

.dashboard-topbar .brand,
.dashboard-topbar .site-nav a,
.dashboard-topbar .nav-dropdown-toggle {
  color: #edf4ef;
}

.dashboard-main {
  padding: 44px 0 72px;
}

.dashboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(237, 244, 239, 0.08);
}

.dashboard-card.wide {
  grid-column: span 3;
}

.metric {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  font-size: 0.96rem;
  color: rgba(237, 244, 239, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid rgba(237, 244, 239, 0.08);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 620ms ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 90ms;
}

.fade-up.delay-2 {
  animation-delay: 180ms;
}

.fade-up.delay-3 {
  animation-delay: 270ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .cta-grid,
  .login-grid,
  .comparison-band,
  .menu-highlight,
  .story-grid,
  .credibility-grid,
  .card-grid.three,
  .surface-grid,
  .footer-grid,
  .dashboard-grid,
  .logo-grid,
  .auth-layout,
  .wizard-grid,
  .org-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 100vw);
  }

  body::before {
    background-size: 44px 44px;
  }

  .topbar {
    padding: 12px 0;
  }

  .topbar-inner {
    padding: 10px 12px;
    border-radius: 26px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 240px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 251, 244, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 20px 42px rgba(18, 24, 34, 0.12);
  }

  .site-nav a {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(17, 22, 29, 0.03);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero,
  .section {
    padding: 64px 0;
  }

  .topbar-stack {
    gap: 6px;
  }

  .topbar-main,
  .topbar-sub {
    padding: 10px 12px;
  }

  .topbar-main {
    border-radius: 26px;
  }

  .topbar-sub {
    margin: 0 8px;
    border-radius: 22px;
    align-items: stretch;
    flex-direction: column;
  }

  .product-subnav {
    width: 100%;
  }

  .product-subnav a {
    width: 100%;
    justify-content: center;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .surface-glass,
  .feature-card,
  .product-card,
  .detail-card,
  .statement-card,
  .surface-card,
  .contact-card,
  .menu-card,
  .timeline-card,
  .story-panel {
    padding: 22px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row span:last-child {
    border-top: 1px solid var(--line);
  }

  .enterprise-strip,
  .enterprise-strip-compact {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body::before {
    opacity: 0.14;
  }
}
