/* ============ FONTS ============ */
@font-face {
  font-family: "Manifold";
  src: url("fonts/ManifoldExtendedCF-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manifold";
  src: url("fonts/ManifoldExtendedCF-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manifold";
  src: url("fonts/ManifoldExtendedCF-DemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manifold";
  src: url("fonts/ManifoldExtendedCF-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manifold";
  src: url("fonts/ManifoldExtendedCF-Heavy.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}

/* ============ TOKENS ============ */
:root {
  --bg: #050309;
  --bg-soft: #0b0814;
  --ink: #f6f4ef;
  --ink-dim: rgba(246, 244, 239, 0.62);
  --ink-faint: rgba(246, 244, 239, 0.32);
  --line: rgba(246, 244, 239, 0.10);
  --line-strong: rgba(246, 244, 239, 0.22);

  --blue: #3a4cff;
  --indigo: #6a3cff;
  --pink: #ff5da3;
  --cyan: #36d6ff;
  --magenta: #d534ff;

  --grad-cv: linear-gradient(98deg, #36d6ff 0%, #3a4cff 32%, #6a3cff 58%, #ff5da3 92%);

  --serif: "Manifold", "Inter", system-ui, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--serif); -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 3, 9, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__logo { height: 26px; filter: invert(1); }
.nav__links { display: flex; gap: 32px; align-items: center; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; }
.nav__links a { color: var(--ink-dim); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
  transition: transform 0.2s ease;
}
.nav__links a.nav__cta { color: var(--bg); }
.nav__links a.nav__cta:hover { color: var(--bg); transform: scale(1.04); }
.nav__demo {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-cv);
  background-size: 160% 160%;
  color: #fff !important;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
  box-shadow: 0 8px 22px -8px rgba(106,60,255,0.6);
  animation: ctaShift 6s ease infinite;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.nav__demo:hover { transform: translateY(-1px) scale(1.04); box-shadow: 0 12px 30px -8px rgba(106,60,255,0.8); }
.nav__demo .arrow { transition: transform 0.25s ease; }
.nav__demo:hover .arrow { transform: translateX(3px); }
@media (max-width: 760px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__fallback { z-index: 0; filter: saturate(1.1); }
.hero__video[data-failed="true"] { display: none; }
.hero__vignette {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(5,3,9,0.35) 55%, rgba(5,3,9,0.85) 100%),
    linear-gradient(180deg, rgba(5,3,9,0.55) 0%, transparent 18%, transparent 60%, rgba(5,3,9,0.95) 100%);
}
.hero__content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 1100px;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero__kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero__title {
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 auto;
  max-width: 14ch;
}
.hero__title .grad {
  background: var(--grad-cv);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin: 28px auto 0;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 56ch;
}
.hero__ctas {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.3s ease;
}
/* Primary = bold gradient CTA with glow + animated sheen */
.btn--primary {
  background: var(--grad-cv);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(106,60,255,0.55), 0 0 0 1px rgba(255,255,255,0.08) inset;
  animation: ctaShift 6s ease infinite;
}
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg);
  animation: ctaSheen 4.5s ease-in-out infinite;
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 44px -10px rgba(106,60,255,0.7), 0 0 0 1px rgba(255,255,255,0.12) inset;
}
@keyframes ctaShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes ctaSheen {
  0%, 60% { left: -120%; }
  85%, 100% { left: 130%; }
}
.btn--lg { padding: 20px 38px; font-size: 17px; }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--ink-dim); transform: translateY(-2px); }
.btn .arrow { position: relative; z-index: 1; transition: transform 0.25s ease; }
.btn > * { position: relative; z-index: 1; }
.btn:hover .arrow { transform: translateX(4px); }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__scroll svg { width: 14px; height: 22px; animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============ SCROLL REVEAL SECTION (sticky pinned) ============ */
.reveal {
  position: relative;
  height: 260vh;        /* scroll length */
}
.reveal__sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.reveal__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(58,76,255,0.18), transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(255,93,163,0.16), transparent 60%);
  z-index: 0;
}
.reveal__text {
  position: relative; z-index: 1;
  max-width: 1500px;
  font-size: clamp(36px, 6.4vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: left;
  text-wrap: balance;
}
.reveal__text .word {
  display: inline-block;
  margin-right: 0.22em;
  color: rgba(246, 244, 239, 0.12);
  transition: color 0.35s ease, transform 0.35s ease;
  will-change: color, transform;
}
.reveal__text .word.is-on { color: var(--ink); }
.reveal__text .word.accent { background: var(--grad-cv); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.reveal__text .word.accent.is-on { color: transparent; }

.reveal__progress {
  position: absolute; left: var(--gutter); bottom: 64px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  z-index: 1;
}
.reveal__progress-track {
  width: 140px; height: 1px; background: var(--line-strong); position: relative;
}
.reveal__progress-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--grad-cv); width: 0%;
}

/* ============ SECTION GENERIC ============ */
.section {
  padding: clamp(96px, 14vh, 180px) var(--gutter);
  position: relative;
}
.section__inner {
  max-width: var(--maxw); margin: 0 auto;
  position: relative;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--ink-dim); }
.h2 {
  font-size: clamp(36px, 5.4vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.h2 .grad { background: var(--grad-cv); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 60ch;
  margin-top: 24px;
}

/* ============ STAT STRIP ============ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px var(--gutter);
}
.stats__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat__num {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-cv);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__lbl {
  margin-top: 12px;
  font-size: 13px; color: var(--ink-dim);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}

/* ============ FEATURE CARDS ============ */
.features__grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  padding: 32px 28px 36px;
  min-height: 460px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), border-color 0.3s, background 0.3s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.feature__num {
  font-size: 12px; font-weight: 500; color: var(--ink-faint);
  letter-spacing: 0.24em; margin-bottom: 24px;
}
.feature__title {
  font-size: 28px; font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.feature__body {
  font-size: 14px; line-height: 1.55; color: var(--ink-dim);
}
.feature__visual {
  margin-top: auto;
  height: 200px;
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
}
.feature__visual img { height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.feature__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(106,60,255,0.35), transparent 60%);
  z-index: -1;
  filter: blur(20px);
}
.feature:nth-child(2) .feature__glow { background: radial-gradient(ellipse at 50% 80%, rgba(255,93,163,0.35), transparent 60%); }
.feature:nth-child(3) .feature__glow { background: radial-gradient(ellipse at 50% 80%, rgba(54,214,255,0.35), transparent 60%); }
@media (max-width: 900px) { .features__grid { grid-template-columns: 1fr; } .feature { min-height: 380px; } }

/* ============ SHOWCASE (split) ============ */
.showcase {
  margin-top: 96px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.showcase__visual {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: 36px;
  overflow: hidden;
  background: #0a0613;
}
.showcase__visual img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
}
.showcase__visual img.fg {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: 98%; width: auto; object-fit: contain;
  filter: drop-shadow(-10px 20px 40px rgba(0,0,0,0.6));
}
.showcase__content h3 {
  font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.showcase__content p { font-size: 16px; line-height: 1.6; color: var(--ink-dim); max-width: 52ch; }
.showcase__list { margin-top: 32px; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.showcase__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
}
.showcase__list .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-cv);
  display: grid; place-items: center;
  color: white; font-size: 11px;
}
.showcase__list strong { display: block; font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.showcase__list span { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }
@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; gap: 32px; } }

/* ============ STEPS ============ */
.steps {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-right: none; }
.step__num {
  font-size: 56px; font-weight: 700; line-height: 1;
  background: var(--grad-cv); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.step__title { font-size: 20px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.step__body { font-size: 14px; line-height: 1.55; color: var(--ink-dim); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; }
}

/* ============ FORM ============ */
.form-section {
  position: relative;
  padding: clamp(96px, 16vh, 200px) var(--gutter);
  overflow: hidden;
}
.form-section__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("assets/bg-gradient-5.jpg");
  background-size: cover; background-position: center;
  opacity: 0.38;
}
.form-section__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(5,3,9,0.35), rgba(5,3,9,0.78) 70%),
    linear-gradient(180deg, var(--bg) 0%, rgba(5,3,9,0.6) 16%, rgba(5,3,9,0.6) 84%, var(--bg) 100%);
}
.form-section__inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-side h2 {
  font-size: clamp(36px, 4.6vw, 64px); font-weight: 700;
  line-height: 1.0; letter-spacing: -0.03em;
}
.form-side p { margin-top: 20px; font-size: 16px; line-height: 1.6; color: var(--ink-dim); max-width: 46ch; }
.form-side__bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.form-side__bullets li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--ink-dim); }
.form-side__bullets .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-cv); }

.form-card {
  background: rgba(11, 8, 20, 0.7);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 36px 32px;
}
.form-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.form-card .form-sub { font-size: 13px; color: var(--ink-dim); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink-dim);
  background: rgba(255,255,255,0.06);
}
.field textarea { resize: vertical; min-height: 90px; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 8px; font-size: 12px; color: var(--ink-dim); line-height: 1.5;
}
.consent input { margin-top: 3px; accent-color: var(--pink); }

.form-card .btn--primary {
  width: 100%; justify-content: center;
  margin-top: 18px;
  padding: 18px 24px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 12px 20px;
}
.form-success.is-on { display: block; animation: fadeUp 0.6s ease both; }
.form-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-cv);
  margin: 0 auto 20px;
  display: grid; place-items: center;
  color: white; font-size: 28px;
}
.form-success h4 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.form-success p { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .form-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ HELP CAPABILITY GRID ============ */
.section--help { padding-top: clamp(48px, 8vh, 90px); }
.help-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.help-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  font-size: 16px; font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s, background 0.3s;
}
.help-item:hover { transform: translateY(-4px); border-color: var(--line-strong); background: rgba(255,255,255,0.05); }
.help-item__bullet {
  flex-shrink: 0;
  font-weight: 700;
  background: var(--grad-cv);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (max-width: 900px) { .help-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .help-grid { grid-template-columns: repeat(2, 1fr); } }

.showcase__cta { margin-top: 32px; }

/* ============ CTA BAND ============ */
.cta-band {
  padding: clamp(80px, 14vh, 160px) var(--gutter);
}
.cta-band__inner {
  position: relative;
  max-width: 980px; margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 72px);
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  overflow: hidden;
}
.cta-band__glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(106,60,255,0.35), transparent 60%),
              radial-gradient(ellipse at 20% -10%, rgba(54,214,255,0.22), transparent 55%),
              radial-gradient(ellipse at 85% 0%, rgba(255,93,163,0.22), transparent 55%);
}
.cta-band__title, .cta-band__sub, .cta-band__btns { position: relative; z-index: 1; }
.cta-band__title {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.03em;
}
.cta-band__title .grad { background: var(--grad-cv); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-band__sub {
  margin: 22px auto 0; max-width: 46ch;
  font-size: clamp(15px, 1.5vw, 18px); color: var(--ink-dim); line-height: 1.5;
}
.cta-band__btns {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--gutter) 28px;
  font-size: 13px;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer__logo { height: 22px; filter: invert(1); opacity: 0.9; }
.footer__links { display: flex; gap: 24px; color: var(--ink-dim); }
.footer__links a:hover { color: var(--ink); }
.footer__copy { color: var(--ink-faint); }

/* ============ SCROLL ANIMS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.fade-in.is-on { opacity: 1; transform: translateY(0); }
.fade-in[data-delay="1"] { transition-delay: 0.08s; }
.fade-in[data-delay="2"] { transition-delay: 0.16s; }
.fade-in[data-delay="3"] { transition-delay: 0.24s; }
.fade-in[data-delay="4"] { transition-delay: 0.32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ============ MARQUEE (visual texture between sections) ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
  display: flex;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee__track {
  display: flex; gap: 64px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  padding-right: 64px;
}
.marquee__item {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee__item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--grad-cv); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ BIG QUOTE ============ */
.quote {
  text-align: center;
  padding: clamp(120px, 18vh, 200px) var(--gutter);
  max-width: 1200px; margin: 0 auto;
}
.quote__text {
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.quote__text .grad { background: var(--grad-cv); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.quote__attr {
  margin-top: 32px;
  display: inline-flex; gap: 12px; align-items: center;
  font-size: 13px; color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.quote__attr img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
