/* ── Design tokens (muted steel-blue CRT palette) ── */
:root {
  --crt-blue: #55c0e0;
  --crt-blue-bright: #72d4f0;
  --crt-blue-dim: #3da8c8;
  --crt-glow: rgba(90, 200, 230, 0.62);
  --crt-glow-soft: rgba(90, 200, 230, 0.28);
  --crt-rgb: 90, 200, 230;
  --crt-exposure: 1.28;

  --bg-black: #000000;
  --bg-charcoal: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #0d0d0d;

  --text-primary: #f5f5f5;
  --text-muted: #ababab;
  --text-dim: #707070;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --scroll-inset: max(1.25rem, calc((100vw - 1120px) / 2 + 1.25rem));
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Dense vertical phosphor scan texture */
  --scan-v: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 1px,
    rgba(0, 0, 0, 0.16) 1px,
    rgba(0, 0, 0, 0.16) 2px
  );

  --scan-v-soft: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.09) 2px,
    rgba(0, 0, 0, 0.09) 3px
  );
}

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

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

/* ── Global CRT scanline overlay ── */
.crt-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 1px,
    rgba(0, 0, 0, 0.018) 1px,
    rgba(0, 0, 0, 0.018) 2px
  );
  mix-blend-mode: overlay;
}

/* ── CRT flicker keyframes — irregular, infrequent glitches ── */
@keyframes crt-scan-flicker {
  0%, 78%, 100% {
    opacity: 0.07;
    background-position: 0 0;
  }
  79% {
    opacity: 0.1;
    background-position: 1px 0;
  }
  80% {
    opacity: 0.05;
    background-position: -1px 0;
  }
  81%, 93% {
    opacity: 0.07;
    background-position: 0 0;
  }
  94% {
    opacity: 0.09;
    background-position: 2px 0;
  }
  95% {
    opacity: 0.06;
    background-position: 0 0;
  }
}

@keyframes crt-border-glitch {
  0%, 82%, 100% {
    opacity: 0.7;
    transform: translate(0, 0);
    filter: drop-shadow(0 0 4px var(--crt-glow));
  }
  83% {
    opacity: 0.82;
    transform: translate(0.4px, -0.3px);
    filter:
      drop-shadow(-1px 0 1px rgba(255, 70, 95, 0.25))
      drop-shadow(1px 0 1px rgba(70, 210, 255, 0.25))
      drop-shadow(0 0 5px var(--crt-glow));
  }
  84% {
    opacity: 0.62;
    transform: translate(-0.35px, 0.25px);
    filter: drop-shadow(0 0 3px var(--crt-glow-soft));
  }
  85%, 96% {
    opacity: 0.7;
    transform: translate(0, 0);
    filter: drop-shadow(0 0 4px var(--crt-glow));
  }
  97% {
    opacity: 0.78;
    transform: translate(0.25px, 0.15px);
    filter:
      drop-shadow(-0.6px 0 0 rgba(255, 80, 100, 0.2))
      drop-shadow(0.6px 0 0 rgba(80, 220, 255, 0.2))
      drop-shadow(0 0 6px var(--crt-glow));
  }
}

@keyframes crt-text-glitch {
  0%, 84%, 100% {
    transform: translate(0, 0);
    background-position: 0 0, 0 0, 0 0;
    filter:
      brightness(var(--crt-exposure))
      drop-shadow(0 0 8px var(--crt-glow))
      drop-shadow(0 0 22px var(--crt-glow-soft));
  }
  85% {
    transform: translate(0.45px, -0.3px);
    background-position: 1px 0, -1px 0, 0 0;
    filter:
      brightness(calc(var(--crt-exposure) * 1.04))
      drop-shadow(-1px 0 0 rgba(255, 72, 92, 0.32))
      drop-shadow(1px 0 0 rgba(72, 208, 255, 0.32))
      drop-shadow(0 0 10px var(--crt-glow));
  }
  86% {
    transform: translate(-0.35px, 0.2px);
    background-position: -1px 0, 1px 0, 0 0;
    filter:
      brightness(calc(var(--crt-exposure) * 0.97))
      drop-shadow(-0.7px 0 0 rgba(255, 90, 110, 0.22))
      drop-shadow(0.7px 0 0 rgba(90, 220, 255, 0.22))
      drop-shadow(0 0 7px var(--crt-glow-soft));
  }
  87%, 91% {
    transform: translate(0, 0);
    background-position: 0 0, 0 0, 0 0;
    filter:
      brightness(var(--crt-exposure))
      drop-shadow(0 0 8px var(--crt-glow))
      drop-shadow(0 0 22px var(--crt-glow-soft));
  }
  92% {
    transform: translate(0.3px, 0.15px);
    background-position: 2px 0, -2px 0, 0 0;
    filter:
      brightness(calc(var(--crt-exposure) * 1.02))
      drop-shadow(-0.5px 0 0 rgba(255, 80, 100, 0.18))
      drop-shadow(0.5px 0 0 rgba(80, 215, 255, 0.18))
      drop-shadow(0 0 9px var(--crt-glow));
  }
  93% {
    transform: translate(-0.2px, -0.1px);
    background-position: 0 0, 0 0, 0 0;
    filter:
      brightness(var(--crt-exposure))
      drop-shadow(0 0 8px var(--crt-glow))
      drop-shadow(0 0 20px var(--crt-glow-soft));
  }
}

@keyframes crt-box-hover {
  0%, 83%, 100% {
    transform: scale(1.025) translate(0, 0);
  }
  84% {
    transform: scale(1.025) translate(0.5px, -0.35px);
  }
  85% {
    transform: scale(1.025) translate(-0.4px, 0.25px);
  }
  86%, 95% {
    transform: scale(1.025) translate(0, 0);
  }
  96% {
    transform: scale(1.025) translate(0.3px, 0.2px);
  }
  97% {
    transform: scale(1.025) translate(-0.25px, -0.15px);
  }
}

/* ── CRT text effect ── */
.crt-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background:
    var(--scan-v),
    var(--scan-v-soft),
    linear-gradient(180deg, var(--crt-blue-bright) 0%, var(--crt-blue) 50%, var(--crt-blue-dim) 100%);
  background-size: 2px 100%, 3px 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    brightness(var(--crt-exposure))
    drop-shadow(0 0 8px var(--crt-glow))
    drop-shadow(0 0 22px var(--crt-glow-soft));
  position: relative;
}

.crt-text--xl {
  font-size: clamp(2.25rem, 7.5vw, 6.5rem);
  line-height: 0.88;
}

.crt-text--md {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
}

.crt-text--sm {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.18em;
  --crt-exposure: 1.32;
  filter:
    brightness(var(--crt-exposure))
    drop-shadow(0 0 10px var(--crt-glow))
    drop-shadow(0 0 26px var(--crt-glow-soft));
}

.crt-text--natural-case {
  text-transform: none;
  letter-spacing: 0.06em;
}

.testimonials__label {
  margin: 0;
}

.crt-text--btn {
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.crt-text--inline {
  font-size: inherit;
  display: inline;
}

/* ── CRT bordered boxes ── */
.crt-box {
  position: relative;
  background: var(--bg-card);
  padding: 1.75rem;
  border: 1px solid rgba(var(--crt-rgb), 0.28);
  box-shadow:
    0 0 20px rgba(var(--crt-rgb), 0.06),
    inset 0 0 30px rgba(var(--crt-rgb), 0.02);
}

.crt-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--crt-blue) 0%, transparent 30%, transparent 70%, var(--crt-blue) 100%) top / 100% 1px no-repeat,
    linear-gradient(90deg, var(--crt-blue) 0%, transparent 30%, transparent 70%, var(--crt-blue) 100%) bottom / 100% 1px no-repeat,
    linear-gradient(0deg, var(--crt-blue) 0%, transparent 30%, transparent 70%, var(--crt-blue) 100%) left / 1px 100% no-repeat,
    linear-gradient(0deg, var(--crt-blue) 0%, transparent 30%, transparent 70%, var(--crt-blue) 100%) right / 1px 100% no-repeat;
  opacity: 0.7;
  filter: drop-shadow(0 0 4px var(--crt-glow));
}

.crt-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--scan-v);
  background-size: 2px 100%;
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* ── Interactive hover: grow + irregular CRT glitch ── */
.crt-interactive {
  transition: box-shadow 0.35s ease;
  will-change: transform;
}

.crt-interactive:hover {
  animation: crt-box-hover 4.8s steps(1) infinite;
  box-shadow:
    0 0 32px rgba(var(--crt-rgb), 0.14),
    inset 0 0 36px rgba(var(--crt-rgb), 0.04);
  z-index: 2;
}

.crt-interactive:hover::after {
  animation: crt-scan-flicker 4.8s steps(1) infinite;
}

.crt-interactive:hover::before {
  animation: crt-border-glitch 4.8s steps(1) infinite;
}

.crt-interactive:hover .crt-text {
  animation: crt-text-glitch 4.8s steps(1) infinite;
}

.crt-box__label {
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.crt-box p {
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 400;
  line-height: 1.7;
}

.crt-box h2 {
  margin-bottom: 0.75rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.logo__img {
  height: 36px;
  width: auto;
  opacity: 0.95;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

.nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav__link:hover {
  color: var(--crt-blue);
}

.nav__link--btn {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(var(--crt-rgb), 0.5);
  background: rgba(var(--crt-rgb), 0.1);
  color: var(--crt-blue-bright);
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav__link--btn:hover {
  color: var(--crt-blue-bright);
  border-color: rgba(var(--crt-rgb), 0.75);
  box-shadow: 0 0 16px rgba(var(--crt-rgb), 0.2);
}

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 0 1rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(var(--crt-rgb), 0.04), transparent),
    var(--bg-black);
}

.hero__bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  text-align: center;
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
}

/* ── Layered parallax hero ── */
.hero-parallax {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  aspect-ratio: 6177 / 2666;
  min-height: 200px;
  cursor: crosshair;
  overflow: visible;
}

.hero-parallax__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 2px;
}

.hero-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  will-change: transform;
  pointer-events: none;
}

.hero-layer--bg {
  z-index: 1;
  align-items: center;
}

.hero-layer--text-img {
  z-index: 2;
  align-items: center;
}

.hero-layer--fg {
  z-index: 3;
  align-items: flex-end;
  padding-bottom: 2%;
  box-sizing: border-box;
}

.hero-layer__img {
  display: block;
  pointer-events: none;
  user-select: none;
}

.hero-layer__img--bg,
.hero-layer__video--bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: contrast(1.08) brightness(0.95);
}

.hero-layer__video--bg {
  display: block;
  border: 0;
  background: transparent;
}

.hero-layer__img--text {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-layer__img--fg {
  height: 78%;
  width: auto;
  max-width: min(100%, 520px);
  margin-bottom: 0;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.1);
}

/* ── VSL (inside hero, under headline) ── */
.hero__vsl {
  max-width: 860px;
  margin: 0 auto 0;
}

.hero__vsl .section-head {
  margin-bottom: 1.75rem;
}

.hero__vsl .section-title {
  margin-inline: auto;
  text-align: center;
}

.vsl__divider {
  margin: 2.5rem auto 1.25rem;
  max-width: 38rem;
}

.vsl__divider-line {
  border: 0;
  height: 2px;
  margin: 0 auto;
  width: min(26rem, 72%);
  background: rgba(255, 255, 255, 0.14);
}

.vsl__divider-text {
  margin: 0;
  padding: 1.15rem 1rem;
  text-align: center;
}

.vsl__divider .hero__sub {
  margin: 0;
  max-width: none;
}

.hero__sub {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero__sub-break {
  display: none;
}

.hero__sub-line {
  display: inline;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--crt-blue-bright);
  background: var(--bg-elevated);
  border-color: rgba(var(--crt-rgb), 0.45);
  font-family: var(--font-body);
  -webkit-text-fill-color: currentColor;
  box-shadow:
    0 0 20px rgba(var(--crt-rgb), 0.12),
    inset 0 0 20px rgba(var(--crt-rgb), 0.04);
}

.btn--primary:hover {
  color: var(--crt-blue-bright);
  box-shadow:
    0 0 30px rgba(var(--crt-rgb), 0.22),
    inset 0 0 24px rgba(var(--crt-rgb), 0.06);
}

.apply-form__submit {
  margin-top: 0.25rem;
  color: #000000;
  background: var(--crt-blue-bright);
  border-color: var(--crt-blue-bright);
  -webkit-text-fill-color: currentColor;
  box-shadow:
    0 0 24px rgba(var(--crt-rgb), 0.35),
    0 0 48px rgba(var(--crt-rgb), 0.15);
}

.apply-form__submit:hover {
  color: #000000;
  background: var(--crt-blue-bright);
  box-shadow:
    0 0 32px rgba(var(--crt-rgb), 0.45),
    0 0 56px rgba(var(--crt-rgb), 0.2);
}

.btn--ghost {
  color: var(--text-muted);
  border-color: var(--border-subtle);
}

.btn--ghost:hover {
  color: var(--crt-blue);
  border-color: rgba(var(--crt-rgb), 0.25);
}

.btn--large {
  padding: 1.1rem 2.5rem;
  width: 100%;
}

/* ── VSL player ── */
.section-head {
  margin-bottom: 2.5rem;
}

.section-head--center {
  text-align: center;
}

.section-tag {
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 720px;
}

.section-title--apply {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.section-head--center .section-title:not(.section-title--apply) {
  margin-inline: auto;
}

.section-title--light {
  color: var(--text-primary);
}

/* ── VSL player ── */
.vsl__player {
  position: relative;
  z-index: 10000;
  isolation: isolate;
}

.crt-box--video {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.crt-box--video::before,
.crt-box--video::after {
  z-index: 2;
}

.vsl__iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--bg-elevated);
}

.vsl__unmute {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(var(--crt-rgb), 0.4);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(var(--crt-rgb), 0.12);
  transform: translateY(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.vsl__unmute:hover {
  border-color: rgba(var(--crt-rgb), 0.65);
  transform: translateY(-50%) scale(1.03);
}

.vsl__unmute.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.vsl__unmute-icon {
  width: 18px;
  height: 18px;
  color: var(--crt-blue);
  flex-shrink: 0;
}

.vsl__unmute-text {
  white-space: nowrap;
}

.vsl__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
  background:
    radial-gradient(circle at center, rgba(var(--crt-rgb), 0.06), transparent 60%),
    var(--bg-elevated);
  gap: 1rem;
}

.vsl__play-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(var(--crt-rgb), 0.45);
  display: grid;
  place-items: center;
  color: var(--crt-blue);
  box-shadow: 0 0 30px rgba(var(--crt-rgb), 0.15);
}

.vsl__play-ring svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.vsl__placeholder-text {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.vsl__placeholder-hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vsl__caption {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ── Typeform embed ── */
.typeform {
  position: relative;
  display: grid;
  grid-template-areas: "apply-stack";
  margin-top: 0;
  padding: 0 0 3rem;
  min-height: calc(100vw * 2998 / 3840);
  background: var(--bg-black);
}

.typeform__collage--desktop,
.typeform__stage {
  grid-area: apply-stack;
}

.typeform__head {
  display: none;
  pointer-events: none;
}

.typeform__stage {
  display: grid;
  grid-template-areas: "apply-stack";
  width: 100%;
}

.typeform__collage--desktop {
  position: relative;
  z-index: 0;
  width: 100%;
  height: calc(100vw * 2998 / 3840);
  min-height: calc(100vw * 2998 / 3840);
  overflow: hidden;
  background:
    var(--bg-black)
    url("assets/get-started-poster.jpg")
    top center / contain no-repeat;
}

.typeform__collage--mobile {
  display: none;
}

.typeform__collage-poster,
.typeform__collage-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border: 0;
}

.typeform__collage-poster {
  z-index: 0;
}

.typeform__collage-video {
  z-index: 1;
  opacity: 0;
  background: transparent;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.typeform--video-playing .typeform__collage-video {
  opacity: 1;
}

.typeform__inner {
  grid-area: apply-stack;
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: center;
  width: min(1120px, calc(100% - 2.5rem));
  max-width: calc(100vw * 1720 / 3840);
  padding-top: calc(100vw * 400 / 3840);
  pointer-events: none;
}

.typeform__head {
  display: none;
  pointer-events: none;
}

.typeform__title {
  display: none;
}

.typeform__embed {
  pointer-events: auto;
}

.typeform__intro {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 560px;
  margin-inline: auto;
}

.crt-box--form {
  margin-top: 1.5rem;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(var(--crt-rgb), 0.78);
  background: var(--bg-black);
  box-shadow:
    0 0 28px rgba(var(--crt-rgb), 0.34),
    0 0 64px rgba(var(--crt-rgb), 0.16),
    inset 0 0 32px rgba(var(--crt-rgb), 0.08);
}

.crt-box--form::before {
  inset: -2px;
  opacity: 1;
  filter:
    brightness(1.28)
    drop-shadow(0 0 8px var(--crt-glow))
    drop-shadow(0 0 20px var(--crt-glow))
    drop-shadow(0 0 36px var(--crt-glow-soft));
  background:
    linear-gradient(90deg, var(--crt-blue-bright) 0%, transparent 30%, transparent 70%, var(--crt-blue-bright) 100%) top / 100% 2px no-repeat,
    linear-gradient(90deg, var(--crt-blue-bright) 0%, transparent 30%, transparent 70%, var(--crt-blue-bright) 100%) bottom / 100% 2px no-repeat,
    linear-gradient(0deg, var(--crt-blue-bright) 0%, transparent 30%, transparent 70%, var(--crt-blue-bright) 100%) left / 2px 100% no-repeat,
    linear-gradient(0deg, var(--crt-blue-bright) 0%, transparent 30%, transparent 70%, var(--crt-blue-bright) 100%) right / 2px 100% no-repeat;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 1.75rem 0.75rem;
}

.apply-form__honeypot {
  display: none !important;
}

.apply-form__field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.apply-form__field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(var(--crt-rgb), 0.25);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.apply-form__field input::placeholder {
  color: var(--text-dim);
}

.apply-form__field input:focus {
  outline: none;
  border-color: rgba(var(--crt-rgb), 0.55);
  box-shadow: 0 0 18px rgba(var(--crt-rgb), 0.14);
}


.apply-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.apply-form__status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-muted);
}

.apply-form__status--success {
  color: var(--crt-blue);
}

.apply-form__status--error {
  color: #c97070;
}

.apply-form.is-success .apply-form__field,
.apply-form.is-success .apply-form__submit {
  display: none;
}

@media (min-width: 901px) {
  .typeform {
    margin-top: 0;
    padding: 0 0 clamp(2.25rem, 4vw, 4rem);
  }

  .crt-box--form {
    margin-top: 0;
  }
}

/* ── Testimonials ── */
.testimonials {
  padding: 2rem 0 0;
  background: var(--bg-black);
}

/* Written testimonials — horizontal scroll */
.testimonials-scroll {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--scroll-inset);
  padding: 0.25rem var(--scroll-inset) 1.25rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--crt-rgb), 0.55) var(--bg-charcoal);
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.testimonials-scroll:active {
  cursor: grabbing;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: var(--bg-charcoal);
  border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: rgba(var(--crt-rgb), 0.45);
  border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--crt-rgb), 0.65);
}

.testimonial {
  flex: 0 0 min(340px, 78vw);
  scroll-snap-align: start;
  margin: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.testimonial__quote {
  font-size: 0.925rem;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-style: normal;
  margin-bottom: 1.25rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(var(--crt-rgb), 0.2);
  flex-shrink: 0;
}

.testimonial__author cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-primary);
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── FAQ ── */
.faq {
  padding: 0 0 4.5rem;
  background: var(--bg-black);
}

.faq__list {
  max-width: 520px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.faq__item[open] .faq__question {
  color: var(--text-primary);
}

.faq__item[open] .faq__question::after {
  content: "−";
  color: var(--text-muted);
}

.faq__question:hover {
  color: var(--text-primary);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
  transition: padding-bottom 0.4s ease;
}

.faq__item[open] .faq__answer-inner {
  padding-bottom: 1rem;
}

.faq__answer p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dim);
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* Video testimonials — horizontal scroll */
.video-testimonials {
  padding: 0 0 3rem;
  background: var(--bg-black);
}

.client-routines {
  padding-bottom: 7rem;
}

.client-routines__scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--scroll-inset);
  padding: 0.25rem var(--scroll-inset) 1.25rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--crt-rgb), 0.55) var(--bg-charcoal);
}

.client-routines__scroll:active {
  cursor: grabbing;
}

.client-routines__scroll::-webkit-scrollbar {
  height: 8px;
}

.client-routines__scroll::-webkit-scrollbar-track {
  background: var(--bg-charcoal);
  border-radius: 4px;
}

.client-routines__scroll::-webkit-scrollbar-thumb {
  background: rgba(var(--crt-rgb), 0.45);
  border-radius: 4px;
}

.client-routines__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--crt-rgb), 0.65);
}

.client-routine {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.client-routine__media {
  position: relative;
  flex: 0 0 auto;
  width: min(46vw, 260px);
  aspect-ratio: 9 / 16;
  min-height: 280px;
  background: var(--bg-black);
}

@media (max-width: 900px), (pointer: coarse) {
  .client-routine__media:not(.is-loaded) .client-routine__iframe {
    visibility: hidden;
  }

  .client-routine__media:not(.is-loaded) .client-routine__play {
    display: grid;
  }
}

.client-routine__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(var(--crt-rgb), 0.12), transparent 62%),
    rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (max-width: 900px), (pointer: coarse) {
  .client-routine__media:not(.is-loaded) .client-routine__iframe {
    visibility: hidden;
  }

  .client-routine__media:not(.is-loaded) .client-routine__play {
    display: grid;
  }
}

.client-routine__media.is-loaded .client-routine__play {
  display: none;
}

.client-routine__play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(var(--crt-rgb), 0.55);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 20px rgba(var(--crt-rgb), 0.25);
  position: relative;
}

.client-routine__play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--crt-blue-bright);
}

.client-routine__iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--bg-black);
}

.client-routine__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: min(34vw, 220px);
  padding: 1.25rem 1.5rem;
  border-left: 1px solid rgba(var(--crt-rgb), 0.18);
  background: var(--bg-card);
}

.client-routine__link {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.client-routine__link:hover {
  color: var(--crt-blue);
}

.client-routine__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-primary);
}

.client-routine__category {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.video-testimonials__head {
  margin-bottom: 2rem;
}

.video-testimonials__scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--scroll-inset);
  padding: 0.25rem var(--scroll-inset) 1.25rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--crt-rgb), 0.55) var(--bg-charcoal);
}

.video-testimonials__scroll:active {
  cursor: grabbing;
}

.video-testimonials__scroll::-webkit-scrollbar {
  height: 8px;
}

.video-testimonials__scroll::-webkit-scrollbar-track {
  background: var(--bg-charcoal);
  border-radius: 4px;
}

.video-testimonials__scroll::-webkit-scrollbar-thumb {
  background: rgba(var(--crt-rgb), 0.45);
  border-radius: 4px;
}

.video-testimonials__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--crt-rgb), 0.65);
}

.video-testimonial {
  flex: 0 0 min(88vw, 980px);
  scroll-snap-align: start;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 10000;
  isolation: isolate;
}

.video-testimonial::before,
.video-testimonial::after {
  z-index: 2;
}

.video-testimonial__iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--bg-black);
}

.video-testimonial__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  background:
    radial-gradient(circle at center, rgba(var(--crt-rgb), 0.06), transparent 65%),
    var(--bg-elevated);
  gap: 0.75rem;
  padding: 1.5rem;
}

.video-testimonial__play-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(var(--crt-rgb), 0.45);
  display: grid;
  place-items: center;
  color: var(--crt-blue);
  box-shadow: 0 0 24px rgba(var(--crt-rgb), 0.15);
}

.video-testimonial__play-ring svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.video-testimonial__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.video-testimonial__hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.video-testimonial--pending .video-testimonial__inner {
  opacity: 0.65;
}

/* ── Footer ── */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-charcoal);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

@media (prefers-reduced-motion: reduce) {
  .hero-parallax-offset,
  [data-depth] {
    transform: none !important;
    margin: 0 !important;
  }

  .crt-interactive:hover .crt-text {
    animation: none;
  }

  .crt-interactive:hover {
    transform: scale(1.025);
  }

  .faq__answer,
  .faq__answer-inner {
    transition: none;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .typeform {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0 0 clamp(2.25rem, 4vw, 4rem);
    scroll-margin-top: 4.5rem;
  }

  .typeform__collage--desktop {
    display: none;
  }

  .typeform__head {
    display: block;
    padding: 0 1.25rem;
    margin-bottom: clamp(0.85rem, 3vw, 1.15rem);
    text-align: center;
  }

  .typeform__stage {
    display: grid;
    grid-template-areas: "apply-stack";
    width: 100%;
  }

  .typeform__collage--mobile,
  .typeform__inner {
    grid-area: apply-stack;
  }

  .typeform__collage--mobile {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    background: var(--bg-black);
  }

  .typeform__collage-mobile-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .typeform__inner {
    position: relative;
    z-index: 1;
    align-self: stretch;
    justify-self: center;
    display: flex;
    flex-direction: column;
    width: min(1120px, calc(100% - 1.5rem));
    max-width: calc(100vw * 1536 / 3840);
    min-height: calc(100vw * 3584 / 3840);
    padding-top: 0;
    pointer-events: none;
  }

  .typeform__embed {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vw * 3584 / 3840);
  }

  .typeform__title {
    display: block;
    margin-inline: auto;
    text-align: center;
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.75rem);
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: var(--text-primary);
  }

  .crt-box--form {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    background: var(--bg-black);
  }

  .apply-form {
    flex: 1;
    min-height: calc(100vw * 3584 / 3840);
    justify-content: space-between;
    padding: clamp(1.35rem, 5vw, 2.25rem) 0.95rem clamp(1.35rem, 5vw, 2.25rem);
    gap: 0;
  }

  .apply-form__submit {
    margin-top: 0;
  }

  .apply-form__field label {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
  }

  .apply-form__field input {
    padding: 0.68rem 0.75rem;
    font-size: 0.88rem;
  }

  .btn--large {
    padding: 0.8rem 1.15rem;
    font-size: 0.72rem;
  }

  .video-testimonial {
    flex-basis: 92vw;
  }

  .client-routine__media {
    width: min(58vw, 240px);
    min-height: 320px;
  }

  .client-routine__meta {
    width: min(30vw, 160px);
    padding: 1rem;
  }

  .hero-parallax {
    cursor: default;
  }

  .hero-parallax__stage {
    overflow: visible;
  }

  .hero-layer--fg {
    padding-bottom: 2%;
  }

  .hero-layer__img--fg {
    height: 75%;
    max-width: 88%;
  }

  .nav {
    gap: 0.5rem;
    font-size: 0.65rem;
  }

  .hero__vsl .hero__sub {
    max-width: calc(100% - 1.5rem);
    font-size: 0.8rem;
    line-height: 1.55;
    letter-spacing: -0.015em;
  }

  .hero__sub-line {
    display: block;
  }

  .nav__link--btn {
    padding: 0.4rem 0.65rem;
  }
}

@media (max-width: 540px) {
  .nav__link:not(.nav__link--btn) {
    display: none;
  }

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

  .btn {
    width: 100%;
  }
}
