@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/Manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/Manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/Manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
  src: url("./fonts/Manrope-800.ttf") format("truetype");
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/Unbounded-700.ttf") format("truetype");
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./fonts/Unbounded-800.ttf") format("truetype");
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./fonts/Unbounded-900.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --ink: #ffedd7;
  --muted: rgba(255, 237, 215, 0.68);
  --soft: rgba(255, 237, 215, 0.1);
  --line: rgba(255, 237, 215, 0.18);
  --night: #070d0b;
  --forest: #19372b;
  --gold: #d9b45f;
  --mint: #c7bd88;
  --sage: #aeb99a;
  --coral: #e47a63;
  --paper: #ffedd7;
  --charcoal: #10170f;
  --progress: 0;
  --stage-light: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.landing {
  min-height: 100vh;
}

.cinematic {
  position: relative;
  height: 560vh;
  min-height: 3400px;
  background: var(--night);
}

.stage {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(7, 11, 9, 0.12), rgba(7, 11, 9, 0.88)),
    var(--night);
}

#system-map,
.noise,
.stage-shade {
  position: absolute;
  inset: 0;
}

#system-map {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.noise {
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.08) 0 1px, transparent 1px 5px);
}

.stage-shade {
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 56% 42%, rgba(217, 180, 95, 0.18), transparent 32%),
    radial-gradient(circle at 32% 58%, rgba(174, 185, 154, 0.13), transparent 35%),
    linear-gradient(90deg, rgba(7, 11, 9, 0.82), transparent 26%, transparent 76%, rgba(7, 11, 9, 0.76)),
    linear-gradient(180deg, rgba(7, 11, 9, 0.6), transparent 44%, rgba(7, 11, 9, 0.72));
}

.topbar {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: clamp(18px, 3vw, 34px) clamp(18px, 4vw, 58px);
  pointer-events: none;
}

section[id] {
  scroll-margin-top: 110px;
}

.brand,
.nav,
.top-cta {
  min-height: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  pointer-events: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(243, 236, 210, 0.09);
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(243, 236, 210, 0.12);
  border-radius: 999px;
  background: rgba(7, 11, 9, 0.34);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.nav a,
.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.nav a {
  padding: 0 14px;
  color: rgba(243, 236, 210, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(243, 236, 210, 0.08);
}

.nav a.is-active {
  color: #11160f;
  background: var(--paper);
}

.top-cta {
  justify-self: end;
  padding: 0 18px;
  border: 1px solid rgba(243, 236, 210, 0.24);
  background: rgba(243, 236, 210, 0.9);
  color: #121710;
  font-size: 0.82rem;
  font-weight: 900;
  pointer-events: auto;
}

.scroll-rail {
  position: absolute;
  z-index: 8;
  left: clamp(18px, 4vw, 56px);
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateY(-50%);
}

.rail-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 236, 210, 0.2);
  border-radius: 999px;
  background: rgba(7, 11, 9, 0.28);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.rail-button:hover {
  border-color: rgba(243, 236, 210, 0.65);
}

.caret-up {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid currentColor;
  transform: translateY(-1px);
}

.stack-lines,
.stack-lines::before,
.stack-lines::after {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.stack-lines::before,
.stack-lines::after {
  content: "";
}

.stack-lines::before {
  transform: translateY(-5px);
}

.stack-lines::after {
  transform: translateY(3px);
}

.rail-line {
  position: relative;
  width: 2px;
  height: min(21vh, 142px);
  min-height: 94px;
  background: rgba(243, 236, 210, 0.28);
}

.rail-line span {
  position: absolute;
  left: 50%;
  top: calc(var(--progress) * (100% - 24px));
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(217, 180, 95, 0.72);
  transform: translateX(-50%);
}

.hero {
  position: absolute;
  z-index: 7;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: start;
  width: min(1160px, calc(100vw - 160px));
  margin-inline: auto;
  padding: 10vh 0 9vh;
  opacity: calc(1 - min(var(--progress) * 3.2, 0.92));
  transform: translateY(calc(var(--progress) * -7vh));
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--sage);
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1160px;
  margin: 0;
  color: var(--ink);
  font-family: Unbounded, Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.8rem, 7.6vw, 9.8rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 16px 60px rgba(0, 0, 0, 0.52),
    0 0 1px rgba(243, 236, 210, 0.5);
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) scaleY(1.15);
  animation: rise 620ms cubic-bezier(0.17, 0.84, 0.26, 1) forwards;
  animation-delay: calc(var(--i) * 16ms + 60ms);
}

.word {
  display: inline-block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(243, 236, 210, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  border: 1px solid rgba(239, 230, 196, 0.8);
  background: var(--paper);
  color: #15190f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.button-ghost {
  border: 1px solid rgba(243, 236, 210, 0.22);
  background: rgba(243, 236, 210, 0.08);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 42px 0 0;
  border: 1px solid rgba(243, 236, 210, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 11, 9, 0.34);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  padding: 18px 20px;
  background: rgba(243, 236, 210, 0.045);
}

.hero-stats dt {
  color: var(--gold);
  font-family: Unbounded, Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.3vw, 3.25rem);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.narrative {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.story-card {
  position: absolute;
  width: min(390px, 82vw);
  padding: 22px;
  border: 1px solid rgba(243, 236, 210, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(26, 31, 22, 0.88), rgba(9, 13, 9, 0.68)),
    rgba(16, 21, 16, 0.72);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(243, 236, 210, 0.08);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
}

.story-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 420ms ease, transform 420ms ease;
}

.card-index {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.story-card h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.62rem);
  line-height: 1.15;
}

.story-card p {
  margin: 0;
  color: rgba(243, 236, 210, 0.78);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.42;
}

.story-card-a {
  bottom: 12vh;
  left: clamp(82px, 12vw, 170px);
}

.story-card-b {
  top: 44vh;
  right: clamp(28px, 9vw, 130px);
}

.story-card-c {
  bottom: 10vh;
  left: clamp(76px, 14vw, 190px);
}

.story-card-d {
  top: 14vh;
  right: clamp(28px, 10vw, 150px);
}

.below {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(74px, 10vw, 140px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 180, 95, 0.24), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(174, 185, 154, 0.34), transparent 32%),
    linear-gradient(180deg, rgba(7, 11, 9, 0.94) 0, #101510 150px, #efe6c4 151px, #efe6c4 100%);
  color: #11160f;
}

.case-builder {
  padding-top: clamp(74px, 10vw, 140px);
}

.below::before {
  content: "";
  position: absolute;
  inset: 150px 0 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(17, 22, 15, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 15, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.below-orbit {
  position: absolute;
  top: 48px;
  left: 50%;
  z-index: 1;
  display: flex;
  gap: 12px;
  width: max-content;
  transform: translateX(-50%);
}

.below-orbit span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(243, 236, 210, 0.2);
  border-radius: 999px;
  background: rgba(243, 236, 210, 0.08);
  color: rgba(243, 236, 210, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.below-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: 1240px;
  margin: 0 auto;
  padding-top: clamp(78px, 9vw, 116px);
}

.final-copy .eyebrow {
  color: #476b58;
}

.final-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #11160f;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(2.25rem, 5.4vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.final-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(17, 22, 15, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 750;
  line-height: 1.48;
}

.final-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(840px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 15, 0.15);
  border-radius: 8px;
  background: rgba(17, 22, 15, 0.1);
}

.final-kpis div {
  padding: 18px;
  background: rgba(255, 249, 223, 0.6);
}

.final-kpis strong,
.final-kpis span {
  display: block;
}

.final-kpis strong {
  color: #11160f;
  font-family: Unbounded, Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  line-height: 1;
}

.final-kpis span {
  margin-top: 8px;
  color: rgba(17, 22, 15, 0.6);
  font-size: 0.8rem;
  font-weight: 900;
}

.conversion-stack {
  display: grid;
  gap: 14px;
  align-self: start;
}

.route-cards {
  display: grid;
  gap: 10px;
}

.route-cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 14px;
  border: 1px solid rgba(17, 22, 15, 0.13);
  border-radius: 8px;
  background: rgba(255, 249, 223, 0.5);
  box-shadow: 0 14px 40px rgba(17, 22, 15, 0.08);
}

.route-cards span {
  grid-row: span 2;
  color: #7a6938;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.route-cards strong {
  color: #11160f;
  font-size: 1rem;
  text-transform: uppercase;
}

.route-cards p {
  margin: 0;
  color: rgba(17, 22, 15, 0.64);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.lead-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(17, 22, 15, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 231, 0.86), rgba(255, 250, 231, 0.62)),
    rgba(255, 250, 231, 0.76);
  box-shadow: 0 28px 70px rgba(17, 22, 15, 0.14), inset 0 1px 0 rgba(255,255,255,0.42);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(17, 22, 15, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 22, 15, 0.16);
  border-radius: 8px;
  background: #fff9df;
  color: #11160f;
  padding: 0 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(17, 22, 15, 0.45);
}

.lead-form .button {
  width: 100%;
  border-color: #101510;
  background: #101510;
  color: var(--ink);
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(17, 22, 15, 0.54);
  font-size: 0.78rem;
  line-height: 1.35;
}

.case-file {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(17, 22, 15, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 249, 223, 0.84), rgba(221, 191, 123, 0.28)),
    rgba(255, 249, 223, 0.62);
  box-shadow: 0 24px 70px rgba(17, 22, 15, 0.16);
}

.case-file::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 24px;
  width: 142px;
  height: 42px;
  border: 1px solid rgba(17, 22, 15, 0.15);
  border-radius: 8px 8px 0 0;
  background: rgba(217, 180, 95, 0.22);
}

.case-file-head {
  position: relative;
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.case-file-head span,
.case-file-grid span,
.cabinet-module span,
.cabinet-upload span,
.price-card span,
.problem-grid span,
.steps-grid span {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-file-head span {
  color: rgba(17, 22, 15, 0.55);
}

.case-file-head strong {
  color: #11160f;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.03;
}

.case-file-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.case-file-grid span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 22, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(17, 22, 15, 0.7);
}

.case-file p {
  margin: 18px 0 0;
  color: rgba(17, 22, 15, 0.66);
  font-weight: 800;
  line-height: 1.42;
}

.section-intro {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(30px, 5vw, 58px);
}

.section-intro h2,
.test-panel h2,
.protection-copy h2,
.apply-copy h2 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(2rem, 5.3vw, 5.9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-intro > p:not(.eyebrow),
.test-panel > div > p,
.protection-copy p,
.apply-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 750;
  line-height: 1.5;
}

.problem-band,
.steps-band,
.price-band,
.faq-band {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: clamp(78px, 11vw, 150px) clamp(20px, 5vw, 70px);
  background: var(--paper);
  color: #11160f;
}

.problem-band::before,
.steps-band::before,
.price-band::before,
.faq-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(17, 22, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 15, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.problem-band .eyebrow,
.steps-band .eyebrow,
.price-band .eyebrow,
.faq-band .eyebrow,
.apply-band .eyebrow {
  color: #687451;
}

.problem-grid,
.steps-grid,
.price-grid,
.trust-grid,
.faq-list,
.cabinet-layout {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 15, 0.13);
  border-radius: 8px;
  background: rgba(17, 22, 15, 0.12);
}

.problem-grid article {
  min-height: 260px;
  padding: 22px;
  background: rgba(255, 249, 223, 0.72);
}

.problem-grid span,
.steps-grid span {
  color: #8a763a;
}

.problem-grid h3,
.steps-grid h3,
.cabinet-module h3,
.price-card strong {
  margin: 16px 0 0;
  font-family: Unbounded, Manrope, sans-serif;
  line-height: 1.1;
  letter-spacing: 0;
}

.problem-grid h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
}

.problem-grid p,
.steps-grid p,
.price-card p,
.price-card li,
.faq-list p,
.legal-note {
  color: rgba(17, 22, 15, 0.66);
  font-weight: 750;
  line-height: 1.45;
}

.test-band,
.cabinet-band,
.protection-band,
.trust-band,
.apply-band {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: clamp(78px, 11vw, 150px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 78% 12%, rgba(217, 180, 95, 0.22), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(228, 122, 99, 0.16), transparent 30%),
    linear-gradient(180deg, #100904, #17110a);
  color: var(--ink);
}

.test-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 6vw, 86px);
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
}

.test-panel .eyebrow,
.cabinet-band .eyebrow,
.protection-band .eyebrow,
.trust-band .eyebrow {
  color: var(--gold);
}

.test-panel > div > p,
.protection-copy p,
.apply-copy p,
.cabinet-band .section-intro > p:not(.eyebrow),
.trust-band .section-intro > p:not(.eyebrow) {
  color: rgba(255, 237, 215, 0.72);
}

.test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.test-card {
  padding: 26px;
  border: 1px solid rgba(255, 237, 215, 0.16);
  border-radius: 8px;
  background: rgba(255, 237, 215, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 237, 215, 0.08);
}

.test-count {
  display: block;
  color: var(--gold);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.8;
}

.test-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1.18;
}

.test-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.test-card li {
  color: rgba(255, 237, 215, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
}

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

.steps-grid article {
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(17, 22, 15, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 223, 0.72), rgba(255, 249, 223, 0.46)),
    rgba(255, 255, 255, 0.2);
}

.steps-grid h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
}

.cabinet-band {
  background:
    radial-gradient(circle at 24% 18%, rgba(174, 185, 154, 0.18), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(217, 180, 95, 0.16), transparent 30%),
    linear-gradient(180deg, #17110a, #0f0b07);
}

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

.cabinet-module,
.cabinet-upload {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 237, 215, 0.15);
  border-radius: 8px;
  background: rgba(255, 237, 215, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 237, 215, 0.08);
}

.module-wide {
  grid-column: span 2;
}

.cabinet-module span,
.cabinet-upload span {
  color: var(--gold);
}

.cabinet-module h3 {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
}

.progress-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.progress-lines i {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 237, 215, 0.34));
}

.cabinet-upload {
  display: grid;
  align-content: end;
  min-height: 310px;
  background:
    linear-gradient(145deg, rgba(217, 180, 95, 0.16), rgba(255, 237, 215, 0.06)),
    rgba(255, 237, 215, 0.06);
}

.cabinet-upload strong {
  display: block;
  margin-top: 12px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.12;
}

.cabinet-upload p {
  margin: 18px 0 0;
  color: rgba(255, 237, 215, 0.68);
  font-weight: 750;
  line-height: 1.45;
}

.protection-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 50%, rgba(228, 122, 99, 0.22), transparent 34%),
    linear-gradient(180deg, #0f0b07, #17110a);
}

.protection-copy,
.protection-list {
  width: min(100%, 640px);
  justify-self: end;
}

.protection-list {
  display: grid;
  gap: 10px;
  justify-self: start;
}

.protection-list article {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 237, 215, 0.16);
  border-radius: 8px;
  background: rgba(255, 237, 215, 0.07);
  color: rgba(255, 237, 215, 0.86);
  font-weight: 900;
}

.protection-copy .button {
  margin-top: 30px;
}

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

.price-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(17, 22, 15, 0.14);
  border-radius: 8px;
}

.muted-price {
  background: rgba(255, 249, 223, 0.54);
}

.highlight-price {
  background:
    linear-gradient(145deg, rgba(217, 180, 95, 0.28), rgba(255, 249, 223, 0.7)),
    rgba(255, 249, 223, 0.76);
}

.price-card span {
  color: #687451;
}

.price-card strong {
  display: block;
  color: #11160f;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.price-card .button {
  margin-top: 24px;
}

.highlight-price .button-primary {
  border-color: #11160f;
  background: #11160f;
  color: var(--ink);
}

.legal-note {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 22px auto 0;
  font-size: 0.9rem;
}

.trust-band {
  background:
    radial-gradient(circle at 18% 30%, rgba(217, 180, 95, 0.18), transparent 30%),
    linear-gradient(180deg, #17110a, #100904);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 237, 215, 0.13);
  border-radius: 8px;
  background: rgba(255, 237, 215, 0.13);
}

.trust-grid article {
  min-height: 124px;
  display: flex;
  align-items: end;
  padding: 20px;
  background: rgba(255, 237, 215, 0.065);
  color: rgba(255, 237, 215, 0.82);
  font-weight: 900;
  line-height: 1.28;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(17, 22, 15, 0.13);
  border-radius: 8px;
  background: rgba(255, 249, 223, 0.62);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #11160f;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 800;
  line-height: 1.18;
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 22px 20px;
}

.apply-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.52fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background:
    radial-gradient(circle at 80% 24%, rgba(217, 180, 95, 0.2), transparent 32%),
    linear-gradient(180deg, #100904, #070503);
}

.apply-copy,
.apply-band .lead-form {
  width: min(100%, 640px);
}

.apply-copy {
  justify-self: end;
}

.apply-band .lead-form {
  justify-self: start;
}

.case-builder,
.problem-band,
.test-band,
.steps-band,
.cabinet-band,
.protection-band,
.price-band,
.trust-band,
.faq-band {
  min-height: 100vh;
  display: grid;
  align-items: center;
  z-index: 10;
  padding: clamp(86px, 9vw, 132px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 78% 20%, rgba(217, 180, 95, 0.13), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(174, 185, 154, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(5, 14, 12, 0.9), rgba(7, 13, 10, 0.62));
  color: var(--ink);
}

.case-builder::before,
.problem-band::before,
.test-band::before,
.steps-band::before,
.cabinet-band::before,
.protection-band::before,
.price-band::before,
.trust-band::before,
.faq-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(rgba(255, 237, 215, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 237, 215, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 52%, #000 0 42%, transparent 78%);
}

.case-builder::after,
.problem-band::after,
.test-band::after,
.steps-band::after,
.cabinet-band::after,
.protection-band::after,
.price-band::after,
.trust-band::after,
.faq-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 14, 12, 0.72));
}

.below-orbit {
  top: clamp(72px, 9vh, 116px);
}

.below-grid,
.section-intro,
.problem-grid,
.steps-grid,
.price-grid,
.trust-grid,
.faq-list,
.cabinet-layout,
.test-panel {
  width: min(1160px, calc(100% - 40px));
}

.below-grid {
  align-items: center;
  padding-top: clamp(48px, 7vw, 86px);
}

.final-copy .eyebrow,
.problem-band .eyebrow,
.steps-band .eyebrow,
.price-band .eyebrow,
.faq-band .eyebrow,
.apply-band .eyebrow,
.test-panel .eyebrow,
.cabinet-band .eyebrow,
.protection-band .eyebrow,
.trust-band .eyebrow {
  color: var(--gold);
}

.final-copy h2,
.section-intro h2,
.test-panel h2,
.protection-copy h2,
.apply-copy h2 {
  color: var(--ink);
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.case-builder .final-copy h2,
.problem-band .section-intro h2,
.steps-band .section-intro h2,
.price-band .section-intro h2,
.faq-band .section-intro h2,
.test-panel h2,
.cabinet-band .section-intro h2,
.protection-copy h2,
.trust-band .section-intro h2 {
  font-size: clamp(2.05rem, 4.65vw, 4.9rem);
  line-height: 1.04;
}

.apply-copy h2 {
  font-size: clamp(2.25rem, 5vw, 5.35rem);
  line-height: 1.02;
}

.final-copy > p:not(.eyebrow),
.section-intro > p:not(.eyebrow),
.test-panel > div > p,
.protection-copy p,
.apply-copy p,
.cabinet-band .section-intro > p:not(.eyebrow),
.trust-band .section-intro > p:not(.eyebrow) {
  color: rgba(255, 237, 215, 0.74);
}

.case-file,
.route-cards article,
.problem-grid article,
.steps-grid article,
.test-card,
.cabinet-module,
.cabinet-upload,
.protection-list article,
.price-card,
.trust-grid article,
.faq-list details,
.final-kpis div {
  border: 1px solid rgba(255, 237, 215, 0.17);
  background:
    linear-gradient(145deg, rgba(255, 237, 215, 0.12), rgba(255, 237, 215, 0.055)),
    rgba(13, 17, 12, 0.56);
  color: var(--ink);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 237, 215, 0.08);
  backdrop-filter: blur(14px);
}

.case-file {
  animation: floatPanel 8s ease-in-out infinite;
}

.route-cards article:nth-child(2),
.problem-grid article:nth-child(2),
.steps-grid article:nth-child(2),
.cabinet-module:nth-child(2),
.price-card:nth-child(2),
.trust-grid article:nth-child(2) {
  animation-delay: -2s;
}

.route-cards article:nth-child(3),
.problem-grid article:nth-child(3),
.steps-grid article:nth-child(3),
.cabinet-module:nth-child(3),
.trust-grid article:nth-child(3) {
  animation-delay: -4s;
}

.route-cards article:nth-child(4),
.problem-grid article:nth-child(4),
.steps-grid article:nth-child(4),
.trust-grid article:nth-child(4) {
  animation-delay: -6s;
}

.route-cards article,
.problem-grid article,
.steps-grid article,
.test-card,
.cabinet-module,
.cabinet-upload,
.protection-list article,
.price-card,
.trust-grid article,
.faq-list details {
  animation: floatPanel 9s ease-in-out infinite;
}

.case-file-head span,
.case-file-grid span,
.problem-grid span,
.steps-grid span,
.cabinet-module span,
.cabinet-upload span,
.price-card span {
  color: var(--gold);
}

.case-file-head strong,
.case-file p,
.case-file-grid span,
.route-cards strong,
.route-cards p,
.problem-grid h3,
.problem-grid p,
.steps-grid h3,
.steps-grid p,
.cabinet-module h3,
.cabinet-upload strong,
.cabinet-upload p,
.price-card strong,
.price-card p,
.price-card li,
.trust-grid article,
.faq-list summary,
.faq-list p,
.legal-note {
  color: var(--ink);
}

.case-file p,
.route-cards p,
.problem-grid p,
.steps-grid p,
.cabinet-upload p,
.price-card p,
.price-card li,
.faq-list p,
.legal-note {
  color: rgba(255, 237, 215, 0.68);
}

.case-file::before {
  content: none;
}

.case-file-grid span {
  background: rgba(255, 237, 215, 0.075);
  border-color: rgba(255, 237, 215, 0.16);
}

.final-kpis {
  border-color: rgba(255, 237, 215, 0.16);
  background: rgba(255, 237, 215, 0.11);
}

.final-kpis strong,
.final-kpis span {
  color: var(--ink);
}

.final-kpis div {
  min-width: 0;
}

.final-kpis strong {
  font-size: clamp(1.2rem, 1.75vw, 1.95rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.final-kpis span {
  font-size: 0.76rem;
  line-height: 1.3;
}

.problem-grid {
  border-color: rgba(255, 237, 215, 0.15);
  background: rgba(255, 237, 215, 0.1);
}

.steps-grid article,
.problem-grid article {
  min-height: clamp(220px, 24vh, 290px);
}

.price-card span,
.legal-note {
  color: var(--gold);
}

.highlight-price .button-primary {
  border-color: rgba(255, 237, 215, 0.86);
  background: var(--paper);
  color: #11160f;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  list-style-position: inside;
}

.apply-band {
  position: relative;
  z-index: 20;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 24%, rgba(217, 180, 95, 0.18), transparent 34%),
    radial-gradient(circle at 14% 74%, rgba(174, 185, 154, 0.14), transparent 32%),
    linear-gradient(180deg, #07100d, #030706);
}

.case-builder {
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 180, 95, 0.15), transparent 32%),
    radial-gradient(circle at 20% 78%, rgba(174, 185, 154, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(7, 15, 12, 0.9), rgba(14, 22, 14, 0.68));
}

.test-band,
.cabinet-band {
  background:
    radial-gradient(circle at 20% 18%, rgba(174, 185, 154, 0.18), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(217, 180, 95, 0.13), transparent 31%),
    linear-gradient(180deg, #08130f, #10190f);
}

.protection-band {
  background:
    radial-gradient(circle at 82% 50%, rgba(228, 122, 99, 0.17), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(174, 185, 154, 0.13), transparent 30%),
    linear-gradient(180deg, #08130f, #120f0a);
}

.price-band,
.faq-band {
  background:
    radial-gradient(circle at 78% 20%, rgba(217, 180, 95, 0.13), transparent 32%),
    radial-gradient(circle at 18% 76%, rgba(174, 185, 154, 0.12), transparent 32%),
    linear-gradient(180deg, #10190f, #07100d);
}

.trust-band {
  background:
    radial-gradient(circle at 18% 30%, rgba(217, 180, 95, 0.14), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(228, 122, 99, 0.1), transparent 30%),
    linear-gradient(180deg, #07100d, #050907);
}

.final-start-card {
  align-content: center;
  min-height: 430px;
}

.final-start-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-start-card strong {
  color: #11160f;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.final-start-card p:not(.form-note) {
  margin: 0;
  color: rgba(17, 22, 15, 0.66);
  font-weight: 800;
  line-height: 1.45;
}

.footer-band {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  padding: 36px clamp(20px, 5vw, 70px) 44px;
  border-top: 1px solid rgba(255, 237, 215, 0.14);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 180, 95, 0.12), transparent 26%),
    #030706;
  color: rgba(255, 237, 215, 0.74);
}

.footer-band div,
.footer-band nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.footer-band strong {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
}

.footer-band nav {
  justify-content: flex-end;
}

.footer-band a {
  color: rgba(255, 237, 215, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

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

.utility-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 14%, rgba(217, 180, 95, 0.14), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(174, 185, 154, 0.13), transparent 32%),
    linear-gradient(180deg, #07100d, #030706);
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 72px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.56fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  min-height: 56vh;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(2.5rem, 6.4vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  margin: 24px 0 0;
  color: rgba(255, 237, 215, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 800;
  line-height: 1.48;
}

.page-card,
.quiz-card,
.dashboard-card,
.protection-card {
  border: 1px solid rgba(255, 237, 215, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 237, 215, 0.12), rgba(255, 237, 215, 0.055)),
    rgba(13, 17, 12, 0.58);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 237, 215, 0.08);
  backdrop-filter: blur(14px);
}

.page-card {
  padding: 26px;
}

.page-card strong,
.quiz-card h2,
.dashboard-card h2,
.protection-card strong {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  letter-spacing: 0;
}

.page-card strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.14;
}

.page-card ul,
.protection-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.page-card li,
.protection-card li {
  color: rgba(255, 237, 215, 0.72);
  font-weight: 800;
  line-height: 1.38;
}

.quiz-layout,
.dashboard-layout,
.protection-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(330px, 0.44fr);
  gap: clamp(22px, 5vw, 56px);
  margin-top: 56px;
  align-items: start;
}

.quiz-card,
.dashboard-card,
.protection-card {
  padding: clamp(22px, 4vw, 34px);
}

.quiz-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.9rem);
  line-height: 1.05;
}

.quiz-progress {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.quiz-hint {
  margin: 0;
  color: rgba(255, 237, 215, 0.68);
  font-weight: 800;
  line-height: 1.42;
}

.quiz-input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 237, 215, 0.16);
  border-radius: 8px;
  background: rgba(255, 237, 215, 0.08);
  color: var(--ink);
  padding: 0 18px;
  outline: none;
  font-weight: 900;
}

.quiz-input:focus {
  border-color: rgba(217, 180, 95, 0.78);
  box-shadow: 0 0 0 3px rgba(217, 180, 95, 0.14);
}

.quiz-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quiz-option {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 237, 215, 0.16);
  border-radius: 8px;
  background: rgba(255, 237, 215, 0.07);
  color: rgba(255, 237, 215, 0.86);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.quiz-option:hover,
.quiz-option.is-selected {
  border-color: rgba(217, 180, 95, 0.78);
  background: rgba(217, 180, 95, 0.16);
  color: var(--paper);
}

.quiz-error {
  padding: 12px 14px;
  border: 1px solid rgba(228, 122, 99, 0.4);
  border-radius: 8px;
  background: rgba(228, 122, 99, 0.12);
  color: #ffd5ca;
  font-weight: 900;
}

.quiz-result {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 237, 215, 0.16);
}

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

.quiz-result strong {
  color: var(--gold);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.quiz-result p {
  margin: 0;
  color: rgba(255, 237, 215, 0.72);
  font-weight: 800;
  line-height: 1.45;
}

.result-scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-scenarios span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(217, 180, 95, 0.28);
  border-radius: 999px;
  background: rgba(217, 180, 95, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.quiz-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
}

.dashboard-nav span {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: rgba(255, 237, 215, 0.7);
  font-weight: 900;
}

.dashboard-nav span:first-child {
  background: var(--paper);
  color: #11160f;
}

.dashboard-main {
  display: grid;
  gap: 14px;
}

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

.dashboard-card h2,
.dashboard-card h3 {
  margin: 0;
}

.dashboard-card h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
  line-height: 1.08;
}

.dashboard-card h3 {
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.18;
}

.dashboard-card p,
.dashboard-card li {
  color: rgba(255, 237, 215, 0.7);
  font-weight: 800;
  line-height: 1.42;
}

.dashboard-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.dashboard-card mark {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217, 180, 95, 0.16);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-progress {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.dashboard-progress span {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(174, 185, 154, 0.6));
}

.protection-docs {
  display: grid;
  gap: 10px;
}

.protection-docs article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 237, 215, 0.15);
  border-radius: 8px;
  background: rgba(255, 237, 215, 0.07);
}

.protection-docs span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.protection-docs strong {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  line-height: 1.12;
}

.protection-docs p {
  margin: 0;
  color: rgba(255, 237, 215, 0.68);
  font-weight: 800;
  line-height: 1.4;
}

.download-link {
  width: fit-content;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration-color: rgba(217, 180, 95, 0.6);
  text-underline-offset: 4px;
}

.download-link:hover {
  color: var(--gold);
}

.quiz-page .page-shell {
  padding-top: 100px;
}

.quiz-page .page-hero {
  min-height: auto;
  align-items: start;
}

.quiz-page .page-hero h1 {
  font-size: clamp(2rem, 4.35vw, 4.4rem);
}

.quiz-page .page-hero p {
  margin-top: 16px;
}

.quiz-page .quiz-layout {
  margin-top: 24px;
}

.quiz-page .quiz-card h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.75rem);
}

.quiz-page .quiz-card {
  padding: clamp(20px, 3vw, 28px);
}

.quiz-page .quiz-options {
  margin-top: 18px;
}

.quiz-page .quiz-option {
  min-height: 50px;
}

.motion-ready .case-builder .below-orbit,
.motion-ready .case-builder .final-copy > *,
.motion-ready .case-builder .case-file,
.motion-ready .case-builder .route-cards article,
.motion-ready .problem-band .section-intro > *,
.motion-ready .problem-band .problem-grid article,
.motion-ready .test-band .test-panel > *,
.motion-ready .steps-band .section-intro > *,
.motion-ready .steps-band .steps-grid article,
.motion-ready .cabinet-band .section-intro > *,
.motion-ready .cabinet-band .cabinet-layout > *,
.motion-ready .protection-band .protection-copy > *,
.motion-ready .protection-band .protection-list article,
.motion-ready .price-band .section-intro > *,
.motion-ready .price-band .price-grid > *,
.motion-ready .price-band .legal-note,
.motion-ready .trust-band .section-intro > *,
.motion-ready .trust-band .trust-grid article,
.motion-ready .faq-band .section-intro > *,
.motion-ready .faq-band .faq-list details {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(42px) scale(0.97);
  transition:
    opacity 700ms cubic-bezier(0.17, 0.84, 0.26, 1),
    filter 700ms cubic-bezier(0.17, 0.84, 0.26, 1),
    transform 700ms cubic-bezier(0.17, 0.84, 0.26, 1);
}

.motion-ready .is-active .below-orbit,
.motion-ready .is-active .final-copy > *,
.motion-ready .is-active .case-file,
.motion-ready .is-active .route-cards article,
.motion-ready .is-active .section-intro > *,
.motion-ready .is-active .problem-grid article,
.motion-ready .is-active .test-panel > *,
.motion-ready .is-active .steps-grid article,
.motion-ready .is-active .cabinet-layout > *,
.motion-ready .is-active .protection-copy > *,
.motion-ready .is-active .protection-list article,
.motion-ready .is-active .price-grid > *,
.motion-ready .is-active .legal-note,
.motion-ready .is-active .trust-grid article,
.motion-ready .is-active .faq-list details {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.motion-ready .is-active .final-copy > p,
.motion-ready .is-active .section-intro > p,
.motion-ready .is-active .test-panel > *:nth-child(2),
.motion-ready .is-active .price-grid > *:nth-child(2),
.motion-ready .is-active .cabinet-layout > *:nth-child(2),
.motion-ready .is-active .protection-list article:nth-child(2),
.motion-ready .is-active .trust-grid article:nth-child(2),
.motion-ready .is-active .faq-list details:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .is-active .final-kpis,
.motion-ready .is-active .route-cards article:nth-child(1),
.motion-ready .is-active .problem-grid article:nth-child(1),
.motion-ready .is-active .steps-grid article:nth-child(1),
.motion-ready .is-active .cabinet-layout > *:nth-child(3),
.motion-ready .is-active .protection-list article:nth-child(3),
.motion-ready .is-active .trust-grid article:nth-child(3),
.motion-ready .is-active .faq-list details:nth-child(3) {
  transition-delay: 160ms;
}

.motion-ready .is-active .case-file,
.motion-ready .is-active .route-cards article:nth-child(2),
.motion-ready .is-active .problem-grid article:nth-child(2),
.motion-ready .is-active .steps-grid article:nth-child(2),
.motion-ready .is-active .cabinet-layout > *:nth-child(4),
.motion-ready .is-active .protection-list article:nth-child(4),
.motion-ready .is-active .trust-grid article:nth-child(4),
.motion-ready .is-active .faq-list details:nth-child(4) {
  transition-delay: 230ms;
}

.motion-ready .is-active .route-cards article:nth-child(3),
.motion-ready .is-active .problem-grid article:nth-child(3),
.motion-ready .is-active .steps-grid article:nth-child(3),
.motion-ready .is-active .protection-list article:nth-child(5),
.motion-ready .is-active .trust-grid article:nth-child(5),
.motion-ready .is-active .faq-list details:nth-child(5) {
  transition-delay: 300ms;
}

.motion-ready .is-active .route-cards article:nth-child(4),
.motion-ready .is-active .problem-grid article:nth-child(4),
.motion-ready .is-active .steps-grid article:nth-child(4),
.motion-ready .is-active .trust-grid article:nth-child(6) {
  transition-delay: 370ms;
}

.motion-ready .is-active .problem-grid article:nth-child(5) {
  transition-delay: 440ms;
}

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

@keyframes floatPanel {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0 -10px;
    rotate: 0.25deg;
  }
}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    width: calc(100vw - 88px);
    padding-left: 42px;
  }

  .hero-title {
    font-size: clamp(3.8rem, 13vw, 7rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .story-card {
    width: min(315px, calc(100vw - 82px));
  }

  .story-card-a,
  .story-card-c {
    left: 58px;
  }

  .story-card-b,
  .story-card-d {
    right: 18px;
  }

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

  .final-kpis {
    grid-template-columns: 1fr;
  }

  .test-panel,
  .protection-band,
  .apply-band,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .steps-grid,
  .trust-grid,
  .cabinet-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid article {
    min-height: 220px;
  }

  .module-wide {
    grid-column: span 2;
  }

  .protection-copy,
  .protection-list,
  .apply-copy,
  .apply-band .lead-form {
    width: min(100%, 720px);
    justify-self: center;
  }

  .footer-band,
  .page-hero,
  .quiz-layout,
  .dashboard-shell,
  .protection-layout {
    grid-template-columns: 1fr;
  }

  .footer-band nav {
    justify-content: flex-start;
  }

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

@media (max-width: 540px) {
  .cinematic {
    height: 620vh;
  }

  .stage {
    min-height: 680px;
  }

  .topbar {
    gap: 12px;
    padding: 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .top-cta {
    display: none;
  }

  .scroll-rail {
    left: 14px;
  }

  .hero {
    width: calc(100vw - 36px);
    padding-left: 38px;
    justify-items: start;
  }

  .hero-title {
    max-width: calc(100vw - 84px);
    font-size: clamp(1.8rem, 7.5vw, 2.2rem);
    line-height: 0.96;
  }

  .hero-copy,
  .hero-actions,
  .hero-stats {
    max-width: calc(100vw - 84px);
  }

  .hero-copy {
    font-size: 0.9rem;
  }

  .below-orbit {
    display: none;
  }

  .below {
    padding-top: 84px;
  }

  .case-builder {
    padding-top: 84px;
  }

  .section-intro,
  .problem-grid,
  .steps-grid,
  .price-grid,
  .trust-grid,
  .faq-list,
  .cabinet-layout,
  .test-panel,
  .page-shell {
    width: min(100%, calc(100vw - 32px));
  }

  .problem-grid,
  .steps-grid,
  .trust-grid,
  .cabinet-layout,
  .case-file-grid {
    grid-template-columns: 1fr;
  }

  .module-wide {
    grid-column: auto;
  }

  .section-intro h2,
  .test-panel h2,
  .protection-copy h2,
  .apply-copy h2,
  .final-copy h2 {
    font-size: clamp(1.85rem, 9.4vw, 3.2rem);
  }

  .problem-grid article,
  .steps-grid article,
  .cabinet-module,
  .cabinet-upload {
    min-height: auto;
    padding: 20px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .page-shell {
    padding-top: 106px;
  }

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

  .page-hero h1 {
    font-size: clamp(2rem, 10.5vw, 3.4rem);
  }

  .quiz-card,
  .dashboard-card,
  .protection-card,
  .page-card {
    padding: 20px;
  }

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

  .quiz-actions,
  .page-actions {
    width: 100%;
  }

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

  .footer-band {
    padding-inline: 16px;
  }

  .hero-title,
  .hero-copy,
  .hero-actions,
  .hero-stats {
    width: calc(100vw - 84px);
  }

  #system-map {
    opacity: 0.82;
  }

  .stage-shade {
    background:
      radial-gradient(circle at 58% 44%, rgba(217, 180, 95, 0.18), transparent 30%),
      linear-gradient(90deg, rgba(7, 11, 9, 0.92), rgba(7, 11, 9, 0.2) 72%, rgba(7, 11, 9, 0.78)),
      linear-gradient(180deg, rgba(7, 11, 9, 0.64), rgba(7, 11, 9, 0.18) 42%, rgba(7, 11, 9, 0.78));
  }
}

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

  .char {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .story-card.is-visible {
    transition: none;
  }
}
