/* ----- Reset & tokens ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #F4F1EA;
  --bg-soft: #EDE9DF;
  --ink: #0E0E0C;
  --ink-2: #2A2A26;
  --ink-3: #5C5B53;
  --line: #1a1a17;
  --line-soft: rgba(14,14,12,0.10);
  --line-softer: rgba(14,14,12,0.06);
  --paper: #FBF9F3;
  --accent: oklch(0.85 0.27 142);     /* BNTW electric green, matched to logo */
  --accent-ink: #0E0E0C;
  --blue: oklch(0.78 0.14 245);
  --violet: oklch(0.76 0.14 305);
  --orange: oklch(0.82 0.16 60);
  --pink: oklch(0.82 0.13 15);
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1320px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "ss01","ss02","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--ink); }

/* ----- Layout ----- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
}

/* ----- NAV ----- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: backdrop-filter .3s ease, background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244,241,234,0.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.01em;
  font-size: 18px;
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: 0.02em;
}
.nav-links {
  display: flex; gap: 6px;
  background: rgba(14,14,12,0.04);
  border: 1px solid var(--line-softer);
  padding: 6px;
  border-radius: 999px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(14,14,12,0.06); color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
@media (max-width: 920px) { .nav-links { display: none; } }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .2s, color .2s, border-color .2s, box-shadow .25s;
  will-change: transform;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #1c1c19; }
.btn-primary .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(123,226,90,0.18);
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover { box-shadow: 0 8px 28px -8px rgba(0,0,0,0.25); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-soft);
}
.btn-ghost:hover { background: rgba(14,14,12,0.04); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 18px 28px; font-size: 17px; }

.btn .arrow {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--ink);
  color: #ECEAE1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Soft vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 55%, rgba(0,0,0,0.35) 100%),
    radial-gradient(ellipse 100% 35% at 50% 100%, rgba(0,0,0,0.5), transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 4; }
.hero .wrap > .reveal:not(.hero-stage),
.hero .wrap > .hero-eyebrow { pointer-events: auto; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(236,234,225,0.45);
  text-transform: uppercase;
}
.hero-scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(236,234,225,0.6), transparent);
  background-size: 100% 200%;
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%   { background-position: 0% 100%; }
  100% { background-position: 0% -100%; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-family: var(--mono);
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.h1 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-size: clamp(48px, 8vw, 132px);
  margin: 24px 0 24px;
  color: #ECEAE1;
}
.h1 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
/* h1 reverts to ink on light sections */
.section .h1, .journey .h1 { color: var(--ink); }
.h1 .accent-bg {
  background: var(--accent);
  color: var(--ink);
  padding: 0.05em 0.18em;
  border-radius: 12px;
  display: inline-block;
  font-size: 0.82em;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  box-shadow: 0 2px 14px oklch(0.85 0.27 142 / 0.3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.h1 .accent-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: accent-shimmer 4.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes accent-shimmer {
  0%, 35% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* Rotating word inside h1 */
.h1 .rotator {
  display: inline-grid;
  grid-template-columns: 1fr;
  vertical-align: baseline;
}
.h1 .rotator > .accent-bg {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.6em) rotateX(-60deg);
  transform-origin: 50% 0%;
  transition: opacity 0.55s cubic-bezier(.2,.7,.2,1), transform 0.55s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.h1 .rotator > .accent-bg.is-out {
  opacity: 0;
  transform: translateY(-0.6em) rotateX(60deg);
}
.h1 .rotator > .accent-bg.is-in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Live activity feed pill */
.hero-live-feed {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 999px;
  color: #ECEAE1;
  font-size: 13px;
  letter-spacing: -0.01em;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
  max-width: min(420px, 60%);
}
.hero-live-feed .feed-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
  background-size: cover;
  position: relative;
}
.hero-live-feed .feed-av::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: 0 0 8px oklch(0.85 0.27 142 / 0.9);
  animation: feed-pulse 1.6s ease-in-out infinite;
}
@keyframes feed-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
.hero-live-feed .feed-content {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  min-width: 0;
}
.hero-live-feed .feed-line {
  grid-area: 1 / 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-live-feed .feed-line.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-live-feed .feed-line.is-out {
  opacity: 0;
  transform: translateY(-8px);
}
.hero-live-feed .feed-line strong { color: var(--accent); font-weight: 600; }
.hero-live-feed .feed-line .ago {
  color: rgba(236,234,225,0.45);
  font-family: var(--mono);
  font-size: 11px;
  margin-left: 6px;
}
@media (max-width: 720px) {
  .hero-live-feed { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* Hero stage 3D tilt */
.hero-stage { transform-style: preserve-3d; will-change: transform; }

/* Click ripple */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255,255,255,0.45);
  transform: scale(0);
  animation: ripple-out 0.7s ease-out forwards;
  mix-blend-mode: overlay;
}
.hero .btn-primary .ripple { background: rgba(14,14,12,0.35); mix-blend-mode: normal; }
@keyframes ripple-out {
  to { transform: scale(4); opacity: 0; }
}

/* Pulse on floating cards' dots */
.hero-float-card .dot {
  animation: card-pulse 2s ease-in-out infinite;
}
@keyframes card-pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.85 0.27 142 / 0.6); }
  50%      { box-shadow: 0 0 0 8px oklch(0.85 0.27 142 / 0); }
}

/* Keyboard hint */
.kbd-hint {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(236,234,225,0.5);
  text-transform: uppercase;
}
.kbd-hint kbd {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ECEAE1;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
@media (max-width: 720px) { .kbd-hint { display: none; } }

.hero-sub {
  max-width: 640px;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-3);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
/* Dark hero overrides */
.hero .hero-sub { color: rgba(236,234,225,0.65); }
.hero-reassure {
  margin: 18px 0 0;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(236,234,225,0.45);
  letter-spacing: -0.005em;
}

/* ── Hero two-column layout with phones ── */
.hero-wrap {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  width: 100%;
}
.hero-copy {
  flex: 1 1 0;
  min-width: 0;
}
.hero-phones {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.hero-phone {
  position: relative;
  will-change: transform;
}
.hero-phone--left {
  transform: translateY(28px) rotate(-4deg);
}
.hero-phone--right {
  transform: translateY(-12px) rotate(3deg);
}
.hero-phone-shell {
  width: 168px;
  height: 338px;
  background: #111;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 32px 64px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
}
.hero-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  background: #000;
  border-radius: 6px;
  z-index: 3;
}
.hero-phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 35px;
  background: #000;
}
.hero-phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Glow behind phones */
.hero-phones::before {
  content: '';
  position: absolute;
  inset: -40px -30px;
  background: radial-gradient(ellipse at 50% 60%, oklch(0.85 0.27 142 / 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Responsive phones */
@media (max-width: 860px) {
  .hero-wrap { flex-direction: column; gap: 48px; }
  .hero-phones { order: -1; gap: 12px; }
  .hero-phone-shell { width: 130px; height: 260px; }
  .hero-phone--left { transform: translateY(14px) rotate(-3deg); }
  .hero-phone--right { transform: translateY(-6px) rotate(2deg); }
}
@media (max-width: 480px) {
  .hero-phone-shell { width: 110px; height: 220px; }
}
.hero .btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: transparent;
}
.hero .btn-primary:hover {
  box-shadow: 0 8px 28px -8px oklch(0.85 0.27 142 / 0.55), 0 0 0 1px oklch(0.85 0.27 142 / 0.4);
}
.hero .btn-primary .dot { background: var(--ink); box-shadow: none; }
.hero .btn-ghost {
  color: rgba(236,234,225,0.9);
  border-color: rgba(255,255,255,0.22);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.08); }
.hero .logos { border-top-color: rgba(255,255,255,0.08); }
.hero .logos h6 { color: rgba(255,255,255,0.35); }
.hero .logos-row { opacity: 0.45; }
.hero .logos-row .logo-item { color: rgba(255,255,255,0.85); }

.hero-cta-row {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero visual — full-bleed cinematic canvas behind everything */
.hero-stage {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  margin: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: hidden;
  color: white;
  z-index: 1;
  box-shadow: none !important;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 60px 120px -40px rgba(0,0,0,0.55),
    0 30px 60px -20px rgba(0,0,0,0.3),
    0 0 80px -20px oklch(0.85 0.27 142 / 0.12);
}
@media (max-width: 920px) { .hero-stage { height: auto; } }
@media (max-width: 580px) { .hero-stage { height: auto; } }

.hero-mesh {
  position: absolute; inset: -15%;
  z-index: 0;
  background:
    radial-gradient(42% 52% at 14% 22%, oklch(0.85 0.27 142 / 0.65), transparent 65%),
    radial-gradient(40% 48% at 84% 26%, oklch(0.72 0.18 250 / 0.55), transparent 65%),
    radial-gradient(44% 52% at 64% 88%, oklch(0.70 0.18 305 / 0.50), transparent 65%),
    radial-gradient(34% 44% at 24% 84%, oklch(0.78 0.18 25 / 0.38), transparent 65%),
    radial-gradient(32% 40% at 50% 50%, oklch(0.85 0.27 142 / 0.15), transparent 70%);
  filter: blur(36px);
  animation: meshdrift 22s ease-in-out infinite alternate;
}
@keyframes meshdrift {
  0%   { transform: rotate(0deg) scale(1) translate(0,0); }
  100% { transform: rotate(6deg) scale(1.12) translate(2%, -3%); }
}

.hero-backdrop-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(160px, 26vw, 440px);
  letter-spacing: -0.07em;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 0 120px oklch(0.85 0.27 142 / 0.15);
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(70% 70% at 50% 50%, black 30%, transparent 80%);
}

/* Stage badge - top corner labels */
.stage-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}
.stage-badge .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 oklch(0.85 0.27 142 / 0.6);
  animation: livepulse 2s infinite;
}
.stage-badge.tl { top: 22px; left: 22px; }
.stage-badge.tr { top: 22px; right: 22px; }
.stage-badge.bl { bottom: 22px; left: 22px; }
.stage-badge.br { bottom: 22px; right: 22px; }

/* Phone mockup */
.phone {
  position: absolute;
  width: 190px;
  height: 400px;
  background: #0E0E0C;
  border-radius: 42px;
  padding: 7px;
  box-shadow:
    0 80px 120px -50px rgba(0,0,0,0.6),
    0 30px 60px -30px rgba(0,0,0,0.4),
    inset 0 0 0 1.5px rgba(255,255,255,0.09),
    inset 0 0 0 4px rgba(255,255,255,0.04);
  z-index: 3;
  will-change: transform;
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #1a1a17;
}
.phone .notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px;
  background: #0E0E0C;
  border-radius: 14px;
  z-index: 4;
}
.phone-bg { position: absolute; inset: 0; }
.phone-platform {
  position: absolute;
  top: 14px; left: 12px;
  z-index: 3;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  font-family: var(--sans);
}
.phone-views {
  position: absolute;
  top: 18px; right: 14px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.phone-bottom {
  position: absolute;
  bottom: 18px;
  left: 14px;
  right: 14px;
  z-index: 3;
  color: white;
}
.phone-creator {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 10px;
}
.phone-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.phone-handle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.phone-cap {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: var(--mono);
  letter-spacing: 0.02em;
  margin-top: 1px;
}
.phone-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.85);
}
.phone-meta svg { width: 14px; height: 14px; }

.phone.p-left  { top: 50%; left: 5%;  transform: translateY(-50%) rotate(-8deg); z-index: 3; }
.phone.p-right { top: 50%; right: 5%; transform: translateY(-50%) rotate(8deg);  z-index: 3; }
.phone.p-center{ top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4; }

@media (max-width: 920px) {
  .phone { width: 170px; height: 360px; }
  .phone.p-left  { left: 4%; }
  .phone.p-right { right: 4%; }
}
@media (max-width: 580px) {
  .phone { width: 130px; height: 280px; padding: 5px; border-radius: 28px; }
  .phone .screen { border-radius: 24px; }
  .phone .notch { width: 60px; height: 18px; top: 10px; }
  .phone-views, .phone-platform { display: none; }
  .phone-bottom { bottom: 10px; left: 8px; right: 8px; }
  .phone-handle { font-size: 11px; }
  .phone-cap { display: none; }
}

/* Floating overlay cards above phones */
.hero-float-card {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  color: white;
  will-change: transform;
}
.hero-float-card .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-float-card .value {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-float-card .value small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
  font-family: var(--mono);
}
.hero-float-card .row {
  display: flex; align-items: center; gap: 10px;
}
.hero-float-card .row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.float-bounty { top: 14%; left: 5%; }
.float-views  { top: 16%; right: 6%; }
.float-creator{ bottom: 18%; left: 4%; }
.float-status { bottom: 22%; right: 5%; }

@media (max-width: 920px) {
  .float-bounty { display: none; }
  .float-status { display: none; }
}
@media (max-width: 580px) {
  .float-creator { display: none; }
  .float-views { top: 14%; right: 8%; padding: 8px 12px; }
  .float-views .value { font-size: 18px; }
}
/* Ambient gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  animation: orbdrift 12s ease-in-out infinite alternate;
}
.orb-1 { width: 360px; height: 360px; background: var(--accent); top: -80px; left: -60px; animation-delay: 0s; }
.orb-2 { width: 280px; height: 280px; background: var(--blue); top: 60px; right: -40px; animation-delay: -4s; }
.orb-3 { width: 220px; height: 220px; background: var(--violet); bottom: -40px; left: 45%; animation-delay: -7s; }
@keyframes orbdrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, 16px) scale(1.08); }
}
.hero-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,14,12,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,12,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  mask-image: radial-gradient(80% 80% at 50% 50%, black 30%, transparent 80%);
  z-index: 1;
}

/* ----- Ticker / Marquee ----- */
.ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  gap: 0;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 36px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ticker-item .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.ticker-item.hl { color: white; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reveal variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
}
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
}
.reveal-right.in { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
}
.reveal-scale.in { opacity: 1; transform: none; }
@media (max-width: 720px) { .hero-stage { height: 420px; margin-top: 36px; } }

.hero-pipeline {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pipe-col {
  position: relative;
  display: grid; place-items: center;
}
.pipe-label {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pipe-num {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 11px; color: var(--ink-3);
}
.float {
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%    { transform: translateY(-14px); }
}
.float.delay-1 { animation-delay: -2s; }
.float.delay-2 { animation-delay: -4s; }
.float.delay-3 { animation-delay: -1s; }

/* Connection lines between pipeline columns */
.hero-lines {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-lines svg { width: 100%; height: 100%; display: block; }
.hero-lines .stroke {
  stroke: var(--ink);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 4 6;
  opacity: 0.35;
}
.hero-lines .dot {
  fill: var(--accent);
}
.dash-flow { animation: dashflow 8s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -200; } }

/* Tiles inside the hero */
.tile {
  background: #FBF9F3;
  border: 1px solid var(--line-softer);
  border-radius: 16px;
  box-shadow: 0 30px 50px -32px rgba(14,14,12,0.25), 0 4px 14px -10px rgba(14,14,12,0.15);
  padding: 14px;
}

.brief-card { width: 200px; }
.brief-card .head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-family: var(--mono); color: var(--ink-3); margin-bottom: 8px;
}
.brief-card .logo {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--ink) 0%, #2A2A26 100%);
  color: var(--accent);
  display:grid;place-items:center;font-weight:700;font-size:11px;
}
.brief-card h4 {
  margin: 0 0 10px; font-size: 15px; letter-spacing: -0.01em; font-weight: 600;
  line-height: 1.15;
}
.brief-card .meta {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(14,14,12,0.05);
  font-size: 10px;
  font-family: var(--mono);
  color: var(--ink-2);
}
.chip.green { background: var(--accent); }

.bounty-card { width: 180px; }
.bounty-card .row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.bounty-card .amount {
  font-family: var(--sans);
  font-weight: 700; font-size: 26px; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 4px;
}
.bounty-card .per {
  font-size: 11px; color: var(--ink-3); font-family: var(--mono);
}
.bounty-card .stat-row {
  display: flex; gap: 14px; margin-top: 10px;
}
.bounty-card .stat { font-size: 11px; color: var(--ink-3); font-family: var(--mono); }
.bounty-card .stat b { color: var(--ink); font-weight: 600; }

.video-tile { width: 130px; height: 230px; padding: 0; overflow: hidden; position: relative; border-radius: 18px;}
.video-tile .thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.video-tile .platform {
  position: absolute; top: 10px; left: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: white;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.video-tile .creator {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  color: white;
  font-size: 11px; font-family: var(--mono);
  display: flex; align-items: center; gap: 6px;
}
.video-tile .creator .av {
  width: 18px; height: 18px; border-radius: 50%;
  background: white;
  border: 1.5px solid white;
  flex: none;
}
.video-tile .views {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 7px; border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 10px; font-family: var(--mono);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}

.result-card { width: 200px; }
.result-card .num {
  font-size: 36px; font-weight: 700; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 4px;
}
.result-card .num small { font-size: 0.5em; color: var(--ink-3); margin-left: 4px; font-weight: 500; }
.result-card .label {
  font-size: 11px; font-family: var(--mono); color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase;
}
.result-card .spark {
  margin-top: 12px;
  height: 38px;
}
.spark path { fill: none; stroke: var(--ink); stroke-width: 1.5; }
.spark .area { fill: var(--accent); opacity: 0.25; stroke: none;}

/* Logos strip */
.logos {
  padding: 60px 0 20px;
  border-top: 1px solid var(--line-softer);
  margin-top: 80px;
}
.logos h6 {
  text-align: center; margin: 0 0 28px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink-3); text-transform: uppercase; font-weight: 500;
}
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 56px;
  opacity: 0.7;
}
.logos-row .logo-item {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
  font-family: var(--sans);
}
.logos-row .logo-item.serif { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; }
.logos-row .logo-item.mono { font-family: var(--mono); font-weight: 500; font-size: 16px; letter-spacing: 0.02em; }
@media (max-width: 720px) { .logos-row { gap: 32px; } }

/* ----- Section base ----- */
section { position: relative; }
.section { padding: 140px 0; }
.section.tight { padding: 100px 0; }
.section.dark { background: var(--ink); color: #ECEAE1; }
.section.dark .eyebrow { color: rgba(255,255,255,0.55); }
.section.dark .ink-3 { color: rgba(236,234,225,0.6); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dotbox {
  width: 6px; height: 6px; background: var(--accent); border-radius: 1px;
}

.h2 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(40px, 6vw, 88px);
  margin: 18px 0 22px;
}
.h2 .it { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.h3 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 0;
}
.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-3);
  max-width: 640px;
  letter-spacing: -0.005em;
}
.section.dark .lead { color: rgba(236,234,225,0.7); }

/* ----- Framework (Launch / Reward / Scale) ----- */
.framework {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line-soft);
}
.section.dark .framework { border-top-color: rgba(255,255,255,0.12); }
.framework-cell {
  padding: 50px 32px 40px 0;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.section.dark .framework-cell { border-right-color: rgba(255,255,255,0.12); }
.framework-cell:last-child { border-right: none; padding-right: 0;}
.framework-num {
  font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.section.dark .framework-num { color: rgba(255,255,255,0.5); }
.framework-word {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-size: clamp(56px, 7.8vw, 124px);
  margin: 0 0 24px;
}
.framework-word .dot { color: var(--accent); }
.framework-desc {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 320px;
  line-height: 1.45;
}
.section.dark .framework-desc { color: rgba(236,234,225,0.65); }
@media (max-width: 920px) {
  .framework { grid-template-columns: 1fr; }
  .framework-cell { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 36px 0; }
  .framework-cell:last-child { border-bottom: none; }
}

/* ----- How it works ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 70px;
  position: relative;
}
.step-card {
  background: var(--paper);
  border: 1px solid var(--line-softer);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  min-height: 320px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(14,14,12,0.3);
}
.step-num {
  font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em;
}
.step-art {
  margin-top: 14px;
  height: 160px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line-softer);
  position: relative;
  overflow: hidden;
}
.step-title {
  margin: 22px 0 8px;
  font-weight: 600; letter-spacing: -0.02em;
  font-size: 22px;
  line-height: 1.1;
}
.step-copy {
  font-size: 14px; color: var(--ink-3); line-height: 1.5;
  margin: 0;
}
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .steps { grid-template-columns: 1fr; }
}

/* Step art innards */
.brief-mini {
  position: absolute; inset: 16px;
  background: white; border-radius: 10px; border: 1px solid var(--line-softer);
  padding: 12px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 8px 20px -16px rgba(0,0,0,0.4);
}
.skeleton-line {
  height: 7px; border-radius: 4px; background: rgba(14,14,12,0.08);
}
.skeleton-line.w-70 { width: 70%; }
.skeleton-line.w-90 { width: 90%; }
.skeleton-line.w-50 { width: 50%; }
.bag-row { display: flex; gap: 4px; margin-top: auto; }
.bag { padding: 2px 7px; font-size: 9px; border-radius: 999px; font-family: var(--mono); background: rgba(14,14,12,0.06); color: var(--ink-2); }
.bag.green { background: var(--accent); }

.bounty-mini {
  position: absolute; left: 16px; right: 16px; top: 16px;
  background: white; border-radius: 10px; border: 1px solid var(--line-softer);
  padding: 14px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 20px -16px rgba(0,0,0,0.4);
}
.bounty-mini .label { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.06em; }
.bounty-mini .amt { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
.bounty-creators {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.avatar-stack { display: flex; }
.av-circle {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}
.av-circle:first-child { margin-left: 0; }
.bounty-creators .text { font-size: 11px; font-family: var(--mono); color: var(--ink-3); }

.shorts-grid {
  position: absolute; inset: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.shorts-grid .v {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.shorts-grid .v .platform-mini {
  position: absolute; top: 5px; left: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: white;
  display: grid; place-items: center;
  font-size: 8px; font-weight: 700;
}
.shorts-grid .v::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}

.perf-bars {
  position: absolute; inset: 16px;
  display: flex; align-items: flex-end; gap: 6px;
}
.perf-bars .bar {
  flex: 1; background: rgba(14,14,12,0.1); border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.perf-bars .bar .fill {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-radius: 6px;
  transition: height 1.4s cubic-bezier(.2,.7,.2,1);
}
.perf-bars .bar.green .fill { background: var(--accent); }

/* Workflow connecting line (decorative dotted) */
.steps::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background-image: linear-gradient(to right, var(--line-soft) 50%, transparent 50%);
  background-size: 10px 1px;
  pointer-events: none;
  display: none;
}

/* ----- Why BNTW grid ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}
.feature {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  background: rgba(255,255,255,0.02);
  min-height: 280px;
  display: flex; flex-direction: column;
  transition: background .25s, border-color .25s;
  overflow: hidden;
  position: relative;
}
.feature:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
}
.feature .icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.feature h4 {
  margin: 0 0 8px; font-size: 22px; letter-spacing: -0.02em; font-weight: 600;
  color: white;
}
.feature p {
  margin: 0; color: rgba(236,234,225,0.65); font-size: 15px; line-height: 1.5;
}
.feature .glyph {
  margin-top: auto;
  padding-top: 24px;
  height: 90px;
  display: grid; place-items: center;
}
@media (max-width: 920px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .feature-grid { grid-template-columns: 1fr; } }

/* ----- Dashboard ----- */
.dashboard-wrap {
  margin-top: 80px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid var(--line-softer);
  box-shadow: 0 40px 80px -50px rgba(14,14,12,0.3);
  padding: 14px;
}
.dashboard-mockup-wrap {
  margin-top: 80px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid var(--line-softer);
  box-shadow: 0 40px 80px -50px rgba(14,14,12,0.3);
  padding: 14px;
  overflow: hidden;
}
.dashboard-mockup {
  width: 100%;
  transform-origin: center center;
  will-change: transform, opacity;
}
.dashboard-mockup svg {
  border-radius: 16px;
  overflow: hidden;
}
.dashboard {
  background: var(--bg);
  border-radius: 20px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: start;
}
.db-campaigns { align-self: stretch !important; }
.db-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line-softer);
  padding: 20px;
  display: flex; flex-direction: column;
}
.db-card .db-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.db-card .db-head .ttl {
  font-size: 13px; font-family: var(--mono); color: var(--ink-3); letter-spacing: 0.05em; text-transform: uppercase;
}
.db-card .db-head .more {
  font-size: 16px; color: var(--ink-3);
}
.db-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-family: var(--mono); color: var(--ink-2);
  padding: 3px 8px; border-radius: 999px;
  background: rgba(14,14,12,0.05);
}
.db-tag .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(123,226,90,0.6);
  animation: livepulse 2s infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,226,90,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(123,226,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,226,90,0); }
}

.db-campaigns { grid-column: span 2; grid-row: span 2; }
.db-camp-list { display: flex; flex-direction: column; gap: 10px; }
.db-camp {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line-softer);
  border-radius: 12px;
  transition: background .2s, border-color .2s;
}
.db-camp:hover { background: var(--bg); }
.db-camp .brand-sq {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: white;
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.02em;
}
.db-camp .info .nm { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.db-camp .info .sb { font-size: 12px; color: var(--ink-3); font-family: var(--mono); }
.db-camp .views {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 15px;
}
.db-camp .views small { display:block; font-size: 10px; color: var(--ink-3); font-family: var(--mono); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.db-camp .status {
  width: 80px;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-family: var(--mono);
  color: var(--ink-2);
  justify-content: flex-end;
}

.db-views .big {
  font-size: 56px; letter-spacing: -0.04em; font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.db-views .delta {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(123,226,90,0.18);
  color: #166534;
  padding: 3px 8px; border-radius: 999px;
  font-size: 12px; font-family: var(--mono); margin-top: 10px;
}
.db-views .chart {
  margin-top: 18px;
  height: 90px;
  flex: none;
  position: relative;
}
.db-views .chart svg { width: 100%; height: 100%; }

.db-submissions { }
.db-sub-list { display: flex; flex-direction: column; gap: 10px; }
.db-sub {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
}
.db-sub .pf {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  color: white;
}
.db-sub .nm { font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
.db-sub .meta { font-size: 11px; color: var(--ink-3); font-family: var(--mono); }
.db-sub .pill {
  font-size: 10px; font-family: var(--mono); padding: 3px 8px; border-radius: 999px;
  color: var(--ink-2); background: rgba(14,14,12,0.06);
}
.db-sub .pill.approved { background: var(--accent); color: var(--ink); }
.db-sub .pill.review { background: rgba(123,166,255,0.2); color: #1d4ed8; }

@media (max-width: 920px) {
  .dashboard { grid-template-columns: 1fr; }
  .db-campaigns { grid-column: span 1; grid-row: auto; }
}

/* ----- Trust section ----- */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 60px;
}
.trust-card {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line-softer);
  padding: 32px 28px 40px;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.trust-card .num {
  font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em;
}
.trust-card h4 {
  margin: 18px 0 10px;
  font-size: 26px; letter-spacing: -0.025em; font-weight: 600;
  line-height: 1.1;
}
.trust-card p {
  font-size: 14px; color: var(--ink-3); line-height: 1.55; margin: 0;
  max-width: 280px;
}
.trust-card .deco {
  position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.18;
}
.trust-card:nth-child(2) .deco { background: var(--blue); opacity: 0.22;}
.trust-card:nth-child(3) .deco { background: var(--violet); opacity: 0.22;}
@media (max-width: 920px) { .trust-grid { grid-template-columns: 1fr; } }

/* ----- Final CTA ----- */
.final {
  margin: 80px 0 100px;
  border-radius: 32px;
  background: var(--ink);
  color: white;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(600px 300px at 80% 100%, rgba(123,226,90,0.18), transparent),
    radial-gradient(600px 300px at 0% 0%, rgba(123,166,255,0.10), transparent);
  pointer-events: none;
}
.final-inner { position: relative; display: flex; align-items: center; gap: 60px; justify-content: space-between; }
.final-content { flex: 1; min-width: 0; }
.final-contact-panel {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fcp-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.fcp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.fcp-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); }
.fcp-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.fcp-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.fcp-action { font-size: 14px; font-weight: 600; color: white; }
.fcp-value { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 900px) { .final-inner { flex-direction: column; } .final-contact-panel { width: 100%; } }
.final .h2 { color: white; margin-bottom: 18px; }
.final .h2 .it { color: var(--accent); }
.final .sub { color: rgba(255,255,255,0.7); max-width: 580px; font-size: clamp(17px, 1.3vw, 20px); }
.final-cta-row { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.final-meta {
  display: flex; gap: 28px; margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  flex-wrap: wrap;
}
.final-meta .item { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: uppercase; }
.final-meta .item b { color: white; font-weight: 500; display: block; margin-top: 6px; font-size: 14px; letter-spacing: -0.01em; text-transform: none; font-family: var(--sans); }
@media (max-width: 720px) { .final { padding: 60px 30px; } }

/* ----- Footer ----- */
.footer {
  padding: 50px 0 60px;
  border-top: 1px solid var(--line-soft);
}
.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-inner .left { display: flex; align-items: center; gap: 16px; }
.foot-inner .copy { font-size: 13px; color: var(--ink-3); font-family: var(--mono); }
.foot-links { display: flex; gap: 24px; font-size: 13px; color: var(--ink-3); font-family: var(--mono); }
.foot-links a:hover { color: var(--ink); }
.foot-divider {
  color: var(--ink-3);
  opacity: 0.4;
  user-select: none;
}
.foot-contact-link {
  color: var(--ink-2) !important;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.foot-contact-link:hover {
  color: var(--ink) !important;
  border-color: var(--ink);
}

/* ----- Cursor spotlight zone ----- */
.spotlight-zone {
  position: relative;
  --mx: 50%;
  --my: 50%;
  --spotlight-opacity: 0;
}
.spotlight-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my),
    oklch(0.85 0.27 142 / 0.16),
    transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: var(--spotlight-opacity);
  transition: opacity .5s ease;
  mix-blend-mode: screen;
}
.spotlight-zone > * { position: relative; z-index: 1; }

/* ----- Horizontal scroll showcase ----- */
/* New trusted-by grid */
.trusted-section {
  position: relative;
  background: var(--ink);
  color: white;
  padding: 120px 0 140px;
  overflow: hidden;
}
.trusted-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.trusted-header .h2 {
  margin: 16px 0 18px;
}
.trusted-header .h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.trusted-header .lead {
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trusted-card {
  display: flex;
  flex-direction: column;
}
.trusted-card-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.trusted-card:hover .trusted-card-visual {
  transform: translateY(-4px);
}
.trusted-logo {
  max-width: 70%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.trusted-logo-fallback {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  align-items: center;
  justify-content: center;
}
.trusted-card-meta {
  margin-top: 20px;
  padding: 0 4px;
}
.trusted-card-meta .ttl {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 6px;
}
.trusted-card-meta .tags {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
}
@media (max-width: 920px) {
  .trusted-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .trusted-section { padding: 80px 0 100px; }
  .trusted-grid { grid-template-columns: 1fr; gap: 20px; }
}

.hscroll-section {
  position: relative;
  height: 320vh;
  background: var(--ink);
  color: white;
  display: none; /* legacy — replaced by .trusted-section */
}
.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hscroll-header {
  padding: 0 28px;
  margin-bottom: 40px;
  flex-shrink: 0;
}
.hscroll-header .eyebrow { color: rgba(255,255,255,0.55); }
.hscroll-header .h2 {
  color: white;
  max-width: 760px;
  margin: 18px 0 0;
}
.hscroll-header .h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hscroll-track-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 28px;
}
.hscroll-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.08s linear;
}
.hscroll-card {
  flex-shrink: 0;
  width: 360px;
  display: flex;
  flex-direction: column;
}
.hscroll-phone {
  width: 360px;
  height: 480px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: #1a1a17;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 60px 100px -50px rgba(0,0,0,0.6);
}
.hscroll-phone .phone-fill {
  position: absolute;
  inset: 0;
}
.hscroll-phone .phone-figure {
  position: absolute; inset: 0;
}
.hscroll-phone .brand-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.hscroll-phone .brand-tag .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hscroll-phone .views-tag {
  position: absolute;
  top: 18px; right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  z-index: 2;
}
.hscroll-phone .bottom-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
}
.hscroll-phone .bottom-info .creator {
  display: flex; align-items: center; gap: 10px;
}
.hscroll-phone .bottom-info .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
}
.hscroll-phone .bottom-info .h {
  font-size: 14px; font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
.hscroll-phone .bottom-info .s {
  font-size: 11px; color: rgba(255,255,255,0.7);
  font-family: var(--mono);
  margin-top: 2px;
}
.hscroll-card-meta {
  margin-top: 22px;
  padding: 0 4px;
}
.hscroll-card-meta .ttl {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 6px;
}
.hscroll-card-meta .tags {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
}

.hscroll-progress {
  position: absolute;
  bottom: 32px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hscroll-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.hscroll-bar .fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: 0 50%;
  transition: transform 0.08s linear;
}
.hscroll-progress .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .hscroll-section { height: 240vh; }
  .hscroll-phone, .hscroll-card { width: 280px; }
  .hscroll-phone { height: 380px; }
}

/* ----- Vertical wavy journey (BIG) ----- */
.journey {
  position: relative;
  padding: 100px 0 140px;
  overflow: hidden;
  background: var(--bg);
}
.journey-header {
  text-align: center;
  margin-bottom: 80px;
}
.journey-header .eyebrow { justify-content: center; }
.journey-header .h2 {
  max-width: 940px;
  margin: 18px auto 0;
}
.journey-stage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.journey-svg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.journey-svg .path-bg {
  fill: none;
  stroke: rgba(14,14,12,0.12);
  stroke-width: 8;
  stroke-linecap: round;
}
.journey-svg .path-fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  filter:
    drop-shadow(0 0 10px oklch(0.85 0.27 142 / 0.9))
    drop-shadow(0 0 28px oklch(0.85 0.27 142 / 0.55))
    drop-shadow(0 0 56px oklch(0.85 0.27 142 / 0.25));
}
.journey-svg .traveller {
  fill: var(--accent);
  filter:
    drop-shadow(0 0 12px oklch(0.85 0.27 142 / 1))
    drop-shadow(0 0 32px oklch(0.85 0.27 142 / 0.7));
}
.journey-svg .traveller-pulse {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  opacity: 0.6;
}
.journey-svg .anchor {
  fill: var(--bg);
  stroke: var(--accent);
  stroke-width: 3.5;
  transition: fill .4s, r .4s;
}
.journey-svg .anchor.active {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px oklch(0.85 0.27 142 / 0.8));
}
.journey-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 0;
  align-items: center;
  min-height: 600px;
  padding: 40px 0;
}
.journey-step .copy {
  max-width: 420px;
  will-change: transform, opacity;
}
.journey-step .visual {
  will-change: transform, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-step.right .copy   { grid-column: 1; justify-self: end;   padding-right: 40px; text-align: right; }
.journey-step.right .visual { grid-column: 3; justify-self: start; padding-left: 40px; }
.journey-step.left .visual  { grid-column: 1; justify-self: end;   padding-right: 40px; }
.journey-step.left .copy    { grid-column: 3; justify-self: start; padding-left: 40px; text-align: left; }
.journey-step .center { grid-column: 2; }

.journey-step .step-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.journey-step.right .step-num { flex-direction: row-reverse; }
.journey-step .step-num .pip {
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 oklch(0.85 0.27 142 / 0.6);
  animation: livepulse 2s infinite;
}
.journey-step h3 {
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 26px;
}
.journey-step h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.journey-step .desc {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-3);
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
}
.journey-step .meta-row {
  display: flex; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.journey-step.right .meta-row { justify-content: flex-end; }
.journey-step .meta-row .item {
  padding: 6px 12px;
  border: 1px solid var(--line-softer);
  border-radius: 999px;
  background: var(--paper);
}
.journey-step .meta-row .item.accent { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ----- Big visuals ----- */
.bigvis {
  position: relative;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line-softer);
  box-shadow: 0 40px 80px -40px rgba(14,14,12,0.3), 0 8px 24px -12px rgba(14,14,12,0.1);
  overflow: hidden;
}
.bigvis-brief {
  width: 440px;
  padding: 32px;
}
.bigvis-brief .head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.bigvis-brief .head .logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ink), #2A2A26);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
}
.bigvis-brief .head .info .nm { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.bigvis-brief .head .info .sb { font-size: 12px; color: var(--ink-3); font-family: var(--mono); margin-top: 2px; }
.bigvis-brief h5 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bigvis-brief .field-list {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-softer);
}
.bigvis-brief .field {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.bigvis-brief .field .lbl { color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.bigvis-brief .field .val { font-weight: 500; letter-spacing: -0.01em; }
.bigvis-brief .tag-row {
  display: flex; gap: 6px; margin-top: 20px; flex-wrap: wrap;
}

.bigvis-bounty {
  width: 460px;
  padding: 32px;
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.bigvis-bounty .top {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px;
}
.bigvis-bounty .ttl {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.55);
}
.bigvis-bounty .amount {
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 8px 0 8px;
  font-variant-numeric: tabular-nums;
}
.bigvis-bounty .amount small {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-left: 6px;
  letter-spacing: -0.01em;
}
.bigvis-bounty .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bigvis-bounty .stat .v { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.bigvis-bounty .stat .l { font-size: 11px; color: rgba(255,255,255,0.55); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.bigvis-bounty .creator-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 12px;
}
.bigvis-bounty .creator-row .stack { display: flex; }
.bigvis-bounty .creator-row .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -10px;
}
.bigvis-bounty .creator-row .av:first-child { margin-left: 0; }
.bigvis-bounty .creator-row .txt { font-size: 13px; color: rgba(255,255,255,0.7); font-family: var(--mono); }
.bigvis-bounty .live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.bigvis-bounty .live-pill .dot {
  width: 7px; height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

.bigvis-phones {
  position: relative;
  width: 440px;
  height: 480px;
}
.bigvis-phones .ph {
  position: absolute;
  width: 180px;
  height: 380px;
  background: #0E0E0C;
  border-radius: 32px;
  padding: 6px;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.5), inset 0 0 0 1.5px rgba(255,255,255,0.06);
}
.bigvis-phones .ph .scr {
  width: 100%; height: 100%;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.bigvis-phones .ph .notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 18px;
  background: #0E0E0C;
  border-radius: 10px;
  z-index: 4;
}
.bigvis-phones .ph-1 { left: 0;   top: 50px; transform: rotate(-10deg); z-index: 2; }
.bigvis-phones .ph-2 { left: 50%; top: 0;   transform: translateX(-50%); z-index: 3; }
.bigvis-phones .ph-3 { right: 0;  top: 50px; transform: rotate(10deg); z-index: 2; }

/* Single-phone variant with embedded video */
.bigvis-phones.single { width: 240px; height: 480px; margin: 0 auto; }
.bigvis-phones .ph-solo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 240px; height: 480px;
  z-index: 3;
}
.bigvis-phones .ph-solo .scr {
  background: #0E0E0C;
}
.bigvis-phones .ph-solo video {
  display: block;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(170deg, #1a1a1a, #0E0E0C);
  color: rgba(255,255,255,0.7);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
/* When the video has loaded data the placeholder fades — but we can't detect natively
   without JS, so it stays unless a video src is set. Hide it once video has a src. */
.bigvis-phones .ph-solo video[src]:not([src=""]) ~ .video-placeholder { display: none; }
.bigvis-phones .platform-mini {
  position: absolute; top: 12px; left: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: white;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  z-index: 2;
}
.bigvis-phones .views-mini {
  position: absolute; top: 14px; right: 12px;
  padding: 3px 8px;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: 999px;
  font-size: 10px;
  font-family: var(--mono);
  z-index: 2;
}
.bigvis-phones .h-mini {
  position: absolute; bottom: 14px; left: 12px;
  color: white;
  font-size: 11px;
  font-family: var(--mono);
  z-index: 2;
}

.bigvis-dashboard {
  width: 540px;
  padding: 24px;
}
.bigvis-dashboard .db-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}
.bigvis-dashboard .db-ttl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; }
.bigvis-dashboard .big-num {
  font-size: 88px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.bigvis-dashboard .big-num small {
  font-size: 18px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 8px;
  letter-spacing: -0.01em;
}
.bigvis-dashboard .delta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: oklch(0.85 0.27 142 / 0.2);
  color: #166534;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 600;
  margin-top: 14px;
}
.bigvis-dashboard .chart-big {
  height: 160px;
  margin-top: 28px;
  position: relative;
}
.bigvis-dashboard .legend-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-softer);
}
.bigvis-dashboard .legend .v { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; }
.bigvis-dashboard .legend .l { font-size: 11px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.bigvis-dashboard .legend .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

@media (max-width: 1100px) {
  .journey-step { grid-template-columns: 1fr 220px 1fr; min-height: 520px; }
  .journey-svg { width: 220px; }
  .bigvis-brief, .bigvis-bounty { width: 380px; }
  .bigvis-phones { width: 380px; height: 420px; }
  .bigvis-phones .ph { width: 150px; height: 320px; }
  .bigvis-dashboard { width: 440px; }
}
@media (max-width: 920px) {
  .journey-stage { padding: 0 16px; }
  .journey-svg { width: 64px; left: 28px; transform: none; }
  .journey-step {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 36px 0;
    gap: 24px;
  }
  .journey-step .center { grid-column: 1; grid-row: 1 / 3; }
  .journey-step.right .copy, .journey-step.left .copy,
  .journey-step.right .visual, .journey-step.left .visual {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    padding-left: 16px;
    padding-right: 0;
    max-width: 100%;
  }
  .journey-step .copy   { grid-row: 1; }
  .journey-step .visual { grid-row: 2; transform: scale(0.9) !important; transform-origin: left top; }
  .journey-step.right .step-num { flex-direction: row; }
  .journey-step.right .meta-row { justify-content: flex-start; }
  .bigvis-brief, .bigvis-bounty { width: 100%; max-width: 380px; padding: 24px; }
  .bigvis-phones { width: 320px; height: 360px; }
  .bigvis-phones .ph { width: 130px; height: 270px; }
  .bigvis-phones.single { width: 200px; height: 420px; }
  .bigvis-phones .ph-solo { width: 200px; height: 420px; }
  .bigvis-dashboard { width: 100%; max-width: 380px; }
  .bigvis-dashboard .big-num { font-size: 60px; }
  .bigvis-bounty .amount { font-size: 56px; }
}

/* ----- Scroll-driven section reveal (used elsewhere) ----- */
.scroll-stage { perspective: 1400px; }
.scroll-stage > * { will-change: transform, opacity; }

/* Native cursor — pointer on interactive, default elsewhere */
a, button, [role="button"], .btn, .nav-links a { cursor: pointer; }

/* ===== BIG STATS wave section ===== */
.bigstats {
  position: relative;
  background: var(--ink);
  color: white;
  padding: 60px 0 80px;
  overflow: hidden;
}
.bigstats-stage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.bigstats-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  min-height: 520px;
  align-items: center;
  padding: 20px 0;
}
.bigstats-item .num-side { will-change: transform, opacity; }
.bigstats-item .lbl-side { will-change: transform, opacity; display: flex; flex-direction: column; gap: 14px; }
.bigstats-item.right .num-side { grid-column: 1; justify-self: end; padding-right: 40px; text-align: right; }
.bigstats-item.right .lbl-side { grid-column: 3; justify-self: start; padding-left: 40px; }
.bigstats-item.left  .lbl-side { grid-column: 1; justify-self: end; padding-right: 40px; text-align: right; }
.bigstats-item.left  .num-side { grid-column: 3; justify-self: start; padding-left: 40px; }
.bigstats-item .center { grid-column: 2; }
.stat-unit {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-number {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.88;
  font-variant-numeric: tabular-nums;
  display: block;
  color: white;
}
.stat-label {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  color: white;
  letter-spacing: -0.025em;
}
.stat-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.stat-bar { width: 60px; height: 3px; background: var(--accent); border-radius: 2px; }
.bigstats-item.left .stat-bar { margin-left: auto; }
@media (max-width: 920px) {
  .bigstats-item { grid-template-columns: 60px 1fr; min-height: 0; padding: 28px 0; }
  .bigstats-item .center { grid-column: 1; }
  .bigstats-item.right .num-side,.bigstats-item.left .num-side,
  .bigstats-item.right .lbl-side,.bigstats-item.left .lbl-side {
    grid-column: 2; justify-self: start; text-align: left; padding-left: 14px; padding-right: 0;
  }
  .bigstats-item.left .stat-bar { margin-left: 0; }
}

/* ===== PLATFORM WAVE section ===== */
.platformwave { position: relative; background: var(--bg); padding: 80px 0 100px; overflow: hidden; }
.platformwave-header { text-align: center; margin-bottom: 80px; }
.platformwave-header .eyebrow { justify-content: center; }
.platformwave-stage { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.platform-row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 320px 1fr;
  min-height: 620px; align-items: center; padding: 20px 0;
}
.platform-row .phone-wrap { will-change: transform, opacity; }
.platform-row .platform-copy { will-change: transform, opacity; }
.platform-row.right .phone-wrap    { grid-column: 1; justify-self: end; padding-right: 40px; }
.platform-row.right .platform-copy { grid-column: 3; justify-self: start; padding-left: 40px; }
.platform-row.left  .platform-copy { grid-column: 1; justify-self: end; padding-right: 40px; text-align: right; }
.platform-row.left  .phone-wrap    { grid-column: 3; justify-self: start; padding-left: 40px; }
.platform-row .center { grid-column: 2; }
.platform-big-phone {
  width: 300px; height: 560px; border-radius: 44px; padding: 8px;
  box-shadow: 0 80px 120px -50px rgba(0,0,0,0.32), 0 30px 60px -20px rgba(0,0,0,0.15),
    inset 0 0 0 1.5px rgba(255,255,255,0.1);
  background: #0E0E0C; position: relative;
}
.platform-big-phone .pscreen {
  position: absolute; inset: 8px; border-radius: 36px; overflow: hidden;
}
.platform-big-phone .pnotch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px; background: #0E0E0C; border-radius: 12px; z-index: 4;
}
.platform-big-phone .plat-icon {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px; color: white;
}
.platform-big-phone .plat-views {
  position: absolute; top: 24px; right: 18px; z-index: 3;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
  color: white; font-family: var(--mono); font-size: 12px;
}
.platform-big-phone .plat-bottom {
  position: absolute; bottom: 22px; left: 18px; right: 18px; z-index: 3;
}
.platform-big-phone .pav {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid white;
}
.platform-big-phone .phandle { font-size: 15px; font-weight: 600; color: white; letter-spacing: -0.01em; }
.platform-big-phone .pcap { font-size: 11px; color: rgba(255,255,255,0.7); font-family: var(--mono); margin-top: 2px; }
.platform-big-phone .pstats { display: flex; gap: 16px; margin-top: 10px; font-size: 12px; font-family: var(--mono); color: rgba(255,255,255,0.8); }
.platform-copy .plat-name {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; margin: 0 0 18px;
}
.platform-copy .plat-stat {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase; margin-bottom: 14px;
}
.platform-copy .plat-desc {
  font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-2);
  line-height: 1.5; max-width: 360px;
}
.platform-row.left .platform-copy .plat-desc { margin-left: auto; }
@media (max-width: 920px) {
  .platform-row { grid-template-columns: 60px 1fr; min-height: 0; padding: 28px 0; gap: 20px; }
  .platform-row .center { grid-column: 1; grid-row: 1 / 3; }
  .platform-row.right .phone-wrap,.platform-row.left .phone-wrap,
  .platform-row.right .platform-copy,.platform-row.left .platform-copy {
    grid-column: 2; justify-self: start; text-align: left; padding-left: 14px; padding-right: 0;
  }
  .platform-row .platform-copy { grid-row: 1; }
  .platform-row .phone-wrap    { grid-row: 2; }
  .platform-row.left .platform-copy .plat-desc { margin-left: 0; }
  .platform-big-phone { width: 200px; height: 380px; }
}

/* ===== GREEN STATEMENT section ===== */
.green-statement {
  background: var(--accent); color: var(--ink);
  padding: 120px 0; overflow: hidden; position: relative;
}
.green-statement .gs-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(120px, 22vw, 340px);
  letter-spacing: -0.07em;
  color: rgba(14,14,12,0.08);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.green-statement .wrap { position: relative; z-index: 1; }
.green-statement .headline {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -0.05em; line-height: 0.9;
  font-size: clamp(52px, 9vw, 140px); margin: 0;
}
.green-statement .headline em {
  font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em;
}
.green-statement .gs-sub {
  font-size: clamp(17px, 1.4vw, 22px);
  color: rgba(14,14,12,0.7);
  max-width: 560px; margin-top: 32px;
  line-height: 1.45; letter-spacing: -0.01em;
}
.green-statement .gs-cta { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; align-items: center; }
.btn-ink { background: var(--ink); color: white; }
.btn-ink:hover { background: #1c1c19; }
.btn-ghost-ink { background: transparent; border: 2px solid rgba(14,14,12,0.4); color: var(--ink); }
.btn-ghost-ink:hover { background: rgba(14,14,12,0.06); }

/* ===== FLOATING PARTICLES ===== */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.particle {
  position: absolute; border-radius: 50%;
  background: oklch(0.85 0.27 142 / 0.2);
  animation: particledrift linear infinite;
}
@keyframes particledrift {
  0%   { transform: translateY(110%) scale(0.8); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 0.8; }
  100% { transform: translateY(-20%) scale(1.2); opacity: 0; }
}

/* ----- Scroll progress bar ----- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(14,14,12,0.06);
  z-index: 200;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
  transition: transform .08s linear;
}

/* ----- Pinned framework scroll narrative ----- */
.framework-scroll {
  position: relative;
  height: 360vh;
  background: var(--ink);
  color: white;
}
.framework-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.framework-sticky .wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.framework-header {
  position: absolute;
  top: 12vh; left: 0; right: 0;
  text-align: center;
}
.framework-header .eyebrow {
  color: rgba(255,255,255,0.55);
  display: inline-flex;
}
.framework-tagline {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: clamp(20px, 2.4vw, 32px);
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}
.framework-tagline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.framework-words {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  height: 60vh;
}
.framework-word-pane {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  will-change: opacity, transform;
  padding: 0 24px;
}
.framework-pane-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.framework-big-word {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  font-size: clamp(96px, 22vw, 320px);
  margin: 0;
  color: white;
}
.framework-big-word .dot {
  color: var(--accent);
}
.framework-pane-desc {
  font-size: clamp(17px, 1.4vw, 22px);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 32px auto 0;
  line-height: 1.45;
  text-align: center;
  letter-spacing: -0.005em;
}
.framework-indicator {
  position: absolute;
  bottom: 12vh; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.fw-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  transition: background .4s, width .4s;
}
.fw-dot.active {
  background: var(--accent);
  width: 60px;
}
@media (max-width: 720px) {
  .framework-scroll { height: 320vh; }
  .framework-header { top: 8vh; }
  .framework-indicator { bottom: 8vh; }
  .framework-big-word { font-size: clamp(80px, 28vw, 200px); }
}

/* ----- Step card hover tilt ----- */
.step-card.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ----- Scroll reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.stagger.in > * { opacity: 1; transform: none; }
.reveal.stagger.in > *:nth-child(2) { transition-delay: .1s; }
.reveal.stagger.in > *:nth-child(3) { transition-delay: .2s; }
.reveal.stagger.in > *:nth-child(4) { transition-delay: .3s; }
.reveal.stagger.in > *:nth-child(5) { transition-delay: .4s; }
.reveal.stagger.in > *:nth-child(6) { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float { animation: none; }
}

/* ----- Utility ----- */
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap-24 { gap: 24px; }
.mt-80 { margin-top: 80px; }
.kicker-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.kicker-row .lead { flex: 1; max-width: 460px; text-align: right; }
@media (max-width: 720px) { .kicker-row .lead { text-align: left; } }
