:root {
  /* base surfaces (off-black, cool — never pure black) */
  --bg: #0a0b0f;
  --bg-elev: #0d0f14;
  --ink: #0a0b0f;

  /* layered surfaces (elevation = lighter-on-darker) */
  --s1: rgba(255, 255, 255, 0.024);
  --s2: rgba(255, 255, 255, 0.045);
  --s3: rgba(255, 255, 255, 0.07);

  /* lines / hairlines */
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --edge: rgba(255, 255, 255, 0.14);

  /* text */
  --text: #f3f5f9;
  --text-soft: rgba(243, 245, 249, 0.6);
  --text-faint: rgba(243, 245, 249, 0.4);

  /* accents (used sparingly) */
  --red: #ff2d3f;
  --red-2: #ff5763;
  --red-deep: #b90f17;
  --gold: #ccab6e;

  /* radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --pill: 999px;

  /* shadows + glow */
  --shadow-sm: 0 10px 30px -16px rgba(0, 0, 0, 0.7);
  --shadow-md: 0 20px 50px -22px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 40px 90px -28px rgba(0, 0, 0, 0.8);
  --glow-red: 0 14px 44px -10px rgba(255, 45, 63, 0.42);

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;

  /* type */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  font-family: var(--font-sans);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* subtle film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

input,
select,
button,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

/* ---------- typography primitives ---------- */
.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.eyebrow.red {
  color: var(--red-2);
}

.eyebrow.gold {
  color: var(--gold);
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.65;
}

.accent {
  color: transparent;
  background: linear-gradient(120deg, var(--red-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- buttons ---------- */
.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.85rem;
}

.button.primary,
.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: var(--glow-red);
}

.button.primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 54px -10px rgba(255, 45, 63, 0.6);
}

.button.secondary {
  color: var(--text);
  background: var(--s2);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: var(--s3);
  border-color: var(--edge);
}

.button.full {
  width: 100%;
}

.button .arrow {
  transition: transform 0.3s var(--ease);
}

.button:hover .arrow {
  transform: translateX(4px);
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    height 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header.scrolled {
  height: 64px;
  background: rgba(10, 11, 15, 0.72);
  border-bottom-color: var(--line);
  backdrop-filter: blur(20px) saturate(140%);
}

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

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand .wordmark {
  display: grid;
  gap: 3px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand .wordmark small {
  display: block;
  margin-top: 0;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--red);
  transition: right 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  right: 0;
}

/* ---------- sections ---------- */
.section-dark {
  background: var(--bg);
}

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

section:not(.hero) {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

section:not(.hero) > *:not(.section-bg) {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 66px);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: 1.06rem;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px clamp(18px, 5vw, 54px) 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero-atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 15, 0.92) 0%, rgba(10, 11, 15, 0.74) 35%, rgba(10, 11, 15, 0.2) 72%, rgba(10, 11, 15, 0.52) 100%),
    url("assets/generated/hero-full-bleed-deal-room.png") center / cover no-repeat;
  filter: saturate(0.92) contrast(1.08) brightness(0.8);
  transform: scale(1.03);
  animation: heroBgDrift 16s var(--ease) infinite alternate;
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 33%, rgba(255, 45, 63, 0.18), transparent 38%),
    radial-gradient(circle at 22% 54%, rgba(255, 45, 63, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(10, 11, 15, 0.32), rgba(10, 11, 15, 0.94) 90%);
}

.hero-bg-scan {
  position: absolute;
  left: -25%;
  right: -25%;
  top: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 99, 0.52), transparent);
  box-shadow: 0 0 28px rgba(255, 45, 63, 0.36);
  transform: rotate(-7deg);
  animation: fullHeroScan 6.4s ease-in-out infinite;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.028) 0 1px,
    transparent 1px 96px
  );
  -webkit-mask: radial-gradient(circle at 70% 30%, #000, transparent 75%);
  mask: radial-gradient(circle at 70% 30%, #000, transparent 75%);
}

@keyframes heroBgDrift {
  to {
    transform: scale(1.08) translate3d(-16px, -10px, 0);
  }
}

@keyframes fullHeroScan {
  0%,
  22% {
    opacity: 0;
    transform: translateY(-160px) rotate(-7deg);
  }
  38% {
    opacity: 0.9;
  }
  74%,
  100% {
    opacity: 0;
    transform: translateY(520px) rotate(-7deg);
  }
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.78fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-copy {
  position: relative;
}

.hero-copy > :not(.hero-watermark-logo) {
  position: relative;
  z-index: 2;
}

.hero-watermark-logo {
  position: absolute;
  z-index: 1;
  left: clamp(-80px, -6vw, -28px);
  top: clamp(92px, 13vw, 160px);
  width: min(620px, 72vw);
  opacity: 0.105;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.18) brightness(1.1) drop-shadow(0 0 34px rgba(255, 255, 255, 0.14));
  pointer-events: none;
  transform: scale(1);
}

.hero-watermark-logo::after {
  content: "";
}

.hero-lede {
  max-width: 56ch;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 30px 0 18px;
}

.hero-offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  max-width: 620px;
}

.hero-offer-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--r-xs);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(243, 245, 249, 0.72);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 580px;
}

.stat {
  padding: 18px 18px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--s1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.35;
}

/* ---------- glass panel ---------- */
.glass {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--s3), var(--s1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), var(--shadow-lg);
  backdrop-filter: blur(22px);
}

/* ---------- hero BVPR teaser ---------- */
.hero-panel {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 680px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 11, 15, 0.04), rgba(10, 11, 15, 0.78) 68%, rgba(10, 11, 15, 0.95)),
    radial-gradient(circle at 32% 28%, rgba(255, 45, 63, 0.12), transparent 42%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.hero-visual-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 48%;
  filter: saturate(0.9) contrast(1.07) brightness(0.82);
  transform: scale(1.03);
  animation: heroImageDrift 12s var(--ease) infinite alternate;
}

.scan-line {
  position: absolute;
  left: -30%;
  right: -30%;
  top: 18%;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 99, 0.58), transparent);
  box-shadow: 0 0 22px rgba(255, 45, 63, 0.35);
  animation: scanSweep 4.5s ease-in-out infinite;
}

.signal-dot {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 7px rgba(255, 45, 63, 0.1), 0 0 24px rgba(255, 45, 63, 0.86);
  animation: signalPulse 2.6s ease-in-out infinite;
}

.dot-one {
  left: 28%;
  top: 31%;
}

.dot-two {
  right: 28%;
  top: 43%;
  animation-delay: -0.8s;
}

.dot-three {
  left: 58%;
  bottom: 37%;
  animation-delay: -1.5s;
}

.hero-visual-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  background: rgba(9, 10, 14, 0.72);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(135%);
}

.hero-brief {
  min-height: auto;
  align-self: center;
  padding: 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.03)),
    rgba(9, 10, 14, 0.54);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 45, 63, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.hero-brief::before {
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 45, 63, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(10, 11, 15, 0.2));
}

.hero-brief .hero-visual-overlay {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 5;
  padding: 30px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-brief .signal-dot {
  z-index: 6;
}

.hero-brief .dot-one {
  left: auto;
  right: 24px;
  top: 26px;
}

.hero-brief .dot-two {
  right: 38%;
  top: 48%;
}

.hero-brief .dot-three {
  left: 30px;
  bottom: 32px;
}

.hero-visual-overlay h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  max-width: 12ch;
}

.hero-visual-overlay p {
  max-width: 46ch;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.deal-assembly {
  position: relative;
  height: 240px;
  margin: 22px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at center, rgba(255, 45, 63, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.deal-assembly::before,
.deal-assembly::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 99, 0.45), transparent);
  transform-origin: center;
  opacity: 0.35;
  animation: dealLines 5.6s var(--ease) infinite;
}

.deal-assembly::before {
  --rot: 0deg;
}

.deal-assembly::after {
  --rot: 90deg;
  transform: translate(-50%, -50%) rotate(var(--rot));
}

.deal-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 236px;
  height: 126px;
  border: 1px solid rgba(255, 87, 99, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg) scale(0.72);
  opacity: 0.25;
  animation: dealOrbit 5.6s var(--ease) infinite;
}

.deal-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 86px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 87, 99, 0.48);
  border-radius: var(--r-sm);
  background: linear-gradient(160deg, rgba(255, 45, 63, 0.22), rgba(10, 11, 15, 0.92));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 34px rgba(255, 45, 63, 0.18);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  transform: translate(-50%, -50%);
  animation: dealCore 5.6s var(--ease) infinite;
}

.deal-part {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  min-width: 82px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 28px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0.64);
  opacity: 0;
  animation: dealPartExplode 5.6s var(--ease) infinite;
}

.part-problem {
  animation-delay: 0.08s;
}

.part-value {
  animation-delay: 0.16s;
}

.part-risk {
  animation-delay: 0.24s;
}

.part-time {
  animation-delay: 0.32s;
}

.part-next {
  animation-delay: 0.4s;
}

@keyframes dealPartExplode {
  0%,
  12% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.64);
  }
  28%,
  68% {
    opacity: 1;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
}

@keyframes dealCore {
  0%,
  12% {
    transform: translate(-50%, -50%) scale(1);
  }
  28%,
  68% {
    transform: translate(-50%, -50%) scale(0.84);
  }
  86%,
  100% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes dealOrbit {
  0%,
  12% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-13deg) scale(0.72);
  }
  28%,
  68% {
    opacity: 0.55;
    transform: translate(-50%, -50%) rotate(7deg) scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(20deg) scale(0.72);
  }
}

@keyframes dealLines {
  0%,
  12% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--rot)) scaleX(0.3);
  }
  28%,
  68% {
    opacity: 0.38;
    transform: translate(-50%, -50%) rotate(var(--rot)) scaleX(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--rot)) scaleX(0.3);
  }
}

.visual-proof-grid div {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.045);
}

.visual-proof-grid span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.visual-proof-grid strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

@keyframes heroImageDrift {
  to {
    transform: scale(1.09) translate3d(-10px, -8px, 0);
  }
}

@keyframes scanSweep {
  0%,
  24% {
    opacity: 0;
    transform: translateY(-90px) rotate(-7deg);
  }
  38% {
    opacity: 0.8;
  }
  72%,
  100% {
    opacity: 0;
    transform: translateY(360px) rotate(-7deg);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.panel-head .eyebrow {
  margin: 0;
}

.panel-tag {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--s2);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.panel-title {
  margin: 12px 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.coaching-command {
  overflow: hidden;
}

.coaching-command .panel-title {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.coach-command-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
}

.coach-command-top img {
  width: 66px;
  height: 66px;
  flex: none;
  border-radius: var(--r-sm);
  border: 1px solid var(--edge);
  object-fit: cover;
  object-position: 45% 22%;
  filter: grayscale(0.15) contrast(1.08) brightness(0.96);
}

.coach-command-top strong,
.coach-command-top span {
  display: block;
}

.coach-command-top strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.coach-command-top span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.deal-map-stage {
  position: relative;
  height: 272px;
  margin: 18px 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    radial-gradient(ellipse at center, rgba(255, 45, 63, 0.18), rgba(255, 45, 63, 0) 58%);
  overflow: hidden;
  perspective: 900px;
}

.deal-map-grid {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--r-md);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotateX(58deg) rotateZ(-18deg) translateY(18px);
  transform-origin: 50% 62%;
  animation: mapDrift 7s var(--ease) infinite alternate;
}

.deal-map-core {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 4;
  width: 134px;
  min-height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  border: 1px solid rgba(255, 87, 99, 0.52);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(255, 45, 63, 0.2), rgba(12, 13, 18, 0.92));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38), 0 0 42px rgba(255, 45, 63, 0.18);
  transform: translate(-50%, -50%);
}

.deal-map-core span,
.deal-map-card span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.deal-map-core strong,
.deal-map-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.deal-map-card {
  position: absolute;
  z-index: 3;
  width: 122px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(13, 15, 20, 0.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  animation: cardFloat 4.8s var(--ease) infinite alternate;
}

.card-power {
  left: 7%;
  top: 18%;
}

.card-value {
  right: 7%;
  top: 16%;
  animation-delay: -1.1s;
}

.card-next {
  left: 52%;
  bottom: 8%;
  animation-delay: -2s;
}

.deal-path {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 99, 0.8), transparent);
  transform-origin: left center;
  opacity: 0.72;
}

.path-one {
  left: 28%;
  top: 36%;
  width: 38%;
  transform: rotate(13deg);
}

.path-two {
  left: 28%;
  top: 57%;
  width: 31%;
  transform: rotate(-22deg);
}

.path-three {
  left: 50%;
  top: 56%;
  width: 31%;
  transform: rotate(27deg);
}

.deal-path::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 16px rgba(255, 45, 63, 0.7);
  animation: pathPulse 2.8s linear infinite;
}

@keyframes mapDrift {
  to {
    transform: rotateX(58deg) rotateZ(-14deg) translateY(8px) translateX(8px);
  }
}

@keyframes cardFloat {
  to {
    transform: translateY(-8px) translateX(4px);
  }
}

@keyframes pathPulse {
  to {
    left: 100%;
  }
}

.teaser-score {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.ring {
  position: relative;
  flex: none;
  width: 92px;
  height: 92px;
}

.ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring .ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 7;
}

.ring .ring-val {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 1.3s var(--ease);
}

.ring-num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.teaser-score-meta .eyebrow {
  margin-bottom: 6px;
}

.teaser-score-meta p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.teaser-ranks {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.rank-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 0.8rem;
}

.rank-bar-label span:first-child {
  color: var(--text);
  font-weight: 500;
}

.rank-bar-label span:last-child {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-faint);
}

.rank-bar {
  height: 7px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.rank-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--pill);
  background: linear-gradient(90deg, var(--red-deep), var(--red-2));
  transition: width 1.1s var(--ease);
}

.hero-panel.in .rank-bar i {
  width: var(--w);
}

.hero-panel.in .rank-row:nth-child(2) .rank-bar i {
  transition-delay: 0.12s;
}

.hero-panel.in .rank-row:nth-child(3) .rank-bar i {
  transition-delay: 0.24s;
}

.panel-foot {
  margin-top: 13px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

/* ---------- logo / trust band ---------- */
.logo-band {
  display: grid;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 54px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-elev);
}

.logo-band .eyebrow {
  margin: 0;
  text-align: center;
}

.marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  color: rgba(243, 245, 249, 0.5);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}

.marquee-track b:hover {
  color: var(--text);
}

/* ---------- coaching / video proof ---------- */
.coaching {
  overflow: hidden;
}

.coaching-layout,
.training-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.coaching-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.coaching-copy > p {
  max-width: 66ch;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.coaching-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 26px 0 4px;
}

.coaching-points span {
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: var(--s1);
  padding: 12px 14px;
  color: var(--text);
  font-weight: 500;
}

.coaching-proof {
  padding: 22px;
}

.quote-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--s1);
  text-align: left;
}

.quote-card blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.quote-card blockquote::before {
  content: "\201C";
  display: block;
  color: var(--red-2);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.45;
  margin-bottom: 12px;
}

.quote-card footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

.quote-featured {
  border-color: rgba(255, 87, 99, 0.28);
  background: linear-gradient(160deg, rgba(255, 45, 63, 0.11), var(--s1));
}

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

.training {
  padding-top: clamp(62px, 8vw, 108px);
}

.video-wrap {
  overflow: hidden;
}

.video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050507;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-proof-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-video-grid {
  display: grid;
  gap: 12px;
}

.proof-video-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--s1);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.proof-video-card.video-asset-card {
  color: inherit;
}

.proof-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 87, 99, 0.32);
}

.proof-video-thumb {
  position: relative;
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background:
    linear-gradient(135deg, rgba(255, 45, 63, 0.18), rgba(255, 255, 255, 0.03)),
    #0b0c10;
  overflow: hidden;
}

.proof-video-thumb strong {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.proof-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.proof-video-card:hover .proof-video-thumb img {
  transform: scale(1.05);
  opacity: 0.68;
}

.proof-video-play {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 26px rgba(255, 45, 63, 0.32);
}

.proof-video-play::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.proof-video-card h3 {
  margin-bottom: 2px;
}

.proof-video-card p,
.proof-video-card span,
.video-note {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.proof-video-card span {
  display: block;
  margin-top: 6px;
}

.video-note {
  margin-top: 14px;
  color: var(--text-faint);
}

/* ---------- content library ---------- */
.content-library {
  padding-top: clamp(56px, 7vw, 92px);
}

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

.library-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--s1);
  color: inherit;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.library-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 11, 15, 0.04), rgba(10, 11, 15, 0.45) 44%, rgba(10, 11, 15, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(255, 45, 63, 0.18), transparent 36%);
}

.library-card::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  z-index: 3;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: left 0.7s var(--ease), opacity 0.7s var(--ease);
}

.library-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 87, 99, 0.34);
  box-shadow: var(--shadow-md);
}

.library-card:hover::after {
  left: 108%;
  opacity: 1;
}

.library-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08) brightness(0.72);
  transform: scale(1.02);
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.library-card:hover img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.1) brightness(0.82);
}

.library-card span,
.library-card h3 {
  position: relative;
  z-index: 4;
}

.library-card span {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  color: var(--red-2);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.library-card h3 {
  max-width: 12ch;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

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

/* ---------- BVPR tool section ---------- */
.tool-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 16px;
  align-items: stretch;
}

.bvpr-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--s1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

input,
select,
textarea {
  min-height: 50px;
  width: 100%;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  min-height: 120px;
  padding-block: 14px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 45, 63, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}

.analysis-card {
  min-height: 540px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--s3), var(--s1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-md);
}

.analysis-lock {
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
}

.analysis-lock h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 4px 0 12px;
}

.analysis-lock p {
  color: var(--text-soft);
  max-width: 42ch;
  margin-inline: auto;
}

.report {
  display: grid;
  gap: 14px;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.report-header h3 {
  margin: 6px 0 4px;
}

.report-header p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.score {
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red-2);
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rank,
.questions,
.next-step {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--s1);
}

.rank strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.rank h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}

.rank p,
.next-step p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.questions strong,
.next-step strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.questions ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---------- method ---------- */
.method-grid,
.ecosystem-grid {
  display: grid;
  gap: 16px;
}

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

.method article,
.ecosystem-grid div {
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--s1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.method article:hover,
.ecosystem-grid div:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: var(--s2);
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--s2);
  color: var(--red-2);
}

.icon-tile svg {
  width: 24px;
  height: 24px;
}

.method article .step-no {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

.method article h3,
.ecosystem-grid h3 {
  margin-bottom: 12px;
}

.method article p,
.ecosystem-grid p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- book ---------- */
.book {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.book-visual {
  display: grid;
  place-items: center;
}

.book-cover {
  position: relative;
  width: min(360px, 84vw);
  aspect-ratio: 0.72;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(155deg, #16181f, #050507);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.5s var(--ease);
}

.book-cover:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xs);
}

.book-cover img {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 64%;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 40px rgba(255, 45, 63, 0.25));
}

.book-cover span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.book-cover h3 {
  margin: 8px 0;
  font-size: 2.1rem;
}

.book-cover p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.book-copy {
  max-width: 640px;
}

.book-copy h2 {
  margin-bottom: 16px;
}

.book-copy > p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.offer-stack {
  display: grid;
  gap: 9px;
  margin: 26px 0;
}

.offer-stack span {
  padding: 14px 18px;
  border-left: 2px solid var(--red);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--s1);
  font-size: 0.92rem;
  font-weight: 500;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkout-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--s1);
  color: var(--text);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.checkout-card span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.checkout-card strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: auto;
}

.checkout-card small {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.checkout-card:hover {
  transform: translateY(-3px);
  border-color: var(--edge);
  background: var(--s2);
}

.checkout-card.featured {
  border-color: rgba(255, 45, 63, 0.5);
  background: linear-gradient(160deg, rgba(255, 45, 63, 0.12), var(--s1));
}

.checkout-card.featured span {
  color: var(--red-2);
}

.checkout-card.coaching-link {
  background: linear-gradient(160deg, rgba(232, 197, 112, 0.12), var(--s1));
  border-color: rgba(232, 197, 112, 0.34);
}

.checkout-card.coaching-link span {
  color: var(--gold);
}

/* ---------- results / testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-grid figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--s1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.testimonial-grid figure:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.testimonial-grid blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
}

.testimonial-grid blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.4;
  margin-bottom: 14px;
  color: var(--red-2);
}

.testimonial-grid figcaption {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

/* ---------- ecosystem ---------- */
.ecosystem-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- apply ---------- */
.apply {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.coach-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--s1);
  max-width: 420px;
}

.coach-portrait {
  position: relative;
  flex: none;
  width: 84px;
  height: 84px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--edge);
}

.coach-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 22%;
  filter: grayscale(0.25) contrast(1.06) brightness(0.94) saturate(0.92);
}

.coach-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(255, 45, 63, 0.22));
  mix-blend-mode: screen;
}

.coach-meta .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.coach-meta .role {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.apply-copy h2 {
  margin-bottom: 16px;
}

.apply-copy p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.apply-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--s1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ---------- faq ---------- */
.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq details {
  padding: 6px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--s1);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.faq details[open] {
  border-color: var(--line);
  background: var(--s2);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

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

.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red-2);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 70ch;
  margin: 0 0 22px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(5, 6, 9, 0.74);
  backdrop-filter: blur(14px);
}

.modal.is-open {
  display: grid;
  animation: fade 0.3s var(--ease);
}

@keyframes fade {
  from {
    opacity: 0;
  }
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #14161d, var(--bg-elev));
  box-shadow: var(--shadow-lg);
  animation: pop 0.4s var(--ease);
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
}

.modal-card h2 {
  margin: 12px 0 12px;
  font-size: 1.9rem;
}

.modal-card p {
  margin-bottom: 22px;
  color: var(--text-soft);
}

.modal-card form {
  display: grid;
  gap: 12px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  background: var(--s2);
  color: var(--text-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: var(--s3);
  color: var(--text);
}

/* ---------- preview gate ---------- */
body.site-locked {
  overflow: hidden;
}

body.site-locked > header,
body.site-locked > main,
body.site-locked > .modal {
  pointer-events: none;
  user-select: none;
}

body.site-locked > header,
body.site-locked > main {
  filter: blur(14px) saturate(0.8);
}

.gate-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 16px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 45, 63, 0.18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(232, 197, 112, 0.12), transparent 30%),
    rgba(4, 5, 8, 0.82);
  backdrop-filter: blur(22px);
}

body.site-locked .gate-screen,
body.admin-locked .gate-screen {
  display: grid;
}

.gate-card {
  width: min(420px, 100%);
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(25, 28, 36, 0.96), rgba(7, 8, 12, 0.96));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.gate-card img {
  width: 68px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 16px 35px rgba(255, 45, 63, 0.24));
}

.gate-card h1 {
  margin: 6px auto 10px;
  max-width: 13ch;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
}

.gate-card p:not(.eyebrow) {
  margin: 0 auto 18px;
  max-width: 42ch;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.gate-form {
  display: grid;
  gap: 12px;
}

.gate-error {
  min-height: 18px;
  font-size: 0.82rem;
  color: var(--red-2);
}

/* ---------- admin ---------- */
.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 45, 63, 0.16), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(232, 197, 112, 0.1), transparent 30%),
    var(--bg);
}

.admin-body.admin-locked {
  overflow: hidden;
}

.admin-body.admin-locked .admin-shell {
  pointer-events: none;
  user-select: none;
  filter: blur(14px) saturate(0.8);
}

.admin-shell {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.admin-header h1 {
  margin-bottom: 12px;
}

.admin-header p:not(.eyebrow) {
  max-width: 66ch;
  color: var(--text-soft);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
}

.admin-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-soft);
  font-weight: 600;
  cursor: pointer;
}

.admin-tabs button.is-active {
  border-color: rgba(255, 45, 63, 0.42);
  background: rgba(255, 45, 63, 0.14);
  color: var(--text);
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel:not(.is-active) {
  display: none !important;
}

.admin-tab-panel.is-active {
  display: grid;
}

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

.admin-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.admin-panel > .eyebrow:first-child {
  display: block;
  margin: 0 0 22px;
  padding-left: 4px;
}

.admin-panel.wide {
  grid-column: 1 / -1;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-panel-head p:not(.eyebrow) {
  color: var(--text-soft);
  max-width: 72ch;
}

.admin-panel textarea,
.admin-panel input {
  text-transform: none;
  letter-spacing: 0;
}

.admin-note {
  margin-top: 10px;
  color: var(--text-faint);
  font-size: 0.82rem;
}

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

.admin-video-grid fieldset {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}

.admin-video-grid legend {
  padding: 0 8px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#jsonEditor {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.55;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--text-soft);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
}

.metric-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

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

.settings-list span {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: 360px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--r-sm);
  background: rgba(20, 22, 29, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

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

/* ---------- success page ---------- */
.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.success-card {
  max-width: 680px;
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--s3), var(--s1));
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.success-card img {
  width: 64px;
  margin: 0 auto 26px;
}

.success-card h1 {
  margin: 0 auto 16px;
  max-width: none;
  font-size: clamp(3rem, 8vw, 5rem);
}

.success-card p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 50ch;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.success-card .hero-actions {
  justify-content: center;
  margin: 30px 0 0;
}

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .coaching-layout,
  .training-layout,
  .tool-shell,
  .book,
  .apply {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .testimonial-grid,
  .library-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-visual {
    max-width: 580px;
  }

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

  .admin-header,
  .admin-grid,
  .admin-video-grid,
  .metrics-grid,
  .settings-list {
    grid-template-columns: 1fr;
  }

  .admin-header {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

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

  .stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .stat-label {
    margin-top: 0;
  }

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

  .form-row,
  .rank-grid,
  .coaching-points,
  .quote-grid,
  .checkout-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

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

  .deal-map-stage {
    height: 246px;
  }

  .deal-map-card {
    width: 106px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-visual-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .visual-proof-grid {
    grid-template-columns: 1fr;
  }

  .report-header {
    flex-direction: column;
  }

  .section-heading {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}
