@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/hankengrotesk-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/dmserifdisplay-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/dmserifdisplay-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #090909;
  --black-soft: #111111;
  --red: #d21f2b;
  --red-dark: #ad111d;
  --red-light: #f04450;
  --cream: #f5f0e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #a6a29d;
  --ink-muted: #625d58;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(9, 9, 9, 0.13);
  --shadow: 0 28px 80px rgba(21, 8, 9, 0.15);
  --shell: 1180px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --font-display: "Hanken Grotesk", "Arial Black", sans-serif;
  --font-editorial: "DM Serif Display", Georgia, serif;
  --font-body: "Hanken Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--red);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

:focus-visible {
  outline: 3px solid #ff7079;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--shell));
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: inherit;
  font-size: 14px;
  line-height: 1.1;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.brand-mark svg {
  width: 21px;
  fill: currentColor;
}

.header-cta {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 58%, rgba(210, 31, 43, 0.19), transparent 20%),
    linear-gradient(115deg, transparent 0 57%, rgba(255, 255, 255, 0.025) 57% 57.1%, transparent 57.1%),
    var(--black);
}

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

.hero::before {
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 75%, transparent 100%);
}

.hero::after {
  right: -11vw;
  bottom: -25vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(210, 31, 43, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(210, 31, 43, 0.018), 0 0 0 16vw rgba(210, 31, 43, 0.012);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}

.hero-index {
  position: absolute;
  z-index: 0;
  top: 62px;
  right: -0.08em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: clamp(24rem, 42vw, 42rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.8;
  user-select: none;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 900px;
  padding-top: 132px;
  padding-bottom: 42px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--red-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3b7ba;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--red-light);
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.hero-topline .eyebrow {
  margin: 0;
}

.hero-edition {
  margin: 0;
  color: #797572;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-edition span {
  margin-inline: 8px;
  color: var(--red-light);
}

.hero-heading {
  position: relative;
  z-index: 2;
  margin-top: 66px;
}

.hero-verdict {
  margin: 0 0 8px 0.4rem;
  color: #bbb6b2;
  font-family: var(--font-editorial);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-style: italic;
  letter-spacing: -0.025em;
}

.personal-greeting {
  max-width: 540px;
  margin: 0 0 14px;
  color: #e9e5e1;
  font-size: 16px;
  line-height: 1.5;
}

.personal-greeting span {
  color: var(--white);
  font-weight: 700;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.8;
}

.hero h1 > span {
  max-width: 100%;
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(5.2rem, 12.7vw, 10.5rem);
  font-weight: 850;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 small {
  margin: 0.22em 0 0 0.35rem;
  display: block;
  color: var(--red-light);
  font-family: var(--font-editorial);
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

body[data-name-length="long"] .hero h1 > span {
  font-size: clamp(4.25rem, 10.2vw, 8.4rem);
}

.hero-lower {
  margin-top: 46px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 76px;
  align-items: center;
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: #9f9a96;
  font-size: 16px;
  line-height: 1.68;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.button {
  position: relative;
  z-index: 0;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  appearance: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(210, 31, 43, 0.27);
}

.button-primary:hover {
  background: var(--red-light);
  box-shadow: 0 18px 40px rgba(210, 31, 43, 0.36);
}

.button-luminous::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 180%;
  aspect-ratio: 1;
  content: "";
  background: conic-gradient(from 12deg, transparent 0 70%, #ff9aa1 82%, var(--white) 88%, transparent 96%);
  transform: translate(-50%, -50%);
  animation: button-light-spin 4.8s linear infinite;
}

.button-luminous::after {
  position: absolute;
  z-index: -1;
  inset: 2px;
  content: "";
  background: var(--red);
  border-radius: calc(var(--radius-sm) - 2px);
  transition: background 200ms ease, box-shadow 400ms ease;
}

.button-luminous:hover::after {
  background: var(--red-light);
  box-shadow: inset 0 -26px 34px rgba(255, 255, 255, 0.12);
}

@keyframes button-light-spin {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

.button-secondary {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--black);
}

.button-light {
  color: var(--red-dark);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(44, 3, 8, 0.18);
}

.text-link {
  color: #d8d4d0;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.selection-panel {
  position: relative;
  height: 245px;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.selection-map {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.34) 1.4px, transparent 1.8px);
  background-size: 25px 25px;
  mask-image: radial-gradient(circle at 52% 48%, #000 0 9%, rgba(0, 0, 0, 0.84) 29%, transparent 74%);
  opacity: 0.72;
}

.selection-radar {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(240, 68, 80, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(210, 31, 43, 0.045), 0 0 0 65px rgba(210, 31, 43, 0.025);
  transform: translate(-50%, -50%);
  animation: radar 3.8s ease-in-out infinite;
}

.audition-core {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  color: var(--white);
  text-align: center;
  background: var(--red);
  border: 8px solid rgba(9, 9, 9, 0.92);
  border-radius: 50%;
  box-shadow: 0 18px 55px rgba(210, 31, 43, 0.35);
  transform: translate(-50%, -50%);
}

.audition-core span,
.audition-core strong {
  display: block;
}

.audition-core span {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.audition-core strong {
  margin-top: 7px;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.selection-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--red);
}

.selection-caption span,
.selection-caption strong {
  display: block;
}

.selection-caption span {
  color: #817c78;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-caption strong {
  max-width: 190px;
  overflow: hidden;
  color: var(--white);
  font-family: var(--font-editorial);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-proof {
  margin: 30px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  list-style: none;
}

.hero-proof li {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.hero-proof li + li {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-proof strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.06em;
}

.hero-proof span {
  color: #77726f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@keyframes radar {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

.marquee {
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.marquee-track {
  width: max-content;
  height: 62px;
  display: flex;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding-inline: 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee i {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.manifesto {
  padding: 118px 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 110px;
}

.section-heading h2,
.pricing-heading h2,
.director-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.3vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--ink-muted);
  font-size: 17px;
}

.manifesto-copy > p {
  margin: 0 0 22px;
  color: #b4afaa;
  font-size: 18px;
}

.manifesto-proof {
  margin-top: 42px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
}

.manifesto-proof strong {
  color: var(--red-light);
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.manifesto-proof span {
  color: #ddd8d3;
  font-size: 14px;
  line-height: 1.55;
}

.audition-map {
  padding: 48px 0 132px;
  overflow: hidden;
}

.audition-map-heading {
  margin-bottom: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 88px;
  align-items: end;
}

.audition-map-heading h2 {
  max-width: 790px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.8vw, 5.4rem);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.audition-map-heading > p {
  margin: 0;
  color: #aaa5a0;
  font-size: 16px;
  line-height: 1.72;
}

.audition-map-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% -20%, rgba(210, 31, 43, 0.1), transparent 45%),
    #0b0b0b;
}

.audition-node {
  position: relative;
  min-height: 510px;
  padding: 44px 38px 42px;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.audition-node + .audition-node {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.audition-node::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red-light), transparent);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(240, 68, 80, 0.42), 0 28px 60px rgba(210, 31, 43, 0.17);
  opacity: 0.55;
  transform: translateX(-50%);
  transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 350ms ease;
}

.audition-node:hover::after,
.audition-node:focus-within::after {
  width: 72%;
  opacity: 1;
}

.map-cross {
  position: absolute;
  z-index: 5;
  width: 15px;
  height: 15px;
  color: #f6f2ed;
  pointer-events: none;
}

.map-cross::before,
.map-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.map-cross::before {
  width: 15px;
  height: 2px;
}

.map-cross::after {
  width: 2px;
  height: 15px;
}

.map-cross-tl { top: -8px; left: -8px; }
.map-cross-tr { top: -8px; right: -8px; }
.map-cross-bl { bottom: -8px; left: -8px; }
.map-cross-br { right: -8px; bottom: -8px; }

.audition-node-visual {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 58px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(240, 68, 80, 0.24) 1px, transparent 2px) 0 0 / 24px 24px,
    radial-gradient(circle, rgba(210, 31, 43, 0.08), transparent 68%);
}

.audition-node-icon {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: #f3efeb;
  background: radial-gradient(circle at 35% 30%, #282424, #0c0c0c 68%);
  border: 1px solid rgba(240, 68, 80, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(210, 31, 43, 0.035), inset 0 0 24px rgba(240, 68, 80, 0.08);
}

.audition-node-icon::before {
  position: absolute;
  inset: -2px;
  content: "";
  background: conic-gradient(from 25deg, transparent 0 18%, var(--red-light) 18% 33%, transparent 33% 68%, var(--red) 68% 84%, transparent 84%);
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audition-node:hover .audition-node-icon::before {
  transform: rotate(150deg);
}

.audition-node-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.audition-node-copy p {
  margin: 0 0 16px;
  color: var(--red-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audition-node-copy h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.audition-node-copy span {
  color: #aaa5a0;
  font-size: 15px;
  line-height: 1.62;
}

.benefits {
  padding: 124px 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 54px 54px;
}

.section-heading-centered {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 320px;
  padding: 26px;
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(49, 39, 34, 0.05);
}

.benefit-card:nth-child(4),
.benefit-card:nth-child(5) {
  grid-column: span 3;
  min-height: 285px;
}

.benefit-card-featured {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 24px 55px rgba(173, 17, 29, 0.18);
}

.card-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #a29c96;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.benefit-card-featured .card-index {
  color: rgba(255, 255, 255, 0.6);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #f3e9e8;
  border-radius: 50%;
}

.icon-box svg,
.secure-note svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card-featured .icon-box {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-card h3 {
  margin: auto 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.benefit-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.58;
}

.benefit-card-featured p {
  color: rgba(255, 255, 255, 0.83);
}

.card-note {
  margin-top: 18px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.journey {
  padding: 120px 0;
}

.journey .section-heading {
  margin-bottom: 70px;
}

.journey-list {
  --journey-progress: 0;
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.journey-list::before,
.journey-list::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  transform-origin: left center;
}

.journey-list::before {
  background: rgba(255, 255, 255, 0.14);
}

.journey-list::after {
  background: var(--red-light);
  box-shadow: 0 0 8px rgba(240, 68, 80, 0.95), 0 0 24px rgba(210, 31, 43, 0.58);
  transform: scaleX(var(--journey-progress));
}

.journey-list li {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 0 28px 0 0;
  border-top: 0;
}

.journey-list li:not(:last-child) {
  border-right: 0;
}

.journey-list li + li {
  padding-left: 28px;
}

.journey-list > li > span {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--black), 0 0 0 9px rgba(255, 255, 255, 0.08);
  transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.journey-list > li.is-active > span {
  background: var(--red-light);
  box-shadow: 0 0 0 8px var(--black), 0 0 20px 4px rgba(240, 68, 80, 0.72);
  transform: scale(1.08);
}

.journey-list li::after {
  position: absolute;
  top: 1px;
  left: 20px;
  width: 1px;
  height: 34px;
  content: "";
  background: linear-gradient(var(--red-light), rgba(240, 68, 80, 0.08));
  opacity: 0.35;
  transition: opacity 260ms ease, box-shadow 260ms ease;
}

.journey-list li.is-active::after {
  opacity: 1;
  box-shadow: 0 0 12px rgba(240, 68, 80, 0.6);
}

.journey-list div {
  margin-top: 54px;
}

.journey-list h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.journey-list p {
  margin: 0;
  color: #aaa5a0;
  font-size: 14px;
  line-height: 1.6;
}

.pricing {
  padding: 124px 0;
  background: var(--paper);
}

.pricing-heading {
  margin-bottom: 66px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.pricing-heading > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 55px rgba(37, 23, 24, 0.06);
}

.price-card-featured {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 26px 70px rgba(9, 9, 9, 0.22);
  transform: translateY(-16px);
}

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  margin: 0;
  padding: 6px 12px;
  color: var(--white);
  background: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 999px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8c8681;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-top strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.06em;
}

.price-card h3 {
  margin: 34px 0 5px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.old-price {
  margin: 0 0 12px;
  color: #8e8883;
  font-size: 11px;
}

.price {
  margin: 0 0 27px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price small {
  font-size: 15px;
  letter-spacing: -0.03em;
}

.price sup {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.price-card ul {
  margin: 0 0 28px;
  padding: 22px 0 0;
  flex: 1;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.price-card-featured ul {
  border-color: var(--line-dark);
}

.price-card li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.45;
}

.price-card-featured li {
  color: #c9c4c0;
}

.price-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.price-card .button {
  width: 100%;
  min-height: 50px;
  padding-inline: 12px;
  font-size: 12px;
}

.price-card .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.price-card-featured .button-primary {
  color: var(--white);
}

.secure-note {
  margin: 44px auto 0;
  display: flex;
  justify-content: center;
  gap: 13px;
  align-items: center;
  color: var(--ink-muted);
}

.secure-note svg {
  width: 26px;
  color: var(--red);
}

.secure-note strong,
.secure-note span {
  display: block;
}

.secure-note strong {
  color: var(--black);
  font-size: 13px;
}

.secure-note span {
  font-size: 11px;
}

.payment-feedback {
  min-height: 24px;
  margin: 14px auto 0;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.director {
  padding: 110px 0;
  overflow: hidden;
}

.director-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 96px;
  align-items: center;
}

.director-photo {
  position: relative;
}

.director-photo::before {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 90%;
  height: 90%;
  content: "";
  border: 1px solid rgba(210, 31, 43, 0.55);
  border-radius: var(--radius-lg);
}

.director-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  filter: saturate(0.8) contrast(1.08);
}

.director-photo p {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 30px;
  margin: 0;
  padding: 16px 22px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.director-photo p span,
.director-photo p strong {
  display: block;
}

.director-photo p span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.director-photo p strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.director-copy > p:not(.kicker) {
  max-width: 660px;
  margin: 28px 0;
  color: #b5b0ac;
  font-size: 17px;
}

.director-copy blockquote {
  max-width: 620px;
  margin: 42px 0 0;
  padding: 6px 0 6px 28px;
  color: #e1dcd8;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.45;
  border-left: 3px solid var(--red);
}

.faq {
  padding: 124px 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq .section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq .section-heading > p:last-child {
  margin-left: 0;
}

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

.accordion details:last-child {
  border-bottom: 1px solid var(--line-light);
}

.accordion summary {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

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

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

.accordion details p {
  max-width: 700px;
  margin: -5px 0 28px;
  color: var(--ink-muted);
  font-size: 15px;
}

.final-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.final-cta::before {
  position: absolute;
  top: -230px;
  right: -140px;
  width: 580px;
  height: 580px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.03), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
}

.final-cta .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta p:not(.kicker) {
  max-width: 680px;
  margin: 24px auto 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.site-footer {
  padding: 42px 0;
  color: #b0aba7;
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}

.brand-footer {
  color: var(--white);
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.footer-inner nav a,
.footer-inner > p {
  margin: 0;
  color: #8f8a86;
  font-size: 11px;
  text-decoration: none;
}

.footer-inner nav a:hover {
  color: var(--white);
}

.scroll-conversion-cta {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  width: min(420px, calc(100% - 44px));
  min-height: 76px;
  padding: 13px 13px 13px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: rgba(9, 9, 9, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.98);
  transition: opacity 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-conversion-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-conversion-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #ff7b84);
  box-shadow: 0 0 12px rgba(240, 68, 80, 0.85);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
}

.scroll-conversion-cta span,
.scroll-conversion-cta strong {
  display: block;
}

.scroll-conversion-cta div > span {
  color: #9e9995;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-conversion-cta strong {
  margin-top: 2px;
  font-size: 13px;
}

.scroll-conversion-cta a {
  min-height: 45px;
  padding: 0 16px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(210, 31, 43, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

.price-card-featured.reveal {
  transform: translateY(10px);
}

.price-card-featured.reveal.is-visible {
  transform: translateY(-16px);
}

@media (max-width: 1040px) {
  .hero-lower {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 38px;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .price-card-featured,
  .price-card-featured.reveal.is-visible {
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header,
  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  .hero,
  .hero-stage {
    min-height: 1080px;
  }

  .hero-stage {
    padding-top: 124px;
  }

  .hero-heading {
    margin-top: 58px;
  }

  .hero-lower {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .selection-panel {
    width: 100%;
    max-width: 620px;
  }

  .manifesto-grid,
  .director-grid,
  .faq-grid,
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .audition-map-heading {
    margin-bottom: 54px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .audition-map-heading > p {
    max-width: 620px;
  }

  .audition-map-grid {
    grid-template-columns: 1fr;
  }

  .audition-node {
    min-height: 300px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 156px 1fr;
    gap: 38px;
    align-items: center;
  }

  .audition-node + .audition-node {
    border-left: 0;
  }

  .audition-node-visual {
    margin-bottom: 0;
  }

  .benefit-card,
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5) {
    grid-column: span 3;
  }

  .journey-list {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey-list::before,
  .journey-list::after {
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    transform-origin: center top;
  }

  .journey-list::after {
    transform: scaleY(var(--journey-progress));
  }

  .journey-list li,
  .journey-list li + li {
    min-height: 205px;
    padding: 0 0 54px 78px;
  }

  .journey-list > li > span {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .journey-list li::after {
    top: 20px;
    left: 40px;
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, var(--red-light), rgba(240, 68, 80, 0.08));
  }

  .journey-list div {
    margin-top: 0;
  }

  .faq .section-heading {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    height: 76px;
  }

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

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

  .header-cta {
    padding: 8px 13px;
    font-size: 11px;
  }

  .hero,
  .hero-stage {
    min-height: auto;
  }

  .hero-stage {
    padding-top: 108px;
    padding-bottom: 34px;
  }

  .hero-topline {
    align-items: flex-start;
  }

  .hero-edition {
    display: none;
  }

  .hero-heading {
    margin-top: 46px;
  }

  .hero-verdict {
    max-width: 310px;
    margin-left: 0;
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .hero h1 > span {
    margin-top: 8px;
    font-size: clamp(4.1rem, 20vw, 6.2rem);
    line-height: 0.86;
  }

  body[data-name-length="long"] .hero h1 > span {
    font-size: clamp(3.3rem, 15vw, 4.8rem);
  }

  .hero h1 small {
    margin-left: 0;
    font-size: clamp(2.15rem, 11.5vw, 3.3rem);
    line-height: 0.95;
  }

  .hero-lower {
    margin-top: 42px;
    gap: 34px;
  }

  .personal-greeting {
    font-size: 15px;
  }

  .hero-lead {
    font-size: 15px;
  }

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

  .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .selection-panel {
    height: 215px;
  }

  .selection-radar {
    width: 138px;
    height: 138px;
  }

  .audition-core {
    width: 94px;
    height: 94px;
  }

  .hero-proof {
    margin-top: 28px;
    gap: 9px;
  }

  .hero-proof li,
  .hero-proof li + li {
    padding: 0 7px;
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .hero-proof li:first-child {
    padding-left: 0;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 7px;
    line-height: 1.35;
  }

  .marquee-track {
    height: 54px;
  }

  .marquee span {
    padding-inline: 20px;
    font-size: 12px;
  }

  .manifesto,
  .audition-map,
  .benefits,
  .journey,
  .pricing,
  .director,
  .faq,
  .final-cta {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .manifesto-proof {
    grid-template-columns: 100px 1fr;
  }

  .manifesto-proof strong {
    font-size: 50px;
  }

  .audition-map {
    padding-top: 32px;
  }

  .audition-map-heading {
    margin-bottom: 48px;
  }

  .audition-map-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .audition-map-heading > p {
    font-size: 15px;
  }

  .audition-node {
    min-height: 470px;
    padding: 42px 24px 46px;
    display: block;
  }

  .audition-node-visual {
    width: 120px;
    height: 120px;
    margin-bottom: 48px;
  }

  .audition-node-icon {
    width: 82px;
    height: 82px;
  }

  .audition-node-copy h3 {
    font-size: 1.9rem;
  }

  .section-heading h2,
  .pricing-heading h2,
  .director-copy h2,
  .final-cta h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

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

  .benefit-card,
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5) {
    min-height: 285px;
    grid-column: auto;
  }

  .journey-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey-list li,
  .journey-list li + li {
    min-height: 210px;
    padding: 0 0 56px 70px;
    border-right: none;
  }

  .journey-list div {
    margin-top: 0;
  }

  .price-grid {
    gap: 18px;
  }

  .price-card {
    padding: 24px 22px;
  }

  .director-grid {
    gap: 70px;
  }

  .director-photo p {
    right: -7px;
    bottom: -28px;
  }

  .faq-grid {
    gap: 28px;
  }

  .accordion summary {
    min-height: 78px;
    font-size: 15px;
  }

  .footer-inner nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .scroll-conversion-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    min-height: 64px;
    padding: 9px 9px 9px 15px;
    gap: 10px;
    border-radius: 16px;
  }

  .scroll-conversion-cta div > span {
    font-size: 8px;
  }

  .scroll-conversion-cta strong {
    font-size: 11px;
  }

  .scroll-conversion-cta a {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 10px;
  }
}

@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,
  .price-card-featured.reveal {
    opacity: 1;
    transform: none;
  }
}
