:root {
  color-scheme: dark;
  --bg: #080a0d;
  --bg-soft: #0d1015;
  --bg-elevated: #121820;
  --panel: #121820;
  --panel-strong: #17212b;
  --surface: #121820;
  --surface-2: #17212b;
  --surface-3: #1d2a35;
  --border: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f4ec;
  --text-muted: #b8b3a7;
  --muted: #b8b3a7;
  --muted-2: #858072;
  --accent: #8fd8bd;
  --accent-strong: #c1f3dc;
  --accent-text: #0c1712;
  --mint: #8fd8bd;
  --mint-strong: #c1f3dc;
  --blue: #8fb9ff;
  --amber: #e7bf6a;
  --coral: #ed8c7f;
  --violet: #a99cff;
  --focus-ring: rgba(143, 216, 189, 0.48);
  --header-bg: rgba(8, 10, 13, 0.72);
  --header-bg-scrolled: rgba(8, 10, 13, 0.94);
  --header-border: rgba(255, 255, 255, 0.07);
  --nav-height: 64px;
  --anchor-offset: 24px;
  --page-overlay-start: rgba(8, 10, 13, 0.05);
  --page-overlay-end: rgba(8, 10, 13, 0.94);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --section-band: rgba(255, 255, 255, 0.012);
  --section-band-alt: rgba(143, 216, 189, 0.025);
  --surface-inset: rgba(8, 12, 17, 0.38);
  --accent-soft: rgba(143, 216, 189, 0.1);
  --amber-soft: rgba(231, 191, 106, 0.1);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    color-scheme: light;
    --bg: #f4f7f5;
    --bg-soft: #eef4f1;
    --bg-elevated: #ffffff;
    --panel: #ffffff;
    --panel-strong: #f0f6f2;
    --surface: #ffffff;
    --surface-2: #f3f8f5;
    --surface-3: #e1ece7;
    --border: rgba(22, 43, 38, 0.13);
    --line: rgba(22, 43, 38, 0.13);
    --line-strong: rgba(22, 43, 38, 0.24);
    --text: #12211d;
    --text-muted: #536560;
    --muted: #536560;
    --muted-2: #788781;
    --accent: #16745d;
    --accent-strong: #0d5947;
    --accent-text: #ffffff;
    --mint: #16745d;
    --mint-strong: #0d5947;
    --blue: #315f9f;
    --amber: #9a6414;
    --coral: #a54d42;
    --violet: #6256aa;
    --focus-ring: rgba(22, 116, 93, 0.32);
    --header-bg: rgba(250, 252, 251, 0.86);
    --header-bg-scrolled: rgba(250, 252, 251, 0.97);
    --header-border: rgba(22, 43, 38, 0.12);
    --page-overlay-start: rgba(255, 255, 255, 0.42);
    --page-overlay-end: rgba(244, 247, 245, 0.92);
    --shadow: 0 24px 72px rgba(44, 62, 56, 0.14);
    --section-band: rgba(22, 116, 93, 0.035);
    --section-band-alt: rgba(154, 100, 20, 0.045);
    --surface-inset: rgba(239, 245, 242, 0.86);
    --accent-soft: rgba(22, 116, 93, 0.09);
    --amber-soft: rgba(154, 100, 20, 0.1);
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f7f5;
  --bg-soft: #eef4f1;
  --bg-elevated: #ffffff;
  --panel: #ffffff;
  --panel-strong: #f0f6f2;
  --surface: #ffffff;
  --surface-2: #f3f8f5;
  --surface-3: #e1ece7;
  --border: rgba(22, 43, 38, 0.13);
  --line: rgba(22, 43, 38, 0.13);
  --line-strong: rgba(22, 43, 38, 0.24);
  --text: #12211d;
  --text-muted: #536560;
  --muted: #536560;
  --muted-2: #788781;
  --accent: #16745d;
  --accent-strong: #0d5947;
  --accent-text: #ffffff;
  --mint: #16745d;
  --mint-strong: #0d5947;
  --blue: #315f9f;
  --amber: #9a6414;
  --coral: #a54d42;
  --violet: #6256aa;
  --focus-ring: rgba(22, 116, 93, 0.32);
  --header-bg: rgba(250, 252, 251, 0.86);
  --header-bg-scrolled: rgba(250, 252, 251, 0.97);
  --header-border: rgba(22, 43, 38, 0.12);
  --page-overlay-start: rgba(255, 255, 255, 0.42);
  --page-overlay-end: rgba(244, 247, 245, 0.92);
  --shadow: 0 24px 72px rgba(44, 62, 56, 0.14);
  --section-band: rgba(22, 116, 93, 0.035);
  --section-band-alt: rgba(154, 100, 20, 0.045);
  --surface-inset: rgba(239, 245, 242, 0.86);
  --accent-soft: rgba(22, 116, 93, 0.09);
  --amber-soft: rgba(154, 100, 20, 0.1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--anchor-offset));
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(143, 216, 189, 0.09), transparent 30rem),
    var(--bg);
  background-size: auto;
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--page-overlay-start), var(--page-overlay-end) 72%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--text);
  font-weight: 850;
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

button,
.button,
[role="button"] {
  cursor: pointer;
}

button:disabled,
.button:disabled,
.button[disabled] {
  cursor: not-allowed;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
}

section[id],
main[id],
#feedback {
  scroll-margin-top: calc(var(--nav-height) + var(--anchor-offset));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  min-height: 64px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--header-border);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-strong);
  background: var(--header-bg-scrolled);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.brand-mark,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand-mark {
  justify-self: start;
  min-height: 38px;
  font-size: 16px;
  font-weight: 850;
  flex-shrink: 0;
}

.brand-glyph {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--mint), var(--blue) 54%, var(--amber)),
    #10151b;
  box-shadow: 0 0 22px rgba(143, 216, 189, 0.24);
}

.site-header nav {
  justify-self: center;
  gap: 4px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.site-header nav a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  transition: color 150ms ease;
}

.site-header nav a:hover,
.site-header nav a.is-active,
.site-header nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.primary {
  border-color: rgba(193, 243, 220, 0.78);
  background: var(--mint-strong);
  color: #0c1712;
  box-shadow: 0 12px 32px rgba(143, 216, 189, 0.16);
}

.button.primary:hover {
  background: #d8faea;
  box-shadow: 0 18px 42px rgba(143, 216, 189, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.54;
  transform: none;
  box-shadow: none;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.button.large {
  min-height: 54px;
  padding: 0 26px;
  font-size: 16px;
}

.nav-cta {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 128px 48px 76px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.98) 0%, rgba(8, 10, 13, 0.82) 58%, rgba(8, 10, 13, 0.95) 100%),
    radial-gradient(ellipse at 72% 36%, rgba(143, 216, 189, 0.12), transparent 34rem),
    var(--bg);
  background-size: auto;
  opacity: 1;
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-backdrop::before {
  display: none;
}

.hero-backdrop::after {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: min(1320px, 100%);
  min-height: 0;
  margin: 0 auto;
}

.hero-copy {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede,
.section-heading p,
.outcome-card p,
.evidence-rail p,
.feature-card p,
.upgrade-panel p,
.trust-panel p,
.plan-copy,
.final-cta-inner p,
.policy-hero p,
.policy-content p,
.policy-summary li {
  color: var(--muted);
  line-height: 1.62;
}

.lede {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof {
  justify-self: end;
  width: min(700px, 100%);
}

.command-panel,
.product-window,
.outcome-card,
.feature-card,
.story-step,
.pattern-board,
.pricing-card,
.policy-summary,
.policy-content article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(18, 24, 32, 0.88);
  box-shadow: var(--shadow);
}

.command-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.command-panel::before,
.product-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(193, 243, 220, 0.08), transparent 42%);
  opacity: 0.66;
}

.panel-topline,
.window-bar,
.app-topline,
.mini-panel-head,
.trust-panel,
.upgrade-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline {
  position: relative;
  z-index: 1;
  min-height: 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.hero-dashboard {
  border-color: rgba(193, 243, 220, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(14, 19, 25, 0.9);
}

.dashboard-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: stretch;
  margin: 16px 0;
}

.dashboard-summary > div,
.hero-mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.58);
}

.dashboard-summary > div:first-child {
  padding: 18px;
}

.dashboard-summary strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--text);
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.02;
}

.dashboard-summary p,
.hero-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.focus-score {
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
}

.focus-score span {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.focus-score strong {
  margin: 6px 0 0;
  color: var(--mint-strong);
  font-size: 32px;
}

.hero-dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.48fr);
  gap: 14px;
}

.hero-side-stack {
  display: grid;
  gap: 14px;
}

.hero-mini-card {
  padding: 15px;
}

.hero-mini-card strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.18;
}

.hero-dashboard-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
}

.hero-dashboard-bottom .brief-card {
  margin-top: 0;
}

.hero-privacy-controls {
  grid-template-columns: 1fr;
  margin: 0;
}

.hero-privacy-controls li {
  min-height: 32px;
}

.window-dots {
  display: inline-flex;
  gap: 6px;
}

.window-dots i,
.window-bar .window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #46505c;
}

.window-dots i:first-child,
.window-bar .window-dot:first-child {
  background: var(--coral);
}

.window-dots i:nth-child(2),
.window-bar .window-dot:nth-child(2) {
  background: var(--amber);
}

.window-dots i:nth-child(3),
.window-bar .window-dot:nth-child(3) {
  background: var(--mint);
}

.status-pill,
.plan-badge,
.policy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(143, 216, 189, 0.36);
  border-radius: 999px;
  background: rgba(143, 216, 189, 0.1);
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.plan-badge {
  align-self: flex-start;
  width: fit-content;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 11px;
  border-radius: 999px;
}

.control-grid,
.metrics-row,
.pricing-grid,
.outcome-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

.control-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.control-metric,
.metrics-row div,
.timeline-card,
.mini-panel,
.brief-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.72);
}

.control-metric {
  min-height: 112px;
  padding: 18px;
}

.control-metric > span,
.metrics-row span,
.muted-label {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
}

.control-metric strong,
.metrics-row strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1;
}

.control-metric strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.timeline-module {
  position: relative;
  z-index: 1;
}

.timeline-hours {
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
}

.timeline-lane {
  position: relative;
  height: 176px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #0a0d11;
  background-size: 25% 100%, auto, auto;
}

.timeline-lane.tall {
  height: 184px;
}

.time-block {
  position: absolute;
  left: var(--x);
  bottom: 24px;
  width: var(--w);
  height: 98px;
  border-radius: 7px;
  transform-origin: left center;
  animation: block-grow 950ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(250ms + var(--d));
}

.timeline-lane.tall .time-block {
  height: 92px;
}

.time-block.focus {
  background: linear-gradient(180deg, #b9efd7, #79caa9);
  box-shadow: 0 14px 38px rgba(143, 216, 189, 0.16);
}

.time-block.writing {
  background: linear-gradient(180deg, #a8c7ff, #709ee9);
}

.time-block.admin {
  background: linear-gradient(180deg, #f1ce7e, #d6a84e);
}

.time-block.distract {
  background: linear-gradient(180deg, #ee9a90, #d77568);
}

.focus-cursor {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 6%;
  width: 1px;
  background: rgba(193, 243, 220, 0.86);
  box-shadow: 0 0 18px rgba(193, 243, 220, 0.75);
  animation: scan-lane 2600ms cubic-bezier(0.2, 0.8, 0.2, 1) 700ms both;
}

.spike-marker {
  position: absolute;
  left: var(--x);
  top: 18px;
  transform: translateX(-50%);
  max-width: 94px;
  padding: 5px 7px;
  border: 1px solid rgba(237, 140, 127, 0.34);
  border-radius: 7px;
  background: rgba(237, 140, 127, 0.12);
  color: #ffb4aa;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.brief-card {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 18px;
}

.brief-card p {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 48px));
  margin: 32px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.proof-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
  background: rgba(14, 18, 24, 0.9);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.founder-note-section {
  width: min(900px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 0;
}

.founder-note {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(18, 24, 32, 0.56);
}

.founder-note .card-index {
  margin-bottom: 12px;
}

.founder-note p {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.founder-note small {
  display: block;
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.stage-section {
  position: relative;
  display: grid;
  align-content: start;
  isolation: isolate;
  padding-top: clamp(80px, 8svh, 112px);
  padding-bottom: clamp(80px, 8svh, 112px);
}

.stage-section::before,
.stage-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.stage-section::before {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.stage-section::after {
  inset-block: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(143, 216, 189, 0.035), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.01));
}

.outcomes-section,
.demo-section,
.comparison-section,
.final-cta-section {
  background: var(--section-band);
  box-shadow: 0 0 0 100vmax var(--section-band);
}

.control-section,
.pricing-section,
.offer-section {
  background: var(--section-band-alt);
  box-shadow: 0 0 0 100vmax var(--section-band-alt);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 18px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: end;
  max-width: none;
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.story-section {
  position: relative;
}

.story-stage {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

@media (min-width: 1081px) and (min-height: 760px) {
  .story-window {
    position: sticky;
    top: calc(var(--nav-height) + 48px);
  }
}

.story-steps {
  display: grid;
  gap: 16px;
  padding: clamp(4px, 3svh, 32px) 0;
}

.story-step {
  padding: 22px;
  opacity: 0.58;
  box-shadow: none;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.story-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(6px);
  border-color: rgba(193, 243, 220, 0.34);
  background:
    linear-gradient(180deg, rgba(143, 216, 189, 0.11), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 32, 0.86);
}

.story-window {
  width: 100%;
}

.story-window .app-main {
  position: relative;
  min-height: 548px;
}

.story-panel {
  position: absolute;
  inset: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.outcome-card:hover,
.feature-card:hover,
.pricing-card:hover,
.pricing-card.is-hovered {
  transform: translateY(-4px);
  border-color: rgba(193, 243, 220, 0.26);
  box-shadow: 0 26px 72px rgba(143, 216, 189, 0.18);
}

.pricing-card.coach-plan:hover,
.pricing-card.coach-plan.is-hovered {
  border-color: rgba(143, 185, 255, 0.5);
  box-shadow: 0 26px 72px rgba(143, 185, 255, 0.2);
}

.pricing-card.assistant-plan:hover,
.pricing-card.assistant-plan.is-hovered {
  border-color: rgba(231, 191, 106, 0.5);
  box-shadow: 0 26px 72px rgba(231, 191, 106, 0.18);
}

.card-index,
.feature-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 9px;
  border: 1px solid rgba(143, 216, 189, 0.3);
  border-radius: 999px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.control-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
}

.product-window {
  position: relative;
  overflow: hidden;
  align-self: start;
  border-color: rgba(143, 216, 189, 0.2);
}

.window-bar {
  position: relative;
  z-index: 1;
  min-height: 42px;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 24, 32, 0.74);
}

.window-bar strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  min-height: 0;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: rgba(18, 24, 32, 0.58);
}

.sidebar-title {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-item {
  min-height: 32px;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sidebar-item.active {
  background: rgba(143, 216, 189, 0.13);
  color: var(--text);
}

.app-main {
  padding: 24px;
  background: rgba(255, 255, 255, 0.018);
}

.app-topline h3 {
  max-width: 520px;
  margin: 6px 0 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.16;
}

.metrics-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

.metrics-row div {
  min-height: 104px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 32, 0.72);
}

.product-window .metrics-row strong {
  max-width: 100%;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.focus-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.65fr);
  gap: 12px;
}

.timeline-card {
  grid-row: span 2;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(18, 24, 32, 0.68);
}

.mini-panel {
  min-height: 118px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016)),
    rgba(18, 24, 32, 0.7);
}

.mini-panel-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.mini-panel-head strong {
  color: var(--amber);
}

.spark-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 66px;
  margin-top: 14px;
}

.spark-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--amber), rgba(231, 191, 106, 0.42));
  animation: bar-pulse 3.8s ease-in-out infinite;
}

.session-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.session-panel strong {
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.25;
}

.session-panel small {
  color: var(--muted-2);
  line-height: 1.42;
}

.evidence-rail {
  display: grid;
  gap: 14px;
  align-self: start;
}

.evidence-rail article,
.upgrade-panel,
.trust-panel,
.final-cta-inner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 24, 32, 0.72);
}

.evidence-rail article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
  padding: 20px;
}

.evidence-rail .card-index {
  flex: 0 0 auto;
  width: max-content;
  max-width: max-content;
  margin-bottom: 13px;
}

.evidence-rail h3 {
  margin-bottom: 8px;
}

.evidence-rail p {
  margin-bottom: 0;
  line-height: 1.5;
}

.demo-section {
  padding-top: 76px;
}

.pattern-section .section-heading {
  max-width: 760px;
}

.pattern-board {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 32, 0.74);
}

.pattern-track {
  position: relative;
  height: 4px;
  margin: 4px 8px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.pattern-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--timeline-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--blue), var(--amber));
}

.pattern-marker {
  position: absolute;
  top: 50%;
  left: var(--x);
  width: 12px;
  height: 12px;
  border: 2px solid var(--panel);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 1px rgba(193, 243, 220, 0.42);
  transform: translate(-50%, -50%);
}

.pattern-events {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pattern-events article {
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.42);
}

.pattern-events span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
}

.pattern-events strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.25;
}

.pattern-events p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

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

.demo-card,
.video-placeholder {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(18, 24, 32, 0.78);
  box-shadow: none;
}

.demo-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
}

.demo-card h3 {
  font-size: 22px;
}

.demo-card p {
  min-height: 0;
}

.demo-card p,
.video-placeholder p,
.platform-note,
.trust-note {
  color: var(--muted);
  line-height: 1.56;
}

.demo-visual {
  min-height: 178px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(8, 12, 17, 0.52);
}

.preview-topline,
.preview-hours {
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
}

.preview-topline strong {
  color: var(--mint);
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.preview-metrics span {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(143, 216, 189, 0.1);
}

.preview-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 62px;
}

.preview-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--mint), rgba(143, 216, 189, 0.22));
}

.preview-lane {
  position: relative;
  height: 96px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 24%, var(--line) 24% 25%, transparent 25% 49%, var(--line) 49% 50%, transparent 50% 74%, var(--line) 74% 75%, transparent 75%),
    rgba(8, 12, 17, 0.44);
}

.preview-lane i {
  position: absolute;
  bottom: 18px;
  height: 46px;
  border-radius: 7px;
}

.preview-lane .focus {
  left: 5%;
  width: 30%;
  background: var(--mint);
}

.preview-lane .writing {
  left: 41%;
  width: 21%;
  background: var(--blue);
}

.preview-lane .admin {
  left: 66%;
  width: 12%;
  background: var(--amber);
}

.preview-lane .distract {
  left: 82%;
  width: 10%;
  background: var(--coral);
}

.controls-preview,
.local-preview {
  display: grid;
  gap: 10px;
}

.controls-preview span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.controls-preview b {
  color: var(--mint);
}

.local-preview {
  grid-template-columns: 84px 1fr;
  align-items: center;
}

.local-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--surface) 47%, transparent 49%),
    conic-gradient(var(--mint) 0 48%, var(--blue) 48% 72%, var(--amber) 72% 88%, rgba(255, 255, 255, 0.12) 88%);
}

.local-lines {
  display: grid;
  gap: 10px;
}

.local-lines span {
  height: 12px;
  border-radius: 999px;
  background: var(--line-strong);
}

.local-lines span:nth-child(2) {
  width: 78%;
}

.local-lines span:nth-child(3) {
  width: 58%;
}

.video-placeholder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 22px;
}

.video-placeholder::before {
  content: "";
  width: 72px;
  height: 48px;
  border: 1px solid rgba(143, 216, 189, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 216, 189, 0.16), rgba(143, 185, 255, 0.1)),
    rgba(8, 12, 17, 0.44);
}

.video-placeholder h3 {
  margin-bottom: 6px;
}

.video-placeholder p {
  margin-bottom: 0;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.feature-card {
  min-height: 100%;
}

.mini-cal-vis {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin-top: 22px;
}

.mini-cal-vis span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--mint), rgba(143, 216, 189, 0.26));
}

.rank-list,
.settings-preview {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.rank-list span,
.settings-preview span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  background: rgba(8, 12, 17, 0.46);
}

.settings-preview span {
  grid-template-columns: 1fr auto;
}

.rank-list b,
.settings-preview b {
  color: var(--text);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.focus {
  background: var(--mint);
}

.dot.writing {
  background: var(--blue);
}

.dot.admin {
  background: var(--amber);
}

.mini-ring-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mini-ring-row span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--surface) 48%, transparent 50%),
    conic-gradient(var(--mint) 0 46%, var(--blue) 46% 74%, var(--amber) 74% 88%, rgba(255, 255, 255, 0.12) 88%);
}

.mini-ring-row span:nth-child(2) {
  background:
    radial-gradient(circle, var(--surface) 48%, transparent 50%),
    conic-gradient(var(--blue) 0 58%, var(--mint) 58% 82%, rgba(255, 255, 255, 0.12) 82%);
}

.mini-ring-row span:nth-child(3) {
  background:
    radial-gradient(circle, var(--surface) 48%, transparent 50%),
    conic-gradient(var(--amber) 0 34%, var(--coral) 34% 56%, var(--mint) 56% 76%, rgba(255, 255, 255, 0.12) 76%);
}

.upgrade-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.upgrade-panel,
.trust-panel {
  padding: 38px;
}

.upgrade-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(143, 216, 189, 0.09), transparent 42%),
    rgba(18, 24, 32, 0.78);
}

.upgrade-panel h2,
.trust-panel h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.upgrade-panel p,
.trust-panel p {
  max-width: 640px;
  margin: 0;
  font-size: 16px;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.1fr) minmax(240px, 0.55fr);
}

.trust-actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

.records-card,
.plain-panel,
.option-card,
.feedback-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(18, 24, 32, 0.78);
}

.records-card {
  padding: 24px;
  border-color: rgba(143, 216, 189, 0.34);
  background:
    linear-gradient(135deg, rgba(143, 216, 189, 0.1), transparent 54%),
    rgba(18, 24, 32, 0.82);
}

.records-card h2,
.records-card h3,
.plain-panel h2,
.option-card h2,
.feedback-group h2 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.15;
}

.records-card p,
.plain-panel p,
.option-card p,
.feedback-group label span,
.checkbox-field > span {
  color: var(--muted);
  line-height: 1.62;
}

.records-card p {
  margin-bottom: 12px;
}

.records-card p:last-child,
.plain-panel p:last-child,
.option-card p:last-child {
  margin-bottom: 0;
}

.records-card strong,
.plain-panel strong {
  color: var(--text);
}

.standalone-card,
.plain-panel,
.feedback-section {
  margin-top: 22px;
}

.standalone-card,
.plain-panel {
  max-width: 920px;
}

.plain-panel {
  padding: 28px;
}

.simple-main {
  max-width: 1040px;
}

.review-page .simple-main {
  padding-bottom: calc(var(--nav-height) + 180px);
}

.simple-main .policy-hero {
  max-width: 920px;
  padding-bottom: 26px;
}

.simple-main .policy-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
}

.simple-main .hero-actions {
  margin-top: 24px;
}

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

.option-card {
  padding: 24px;
  box-shadow: none;
}

.compact-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.compact-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.feedback-section {
  max-width: 920px;
}

.feedback-form {
  display: grid;
  gap: 16px;
}

.feedback-group {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 24px;
}

.feedback-group h2 {
  color: var(--text);
  font-weight: 850;
}

.feedback-group label,
.checkbox-field {
  display: grid;
  gap: 8px;
}

.feedback-group label span,
.checkbox-field > span {
  font-size: 15px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.7);
  color: var(--text);
  font: inherit;
}

textarea,
select {
  padding: 11px 12px;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

select {
  min-height: 46px;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(143, 216, 189, 0.42);
  outline-offset: 2px;
}

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

.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.checkbox-grid input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--mint);
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(143, 216, 189, 0.42);
  border-radius: 8px;
  background: rgba(143, 216, 189, 0.12);
  color: var(--mint-strong);
  font-weight: 850;
}

.feedback-helper {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(143, 216, 189, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 216, 189, 0.08), transparent 60%),
    rgba(18, 24, 32, 0.74);
}

.feedback-helper h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.feedback-helper p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.feedback-helper p + p {
  margin-top: 8px;
}

.platform-note {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 750;
}

.install-checklist {
  max-width: 760px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(143, 216, 189, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 216, 189, 0.08), transparent 62%),
    rgba(18, 24, 32, 0.76);
}

.install-checklist h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.install-checklist ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.platform-note a,
.plain-panel a,
.policy-content a {
  color: var(--mint-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.62;
}

.help-stack {
  display: grid;
  gap: 14px;
}

.pricing-section {
  align-content: start;
  min-height: auto;
  padding-top: clamp(84px, 8svh, 112px);
  padding-bottom: clamp(64px, 7svh, 88px);
}

.pricing-heading {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  text-align: center;
}

.pricing-heading p {
  margin-left: auto;
  margin-right: auto;
}

.pricing-heading .platform-note {
  max-width: 660px;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 13px;
}

.pricing-quiz-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(760px, 100%);
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(143, 216, 189, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 216, 189, 0.07), transparent 58%),
    rgba(18, 24, 32, 0.64);
  box-shadow: none;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pricing-quiz-callout:hover,
.pricing-quiz-callout:focus-within {
  border-color: rgba(193, 243, 220, 0.5);
  box-shadow: 0 16px 42px rgba(143, 216, 189, 0.08);
}

.pricing-quiz-callout .card-index {
  margin-bottom: 8px;
}

.pricing-quiz-callout h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.pricing-quiz-callout p {
  max-width: 560px;
  margin: 0;
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card.featured,
.pricing-card.free-plan {
  border-color: rgba(143, 216, 189, 0.46);
  background:
    linear-gradient(180deg, rgba(143, 216, 189, 0.12), rgba(255, 255, 255, 0.024)),
    rgba(18, 24, 32, 0.9);
}

.pricing-card.coach-plan {
  border-color: rgba(143, 185, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(143, 185, 255, 0.15), rgba(255, 255, 255, 0.024)),
    rgba(18, 24, 32, 0.9);
  box-shadow: 0 26px 80px rgba(143, 185, 255, 0.14);
}

.pricing-card.coach-plan.is-visible {
  animation: coach-emphasis 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms both;
}

.pricing-card.assistant-plan {
  border-color: rgba(231, 191, 106, 0.36);
  background:
    linear-gradient(180deg, rgba(231, 191, 106, 0.085), rgba(255, 255, 255, 0.02)),
    rgba(18, 24, 32, 0.86);
}

.popular-badge {
  border-color: rgba(143, 185, 255, 0.36);
  background: rgba(143, 185, 255, 0.1);
  color: var(--blue);
}

.assistant-badge {
  border-color: rgba(231, 191, 106, 0.36);
  background: rgba(231, 191, 106, 0.1);
  color: var(--amber);
}

.plan-head {
  margin-bottom: 8px;
}

.plan-kicker {
  margin: 0 0 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-head h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 2px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.price span,
.price strong,
.price small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
}

.price strong {
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
}

.plan-copy {
  min-height: 56px;
  margin: 10px 0 18px;
  font-size: 14px;
}

.pricing-card .button {
  width: 100%;
  min-height: 44px;
  margin: 0 0 14px;
}

.trust-note {
  display: flex;
  align-items: center;
  min-height: 76px;
  margin: 0 0 16px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(143, 216, 189, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-2);
}

.free-plan li::before {
  background: var(--mint);
}

.coach-plan li::before {
  background: var(--blue);
}

.assistant-plan li::before {
  background: var(--amber);
}

.comparison-section {
  align-content: start;
  min-height: auto;
  padding-top: clamp(76px, 8svh, 104px);
  padding-bottom: clamp(64px, 7svh, 88px);
}

.comparison-stage-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  text-align: center;
}

.comparison-stage-heading p {
  margin-left: auto;
  margin-right: auto;
}

.comparison-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.product-panel-grid {
  margin-bottom: 28px;
}

.product-visual,
.comparison-panel,
.offer-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 32, 0.78);
}

.product-visual {
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 20px;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
}

.visual-topline strong {
  color: var(--mint);
  font-size: 12px;
}

.product-visual h3 {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.16;
}

.product-visual p {
  color: var(--muted);
  line-height: 1.5;
}

.work-window-meter {
  height: 12px;
  margin: auto 0 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 12, 17, 0.6);
}

.work-window-meter span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), rgba(143, 185, 255, 0.88));
  transform-origin: left center;
}

.reveal-enabled .product-visual .work-window-meter span {
  transform: scaleX(0.05);
}

.reveal-enabled .product-visual.is-visible .work-window-meter span {
  animation: meter-fill 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.visual-metrics span {
  min-height: 62px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.46);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.visual-metrics strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.1;
}

.visual-suggestion {
  margin: 0;
  padding: 12px 13px;
  border: 1px solid rgba(143, 216, 189, 0.22);
  border-radius: 8px;
  background: rgba(143, 216, 189, 0.08);
  color: var(--text) !important;
  font-size: 13px;
  font-weight: 850;
}

.leak-timeline {
  position: relative;
  height: 98px;
  margin: auto 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 24.8%, rgba(255, 255, 255, 0.07) 25%, transparent 25.2%, transparent 49.8%, rgba(255, 255, 255, 0.07) 50%, transparent 50.2%, transparent 74.8%, rgba(255, 255, 255, 0.07) 75%, transparent 75.2%),
    rgba(8, 12, 17, 0.5);
}

.leak-block {
  position: absolute;
  left: var(--x);
  bottom: 18px;
  width: var(--w);
  min-width: 28px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 9px 10px;
  color: #ffffff;
  font-size: clamp(8.5px, 0.65vw, 10px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.82);
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.58),
    1px -1px 0 rgba(0, 0, 0, 0.58),
    -1px 1px 0 rgba(0, 0, 0, 0.58),
    1px 1px 0 rgba(0, 0, 0, 0.58),
    0 1px 2px rgba(0, 0, 0, 0.32);
  transform-origin: left bottom;
}

.reveal-enabled .product-visual .leak-block {
  opacity: 0;
  transform: translateY(8px) scaleX(0.86);
}

.reveal-enabled .product-visual.is-visible .leak-block {
  animation: leak-block-in 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-enabled .product-visual.is-visible .leak-block:nth-child(2) {
  animation-delay: 90ms;
}

.reveal-enabled .product-visual.is-visible .leak-block:nth-child(3) {
  animation-delay: 180ms;
}

.reveal-enabled .product-visual.is-visible .leak-block:nth-child(4) {
  animation-delay: 270ms;
}

.leak-block.focus,
.leak-block.recover {
  background: var(--mint);
}

.leak-block.drift {
  background: var(--blue);
}

.leak-block.admin {
  background: var(--blue);
}

.leak-block.spike {
  background: var(--coral);
}

.leak-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 850;
}

.privacy-control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.privacy-control-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.46);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.reveal-enabled .product-visual .privacy-control-list li {
  opacity: 0;
  transform: translateY(6px);
}

.reveal-enabled .product-visual.is-visible .privacy-control-list li {
  animation: control-row-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-enabled .product-visual.is-visible .privacy-control-list li:nth-child(2) {
  animation-delay: 50ms;
}

.reveal-enabled .product-visual.is-visible .privacy-control-list li:nth-child(3) {
  animation-delay: 100ms;
}

.reveal-enabled .product-visual.is-visible .privacy-control-list li:nth-child(4) {
  animation-delay: 150ms;
}

.reveal-enabled .product-visual.is-visible .privacy-control-list li:nth-child(5) {
  animation-delay: 200ms;
}

.reveal-enabled .product-visual.is-visible .privacy-control-list li:nth-child(6) {
  animation-delay: 250ms;
}

.foundation-strip,
.progression-card,
.plan-details-accordion,
.plan-details-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 32, 0.78);
}

.foundation-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  padding: 26px;
}

.foundation-strip h3,
.plan-details-accordion h3 {
  margin-bottom: 8px;
}

.foundation-strip p,
.progression-card p,
.plan-details-accordion p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.foundation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.foundation-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.38);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.foundation-list li span {
  color: var(--mint);
  font-weight: 900;
}

.plan-progression-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.progression-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.progression-card h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.12;
}

.progression-card p {
  min-height: 72px;
  margin-bottom: 18px;
}

.progression-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.progression-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.44;
}

.progression-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.list-intro {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
}

.progression-card .button {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
}

.coach-progression {
  border-color: rgba(143, 185, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(143, 185, 255, 0.13), rgba(255, 255, 255, 0.022)),
    rgba(18, 24, 32, 0.88);
}

.coach-progression li::before {
  background: var(--blue);
}

.assistant-progression {
  border-color: rgba(231, 191, 106, 0.3);
  background:
    linear-gradient(180deg, rgba(231, 191, 106, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 32, 0.82);
}

.assistant-progression li::before {
  background: var(--amber);
}

.plan-details-accordion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
}

.plan-details-toggle {
  min-width: 210px;
}

.plan-details-panel[hidden] {
  display: none;
}

.plan-details-panel {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 18px;
}

.detail-group {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.36);
}

.detail-group h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) repeat(3, minmax(130px, 0.9fr));
  gap: 12px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.detail-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
}

.detail-row > span:first-child {
  color: var(--text);
  font-weight: 850;
}

.detail-head {
  padding-top: 0;
  border-top: 0;
}

.detail-head span {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-matrix-shell {
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(18, 24, 32, 0.78);
}

.plan-matrix-scroll {
  overflow: visible;
  overscroll-behavior-x: contain;
}

.plan-matrix {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.plan-matrix th,
.plan-matrix td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
  text-align: left;
  vertical-align: top;
}

.plan-matrix thead th {
  position: sticky;
  top: calc(var(--nav-height) + 8px);
  z-index: 12;
  padding-top: 22px;
  padding-bottom: 20px;
  background:
    linear-gradient(180deg, rgba(24, 32, 42, 0.98), rgba(18, 24, 32, 0.96)),
    var(--surface);
  color: var(--text);
  box-shadow:
    0 1px 0 var(--line),
    0 14px 28px rgba(3, 5, 8, 0.28);
}

.plan-matrix thead th:first-child,
.plan-matrix tbody th {
  width: 30%;
}

.plan-matrix thead th:not(:first-child),
.plan-matrix td {
  width: 23.333%;
}

.plan-matrix tbody th {
  color: var(--text);
  font-weight: 850;
}

.matrix-category-label,
.matrix-pill,
.matrix-plan-name,
.matrix-price,
.matrix-cta {
  display: block;
}

.matrix-category-label {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-plan-name {
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 900;
}

.matrix-price {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
}

.matrix-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.matrix-pill {
  width: max-content;
  max-width: 100%;
  margin-bottom: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(143, 185, 255, 0.36);
  border-radius: 999px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.matrix-pill.muted {
  border-color: rgba(231, 191, 106, 0.28);
  color: var(--amber);
}

.matrix-cta {
  width: max-content;
  max-width: 100%;
  min-width: 128px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.matrix-cta.primary,
.matrix-cta:hover {
  border-color: rgba(143, 216, 189, 0.5);
  background: var(--mint);
  color: #07120e;
}

.matrix-featured {
  box-shadow: inset 0 3px 0 rgba(143, 185, 255, 0.72);
}

.plan-matrix tbody td:nth-child(3),
.plan-matrix thead th:nth-child(3) {
  background-color: rgba(143, 185, 255, 0.045);
}

.matrix-section-row th {
  padding-top: 34px;
  padding-bottom: 11px;
  border-bottom-color: rgba(255, 255, 255, 0.13);
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 850;
  text-transform: none;
}

.matrix-section-row:first-child th {
  padding-top: 22px;
}

.matrix-check {
  color: var(--mint);
  font-size: 16px;
  font-weight: 900;
}

.offer-section {
  align-content: start;
  min-height: auto;
  padding-top: clamp(72px, 7svh, 96px);
  padding-bottom: clamp(52px, 6svh, 72px);
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 20px;
  margin-top: 0;
  padding: 34px;
}

.offer-copy p,
.guarantee-card p,
.bonus-grid p,
.scarcity-note {
  color: var(--muted);
  line-height: 1.6;
}

.guarantee-card,
.bonus-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.48);
}

.guarantee-card {
  padding: 24px;
  border-color: rgba(143, 216, 189, 0.26);
  background:
    linear-gradient(180deg, rgba(143, 216, 189, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(8, 12, 17, 0.58);
}

.bonus-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bonus-grid article {
  padding: 18px;
}

.bonus-grid h3,
.guarantee-card h3 {
  margin-bottom: 8px;
}

.bonus-grid p,
.guarantee-card p,
.scarcity-note {
  margin-bottom: 0;
}

.scarcity-note {
  grid-column: 1 / -1;
  margin-top: -4px;
  font-size: 14px;
  font-weight: 750;
}

.final-cta-section {
  padding-top: clamp(64px, 7svh, 88px);
  padding-bottom: clamp(84px, 9svh, 120px);
}

.final-cta-inner {
  max-width: 790px;
  margin: 0 auto;
  padding: 64px 54px;
  text-align: center;
  background:
    radial-gradient(ellipse 68% 64% at 50% 0%, rgba(143, 216, 189, 0.1), transparent 76%),
    rgba(18, 24, 32, 0.78);
}

.final-cta-inner h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 56px);
}

.final-cta-inner p {
  max-width: 590px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.final-cta-actions {
  justify-content: center;
}

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

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.quiz-scrim {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.72);
  backdrop-filter: blur(16px);
}

.quiz-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(18, 24, 32, 0.98);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.56);
}

.quiz-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: transparent;
  font-size: 0;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.quiz-close::before,
.quiz-close::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--muted);
  transition: background 150ms ease;
}

.quiz-close::before {
  transform: rotate(45deg);
}

.quiz-close::after {
  transform: rotate(-45deg);
}

.quiz-close:hover,
.quiz-close:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.075);
}

.quiz-close:hover::before,
.quiz-close:hover::after,
.quiz-close:focus-visible::before,
.quiz-close:focus-visible::after {
  background: var(--text);
}

.quiz-progress {
  margin: 0 0 12px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 850;
}

.quiz-dialog h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(30px, 4.2vw, 46px);
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quiz-option:hover,
.quiz-option.is-selected {
  transform: translateY(-1px);
  border-color: rgba(193, 243, 220, 0.42);
  background: rgba(143, 216, 189, 0.08);
  box-shadow: 0 16px 42px rgba(143, 216, 189, 0.1);
}

.quiz-option strong {
  font-size: 15px;
}

.quiz-option span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 26px;
}

.quiz-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.quiz-result-card {
  padding: 24px;
  border: 1px solid rgba(143, 216, 189, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(143, 216, 189, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(8, 12, 17, 0.78);
  box-shadow: 0 22px 70px rgba(143, 216, 189, 0.14);
}

.quiz-result-card[data-plan="coach"] {
  border-color: rgba(143, 185, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(143, 185, 255, 0.13), rgba(255, 255, 255, 0.026)),
    rgba(8, 12, 17, 0.78);
  box-shadow: 0 22px 70px rgba(143, 185, 255, 0.16);
}

.quiz-result-card[data-plan="assistant"] {
  border-color: rgba(231, 191, 106, 0.42);
  background:
    linear-gradient(180deg, rgba(231, 191, 106, 0.13), rgba(255, 255, 255, 0.026)),
    rgba(8, 12, 17, 0.78);
  box-shadow: 0 22px 70px rgba(231, 191, 106, 0.15);
}

.quiz-result-card[data-plan="coach"] .plan-badge {
  border-color: rgba(143, 185, 255, 0.42);
  background: rgba(143, 185, 255, 0.1);
  color: var(--blue);
}

.quiz-result-card[data-plan="assistant"] .plan-badge {
  border-color: rgba(231, 191, 106, 0.42);
  background: rgba(231, 191, 106, 0.1);
  color: var(--amber);
}

.quiz-result-card h2 {
  margin: 10px 0 14px;
}

.quiz-result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

body.quiz-open {
  overflow: hidden;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child,
.site-footer a {
  color: var(--text);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.policy-page .site-header {
  background: var(--header-bg-scrolled);
}

#attention-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.18;
}

.policy-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.policy-hero {
  max-width: 870px;
  padding: 44px 0 50px;
}

.policy-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.94;
}

.policy-hero p {
  max-width: 760px;
  font-size: 20px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.policy-summary,
.policy-content article {
  box-shadow: none;
}

.policy-summary {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.policy-summary h2,
.policy-content h2 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.12;
}

.policy-summary ul,
.policy-content p {
  margin: 0;
}

.policy-summary ul {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.policy-summary li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}

.policy-summary li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.policy-content {
  display: grid;
  gap: 14px;
}

.policy-content article {
  padding: 26px;
}

.policy-content p {
  font-size: 16px;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

:root[data-theme="light"] .hero-backdrop,
:root:not([data-theme]) .hero-backdrop {
  background:
    linear-gradient(90deg, rgba(238, 243, 245, 0.98) 0%, rgba(238, 243, 245, 0.82) 58%, rgba(238, 243, 245, 0.96) 100%),
    radial-gradient(ellipse at 72% 36%, rgba(38, 115, 95, 0.11), transparent 34rem),
    var(--bg);
  background-size: auto;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(8, 10, 13, 0.98) 0%, rgba(8, 10, 13, 0.82) 58%, rgba(8, 10, 13, 0.95) 100%),
      radial-gradient(ellipse at 72% 36%, rgba(143, 216, 189, 0.12), transparent 34rem),
      var(--bg);
    background-size: auto;
  }
}

:root[data-theme="light"] .command-panel,
:root[data-theme="light"] .product-window,
:root[data-theme="light"] .outcome-card,
:root[data-theme="light"] .story-step,
:root[data-theme="light"] .pattern-board,
:root[data-theme="light"] .feature-card,
:root[data-theme="light"] .pricing-card,
:root[data-theme="light"] .product-visual,
:root[data-theme="light"] .comparison-panel,
:root[data-theme="light"] .offer-panel,
:root[data-theme="light"] .policy-summary,
:root[data-theme="light"] .policy-content article,
:root[data-theme="light"] .evidence-rail article,
:root[data-theme="light"] .upgrade-panel,
:root[data-theme="light"] .trust-panel,
:root[data-theme="light"] .final-cta-inner,
:root[data-theme="light"] .founder-note,
:root[data-theme="light"] .records-card,
:root[data-theme="light"] .plain-panel,
:root[data-theme="light"] .option-card,
:root[data-theme="light"] .feedback-group,
:root[data-theme="light"] .feedback-helper,
:root[data-theme="light"] .demo-card,
:root[data-theme="light"] .video-placeholder,
:root[data-theme="light"] .quiz-dialog,
:root[data-theme="light"] .quiz-result-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    var(--surface);
}

:root[data-theme="light"] .pricing-quiz-callout,
:root[data-theme="light"] .install-checklist {
  border-color: rgba(38, 115, 95, 0.28);
  background:
    linear-gradient(135deg, rgba(38, 115, 95, 0.1), rgba(49, 95, 159, 0.05)),
    #ffffff;
  box-shadow: 0 18px 48px rgba(45, 66, 75, 0.12);
}

:root[data-theme="light"] .pricing-quiz-callout:hover,
:root[data-theme="light"] .pricing-quiz-callout:focus-within {
  border-color: rgba(38, 115, 95, 0.48);
  box-shadow: 0 24px 64px rgba(38, 115, 95, 0.16);
}

:root[data-theme="light"] .demo-card,
:root[data-theme="light"] .option-card,
:root[data-theme="light"] .records-card,
:root[data-theme="light"] .feedback-helper,
:root[data-theme="light"] .feedback-group,
:root[data-theme="light"] .product-visual,
:root[data-theme="light"] .comparison-panel,
:root[data-theme="light"] .offer-panel,
:root[data-theme="light"] .founder-note {
  border-color: rgba(25, 42, 48, 0.14);
}

:root[data-theme="light"] .story-step.is-active {
  background:
    linear-gradient(180deg, rgba(38, 115, 95, 0.11), rgba(255, 255, 255, 0.62)),
    var(--surface);
}

:root[data-theme="light"] .demo-visual,
:root[data-theme="light"] .pattern-events article,
:root[data-theme="light"] .timeline-card,
:root[data-theme="light"] .mini-panel,
:root[data-theme="light"] .brief-card,
:root[data-theme="light"] .visual-metrics span,
:root[data-theme="light"] .privacy-control-list li,
:root[data-theme="light"] .comparison-row,
:root[data-theme="light"] .comparison-legend span,
:root[data-theme="light"] .leak-timeline,
:root[data-theme="light"] .work-window-meter,
:root[data-theme="light"] input,
:root[data-theme="light"] textarea,
:root[data-theme="light"] select {
  background: rgba(247, 250, 251, 0.82);
}

:root[data-theme="light"] .stage-section::after {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(38, 115, 95, 0.045), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 24%, transparent 76%, rgba(20, 32, 37, 0.018));
}

:root[data-theme="light"] .leak-block {
  color: #ffffff;
}

:root[data-theme="light"] .plan-matrix-shell {
  border-color: rgba(25, 42, 48, 0.14);
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(44, 62, 56, 0.1);
}

:root[data-theme="light"] .plan-matrix thead th {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.96)),
    #ffffff;
  color: #142025;
}

:root[data-theme="light"] .plan-matrix th,
:root[data-theme="light"] .plan-matrix td {
  border-bottom-color: rgba(25, 42, 48, 0.13);
}

:root[data-theme="light"] .plan-matrix tbody th,
:root[data-theme="light"] .matrix-price {
  color: #142025;
}

:root[data-theme="light"] .matrix-section-row th {
  border-bottom-color: rgba(25, 42, 48, 0.17);
  color: #6d7977;
}

:root[data-theme="light"] .plan-matrix tbody td:nth-child(3),
:root[data-theme="light"] .plan-matrix thead th:nth-child(3) {
  background-color: rgba(49, 95, 159, 0.055);
}

:root[data-theme="light"] .matrix-cta {
  border-color: rgba(25, 42, 48, 0.18);
  color: #142025;
  background: rgba(20, 32, 37, 0.035);
}

:root[data-theme="light"] .matrix-cta.primary,
:root[data-theme="light"] .matrix-cta:hover {
  border-color: #176750;
  background: #176750;
  color: #ffffff;
}

:root[data-theme="light"] .button.primary {
  color: var(--accent-text);
}

:root[data-theme="light"] .button.primary:hover {
  border-color: #0d5947;
  background: #0d5947;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(22, 116, 93, 0.2);
}

:root[data-theme="light"] .button.secondary,
:root[data-theme="light"] .theme-toggle {
  background: rgba(20, 32, 37, 0.045);
}

:root[data-theme="light"] .site-header {
  border-color: rgba(25, 42, 48, 0.16);
  background: rgba(248, 251, 251, 0.9);
  box-shadow: 0 12px 34px rgba(45, 66, 75, 0.08);
}

:root[data-theme="light"] .site-header.is-scrolled,
:root[data-theme="light"] .policy-page .site-header {
  background: rgba(248, 251, 251, 0.97);
}

:root[data-theme="light"] .brand-mark,
:root[data-theme="light"] .site-header nav,
:root[data-theme="light"] .theme-toggle {
  color: #31444a;
}

:root[data-theme="light"] .site-header nav {
  border-color: rgba(25, 42, 48, 0.14);
  background: rgba(20, 32, 37, 0.04);
}

:root[data-theme="light"] .site-header nav a:hover,
:root[data-theme="light"] .site-header nav a.is-active,
:root[data-theme="light"] .site-header nav a[aria-current="page"] {
  color: #142025;
  background: rgba(20, 32, 37, 0.06);
}

:root[data-theme="light"] .theme-toggle {
  border-color: rgba(25, 42, 48, 0.18);
  background: rgba(20, 32, 37, 0.04);
}

:root[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(20, 32, 37, 0.28);
  background: rgba(20, 32, 37, 0.07);
  color: #142025;
}

:root[data-theme="light"] .nav-cta.button.primary {
  border-color: #176750;
  background: #176750;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 103, 80, 0.18);
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 0%, rgba(22, 116, 93, 0.07), transparent 30rem),
    linear-gradient(180deg, #fbfdfc 0%, #f4f7f5 46%, #f8faf8 100%);
}

:root[data-theme="light"] .hero-backdrop {
  background:
    linear-gradient(90deg, rgba(251, 253, 252, 0.98) 0%, rgba(244, 247, 245, 0.88) 58%, rgba(251, 253, 252, 0.98) 100%),
    radial-gradient(ellipse at 74% 34%, rgba(22, 116, 93, 0.1), transparent 34rem),
    var(--bg);
}

:root[data-theme="light"] .stage-section::before {
  background: linear-gradient(90deg, transparent, rgba(22, 43, 38, 0.13), transparent);
}

:root[data-theme="light"] .stage-section::after {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22, 116, 93, 0.035), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 26%, transparent 74%, rgba(22, 43, 38, 0.018));
}

:root[data-theme="light"] .proof-strip {
  border-color: rgba(22, 43, 38, 0.12);
  background: rgba(22, 43, 38, 0.1);
  box-shadow: 0 18px 50px rgba(44, 62, 56, 0.1);
}

:root[data-theme="light"] .proof-strip span {
  background: rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .dashboard-summary > div,
:root[data-theme="light"] .hero-mini-card,
:root[data-theme="light"] .control-metric,
:root[data-theme="light"] .metrics-row div,
:root[data-theme="light"] .timeline-card,
:root[data-theme="light"] .mini-panel,
:root[data-theme="light"] .brief-card,
:root[data-theme="light"] .foundation-list li,
:root[data-theme="light"] .detail-group,
:root[data-theme="light"] .guarantee-card,
:root[data-theme="light"] .bonus-grid article {
  border-color: rgba(22, 43, 38, 0.12);
  background: var(--surface-inset);
}

:root[data-theme="light"] .timeline-lane,
:root[data-theme="light"] .leak-timeline,
:root[data-theme="light"] .work-window-meter {
  background:
    linear-gradient(90deg, rgba(22, 43, 38, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 242, 0.82)),
    #f8fbfa;
  background-size: 25% 100%, auto, auto;
}

:root[data-theme="light"] .window-bar {
  background: rgba(246, 250, 248, 0.88);
}

:root[data-theme="light"] .app-sidebar {
  background: rgba(239, 245, 242, 0.8);
}

:root[data-theme="light"] .focus-score strong,
:root[data-theme="light"] .status-pill,
:root[data-theme="light"] .plan-badge,
:root[data-theme="light"] .policy-meta span,
:root[data-theme="light"] .foundation-list li span {
  color: var(--accent-strong);
}

:root[data-theme="light"] .foundation-strip,
:root[data-theme="light"] .progression-card,
:root[data-theme="light"] .plan-details-accordion,
:root[data-theme="light"] .plan-details-panel {
  border-color: rgba(22, 43, 38, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    var(--surface);
  box-shadow: 0 20px 58px rgba(44, 62, 56, 0.1);
}

:root[data-theme="light"] .coach-progression,
:root[data-theme="light"] .pricing-card.coach-plan {
  border-color: rgba(49, 95, 159, 0.26);
  background:
    linear-gradient(180deg, rgba(49, 95, 159, 0.1), rgba(255, 255, 255, 0.88)),
    var(--surface);
  box-shadow: 0 22px 62px rgba(49, 95, 159, 0.1);
}

:root[data-theme="light"] .assistant-progression,
:root[data-theme="light"] .pricing-card.assistant-plan {
  border-color: rgba(154, 100, 20, 0.24);
  background:
    linear-gradient(180deg, var(--amber-soft), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

:root[data-theme="light"] .pricing-card.free-plan,
:root[data-theme="light"] .pricing-card.featured,
:root[data-theme="light"] .guarantee-card {
  border-color: rgba(22, 116, 93, 0.24);
  background:
    linear-gradient(180deg, var(--accent-soft), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

:root[data-theme="light"] .trust-note {
  border-color: rgba(22, 116, 93, 0.16);
  background: rgba(22, 116, 93, 0.07);
}

:root[data-theme="light"] .detail-row {
  border-top-color: rgba(22, 43, 38, 0.1);
}

:root[data-theme="light"] .final-cta-inner {
  background:
    radial-gradient(ellipse 68% 64% at 50% 0%, rgba(22, 116, 93, 0.1), transparent 76%),
    rgba(255, 255, 255, 0.92);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .command-panel,
  :root:not([data-theme]) .product-window,
  :root:not([data-theme]) .outcome-card,
  :root:not([data-theme]) .story-step,
  :root:not([data-theme]) .pattern-board,
  :root:not([data-theme]) .feature-card,
  :root:not([data-theme]) .pricing-card,
  :root:not([data-theme]) .product-visual,
  :root:not([data-theme]) .comparison-panel,
  :root:not([data-theme]) .offer-panel,
  :root:not([data-theme]) .policy-summary,
  :root:not([data-theme]) .policy-content article,
  :root:not([data-theme]) .evidence-rail article,
  :root:not([data-theme]) .upgrade-panel,
  :root:not([data-theme]) .trust-panel,
  :root:not([data-theme]) .final-cta-inner,
  :root:not([data-theme]) .founder-note,
  :root:not([data-theme]) .records-card,
  :root:not([data-theme]) .plain-panel,
  :root:not([data-theme]) .option-card,
  :root:not([data-theme]) .feedback-group,
  :root:not([data-theme]) .feedback-helper,
  :root:not([data-theme]) .demo-card,
  :root:not([data-theme]) .video-placeholder,
  :root:not([data-theme]) .quiz-dialog,
  :root:not([data-theme]) .quiz-result-card {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
      var(--surface);
  }

  :root:not([data-theme]) .pricing-quiz-callout,
  :root:not([data-theme]) .install-checklist {
    border-color: rgba(38, 115, 95, 0.28);
    background:
      linear-gradient(135deg, rgba(38, 115, 95, 0.1), rgba(49, 95, 159, 0.05)),
      #ffffff;
    box-shadow: 0 18px 48px rgba(45, 66, 75, 0.12);
  }

  :root:not([data-theme]) .pricing-quiz-callout:hover,
  :root:not([data-theme]) .pricing-quiz-callout:focus-within {
    border-color: rgba(38, 115, 95, 0.48);
    box-shadow: 0 24px 64px rgba(38, 115, 95, 0.16);
  }

  :root:not([data-theme]) .demo-card,
  :root:not([data-theme]) .option-card,
  :root:not([data-theme]) .records-card,
  :root:not([data-theme]) .feedback-helper,
  :root:not([data-theme]) .feedback-group,
  :root:not([data-theme]) .product-visual,
  :root:not([data-theme]) .comparison-panel,
  :root:not([data-theme]) .offer-panel,
  :root:not([data-theme]) .founder-note {
    border-color: rgba(25, 42, 48, 0.14);
  }

  :root:not([data-theme]) .story-step.is-active {
    background:
      linear-gradient(180deg, rgba(38, 115, 95, 0.11), rgba(255, 255, 255, 0.62)),
      var(--surface);
  }

  :root:not([data-theme]) .demo-visual,
  :root:not([data-theme]) .pattern-events article,
  :root:not([data-theme]) .timeline-card,
  :root:not([data-theme]) .mini-panel,
  :root:not([data-theme]) .brief-card,
  :root:not([data-theme]) .visual-metrics span,
  :root:not([data-theme]) .privacy-control-list li,
  :root:not([data-theme]) .comparison-row,
  :root:not([data-theme]) .comparison-legend span,
  :root:not([data-theme]) .leak-timeline,
  :root:not([data-theme]) .work-window-meter,
  :root:not([data-theme]) input,
  :root:not([data-theme]) textarea,
  :root:not([data-theme]) select {
    background: rgba(247, 250, 251, 0.82);
  }

  :root:not([data-theme]) .stage-section::after {
    background:
      radial-gradient(ellipse at 50% 0%, rgba(38, 115, 95, 0.045), transparent 34rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 24%, transparent 76%, rgba(20, 32, 37, 0.018));
  }

  :root:not([data-theme]) .leak-block {
    color: #ffffff;
  }

  :root:not([data-theme]) .plan-matrix-shell {
    border-color: rgba(25, 42, 48, 0.14);
    background: #ffffff;
    box-shadow: 0 20px 58px rgba(44, 62, 56, 0.1);
  }

  :root:not([data-theme]) .plan-matrix thead th {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.96)),
      #ffffff;
    color: #142025;
  }

  :root:not([data-theme]) .plan-matrix th,
  :root:not([data-theme]) .plan-matrix td {
    border-bottom-color: rgba(25, 42, 48, 0.13);
  }

  :root:not([data-theme]) .plan-matrix tbody th,
  :root:not([data-theme]) .matrix-price {
    color: #142025;
  }

  :root:not([data-theme]) .matrix-section-row th {
    border-bottom-color: rgba(25, 42, 48, 0.17);
    color: #6d7977;
  }

  :root:not([data-theme]) .plan-matrix tbody td:nth-child(3),
  :root:not([data-theme]) .plan-matrix thead th:nth-child(3) {
    background-color: rgba(49, 95, 159, 0.055);
  }

  :root:not([data-theme]) .matrix-cta {
    border-color: rgba(25, 42, 48, 0.18);
    color: #142025;
    background: rgba(20, 32, 37, 0.035);
  }

  :root:not([data-theme]) .matrix-cta.primary,
  :root:not([data-theme]) .matrix-cta:hover {
    border-color: #176750;
    background: #176750;
    color: #ffffff;
  }

  :root:not([data-theme]) .button.primary {
    color: var(--accent-text);
  }

  :root:not([data-theme]) .button.primary:hover {
    border-color: #0d5947;
    background: #0d5947;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(22, 116, 93, 0.2);
  }

  :root:not([data-theme]) .button.secondary,
  :root:not([data-theme]) .theme-toggle {
    background: rgba(20, 32, 37, 0.045);
  }

  :root:not([data-theme]) .site-header {
    border-color: rgba(25, 42, 48, 0.16);
    background: rgba(248, 251, 251, 0.9);
    box-shadow: 0 12px 34px rgba(45, 66, 75, 0.08);
  }

  :root:not([data-theme]) .site-header.is-scrolled,
  :root:not([data-theme]) .policy-page .site-header {
    background: rgba(248, 251, 251, 0.97);
  }

  :root:not([data-theme]) .brand-mark,
  :root:not([data-theme]) .site-header nav,
  :root:not([data-theme]) .theme-toggle {
    color: #31444a;
  }

  :root:not([data-theme]) .site-header nav {
    border-color: rgba(25, 42, 48, 0.14);
    background: rgba(20, 32, 37, 0.04);
  }

  :root:not([data-theme]) .site-header nav a:hover,
  :root:not([data-theme]) .site-header nav a.is-active,
  :root:not([data-theme]) .site-header nav a[aria-current="page"] {
    color: #142025;
    background: rgba(20, 32, 37, 0.06);
  }

  :root:not([data-theme]) .theme-toggle {
    border-color: rgba(25, 42, 48, 0.18);
    background: rgba(20, 32, 37, 0.04);
  }

  :root:not([data-theme]) .theme-toggle:hover {
    border-color: rgba(20, 32, 37, 0.28);
    background: rgba(20, 32, 37, 0.07);
    color: #142025;
  }

  :root:not([data-theme]) .nav-cta.button.primary {
    border-color: #176750;
    background: #176750;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(23, 103, 80, 0.18);
  }

  :root:not([data-theme]) body {
    background:
      radial-gradient(circle at 18% 0%, rgba(22, 116, 93, 0.07), transparent 30rem),
      linear-gradient(180deg, #fbfdfc 0%, #f4f7f5 46%, #f8faf8 100%);
  }

  :root:not([data-theme]) .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(251, 253, 252, 0.98) 0%, rgba(244, 247, 245, 0.88) 58%, rgba(251, 253, 252, 0.98) 100%),
      radial-gradient(ellipse at 74% 34%, rgba(22, 116, 93, 0.1), transparent 34rem),
      var(--bg);
  }

  :root:not([data-theme]) .stage-section::before {
    background: linear-gradient(90deg, transparent, rgba(22, 43, 38, 0.13), transparent);
  }

  :root:not([data-theme]) .stage-section::after {
    background:
      radial-gradient(ellipse at 50% 0%, rgba(22, 116, 93, 0.035), transparent 34rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 26%, transparent 74%, rgba(22, 43, 38, 0.018));
  }

  :root:not([data-theme]) .proof-strip {
    border-color: rgba(22, 43, 38, 0.12);
    background: rgba(22, 43, 38, 0.1);
    box-shadow: 0 18px 50px rgba(44, 62, 56, 0.1);
  }

  :root:not([data-theme]) .proof-strip span {
    background: rgba(255, 255, 255, 0.9);
  }

  :root:not([data-theme]) .dashboard-summary > div,
  :root:not([data-theme]) .hero-mini-card,
  :root:not([data-theme]) .control-metric,
  :root:not([data-theme]) .metrics-row div,
  :root:not([data-theme]) .timeline-card,
  :root:not([data-theme]) .mini-panel,
  :root:not([data-theme]) .brief-card,
  :root:not([data-theme]) .foundation-list li,
  :root:not([data-theme]) .detail-group,
  :root:not([data-theme]) .guarantee-card,
  :root:not([data-theme]) .bonus-grid article {
    border-color: rgba(22, 43, 38, 0.12);
    background: var(--surface-inset);
  }

  :root:not([data-theme]) .timeline-lane,
  :root:not([data-theme]) .leak-timeline,
  :root:not([data-theme]) .work-window-meter {
    background:
      linear-gradient(90deg, rgba(22, 43, 38, 0.075) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 242, 0.82)),
      #f8fbfa;
    background-size: 25% 100%, auto, auto;
  }

  :root:not([data-theme]) .window-bar {
    background: rgba(246, 250, 248, 0.88);
  }

  :root:not([data-theme]) .app-sidebar {
    background: rgba(239, 245, 242, 0.8);
  }

  :root:not([data-theme]) .focus-score strong,
  :root:not([data-theme]) .status-pill,
  :root:not([data-theme]) .plan-badge,
  :root:not([data-theme]) .policy-meta span,
  :root:not([data-theme]) .foundation-list li span {
    color: var(--accent-strong);
  }

  :root:not([data-theme]) .foundation-strip,
  :root:not([data-theme]) .progression-card,
  :root:not([data-theme]) .plan-details-accordion,
  :root:not([data-theme]) .plan-details-panel {
    border-color: rgba(22, 43, 38, 0.13);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
      var(--surface);
    box-shadow: 0 20px 58px rgba(44, 62, 56, 0.1);
  }

  :root:not([data-theme]) .coach-progression,
  :root:not([data-theme]) .pricing-card.coach-plan {
    border-color: rgba(49, 95, 159, 0.26);
    background:
      linear-gradient(180deg, rgba(49, 95, 159, 0.1), rgba(255, 255, 255, 0.88)),
      var(--surface);
    box-shadow: 0 22px 62px rgba(49, 95, 159, 0.1);
  }

  :root:not([data-theme]) .assistant-progression,
  :root:not([data-theme]) .pricing-card.assistant-plan {
    border-color: rgba(154, 100, 20, 0.24);
    background:
      linear-gradient(180deg, var(--amber-soft), rgba(255, 255, 255, 0.9)),
      var(--surface);
  }

  :root:not([data-theme]) .pricing-card.free-plan,
  :root:not([data-theme]) .pricing-card.featured,
  :root:not([data-theme]) .guarantee-card {
    border-color: rgba(22, 116, 93, 0.24);
    background:
      linear-gradient(180deg, var(--accent-soft), rgba(255, 255, 255, 0.9)),
      var(--surface);
  }

  :root:not([data-theme]) .trust-note {
    border-color: rgba(22, 116, 93, 0.16);
    background: rgba(22, 116, 93, 0.07);
  }

  :root:not([data-theme]) .detail-row {
    border-top-color: rgba(22, 43, 38, 0.1);
  }

  :root:not([data-theme]) .final-cta-inner {
    background:
      radial-gradient(ellipse 68% 64% at 50% 0%, rgba(22, 116, 93, 0.1), transparent 76%),
      rgba(255, 255, 255, 0.92);
  }
}

@keyframes block-grow {
  from {
    opacity: 0;
    transform: scaleX(0.15) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scaleX(1) translateY(0);
  }
}

@keyframes scan-lane {
  0% {
    left: 6%;
    opacity: 0;
  }

  16%, 82% {
    opacity: 1;
  }

  100% {
    left: 76%;
    opacity: 0.68;
  }
}

@keyframes meter-fill {
  from {
    transform: scaleX(0.05);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes leak-block-in {
  from {
    opacity: 0;
    transform: translateY(8px) scaleX(0.86);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes control-row-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes bar-pulse {
  0%, 100% {
    filter: brightness(0.88);
  }

  50% {
    filter: brightness(1.14);
  }
}

@keyframes coach-emphasis {
  0% {
    transform: translateY(0);
    box-shadow: 0 18px 54px rgba(143, 185, 255, 0.1);
  }

  45% {
    transform: translateY(-5px);
    box-shadow: 0 30px 90px rgba(143, 185, 255, 0.2);
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 26px 80px rgba(143, 185, 255, 0.14);
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-inner,
  .split-heading,
  .control-showcase,
  .story-stage,
  .offer-panel,
  .comparison-heading,
  .upgrade-panel,
  .trust-panel,
  .demo-grid,
  .tester-options,
  .checkbox-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-proof {
    justify-self: stretch;
    width: 100%;
  }

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

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

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

  .story-window .app-main {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .story-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

@media (max-width: 820px) {
  :root {
    --nav-height: 62px;
    --anchor-offset: 20px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 12px 18px;
  }

  .site-header nav,
  .nav-cta {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .hero {
    padding: 90px 18px 50px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(8, 10, 13, 0.82) 0%, rgba(8, 10, 13, 0.98) 68%),
      radial-gradient(ellipse at 80% 12%, rgba(143, 216, 189, 0.14), transparent 18rem),
      var(--bg);
    background-size: auto;
  }

  :root[data-theme="light"] .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(238, 243, 245, 0.78) 0%, rgba(238, 243, 245, 0.98) 68%),
      radial-gradient(ellipse at 80% 12%, rgba(38, 115, 95, 0.14), transparent 18rem),
      var(--bg);
    background-size: auto;
  }

  @media (prefers-color-scheme: light) {
    :root:not([data-theme]) .hero-backdrop {
      background:
        linear-gradient(180deg, rgba(238, 243, 245, 0.78) 0%, rgba(238, 243, 245, 0.98) 68%),
        radial-gradient(ellipse at 80% 12%, rgba(38, 115, 95, 0.14), transparent 18rem),
        var(--bg);
      background-size: auto;
    }
  }

  h1 {
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
  }

  .lede {
    font-size: 18px;
  }

  .hero-actions,
  .final-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-summary,
  .hero-dashboard-grid,
  .hero-dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .focus-score {
    place-items: start;
    text-align: left;
  }

  .button,
  .button.large {
    width: 100%;
    min-height: 50px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .pricing-quiz-callout {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .pricing-heading,
  .comparison-stage-heading {
    margin-bottom: 28px;
  }

  .pricing-section {
    padding-top: 76px;
    padding-bottom: 72px;
  }

  .plan-copy,
  .trust-note {
    min-height: 0;
  }

  .control-grid,
  .metrics-row,
  .outcome-grid,
  .how-grid,
  .pattern-events,
  .pricing-grid,
  .demo-grid.product-panel-grid,
  .demo-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .comparison-panel {
    padding: 18px;
  }

  .foundation-strip,
  .plan-details-accordion,
  .detail-row {
    grid-template-columns: 1fr;
  }

  .foundation-strip,
  .plan-details-accordion {
    padding: 20px;
  }

  .foundation-list,
  .plan-progression-grid {
    grid-template-columns: 1fr;
  }

  .progression-card p {
    min-height: 0;
  }

  .plan-details-toggle {
    width: 100%;
    min-width: 0;
  }

  .plan-details-panel {
    padding: 14px;
  }

  .plan-matrix-shell {
    border-radius: 8px;
  }

  .plan-matrix-scroll {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .plan-matrix {
    min-width: 760px;
  }

  .plan-matrix th,
  .plan-matrix td {
    padding: 14px 16px;
    font-size: 13px;
  }

  .plan-matrix thead th {
    position: static;
    top: auto;
  }

  .matrix-cta {
    min-width: 112px;
    padding: 8px 10px;
  }

  .detail-group {
    padding: 16px;
  }

  .detail-head {
    display: none;
  }

  .detail-row {
    gap: 0;
    padding: 12px 0;
  }

  .detail-row > span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
  }

  .detail-row > span:first-child {
    padding-top: 0;
  }

  .detail-row > span:not(:first-child)::before {
    content: attr(data-plan);
    flex: 0 0 auto;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 900;
  }

  .comparison-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .comparison-legend {
    justify-content: flex-start;
  }

  .comparison-table {
    gap: 10px;
  }

  .comparison-head {
    display: none;
  }

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

  .comparison-row > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-row > span:first-child {
    padding-top: 0;
  }

  .comparison-row > span:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .comparison-row > span:not(:first-child)::before {
    content: attr(data-plan);
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 900;
  }

  .product-visual {
    min-height: 0;
  }

  .story-steps {
    padding: 0;
  }

  .story-step,
  .story-step.is-active {
    opacity: 1;
    transform: none;
  }

  .pattern-board {
    padding: 20px;
  }

  .privacy-control-list {
    grid-template-columns: 1fr;
  }

  .offer-panel {
    padding: 22px;
  }

  .video-placeholder,
  .local-preview {
    grid-template-columns: 1fr;
  }

  .demo-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .founder-note-section,
  .section,
  .site-footer,
  .policy-main {
    width: calc(100% - 36px);
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .section {
    padding: 64px 0;
  }

  .stage-section {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .command-panel {
    padding: 14px;
  }

  .panel-topline {
    gap: 10px;
  }

  .panel-topline strong {
    display: none;
  }

  .timeline-lane {
    height: 112px;
  }

  .time-block {
    bottom: 18px;
    height: 58px;
  }

  .app-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-sidebar {
    display: none;
  }

  .app-main {
    padding: 14px;
  }

  .app-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    grid-row: auto;
  }

  .timeline-lane.tall {
    height: 116px;
  }

  .timeline-lane.tall .time-block {
    height: 58px;
  }

  .spike-marker {
    display: none;
  }

  .upgrade-panel,
  .trust-panel,
  .final-cta-inner {
    padding: 26px;
  }

  .plan-copy {
    min-height: 0;
  }

  .price {
    font-size: 42px;
  }

  .policy-main {
    padding: 90px 0 52px;
  }

  .policy-hero {
    padding: 18px 0 34px;
  }

  .policy-hero p {
    font-size: 17px;
  }

  .policy-summary {
    position: static;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .quiz-modal {
    padding: 14px;
  }

  .quiz-dialog {
    max-height: calc(100vh - 28px);
    padding: 26px 18px 18px;
  }

  .quiz-dialog h2 {
    padding-right: 30px;
    font-size: 30px;
  }

  .quiz-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero,
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .proof-strip,
  .founder-note-section,
  .section,
  .site-footer,
  .policy-main {
    width: calc(100% - 28px);
  }

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

  .control-metric,
  .outcome-card,
  .feature-card,
  .pricing-card,
  .progression-card,
  .product-visual {
    padding: 20px;
  }

  .comparison-legend span,
  .status-token,
  .best-for-pill {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .work-window-meter span,
  .leak-block,
  .product-visual .privacy-control-list li {
    opacity: 1 !important;
    transform: none !important;
  }

  .command-panel,
  .product-window {
    transform: none !important;
  }

  .story-window .app-main {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .story-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .story-step {
    opacity: 1;
    transform: none !important;
  }

  .pattern-fill {
    width: 100% !important;
  }

  #attention-canvas {
    display: none;
  }
}
