:root {
  --black: #0b0b0c;
  --black-soft: #111113;
  --graphite: #171719;
  --graphite-2: #202024;
  --ivory: #f3efe6;
  --ivory-soft: rgba(243, 239, 230, 0.72);
  --ivory-muted: rgba(243, 239, 230, 0.48);
  --ivory-faint: rgba(243, 239, 230, 0.12);
  --gold: #d9a441;
  --gold-light: #f0ca78;
  --gold-deep: #8d6120;
  --line: rgba(243, 239, 230, 0.1);
  --line-gold: rgba(217, 164, 65, 0.32);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --page: min(1400px, calc(100vw - 64px));
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background: var(--black);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--black);
  background: var(--gold-light);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-light);
  font: 600 12px/1 var(--mono);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(217, 164, 65, 0.025) 38.1% 38.2%, transparent 38.3%),
    linear-gradient(180deg, rgba(217, 164, 65, 0.055), transparent 30%);
}

.ambient-grain {
  position: absolute;
  inset: -40%;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: grain 10s steps(10) infinite;
}

.ambient-line {
  position: absolute;
  width: 1px;
  height: 150vh;
  background: linear-gradient(180deg, transparent, rgba(217, 164, 65, 0.15), transparent);
  transform: rotate(24deg);
  transform-origin: center;
}

.ambient-line-one {
  top: -20vh;
  left: 14vw;
}

.ambient-line-two {
  top: 10vh;
  right: 7vw;
  opacity: 0.52;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(3%, 3%); }
  80% { transform: translate(-2%, -2%); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: var(--page);
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  text-decoration: none;
  font: 600 16px/1 var(--display);
  letter-spacing: -0.01em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.15);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: var(--ivory-muted);
  text-decoration: none;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ivory);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 42px;
  padding: 0 16px;
  justify-self: end;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  color: var(--ivory);
  background: rgba(217, 164, 65, 0.05);
  cursor: pointer;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.header-cta span {
  margin-left: 9px;
  color: var(--gold-light);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-1px);
}

.header-cta:hover span,
.header-cta:focus-visible span {
  color: var(--black);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 144px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(44px, 7vw, 120px);
}

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

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold-light);
  font: 600 10px/1.2 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 3px 0;
  content: "";
  background: currentColor;
}

.hero h1,
.editorial h2,
.voice-copy h2,
.privacy-heading h2,
.scope-copy h2,
.walkthrough-copy h2,
.offer-heading h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(62px, 7.8vw, 124px);
  line-height: 0.89;
}

.hero h1 em,
.editorial h2 em,
.voice-copy h2 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 500;
}

.hero-lede {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--ivory-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 58px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.button:focus-visible,
.header-cta:focus-visible,
.modal-close:focus-visible,
.free-path button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.button-gold {
  min-width: 286px;
  color: #17110a;
  background: linear-gradient(115deg, #b77c27, var(--gold-light) 48%, #c68f39);
  box-shadow: 0 18px 46px -24px rgba(217, 164, 65, 0.8), inset 0 1px 0 rgba(255,255,255,0.35);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 24px 58px -22px rgba(217, 164, 65, 0.9), inset 0 1px 0 rgba(255,255,255,0.35);
}

.button-gold strong {
  font-weight: 700;
}

.button-quiet {
  min-width: 220px;
  color: var(--ivory-soft);
  border-color: var(--line);
  background: rgba(255,255,255,0.02);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--ivory);
  border-color: rgba(243, 239, 230, 0.24);
  background: rgba(255,255,255,0.04);
}

.release-note {
  max-width: 530px;
  margin: 18px 0 0;
  color: var(--ivory-muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero-object {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.88;
  justify-self: end;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  inset: 4%;
  border: 1px solid rgba(217, 164, 65, 0.12);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 11%;
  border: 1px dashed rgba(217, 164, 65, 0.13);
  animation: orbit 36s linear infinite;
}

.hero-orbit::after {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  box-shadow: 0 0 24px var(--gold);
  transform: translate(-50%, -50%) translateY(-41vw);
  transform-origin: center;
}

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

.instrument {
  position: relative;
  z-index: 2;
  width: min(84%, 410px);
  padding: 25px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 26px;
  background: linear-gradient(148deg, rgba(34, 32, 31, 0.97), rgba(15, 15, 16, 0.98));
  box-shadow: 0 42px 100px -38px rgba(0,0,0,0.95), 0 0 80px -45px rgba(217, 164, 65, 0.75), inset 0 1px 0 rgba(255,255,255,0.045);
  transform: rotate(-2.5deg);
}

.instrument::before {
  position: absolute;
  inset: 9px;
  content: "";
  border: 1px solid rgba(243, 239, 230, 0.045);
  border-radius: 19px;
  pointer-events: none;
}

.instrument-topline,
.memory-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory-muted);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instrument-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
}

.instrument-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}

.instrument-heading {
  margin: 54px 0 30px;
}

.instrument-heading span,
.instrument-heading strong {
  display: block;
  font-family: var(--display);
}

.instrument-heading span {
  color: var(--ivory-muted);
  font-size: 17px;
}

.instrument-heading strong {
  margin-top: 5px;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.instrument-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.instrument-scale span {
  height: 3px;
  border-radius: 10px;
  background: rgba(243,239,230,0.12);
}

.instrument-scale .active {
  background: var(--gold-light);
  box-shadow: 0 0 15px rgba(217, 164, 65, 0.7);
}

.instrument-entry {
  min-height: 73px;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.instrument-entry:first-of-type {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.instrument-entry span,
.instrument-entry strong {
  display: block;
}

.instrument-entry div span {
  margin-bottom: 6px;
  color: var(--ivory-muted);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instrument-entry strong {
  font-size: 13px;
  font-weight: 600;
}

.entry-mark {
  color: var(--gold-light);
  font: 500 10px/1 var(--mono);
}

.instrument-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory-muted);
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instrument-foot i {
  width: 15px;
  height: 1px;
  background: var(--line-gold);
}

.hero-caption {
  position: absolute;
  right: -2%;
  bottom: 6%;
  z-index: 3;
  width: 220px;
  padding: 17px 19px;
  border-left: 1px solid var(--gold);
  background: rgba(11, 11, 12, 0.75);
  backdrop-filter: blur(10px);
}

.hero-caption span {
  color: var(--gold-light);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.12em;
}

.hero-caption p {
  margin: 9px 0 0;
  color: var(--ivory-soft);
  font-size: 12px;
  line-height: 1.5;
}

.principles {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles.short-principles {
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  min-height: 126px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  color: var(--gold);
  font: 500 9px/1 var(--mono);
}

.principle p {
  margin: 0;
  font: 500 clamp(14px, 1.2vw, 17px)/1.3 var(--display);
  letter-spacing: -0.01em;
}

.essential-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 200px) 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(50px, 9vw, 140px);
}

.essential-heading h2 {
  margin: 0;
  font: 600 clamp(52px, 7vw, 104px)/0.91 var(--display);
  letter-spacing: -0.045em;
}

.essential-heading h2 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 500;
}

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

.essential-points > div {
  min-height: 104px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: start;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.essential-points span {
  color: var(--gold-light);
  font: 500 9px/1.5 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.essential-points p {
  margin: 0;
  color: var(--ivory-soft);
  font-size: 14px;
  line-height: 1.65;
}

.editorial,
.privacy-section,
.scope-section,
.walkthrough-section,
.offer-section,
.faq-section {
  width: var(--page);
  margin: 0 auto;
}

.editorial {
  padding: clamp(120px, 15vw, 230px) 0 70px;
}

.editorial-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  column-gap: 80px;
}

.editorial-intro .eyebrow {
  grid-column: 1 / -1;
}

.editorial h2,
.voice-copy h2 {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.94;
}

.section-lede {
  max-width: 520px;
  margin: 0 0 7px;
  color: var(--ivory-soft);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.7;
}

.chapters {
  margin-top: 110px;
}

.chapter {
  min-height: 610px;
  padding: 74px 0;
  display: grid;
  grid-template-columns: 84px minmax(280px, 0.72fr) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  border-top: 1px solid var(--line);
}

.chapter-number {
  align-self: start;
  color: var(--gold);
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.1em;
}

.chapter-copy {
  max-width: 510px;
}

.chapter-kicker {
  margin: 0 0 16px;
  color: var(--ivory-muted);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter h3 {
  margin: 0;
  font: 600 clamp(34px, 4vw, 58px)/1.02 var(--display);
  letter-spacing: -0.035em;
}

.chapter-copy > p:last-child {
  margin: 26px 0 0;
  color: var(--ivory-soft);
  font-size: 15px;
  line-height: 1.75;
}

.chapter-visual {
  width: 100%;
  max-width: 590px;
  justify-self: end;
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(31,29,29,0.86), rgba(16,16,17,0.96));
  box-shadow: 0 36px 90px -48px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.035);
}

.visual-choice {
  padding: clamp(28px, 4vw, 50px);
}

.visual-choice > span,
.visual-checkin > span {
  display: block;
  margin-bottom: 26px;
  font: 600 clamp(21px, 2.3vw, 31px)/1.1 var(--display);
  letter-spacing: -0.02em;
}

.choice {
  position: relative;
  min-height: 82px;
  padding: 18px 20px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
}

.choice + .choice {
  margin-top: 10px;
}

.choice i {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(243,239,230,0.25);
  border-radius: 50%;
  transform: translateY(-50%);
}

.choice.selected {
  border-color: rgba(217, 164, 65, 0.5);
  background: rgba(217, 164, 65, 0.06);
}

.choice.selected i {
  border-color: var(--gold-light);
  box-shadow: inset 0 0 0 4px #191716;
  background: var(--gold-light);
}

.choice strong,
.choice small {
  display: block;
}

.choice strong {
  font-size: 13px;
}

.choice small {
  margin-top: 5px;
  color: var(--ivory-muted);
  font-size: 11px;
}

.visual-checkin {
  padding: clamp(34px, 5vw, 64px);
  text-align: center;
}

.visual-checkin > span {
  margin-bottom: 10px;
  color: var(--ivory-muted);
}

.visual-checkin > strong {
  display: block;
  font: 600 clamp(40px, 5vw, 68px)/1 var(--display);
  letter-spacing: -0.04em;
}

.checkin-line {
  margin: 46px 0 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
}

.checkin-line i {
  height: 4px;
  border-radius: 10px;
  background: var(--ivory-faint);
}

.checkin-line .active {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(217,164,65,0.65);
}

.visual-checkin p {
  margin: 0;
  color: var(--ivory-muted);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-memory {
  padding: clamp(26px, 4vw, 45px);
}

.memory-label {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.memory-label span:last-child {
  color: var(--gold-light);
}

.memory-row {
  min-height: 86px;
  padding: 19px 0;
  display: grid;
  grid-template-columns: 9px 1fr;
  align-items: center;
  gap: 19px;
  border-bottom: 1px solid var(--line);
}

.memory-row > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(243,239,230,0.25);
}

.memory-row.current > i {
  background: var(--gold-light);
  box-shadow: 0 0 13px var(--gold);
}

.memory-row small,
.memory-row strong {
  display: block;
}

.memory-row small {
  margin-bottom: 6px;
  color: var(--ivory-muted);
  font-size: 10px;
}

.memory-row strong {
  font-size: 13px;
}

.voice-section {
  width: 100%;
  margin-top: 100px;
  padding: clamp(100px, 14vw, 210px) 32px;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  background:
    repeating-linear-gradient(112deg, transparent 0 48px, rgba(217, 164, 65, 0.025) 48px 49px),
    #0f0e0e;
}

.voice-stage {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.voice-copy > p:last-child {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--ivory-soft);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.75;
}

.voice-object {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.voice-ring {
  position: absolute;
  border: 1px solid rgba(217,164,65,0.2);
  border-radius: 50%;
}

.voice-ring-one {
  inset: 4%;
  animation: breathe 5s ease-in-out infinite;
}

.voice-ring-two {
  inset: 18%;
  animation: breathe 5s 0.7s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.98); opacity: 0.45; }
  50% { transform: scale(1.03); opacity: 1; }
}

.voice-core {
  position: relative;
  z-index: 2;
  width: 54%;
  aspect-ratio: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217,164,65,0.4);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(217,164,65,0.12), rgba(17,16,16,0.96) 68%);
  box-shadow: 0 0 80px -30px rgba(217,164,65,0.55), inset 0 0 50px rgba(217,164,65,0.04);
}

.waveform {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.waveform i {
  width: 3px;
  height: 20%;
  border-radius: 10px;
  background: var(--gold-light);
  animation: wave 1.3s ease-in-out infinite;
}

.waveform i:nth-child(2), .waveform i:nth-child(8) { animation-delay: -0.8s; }
.waveform i:nth-child(3), .waveform i:nth-child(7) { animation-delay: -0.4s; }
.waveform i:nth-child(4), .waveform i:nth-child(6) { animation-delay: -1s; }
.waveform i:nth-child(5) { animation-delay: -0.2s; }

@keyframes wave {
  0%, 100% { height: 18%; opacity: 0.5; }
  50% { height: 100%; opacity: 1; }
}

.voice-core span {
  margin-top: 20px;
  color: var(--ivory-soft);
  font-size: 11px;
  text-align: center;
}

.voice-object > p {
  position: absolute;
  bottom: 8%;
  margin: 0;
  color: var(--gold-light);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-section {
  padding: clamp(120px, 16vw, 240px) 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 160px);
}

.privacy-heading h2,
.scope-copy h2,
.walkthrough-copy h2,
.offer-heading h2,
.faq-heading h2 {
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 0.98;
}

.privacy-statement {
  align-self: end;
}

.privacy-statement > p {
  margin: 0;
  color: var(--ivory-soft);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.privacy-signature {
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.privacy-signature span {
  padding: 9px 12px;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  color: var(--gold-light);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scope-section {
  padding: 40px 0 clamp(120px, 15vw, 220px);
  display: grid;
  grid-template-columns: 120px 1fr 0.9fr;
  gap: clamp(40px, 7vw, 100px);
}

.scope-line {
  position: relative;
  min-height: 460px;
  border-left: 1px solid var(--line-gold);
}

.scope-line span {
  position: absolute;
  top: 0;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold);
}

.scope-copy > p:last-child,
.walkthrough-copy > p,
.offer-heading > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ivory-soft);
  font-size: 16px;
  line-height: 1.75;
}

.scope-index {
  align-self: end;
}

.scope-index > div {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.scope-index span {
  font: 500 clamp(17px, 1.5vw, 21px)/1 var(--display);
}

.scope-index small {
  color: var(--ivory-muted);
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.walkthrough-section {
  padding: clamp(100px, 14vw, 200px) 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.compact-walkthrough {
  padding-top: clamp(90px, 10vw, 140px);
  padding-bottom: clamp(90px, 10vw, 140px);
}

.walkthrough-device {
  position: relative;
  padding: 72px 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(217,164,65,0.15);
  background:
    repeating-linear-gradient(115deg, transparent 0 44px, rgba(217,164,65,0.028) 44px 45px),
    rgba(17,17,19,0.66);
}

.demo-prompt {
  min-height: 42px;
  margin: -44px 0 25px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(217, 164, 65, 0.44);
  border-radius: 100px;
  color: var(--ivory);
  background: rgba(217, 164, 65, 0.09);
  box-shadow: 0 12px 35px -20px rgba(217, 164, 65, 0.85);
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-prompt-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(240, 202, 120, 0.55);
  animation: demo-pulse 2s ease-out infinite;
}

.demo-prompt > span:not(.demo-prompt-dot, .demo-prompt-arrow) {
  color: var(--ivory-muted);
  font-weight: 500;
}

.demo-prompt-arrow {
  color: var(--gold-light);
  font-size: 14px;
}

@keyframes demo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 202, 120, 0.55); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(240, 202, 120, 0); }
}

.device-frame {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 402 / 874;
  overflow: hidden;
  border: 7px solid #050505;
  border-radius: 46px;
  background: #050505;
  box-shadow: 0 46px 100px -30px rgba(0,0,0,0.95), 0 0 0 1px rgba(255,255,255,0.09), 0 0 90px -34px rgba(217,164,65,0.5);
}

.device-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}

.device-island {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 31%;
  height: 28px;
  border-radius: 100px;
  background: #000;
  transform: translateX(-50%);
  pointer-events: none;
}

.walkthrough-device > p {
  margin: 23px 0 0;
  color: var(--ivory-muted);
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-section {
  position: relative;
  padding: clamp(110px, 16vw, 230px) 0;
  text-align: center;
  border-top: 1px solid var(--line-gold);
}

.compact-offer {
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(100px, 12vw, 170px);
}

.offer-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74%;
  aspect-ratio: 1.8;
  border: 1px solid rgba(217,164,65,0.1);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(217,164,65,0.06), inset 0 0 120px rgba(217,164,65,0.025);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.offer-heading {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.offer-heading .eyebrow::before,
.faq-heading .eyebrow::before {
  display: none;
}

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

.offer-card {
  position: relative;
  width: min(840px, 100%);
  margin: 70px auto 0;
  padding: clamp(30px, 5vw, 66px);
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 48px;
  border: 1px solid rgba(217,164,65,0.38);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(43,35,24,0.4), rgba(16,16,17,0.96) 47%);
  box-shadow: 0 50px 130px -58px rgba(217,164,65,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
  text-align: left;
}

.offer-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  content: "";
  border: 1px solid rgba(243,239,230,0.035);
  border-radius: 16px;
  pointer-events: none;
}

.offer-availability {
  position: absolute;
  top: -15px;
  left: 50%;
  min-height: 30px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  color: var(--gold-light);
  background: #121214;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  font: 600 8px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.offer-availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(240,202,120,0.8);
}

.offer-price {
  padding-right: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-gold);
}

.offer-price span,
.offer-price small {
  color: var(--ivory-muted);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-price strong {
  margin: 13px 0 16px;
  color: var(--gold-light);
  font: 600 clamp(86px, 10vw, 128px)/0.75 var(--display);
  letter-spacing: -0.08em;
}

.offer-price sup {
  position: relative;
  top: -0.3em;
  margin-right: 5px;
  font-size: 0.32em;
  letter-spacing: 0;
}

.offer-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-benefits li {
  min-height: 54px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ivory-soft);
  font-size: 13px;
  line-height: 1.4;
}

.offer-benefits span {
  color: var(--gold);
  font: 500 9px/1 var(--mono);
}

.offer-button,
.offer-fineprint {
  grid-column: 1 / -1;
}

.offer-button {
  width: 100%;
  margin-top: 3px;
}

.offer-fineprint {
  margin: -26px 0 0;
  color: var(--ivory-muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.free-path {
  position: relative;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--ivory-muted);
  font-size: 12px;
}

.free-path p {
  margin: 0;
}

.free-path button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.faq-section {
  padding: 80px 0 clamp(120px, 15vw, 220px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 10vw, 150px);
}

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

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

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--ivory-soft);
  font: 500 clamp(15px, 1.4vw, 18px)/1.4 var(--display);
  list-style: none;
  transition: color 0.25s ease;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary {
  color: var(--ivory);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 670px;
  margin: -5px 0 30px;
  color: var(--ivory-muted);
  font-size: 13px;
  line-height: 1.75;
}

.site-footer {
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  padding: 35px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  margin: 0;
  color: var(--ivory-muted);
  font-size: 10px;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--ivory-muted);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.access-modal {
  width: min(560px, calc(100vw - 28px));
  max-height: min(760px, calc(100svh - 28px));
  padding: clamp(30px, 5vw, 54px);
  overflow: auto;
  border: 1px solid rgba(217,164,65,0.4);
  border-radius: 22px;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(217,164,65,0.08), transparent 34%),
    #121214;
  box-shadow: 0 40px 120px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.05);
}

.access-modal::backdrop {
  background: rgba(3,3,4,0.82);
  backdrop-filter: blur(9px);
}

.access-modal[open] {
  animation: modal-in 0.35s var(--ease);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory-muted);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.modal-kicker {
  margin-bottom: 18px;
  color: var(--gold-light);
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.access-modal h2 {
  max-width: 430px;
  margin: 0;
  font: 600 clamp(37px, 7vw, 57px)/0.98 var(--display);
  letter-spacing: -0.04em;
}

.modal-intro {
  margin: 21px 0 0;
  color: var(--ivory-soft);
  font-size: 13px;
  line-height: 1.7;
}

.access-form {
  margin-top: 34px;
}

.access-form > label:first-child {
  display: block;
}

.access-form label > span:first-child {
  display: block;
  margin-bottom: 9px;
  color: var(--ivory-muted);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-form input[type="email"] {
  width: 100%;
  height: 58px;
  padding: 0 17px;
  border: 1px solid rgba(243,239,230,0.16);
  border-radius: 10px;
  outline: none;
  color: var(--ivory);
  background: rgba(255,255,255,0.035);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.access-form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,164,65,0.1);
}

.access-form input::placeholder {
  color: rgba(243,239,230,0.28);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent-row > span:last-child {
  color: var(--ivory-muted);
  font-size: 10px;
  line-height: 1.6;
}

.consent-row a {
  color: var(--ivory-soft);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--gold-light);
  font-size: 10px;
  line-height: 1.5;
}

.form-status.is-error {
  color: #eaa7a0;
}

.modal-foot {
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ivory-muted);
  font-size: 9px;
  line-height: 1.6;
}

.status-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  max-width: min(420px, calc(100vw - 40px));
  padding: 16px 18px;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  color: var(--ivory);
  background: rgba(18,18,20,0.96);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 42px, 1000px);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(60px, 8.5vw, 96px);
  }

  .chapter {
    grid-template-columns: 50px minmax(250px, 0.8fr) minmax(340px, 1fr);
    gap: 30px;
  }

  .scope-section {
    grid-template-columns: 60px 1fr 0.8fr;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(100% - 32px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 134px;
    grid-template-columns: 1fr;
  }

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

  .hero-object {
    width: min(100%, 570px);
    margin-top: 40px;
    justify-self: center;
  }

  .hero-caption {
    right: 1%;
  }

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

  .principle:nth-child(2) {
    border-right: 0;
  }

  .principle:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .editorial-intro,
  .essential-section,
  .privacy-section,
  .voice-stage,
  .walkthrough-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-lede {
    margin-top: 28px;
  }

  .essential-points {
    margin-top: 24px;
  }

  .chapter {
    min-height: 0;
    grid-template-columns: 38px 1fr;
  }

  .chapter-number {
    grid-row: 1 / 3;
  }

  .chapter-visual {
    grid-column: 2;
    margin-top: 18px;
    justify-self: start;
  }

  .voice-object {
    width: min(100%, 560px);
    justify-self: center;
  }

  .privacy-statement {
    max-width: 680px;
  }

  .scope-section {
    grid-template-columns: 34px 1fr;
  }

  .scope-line {
    grid-row: 1 / 3;
  }

  .scope-index {
    grid-column: 2;
    width: 100%;
  }

  .walkthrough-copy {
    max-width: 650px;
  }

  .walkthrough-device {
    width: 100%;
  }

  .faq-heading {
    max-width: 540px;
  }

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

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 24px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 64px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

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

  .header-cta span {
    margin-left: 6px;
  }

  .hero {
    padding: 112px 0 54px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(53px, 17vw, 76px);
    line-height: 0.9;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.7;
  }

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

  .button {
    width: 100%;
    min-width: 0;
    min-height: 55px;
  }

  .hero-object {
    min-height: 500px;
    aspect-ratio: auto;
    margin-top: 24px;
  }

  .hero-orbit {
    inset: 4% -20%;
  }

  .instrument {
    width: 92%;
    padding: 21px;
  }

  .instrument-heading {
    margin: 44px 0 24px;
  }

  .hero-caption {
    right: 0;
    bottom: -1%;
    width: 190px;
  }

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

  .principles.short-principles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .editorial {
    padding-top: 105px;
  }

  .essential-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .essential-heading h2 {
    font-size: clamp(48px, 14.5vw, 66px);
  }

  .essential-points > div {
    grid-template-columns: 70px 1fr;
  }

  .editorial h2,
  .voice-copy h2 {
    font-size: clamp(48px, 14.5vw, 66px);
  }

  .chapters {
    margin-top: 70px;
  }

  .chapter {
    padding: 56px 0;
    grid-template-columns: 26px 1fr;
    gap: 16px;
  }

  .chapter h3 {
    font-size: 35px;
  }

  .chapter-copy > p:last-child {
    margin-top: 20px;
    font-size: 13px;
  }

  .chapter-visual {
    border-radius: 18px;
  }

  .voice-section {
    margin-top: 50px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .voice-object {
    min-height: 410px;
    aspect-ratio: auto;
  }

  .voice-core {
    width: 58%;
    padding: 22px;
  }

  .privacy-heading h2,
  .scope-copy h2,
  .walkthrough-copy h2,
  .offer-heading h2,
  .faq-heading h2 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .privacy-section {
    padding-top: 110px;
    padding-bottom: 110px;
    gap: 48px;
  }

  .privacy-statement > p {
    font-size: 18px;
  }

  .scope-section {
    grid-template-columns: 16px 1fr;
    gap: 22px;
  }

  .scope-line {
    min-height: 630px;
  }

  .scope-copy > p:last-child,
  .walkthrough-copy > p,
  .offer-heading > p {
    font-size: 13px;
  }

  .walkthrough-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .walkthrough-device {
    padding: 44px 12px 22px;
  }

  .demo-prompt {
    margin: -20px 0 22px;
    padding: 10px 13px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.35;
  }

  .device-frame {
    width: min(310px, 100%);
    border-radius: 39px;
  }

  .offer-section {
    padding-top: 110px;
    padding-bottom: 120px;
  }

  .offer-card {
    margin-top: 50px;
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offer-price {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line-gold);
  }

  .offer-price strong {
    font-size: 100px;
  }

  .offer-button,
  .offer-fineprint {
    grid-column: 1;
  }

  .offer-fineprint {
    margin-top: -18px;
  }

  .free-path {
    flex-direction: column;
    gap: 9px;
  }

  .faq-section {
    padding-top: 40px;
    gap: 50px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 14px;
  }

  .site-footer {
    min-height: 190px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .access-modal {
    padding: 46px 22px 28px;
    border-radius: 17px;
  }

  .status-toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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