@charset "UTF-8";

:root {
  --ink: #0d0d0d;
  --ink-soft: #171716;
  --paper: #f8f5ee;
  --cream: #efe8db;
  --white: #ffffff;
  --line: rgba(13, 13, 13, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #6f6b64;
  --muted-light: #b8b3aa;
  --accent: #e85d45;
  --accent-dark: #c84833;
  --gold: #c8ad7f;
  --success: #7dc493;
  --warning: #e7a85c;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(16, 14, 11, 0.14);
  --shell: min(1180px, calc(100% - 40px));
  --font-display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--font-display);
  font-stretch: condensed;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 16px;
  color: var(--paper);
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--paper);
  background: rgba(13, 13, 13, 0.9);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted-light);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav > a:not(.button) {
  color: rgba(248, 245, 238, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 40px rgba(232, 93, 69, 0.28);
}

.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 20px 50px rgba(232, 93, 69, 0.36);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.78rem;
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(232, 93, 69, 0.09), transparent 45%),
    radial-gradient(circle at 86% 26%, rgba(200, 173, 127, 0.16), transparent 27%),
    var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  top: -260px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 69, 0.2), transparent 66%);
  filter: blur(12px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 110px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  padding-block: 80px 92px;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(232, 93, 69, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 7.2vw, 7.8rem);
  line-height: 0.88;
}

.hero h1 em {
  display: inline-block;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(248, 245, 238, 0.75);
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.trust-row div {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding-right: 20px;
}

.trust-row div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line-light);
}

.trust-row strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.trust-row span {
  color: var(--muted-light);
  font-size: 0.76rem;
}

.app-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 440px;
  height: 440px;
  border-style: dashed;
  animation: orbitSpin 30s linear infinite;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.app-window {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  overflow: hidden;
  background: #f3efe8;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.45);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
}

.window-top {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  color: rgba(248, 245, 238, 0.78);
  background: #171716;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

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

.window-dots i {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
}

.window-status {
  justify-self: end;
  color: var(--success);
}

.app-layout {
  min-height: 460px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  color: var(--paper);
  background: #171716;
}

.side-logo {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 900;
}

.app-sidebar span {
  width: 19px;
  height: 5px;
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
}

.app-sidebar span.active {
  background: var(--accent);
}

.app-content {
  padding: 30px;
}

.app-kicker,
.progress-card small,
.module-card small,
.coach-card small {
  color: #8b847a;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.app-title {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.progress-card {
  margin-top: 26px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(13,13,13,0.09);
  border-radius: 16px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.74rem;
}

.progress-head strong {
  color: var(--accent);
}

.progress-track {
  height: 7px;
  overflow: hidden;
  margin-bottom: 9px;
  background: #e8e2d8;
  border-radius: 999px;
}

.progress-track span {
  width: 42%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--accent), #f2916f);
  border-radius: inherit;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 13px;
}

.module-card {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  background: #e7e0d4;
  border-radius: 15px;
}

.module-card.current {
  color: var(--paper);
  background: #171716;
}

.module-card.current small {
  color: #cfcbc4;
}

.module-card strong {
  font-size: 0.82rem;
}

.module-card span {
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
}

.coach-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 13px;
  padding: 15px;
  color: var(--paper);
  background: var(--accent);
  border-radius: 15px;
}

.coach-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
}

.coach-card div:last-child {
  display: grid;
  gap: 3px;
}

.coach-card small {
  color: rgba(255,255,255,0.7);
}

.coach-card strong {
  font-size: 0.73rem;
  line-height: 1.35;
}

.coach-card span {
  font-size: 0.58rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(248,245,238,0.96);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
}

.floating-card > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.floating-card div {
  display: grid;
  line-height: 1.12;
}

.floating-card strong {
  font-size: 0.7rem;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.58rem;
}

.floating-left {
  left: 0;
  bottom: 120px;
}

.floating-right {
  right: -10px;
  top: 105px;
}

.hero-foot {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
}

.hero-foot p {
  margin: 0;
  color: rgba(248,245,238,0.47);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(92px, 11vw, 150px) 0;
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-ink {
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 20%, rgba(232,93,69,0.12), transparent 30%),
    var(--ink-soft);
}

.section-intro {
  margin-bottom: 58px;
}

.section-intro.narrow {
  max-width: 760px;
}

.section-intro.center {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-intro.center .section-label {
  justify-content: center;
}

.section-number {
  display: inline-flex;
  min-width: 40px;
  margin-bottom: 18px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.section-number.inverse {
  color: var(--paper);
}

.section-label {
  margin-bottom: 18px;
}

.section-label.inverse {
  color: var(--accent);
}

.section h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.6vw, 6.1rem);
  line-height: 0.91;
}

.section-intro > p:last-child,
.split-copy > p,
.outcome-intro > p,
.faq-intro > p {
  max-width: 730px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-ink .split-copy > p,
.ai-section p {
  color: rgba(248,245,238,0.66);
}

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

.problem-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,93,69,0.38);
  box-shadow: var(--shadow);
}

.problem-card > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.problem-card h3 {
  margin: auto 0 18px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.62;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--paper);
  font-weight: 900;
  border-bottom: 1px solid rgba(248,245,238,0.3);
}

.text-link span {
  color: var(--accent);
}

.transformation {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.transform-head,
.transform-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 10px;
  align-items: center;
}

.transform-head {
  min-height: 56px;
  padding: 0 24px;
  color: var(--muted-light);
  background: rgba(255,255,255,0.035);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.transform-head span:last-child {
  grid-column: 3;
}

.transform-row {
  min-height: 100px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-light);
}

.transform-row:last-child {
  border-bottom: 0;
}

.transform-row p {
  margin: 0;
  color: rgba(248,245,238,0.68);
  font-size: 0.9rem;
}

.transform-row p:last-child {
  color: var(--paper);
  font-weight: 800;
}

.transform-row i {
  color: var(--accent);
  font-style: normal;
  text-align: center;
}

.phase-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.38);
}

.phase-card {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.phase-card:last-child {
  border-bottom: 0;
}

.phase-card:hover {
  background: rgba(255,255,255,0.78);
}

.phase-no {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.phase-kicker {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.phase-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.phase-card div:nth-child(2) > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.phase-tag {
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(13,13,13,0.06);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.included-grid article {
  min-height: 255px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.included-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 900;
}

.included-grid h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.included-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-section {
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(125deg, rgba(232,93,69,0.12), transparent 44%),
    #111110;
}

.ai-section::after {
  position: absolute;
  width: 540px;
  height: 540px;
  right: -180px;
  top: -140px;
  content: "";
  background: radial-gradient(circle, rgba(232,93,69,0.18), transparent 70%);
  border-radius: 50%;
}

.ai-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 8vw, 115px);
}

.ai-panel {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.ai-panel-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 18px;
  color: var(--paper);
  background: #191918;
}

.ai-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.ai-panel-top div {
  display: grid;
}

.ai-panel-top strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.ai-panel-top small {
  margin-top: 3px;
  color: var(--muted-light);
  font-size: 0.58rem;
}

.live-dot {
  color: var(--success);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.score-row div {
  display: flex;
  justify-content: space-between;
  padding: 13px 17px;
  background: var(--white);
  font-size: 0.7rem;
}

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

.score-row strong {
  color: #39834d;
}

.score-row .score-warn {
  color: #bd6d25;
}

.feedback-box,
.correction-box {
  margin: 16px;
  padding: 18px;
  border-radius: 15px;
}

.feedback-box {
  background: #eee7db;
}

.correction-box {
  color: var(--paper);
  background: var(--accent);
}

.feedback-box small,
.correction-box small {
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.feedback-box p,
.correction-box p {
  margin: 8px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.feedback-box p {
  color: var(--ink);
}

.correction-box p {
  color: var(--white);
}

.ai-copy h2 {
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
}

.ai-copy > p {
  font-size: 1rem;
  line-height: 1.72;
}

.ai-steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.ai-steps > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.ai-steps > div > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 900;
}

.ai-steps p {
  margin: 0;
  font-size: 0.86rem;
}

.ai-steps strong {
  color: var(--paper);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
}

.outcome-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.outcome-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.outcome-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.outcome-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}

.outcome-list p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.audience-card {
  padding: 32px;
  border-radius: var(--radius);
}

.audience-card.yes {
  color: var(--paper);
  background: var(--ink);
}

.audience-card.no {
  background: var(--cream);
  border: 1px solid var(--line);
}

.audience-label {
  margin-bottom: 24px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.yes .audience-label {
  color: var(--accent);
}

.audience-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
}

.audience-card li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 900;
}

.yes li::before {
  content: "✓";
  color: var(--accent);
}

.no li::before {
  content: "×";
  color: var(--muted);
}

.price-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.price-glow {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  bottom: -390px;
  background: radial-gradient(circle, rgba(232,93,69,0.25), transparent 67%);
  border-radius: 50%;
}

.price-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 30px;
  background: rgba(255,255,255,0.035);
  box-shadow: 0 36px 100px rgba(0,0,0,0.26);
}

.price-copy {
  padding: clamp(36px, 6vw, 74px);
}

.price-copy h2 {
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.price-copy > p {
  max-width: 650px;
  color: rgba(248,245,238,0.65);
  font-size: 1rem;
}

.price-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 30px;
}

.price-benefits span {
  color: rgba(248,245,238,0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-box {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 70px);
  color: var(--ink);
  background: var(--paper);
}

.price-box > small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.price {
  margin: 5px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 8vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price span {
  font-size: 0.42em;
  letter-spacing: -0.03em;
}

.price-box > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-note > span {
  font-size: 0.82rem;
}

.price-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: 0.96rem;
  font-weight: 850;
}

.faq-item button i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.faq-item button[aria-expanded="true"] i {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 24px;
}

.final-cta {
  padding: clamp(78px, 10vw, 130px) 0;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(232,93,69,0.22), transparent 45%),
    #151514;
}

.final-cta-inner {
  text-align: center;
}

.final-cta .section-label {
  justify-content: center;
}

.final-cta h2 {
  max-width: 940px;
  margin: 0 auto 17px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.5vw, 7.2rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.final-cta p:not(.section-label) {
  margin-bottom: 30px;
  color: var(--muted-light);
  font-size: 1rem;
}

.site-footer {
  color: var(--paper);
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: 44px;
  padding-block: 68px;
}

.footer-logo .brand-mark {
  color: var(--paper);
  background: var(--accent);
}

.footer-brand > p {
  margin: 24px 0 6px;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.footer-claim {
  color: var(--paper);
  font-size: 0.8rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--muted-light);
  font-size: 0.78rem;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-small {
  margin-top: 8px;
  color: #77736d;
  font-size: 0.65rem;
  line-height: 1.5;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: #77736d;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.67rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-buy-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 32px, 920px);
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav > a:not(.button) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

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

  .app-stage {
    min-height: 570px;
  }

  .app-window {
    width: min(86%, 660px);
  }

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

  .split-grid,
  .ai-grid,
  .outcome-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .outcome-intro,
  .faq-intro {
    position: static;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 680px);
    --radius: 20px;
  }

  body {
    padding-bottom: 72px;
  }

  .announcement {
    min-height: 32px;
    gap: 6px;
    font-size: 0.61rem;
    letter-spacing: 0.07em;
  }

  .nav-wrap {
    min-height: 66px;
  }

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

  .brand-copy small {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 98px 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px;
    color: var(--paper);
    background: rgba(13,13,13,0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 1rem;
  }

  .primary-nav .button {
    margin-top: 24px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 62px 65px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    margin-top: 35px;
  }

  .trust-row strong {
    font-size: 1.35rem;
  }

  .trust-row span {
    font-size: 0.64rem;
  }

  .trust-row div {
    padding-right: 10px;
  }

  .trust-row div + div {
    padding-left: 10px;
  }

  .app-stage {
    min-height: 490px;
    margin-top: 5px;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    width: 350px;
    height: 350px;
  }

  .app-window {
    width: 96%;
    transform: none;
  }

  .app-layout {
    min-height: 405px;
    grid-template-columns: 46px 1fr;
  }

  .app-sidebar {
    gap: 14px;
  }

  .app-content {
    padding: 22px 16px;
  }

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

  .module-card {
    min-height: 82px;
  }

  .floating-card {
    display: none;
  }

  .hero-foot p {
    font-size: 0.58rem;
  }

  .section {
    padding: 82px 0;
  }

  .section h2,
  .ai-copy h2,
  .price-copy h2,
  .faq-intro h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .problem-grid,
  .included-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 235px;
  }

  .split-grid,
  .ai-grid {
    gap: 50px;
  }

  .transform-head,
  .transform-row {
    grid-template-columns: 1fr 28px 1fr;
  }

  .transform-row {
    min-height: 120px;
    padding-inline: 15px;
  }

  .transform-row p {
    font-size: 0.78rem;
  }

  .phase-card {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 24px 18px;
  }

  .phase-tag {
    grid-column: 2;
    justify-self: start;
  }

  .phase-no {
    font-size: 2.1rem;
  }

  .phase-card h3 {
    font-size: 1.45rem;
  }

  .ai-panel-top {
    grid-template-columns: auto 1fr;
  }

  .live-dot {
    display: none;
  }

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

  .outcome-grid {
    gap: 40px;
  }

  .price-card {
    grid-template-columns: 1fr;
  }

  .price-copy,
  .price-box {
    padding: 34px 24px;
  }

  .price-benefits {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 5.8rem;
  }

  .faq-grid {
    gap: 35px;
  }

  .faq-item button {
    min-height: 72px;
  }

  .final-cta h2 {
    font-size: clamp(3.3rem, 15vw, 5.3rem);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
    padding-block: 54px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    color: var(--paper);
    background: rgba(13,13,13,0.96);
    border-top: 1px solid var(--line-light);
    box-shadow: 0 -12px 36px rgba(0,0,0,0.22);
    backdrop-filter: blur(18px);
  }

  .mobile-buy-bar > div {
    display: grid;
    line-height: 1.15;
  }

  .mobile-buy-bar strong {
    font-size: 0.72rem;
  }

  .mobile-buy-bar span {
    margin-top: 4px;
    color: var(--muted-light);
    font-size: 0.63rem;
  }

  .mobile-buy-bar > a {
    padding: 11px 14px;
    color: var(--white);
    background: var(--accent);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
  }
}

@media (max-width: 420px) {
  .announcement span:nth-of-type(3),
  .announcement span:nth-of-type(4),
  .announcement span:nth-of-type(5) {
    display: none;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .app-stage {
    min-height: 450px;
  }

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

  .window-top > span:nth-of-type(1) {
    display: none;
  }

  .app-title {
    font-size: 1.55rem;
  }

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

  .trust-row div {
    min-height: 48px;
    padding: 0;
  }

  .trust-row div + div {
    padding: 10px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .transform-head {
    display: none;
  }

  .transform-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .transform-row i {
    text-align: left;
    transform: rotate(90deg);
    transform-origin: left center;
  }

  .price {
    font-size: 5rem;
  }

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto;
  }
}

@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;
  }
}
