:root {
  --bg: #f4f8fc;
  --bg-strong: #e7eef6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-muted: rgba(244, 248, 252, 0.82);
  --surface-dark: #112338;
  --ink: #112338;
  --ink-soft: #44556d;
  --ink-faint: #6a7a8f;
  --line: rgba(17, 35, 56, 0.1);
  --line-strong: rgba(17, 35, 56, 0.18);
  --accent: #ef6c2f;
  --accent-strong: #dc4f0f;
  --accent-soft: #ffe3cf;
  --teal: #0c8b85;
  --teal-soft: rgba(12, 139, 133, 0.1);
  --shadow-lg: 0 30px 72px rgba(17, 35, 56, 0.08);
  --shadow-md: 0 16px 38px rgba(17, 35, 56, 0.065);
  --shadow-sm: 0 10px 24px rgba(17, 35, 56, 0.045);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1160px;
  --masthead-height: 112px;
  --section-offset: calc(var(--masthead-height) + 26px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--section-offset);
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 108, 47, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(12, 139, 133, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 48%, #edf3f9 100%);
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 35, 56, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 35, 56, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 62%);
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(12, 139, 133, 0.28);
  outline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: min(100%, calc(var(--content-width) + 64px));
  margin: 0 auto;
  padding: 18px clamp(18px, 3vw, 32px) 56px;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  margin-bottom: 12px;
  padding: 14px 0 18px;
}

.masthead::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.995) 0%, rgba(244, 248, 252, 0.988) 68%, rgba(244, 248, 252, 0.94) 100%);
  box-shadow: 0 18px 42px rgba(232, 240, 248, 0.82);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 249, 253, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 40px rgba(17, 35, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.topbar.is-scrolled {
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px rgba(17, 35, 56, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(243, 247, 252, 0.995));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 2px 4px 2px 0;
}

.brand-mark-shell {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.brand-mark-icon {
  display: block;
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-copy small {
  color: var(--ink-faint);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  color: var(--ink-soft);
  flex: 1 1 auto;
  min-width: 0;
  padding: 4px;
  background: rgba(17, 35, 56, 0.038);
  border: 1px solid rgba(17, 35, 56, 0.05);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.nav a,
.ghost-link {
  position: relative;
  font-size: 0.84rem;
}

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.nav a {
  padding: 8px 8px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
}

.button,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 35, 56, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-soft);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ghost-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 35, 56, 0.12);
  color: var(--ink);
}

.button:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 65%, #f4a61b 100%);
  box-shadow: 0 10px 20px rgba(239, 108, 47, 0.22);
}

.button-primary:hover {
  box-shadow: 0 14px 26px rgba(239, 108, 47, 0.28);
}

.button-secondary,
.menu-toggle {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.menu-toggle:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, 100%);
  z-index: 2;
  gap: 12px;
  padding: 18px;
  background: rgba(248, 251, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  border-radius: 26px;
}

.login-modal[hidden] {
  display: none;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 26px;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 35, 56, 0.56);
  backdrop-filter: blur(14px);
}

.login-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-height: min(820px, calc(100vh - 52px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at top right, rgba(12, 139, 133, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(239, 108, 47, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(243, 247, 252, 0.97));
  box-shadow:
    0 36px 86px rgba(17, 35, 56, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.login-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(17, 35, 56, 0.08);
}

.login-modal-copy {
  max-width: 720px;
}

.login-modal-copy .eyebrow {
  margin-bottom: 10px;
}

.login-modal-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.login-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 35, 56, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.login-modal-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 35, 56, 0.16);
}

.login-modal-frame-shell {
  min-height: 0;
  background: rgba(255, 255, 255, 0.66);
}

.login-modal-frame {
  width: 100%;
  height: 100%;
  min-height: min(690px, calc(100vh - 180px));
  border: 0;
  display: block;
  background: #f8fbff;
}

.mobile-menu a:not(.button) {
  padding: 8px 2px;
  color: var(--ink-soft);
}

main {
  display: block;
  padding-top: 12px;
}

@media (max-width: 1260px) {
  .brand-copy small {
    display: none;
  }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .ghost-link:not(.ghost-link-login) {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .mobile-menu.is-open {
    display: grid !important;
  }
}

@media (max-width: 1120px) {
  .topbar .button-primary {
    display: none;
  }
}

.section {
  padding: 88px 0;
  position: relative;
  scroll-margin-top: var(--section-offset);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: start;
  padding-top: 24px;
  min-height: calc(100vh - var(--masthead-height) - 56px);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.5rem, 6vw, 6.3rem);
  max-width: 10.5ch;
}

.lead,
.section-head p,
.feature-card p,
.audience-card p,
.pricing-card p,
.timeline-step p,
.footer p,
.steps-list span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  margin: 16px 0 0;
  color: var(--ink-faint);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 35, 56, 0.1);
  color: var(--ink);
  font-size: 0.9rem;
  box-shadow: 0 14px 28px rgba(17, 35, 56, 0.07);
}

.signal-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
}

.signal-strip li,
.feature-card,
.audience-card,
.pricing-card,
.timeline-card,
.onboarding-card,
.window-card,
.floating-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.signal-strip li {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 249, 242, 0.7));
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
}

.signal-strip span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  padding-top: 20px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 50px 5% 60px 5%;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(12, 139, 133, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(239, 108, 47, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 28px 50px rgba(17, 35, 56, 0.08);
  z-index: 0;
}

.window-main {
  padding: 18px;
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-left: auto;
}

.window-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.86));
}

.window-card::before,
.pricing-card.primary::before,
.timeline-card::before,
.onboarding-card::before,
.flow-rail::before,
.pricing-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, #f4a61b 52%, var(--teal) 100%);
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 35, 56, 0.18);
}

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

.mini-panel {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mini-panel p,
.floating-card p,
.pricing-label {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mini-panel strong,
.floating-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.3;
}

.mini-panel small,
.floating-card small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.mini-panel.accent {
  background: linear-gradient(135deg, rgba(239, 108, 47, 0.11), rgba(255, 230, 210, 0.7));
}

.mini-panel.dark {
  color: #fff;
  background: linear-gradient(160deg, #112338 0%, #213e61 100%);
}

.mini-panel.dark p,
.mini-panel.dark small {
  color: rgba(255, 255, 255, 0.72);
}

.mini-panel.wide {
  grid-column: 1 / -1;
}

.plan-bars {
  display: grid;
  gap: 10px;
}

.plan-bars span {
  height: 12px;
  width: var(--size);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #67d4cf);
}

.flow-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flow-line span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17, 35, 56, 0.08);
  font-size: 0.9rem;
}

.floating-card {
  position: absolute;
  right: 8px;
  bottom: 30px;
  width: min(290px, 100%);
  padding: 20px;
  z-index: 2;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(243, 247, 252, 0.88));
}

.section-band {
  position: relative;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 22px -8px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(246, 249, 253, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  z-index: -1;
}

.section-head {
  max-width: 760px;
  display: grid;
  gap: 0;
}

.section-head h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  max-width: 12.5ch;
}

.section-head p {
  margin-top: 18px;
  font-size: 1.02rem;
}

.feature-grid,
.audience-grid,
.pricing-shell {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

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

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

.pricing-shell {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: stretch;
}

.flow-layout,
.fit-grid,
.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.flow-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

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

.faq-grid {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.feature-card,
.audience-card,
.pricing-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.audience-card:hover,
.pricing-card:hover,
.faq-item:hover,
.fit-card:hover,
.ops-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(17, 35, 56, 0.08);
  border-color: rgba(17, 35, 56, 0.08);
}

.feature-card h3,
.audience-card h3,
.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 252, 0.82));
}

.pricing-card.primary {
  background:
    radial-gradient(circle at top right, rgba(12, 139, 133, 0.1), transparent 32%),
    radial-gradient(circle at bottom left, rgba(239, 108, 47, 0.1), transparent 38%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.93));
  border-color: rgba(239, 108, 47, 0.16);
  box-shadow:
    0 24px 52px rgba(17, 35, 56, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card.primary h3 {
  font-size: 1.55rem;
}

.pricing-highlight {
  margin: -2px 0 2px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 700;
}

.pricing-subline {
  margin: -6px 0 2px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--teal);
  font-weight: 600;
}

.pricing-meta {
  margin: -4px 0 2px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.pricing-points li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.pricing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #67d4cf);
}

.flow-rail,
.ops-card,
.fit-card,
.faq-item,
.pricing-note,
.contact-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.flow-rail,
.ops-card,
.fit-card,
.pricing-note {
  padding: 30px;
}

.ops-card {
  position: sticky;
  top: calc(var(--masthead-height) + 18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 253, 0.82)),
    var(--surface);
}

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

.flow-step-card + .flow-step-card {
  border-top: 1px solid var(--line);
}

.flow-step-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ink) 0%, #324d71 100%);
  color: #fff;
  font-weight: 700;
}

.flow-step-card strong,
.ops-card strong,
.contact-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.flow-step-card p,
.ops-card p,
.pricing-note p,
.contact-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.impact-list,
.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-list li,
.fit-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.impact-list li + li,
.fit-list li + li {
  margin-top: 14px;
}

.impact-list li::before,
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f4a61b);
}

.fit-label {
  margin: 0 0 16px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.fit-card.muted {
  background: var(--surface-muted);
}

.pricing-note {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pricing-note strong {
  font-size: 1.05rem;
}

.faq-item {
  padding: 26px 28px 28px;
  background: rgba(255, 255, 255, 0.9);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  padding-right: 28px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

.timeline-card,
.onboarding-card {
  padding: 30px;
}

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

.timeline-step + .timeline-step {
  border-top: 1px solid var(--line);
}

.timeline-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #f4a61b);
  color: #fff;
  font-weight: 700;
}

.timeline-step strong,
.steps-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.check-list,
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.steps-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li + li,
.steps-list li + li {
  margin-top: 16px;
}

.check-list li::before,
.steps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #67d4cf);
}

.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(17, 35, 56, 0.94), rgba(36, 63, 98, 0.92));
  color: #fff;
}

.contact-panel .button {
  flex-shrink: 0;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) minmax(180px, auto) minmax(180px, auto) minmax(200px, auto) auto;
  gap: 28px;
  align-items: start;
  margin-top: 44px;
  padding: 36px 0 8px;
  border-top: 1px solid var(--line-strong);
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 48px;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
}

.footer-copy {
  color: var(--ink-soft);
  align-self: end;
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .section-split,
  .feature-grid,
  .pricing-shell,
  .flow-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .hero-visual::before {
    inset: 26px 1% 26px 1%;
  }

  .floating-card {
    position: static;
    margin-top: 18px;
    width: 100%;
  }

  .signal-strip,
  .audience-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .ops-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-shell {
    padding: 18px 18px 40px;
  }

  .masthead {
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .topbar {
    gap: 12px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .hero {
    padding-top: 18px;
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .window-main {
    margin-left: 0;
  }

  .hero-visual::before {
    inset: 14px 0 20px 0;
  }

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

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-copy {
    justify-self: start;
  }

  .contact-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .login-modal {
    padding: 16px;
  }

  .login-modal-panel {
    min-height: calc(100vh - 32px);
    border-radius: 26px;
  }

  .login-modal-head {
    padding: 18px 18px 14px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .mobile-menu {
    left: 0;
    right: 0;
    width: auto;
    padding: 16px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .brand-mark-shell,
  .brand-mark-icon {
    width: 40px;
    height: 40px;
  }

  .footer-logo {
    height: 40px;
  }

  .button,
  .menu-toggle {
    width: 100%;
  }

  .hero-actions,
  .cta-stack {
    flex-direction: column;
  }

  .login-modal {
    padding: 10px;
  }

  .login-modal-panel {
    min-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .login-modal-frame {
    min-height: calc(100vh - 180px);
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }

  .flow-step-card,
  .timeline-step {
    grid-template-columns: 1fr;
  }

  .flow-step-card span,
  .timeline-step span {
    margin-bottom: 4px;
  }

  .section {
    padding: 72px 0;
  }

  .section-band::before {
    inset: 12px -4px;
    border-radius: 30px;
  }

  .flow-rail,
  .ops-card,
  .fit-card,
  .pricing-note,
  .timeline-card,
  .onboarding-card,
  .feature-card,
  .audience-card,
  .pricing-card,
  .faq-item {
    padding: 22px;
  }
}

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

  .button,
  .menu-toggle,
  .topbar,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
