/* ============================================================
   StudIA — landing styles
   System extracted from the supplied design system:
   dark-first surfaces, Bricolage display, DM Sans UI,
   teal→deep gradient CTA, lime accent, soft 20px radii.
   ============================================================ */

:root {
  color-scheme: dark;

  /* Surfaces */
  --bg: #050505;
  --surface-1: #0d0d0d;
  --surface-2: #121212;
  --surface-3: #171717;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-300: #b0b0b0;
  --gray-100: #f1f1f1;

  /* Accents */
  --lime: #e1ff69;
  --lime-soft: #e7f99a;
  --sky: #c5ecff;
  --teal-1: #a0ecfa;
  --teal-2: #1e4d5e;
  --electric: #1b00ff;

  /* Type */
  --font-display: "Bricolage Grotesque", "PP Radio Grotesk", system-ui, sans-serif;
  --font-ui: "DM Sans", "Satoshi", system-ui, sans-serif;
  --font-mono: "Fragment Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Motion */
  --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-clip: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--gray-100);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video, svg { display: block; max-width: 100%; }

/* ---------- Type ---------- */

.display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
}

.display-l {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
}

.display-m {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.h-eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.body-l { font-size: 22px; line-height: 1.4; font-weight: 400; }
.body-m { font-size: 18px; line-height: 1.55; font-weight: 400; }
.body-s { font-size: 15px; line-height: 1.55; font-weight: 400; }

.label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

em { font-style: normal; color: var(--lime); }

/* ---------- Containers ---------- */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 880px;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-num::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 240ms var(--ease-snap), box-shadow 300ms ease, background 300ms ease;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  padding: 18px 40px;
  color: #fff;
  background: linear-gradient(129.981deg, rgba(160, 236, 250, 0.85) 0%, rgba(30, 77, 94, 0.89) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    rgba(255, 255, 255, 0.1) 0 4px 16px 0 inset,
    rgba(59, 142, 223, 0.3) 0 4px 40px 0;
  animation: btnGlow 4s var(--ease-snap) infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: rgba(255, 255, 255, 0.1) 0 4px 16px 0 inset, rgba(59, 142, 223, 0.3) 0 4px 40px 0; }
  50%      { box-shadow: rgba(255, 255, 255, 0.14) 0 4px 16px 0 inset, rgba(59, 142, 223, 0.55) 0 6px 56px 0; }
}

.btn-ghost {
  padding: 18px 32px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); }

.btn-white {
  padding: 13px 22px;
  color: #000;
  background: #fff;
  font-size: 13px;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    rgba(255, 255, 255, 0.1) 0 4px 16px 0 inset,
    rgba(59, 142, 223, 0.3) 0 4px 40px 0;
}
.btn-white:hover { background: var(--lime); box-shadow: rgba(225, 255, 105, 0.3) 0 4px 40px 0; }

.btn-dark {
  padding: 18px 32px;
  color: #fff;
  background: var(--surface-1);
  border-color: rgba(255, 255, 255, 0.08);
}
.btn-dark:hover { background: var(--surface-2); }

.btn .arrow {
  width: 16px; height: 16px; flex-shrink: 0;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btn .arrow-diag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 16.95 7.05 L 7.05 16.95' fill='transparent' stroke-width='1.5' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M 10 7 L 16.95 7.049 L 17 14' fill='transparent' stroke-width='1.5' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.btn .arrow-down {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 21 21' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 7 11.813 L 10.5 15.313 L 14 11.813' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.31' stroke='%23fff'/%3E%3Cpath d='M 6.125 5.688 L 10.5 10.063 L 14.875 5.688' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.31' stroke='rgba(255, 255, 255, 0.5)'/%3E%3C/svg%3E");
}

/* ---------- Pill badge ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(168, 218, 255, 0.02);
  border: 1px solid var(--gray-700);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8c8c8;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

/* ---------- Header ---------- */

.header-wrap {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 32px));
  z-index: 60;
  pointer-events: none;
}
.header {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}
.brand .mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--lime);
  color: #050505;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  animation: brandSpin 14s linear infinite;
}
.brand .mark.mark-img {
  background: transparent;
  border-radius: 0;
  width: 30px; height: 30px;
  animation: none;
  overflow: visible;
}
.brand .mark.mark-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.brand-logo {
  padding: 0;
  height: 32px;
}
.brand-logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ---------- Arc gallery (above pricing) ---------- */
.arc-gallery {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  pointer-events: none;
  margin-bottom: 24px;
}
.arc-pivot {
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 0;
  height: 0;
}
.arc-card {
  --size: 120px;
  --r: 460px;
  --a: 90deg;
  --float-dur: 6s;
  --float-delay: 0s;
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: 0;
  top: 0;
  /* pivot is .arc-pivot at bottom-center; rotate so card sits at angle A on circle of radius r,
     then nudge by half its size so the card is centered on that point.
     Angle convention: 0deg = right, 90deg = up, 180deg = left. We sweep 20→160 (right→up→left). */
  transform:
    rotate(calc(90deg - var(--a)))
    translate(0, calc(var(--r) * -1))
    rotate(calc(var(--a) - 90deg))
    translate(-50%, -50%)
    rotate(calc((var(--a) - 90deg) / 4));
  border-radius: 18px;
  background: var(--g, var(--surface-2));
  box-shadow:
    0 24px 50px -20px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  opacity: 1;
  animation:
    arcCardIn 800ms cubic-bezier(.22,1,.36,1) both,
    arcCardFloat var(--float-dur) ease-in-out var(--float-delay) infinite;
}
.arc-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 20px);
  mix-blend-mode: overlay;
  opacity: .5;
  border-radius: inherit;
}
.arc-card::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  border-radius: inherit;
  animation: arcCardGlow 5s ease-in-out var(--float-delay) infinite;
}

/* Distribute 12 cards on an arc from 20deg to 160deg
   Stagger float animations so they breathe independently */
.arc-card:nth-child(1)  { --a: 20deg;   animation-delay: 0ms,    -0.0s; --float-delay: -0.0s; --float-dur: 6.4s; }
.arc-card:nth-child(2)  { --a: 32.7deg; animation-delay: 80ms,   -0.6s; --float-delay: -0.6s; --float-dur: 5.8s; }
.arc-card:nth-child(3)  { --a: 45.4deg; animation-delay: 160ms,  -1.2s; --float-delay: -1.2s; --float-dur: 6.2s; }
.arc-card:nth-child(4)  { --a: 58.1deg; animation-delay: 240ms,  -1.8s; --float-delay: -1.8s; --float-dur: 5.5s; }
.arc-card:nth-child(5)  { --a: 70.9deg; animation-delay: 320ms,  -2.4s; --float-delay: -2.4s; --float-dur: 6.0s; }
.arc-card:nth-child(6)  { --a: 83.6deg; animation-delay: 400ms,  -3.0s; --float-delay: -3.0s; --float-dur: 6.6s; }
.arc-card:nth-child(7)  { --a: 96.4deg; animation-delay: 480ms,  -3.6s; --float-delay: -3.6s; --float-dur: 5.9s; }
.arc-card:nth-child(8)  { --a: 109.1deg;animation-delay: 560ms,  -4.2s; --float-delay: -4.2s; --float-dur: 6.3s; }
.arc-card:nth-child(9)  { --a: 121.8deg;animation-delay: 640ms,  -4.8s; --float-delay: -4.8s; --float-dur: 5.7s; }
.arc-card:nth-child(10) { --a: 134.6deg;animation-delay: 720ms,  -5.4s; --float-delay: -5.4s; --float-dur: 6.1s; }
.arc-card:nth-child(11) { --a: 147.3deg;animation-delay: 800ms,  -6.0s; --float-delay: -6.0s; --float-dur: 5.6s; }
.arc-card:nth-child(12) { --a: 160deg;  animation-delay: 880ms,  -6.6s; --float-delay: -6.6s; --float-dur: 6.5s; }

@keyframes arcCardIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Continuous gentle float — radial in/out along the arc + tilt wobble.
   We compose on top of the static placement transform via a wrapping translate3d
   isn't possible without doubling the matrix, so we re-state the full transform
   chain and modulate --r and the final tilt. */
@keyframes arcCardFloat {
  0%, 100% {
    transform:
      rotate(calc(90deg - var(--a)))
      translate(0, calc(var(--r) * -1))
      rotate(calc(var(--a) - 90deg))
      translate(-50%, -50%)
      rotate(calc((var(--a) - 90deg) / 4));
  }
  50% {
    transform:
      rotate(calc(90deg - var(--a)))
      translate(0, calc(var(--r) * -1 - 14px))
      rotate(calc(var(--a) - 90deg))
      translate(-50%, -50%)
      rotate(calc((var(--a) - 90deg) / 4 + 3deg))
      scale(1.03);
  }
}

@keyframes arcCardGlow {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; filter: brightness(1.15); }
}

@media (max-width: 1024px) {
  .arc-card { --size: 96px; --r: 360px; }
  .arc-gallery { height: 260px; }
}
@media (max-width: 640px) {
  .arc-card { --size: 70px; --r: 240px; }
  .arc-gallery { height: 200px; }
  .arc-pivot { bottom: -40px; }
}

.section-head--arc {
  position: relative;
  z-index: 2;
}
@keyframes brandSpin { to { transform: rotate(360deg); } }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
@media (max-width: 1024px) { .nav-links { display: none; } }

.header-right { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 200ms;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.08); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 30% 35%, rgba(160, 236, 250, 0.18), transparent 60%),
    radial-gradient(45% 40% at 75% 65%, rgba(30, 77, 94, 0.45), transparent 70%),
    radial-gradient(35% 30% at 50% 110%, rgba(225, 255, 105, 0.10), transparent 70%),
    #050505;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 80px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0) 50%, rgba(5,5,5,0.85) 88%, #050505 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 32px 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.hero-inner > * { align-self: center; }
.hero-pill { display: inline-flex; }

.hero-headline {
  max-width: 1100px;
  color: #fff;
}
.hero-headline .hl-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero-headline .hl-line {
    white-space: normal;
  }
}
.hero-sub {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.hero-meta-item .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(225, 255, 105, 0.12);
  color: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.hero-mark {
  position: absolute;
  bottom: 56px; right: 56px;
  width: 72px; height: 72px;
  z-index: 4;
  animation: brandSpin 12s linear infinite;
}
.hero-mark .mark-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--lime);
  color: #050505;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}
@media (max-width: 720px) { .hero-mark { right: 20px; bottom: 24px; width: 56px; height: 56px; } }

/* ---------- Marquee ---------- */

.marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 28px 0;
  background: var(--surface-1);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-item .sep {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Cards ---------- */

.card {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  transition: transform 400ms var(--ease-snap), border-color 300ms;
}
.card:hover { border-color: rgba(255, 255, 255, 0.14); }

.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

/* ---------- Value grid (4 pillars) ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.value-card {
  grid-column: span 6;
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  transition: border-color 300ms;
}
.value-card:hover { border-color: rgba(255, 255, 255, 0.16); }
.value-card.featured {
  background: linear-gradient(160deg, #0d0d0d 0%, #1a2326 100%);
}
.value-card .vc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.value-card .vc-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.value-card .vc-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.value-card .vc-visual {
  margin-top: auto;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.value-card .vc-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.025) 0 1px,
    transparent 1px 10px
  );
}
@media (max-width: 900px) {
  .value-card { grid-column: span 12; }
}

/* ---------- Stat strip ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-1);
}
.stat {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.stat-num em { color: var(--lime); }
.stat-label {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
}
@media (max-width: 520px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .stat:last-child { border-bottom: none; }
}

/* ---------- Modules / Curriculum ---------- */

.modules-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.module-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.module {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 300ms;
}
.module:hover { background: rgba(255, 255, 255, 0.015); }

.module-row {
  display: grid;
  grid-template-columns: 100px 1fr 280px 56px;
  align-items: center;
  gap: 32px;
  padding: 32px 16px;
}
@media (max-width: 900px) {
  .module-row { grid-template-columns: 60px 1fr 36px; gap: 16px; padding: 24px 8px; }
  .module-row .mod-tag { display: none; }
}

.mod-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.mod-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 0;
}
@media (max-width: 720px) { .mod-title { font-size: 22px; } }

.mod-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}

.mod-toggle {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, transform 300ms var(--ease-snap);
}
.module.open .mod-toggle { background: var(--lime); color: #050505; transform: rotate(45deg); border-color: var(--lime); }

.mod-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 480ms var(--ease-snap);
}
.module.open .mod-body { grid-template-rows: 1fr; }
.mod-body-inner {
  overflow: hidden;
  min-height: 0;
}
.mod-body-content {
  padding: 0 16px 36px;
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .mod-body-content { grid-template-columns: 1fr; padding: 0 8px 28px; }
}
.mod-body-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}
.mod-lessons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mod-lessons li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.mod-lessons li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.7;
}
.mod-lessons li:last-child { border-bottom: none; }

/* ---------- Workflow strip ---------- */

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
}
.wf-step {
  padding: 36px 28px;
  background: var(--surface-1);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 240px;
}
.wf-step:last-child { border-right: none; }
.wf-step::after {
  content: "→";
  position: absolute;
  top: 32px;
  right: -12px;
  width: 24px; height: 24px;
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  z-index: 2;
}
.wf-step:last-child::after { display: none; }
.wf-step .wf-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}
.wf-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: #fff;
}
.wf-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .workflow { grid-template-columns: 1fr; }
  .wf-step { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .wf-step::after { display: none; }
  .wf-step:last-child { border-bottom: none; }
}

/* ---------- Mentor / Showcase ---------- */

.mentor {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px) { .mentor { grid-template-columns: 1fr; } }

.mentor-card {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mentor-portrait {
  border-radius: 24px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%),
    url('assets/mentor-pettrus.jpg');
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 32px;
}
.mentor-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0 2px,
    transparent 2px 18px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .5;
}
.portrait-caption {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.credit-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}
.credit-list li {
  background: var(--surface-1);
  padding: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credit-list li .role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

/* ---------- Bonuses ---------- */

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 400ms var(--ease-snap), border-color 300ms;
}
.bonus:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.16); }
.bonus-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}
.bonus h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.bonus p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.bonus-vis {
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bonus-vis.v1 { background-image: url('assets/bonus-sites.jpg'); }
.bonus-vis.v2 { background-image: url('assets/bonus-agencia.jpg'); }
.bonus-vis.v3 { background-image: url('assets/bonus-estrategia.jpg?v=2'); }

/* ---------- Testimonials ---------- */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.testi {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column: span 4;
}
.testi.wide { grid-column: span 8; }
.testi.tall { grid-column: span 4; }
.testi-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.testi.wide .testi-quote { font-size: 28px; }
.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-1), var(--teal-2));
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: #050505;
  font-size: 16px;
}
.testi-name { color: #fff; font-size: 14px; font-weight: 500; }
.testi-role { color: rgba(255, 255, 255, 0.5); font-size: 12px; }
@media (max-width: 900px) {
  .testi, .testi.wide, .testi.tall { grid-column: span 12; }
}

/* ---------- Pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

.plan {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plan.featured {
  background: linear-gradient(170deg, #0a1419 0%, #0d0d0d 100%);
  border-color: rgba(160, 236, 250, 0.4);
  box-shadow: rgba(59, 142, 223, 0.18) 0 8px 60px 0;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-tag {
  background: var(--lime);
  color: #050505;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan-price .currency {
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
}
.plan-price .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.plan-price .per {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.plan-strike {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  text-decoration: line-through;
}
.plan-includes {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-includes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.plan-includes li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(225, 255, 105, 0.12);
  border: 1px solid var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l3 3 5-6' fill='none' stroke='%23e1ff69' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.plan .btn { margin-top: auto; align-self: flex-start; }

/* ---------- FAQ ---------- */

.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
@media (max-width: 720px) { .faq-q { font-size: 18px; padding: 22px 0; } }
.faq-q .plus {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 320ms var(--ease-snap), background 220ms, color 220ms;
}
.faq-item.open .faq-q .plus { background: var(--lime); color: #050505; transform: rotate(45deg); border-color: var(--lime); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease-snap);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a p {
  padding: 0 0 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
}

/* ---------- CTA Final ---------- */

.cta-final {
  position: relative;
  border-radius: 36px;
  padding: 100px 48px;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 10%, rgba(160, 236, 250, 0.18), transparent 70%),
    radial-gradient(40% 50% at 50% 100%, rgba(225, 255, 105, 0.10), transparent 70%),
    var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 60px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.cta-final > * { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; max-width: 880px; margin: 16px auto 20px; }
.cta-final p { color: rgba(255, 255, 255, 0.65); max-width: 600px; margin: 0 auto 36px; }

/* ---------- Footer ---------- */

footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 120px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-snap), transform 700ms var(--ease-snap);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Hero word stagger ---------- */
.hero-headline .word { display: inline-block; }

.js-anim .hero-headline .word {
  opacity: 0;
  transform: translateY(14px);
  animation: heroWord 700ms cubic-bezier(.22,1,.36,1) forwards;
}
.js-anim .hero-headline .word:nth-child(1) { animation-delay: .05s; }
.js-anim .hero-headline .word:nth-child(2) { animation-delay: .12s; }
.js-anim .hero-headline .word:nth-child(3) { animation-delay: .19s; }
.js-anim .hero-headline .word:nth-child(4) { animation-delay: .26s; }
.js-anim .hero-headline .word:nth-child(5) { animation-delay: .33s; }
.js-anim .hero-headline .word:nth-child(6) { animation-delay: .40s; }
.js-anim .hero-headline .word:nth-child(7) { animation-delay: .47s; }
.js-anim .hero-headline .word:nth-child(8) { animation-delay: .54s; }
.js-anim .hero-headline .word:nth-child(9) { animation-delay: .61s; }
.js-anim .hero-headline .word:nth-child(10){ animation-delay: .68s; }

.js-anim .anim-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade 800ms cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes heroWord {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero marquee (image cards) ---------- */
.hero-marquee {
  position: relative;
  width: 100%;
  height: 320px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  display: flex;
  align-items: center;
  margin-top: 24px;
  flex-shrink: 0;
}
@media (max-width: 720px) { .hero-marquee { height: 240px; } }

.hero-marquee-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  width: max-content;
  animation: hmScroll 50s linear infinite;
  will-change: transform;
}
@keyframes hmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hm-card {
  flex-shrink: 0;
  position: relative;
  width: 220px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--surface-2);
  background-image: var(--img, var(--g, none));
  background-size: cover;
  background-position: center;
  box-shadow:
    0 24px 50px -20px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  margin: 0;
  transition: transform 600ms cubic-bezier(.22,1,.36,1);
}
@media (max-width: 720px) { .hm-card { width: 150px; border-radius: 14px; } }

.hm-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 20px);
  mix-blend-mode: overlay;
  opacity: .15;
}
.hm-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.hm-card .hm-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 5px 9px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hm-tilt-a { transform: rotate(-3deg) translateY(8px); }
.hm-tilt-b { transform: rotate(4deg) translateY(-8px); }

/* fade out hero overlay sits ABOVE the marquee, but text is above both */
.hero-bg { z-index: 0; }
.hero-video { z-index: 1; }
.hero-marquee { z-index: 2; }
.hero-inner { z-index: 3; }
.hero-mark { z-index: 4; }

/* Hero video — full bleed, dimmed, with mid→bottom fade so the marquee
   underneath stays clean and the text on top stays legible. */
.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  /* slight desaturate + cool tint blend with the dark page */
  filter: saturate(0.85) contrast(1.05) brightness(0.95);
  mix-blend-mode: screen;
}

/* Hero video on mobile — keep it visible but constrain to top band so the
   landscape asset (640x360) doesn't have to cover a tall portrait viewport.
   Text below sits on solid bg, not on top of pixelated video. */
@media (max-width: 720px) {
  .hero-video {
    /* video ocupa só a faixa do topo, ~52% da viewport */
    bottom: auto;
    height: 52vh;
    min-height: 360px;
    max-height: 560px;
  }
  .hero-video__el {
    /* mais opacidade no mobile pq não tem texto sobreposto na faixa do vídeo */
    opacity: 0.7;
    /* enquadramento ligeiramente acima do centro pra mostrar mais cena */
    object-position: center 35%;
  }
  .hero-video__fade {
    background:
      /* darken só a borda inferior pra fundir com o conteúdo abaixo */
      linear-gradient(180deg,
        rgba(8,8,12,0.45) 0%,
        rgba(8,8,12,0.05) 25%,
        rgba(8,8,12,0.0) 50%,
        rgba(8,8,12,0.55) 80%,
        rgba(8,8,12,0.95) 95%,
        #050505 100%);
  }
}
.hero-video__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* darken the top edge a touch so the nav reads */
    linear-gradient(180deg,
      rgba(8,8,12,0.55) 0%,
      rgba(8,8,12,0.15) 18%,
      rgba(8,8,12,0.0) 38%,
      rgba(8,8,12,0.55) 62%,
      rgba(8,8,12,0.92) 88%,
      rgba(8,8,12,1) 100%),
    /* subtle vignette so edges don't feel hot */
    radial-gradient(120% 80% at 50% 35%,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.0) 55%,
      rgba(0,0,0,0.45) 100%);
}

/* Hero foot — CTAs + meta below the marquee */
.hero-foot {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 32px 32px 0;
  text-align: center;
}
