/* ============================================================
   INFLUTIQUE — Marketing site (not the deck)
   Alternating surfaces: INK / PAPER / DEEP. Geist + Geist Mono.
   ============================================================ */

:root {
  /* Brand */
  --teal: #2dd4bf;
  --green: #86efac;
  --mint: #5eead4;
  --deep-teal: #0d9488;

  /* Ink (near-black green) surface */
  --ink: #050a09;
  --ink-card: #0e1817;
  --ink-line: rgba(255,255,255,0.10);
  --ink-line-2: rgba(255,255,255,0.18);
  --on-ink: #eef2f0;
  --on-ink-2: #9fABA7;
  --on-ink-3: #6b7570;

  /* Paper (warm off-white) surface */
  --paper: #f4f6f3;
  --paper-2: #ffffff;
  --paper-line: rgba(8,20,18,0.10);
  --on-paper: #0a1413;
  --on-paper-2: #4a5450;
  --on-paper-3: #7c857f;

  /* Deep (emerald highlight) surface */
  --deep: #07211d;

  --container: 1200px;
  --pad-x: 40px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--on-ink);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.mono {
  font-family: 'Geist Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   SURFACES
   ============================================================ */
.surface-ink   { background: var(--ink);   color: var(--on-ink); }
.surface-paper {
  position: relative;
  background: linear-gradient(180deg, #f8faf7 0%, var(--paper) 60%, #eef2ee 100%);
  color: var(--on-paper);
}
.surface-paper::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(38% 48% at 90% 6%, rgba(45,212,191,0.12), transparent 60%),
    radial-gradient(36% 44% at 5% 96%, rgba(134,239,172,0.13), transparent 62%);
}
.surface-paper::after {
  content:""; position:absolute; inset:0 0 auto 0; height:1px; z-index:0; pointer-events:none;
  background: linear-gradient(90deg, transparent, rgba(13,148,136,0.28), transparent);
}
.surface-paper > .container { position: relative; z-index: 1; }
.surface-deep  { background: var(--deep);   color: var(--on-ink); }

section { position: relative; }
.pad { padding: clamp(72px, 9vw, 132px) 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer; border: none;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(105deg, var(--teal), var(--green));
  color: #03100d;
  box-shadow: 0 14px 40px -16px rgba(45,212,191,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -16px rgba(45,212,191,0.7); }

.btn-ghost-ink {
  background: transparent; color: var(--on-ink);
  border: 1px solid var(--ink-line-2);
}
.btn-ghost-ink:hover { border-color: var(--on-ink); background: rgba(255,255,255,0.04); }

.btn-ghost-paper {
  background: transparent; color: var(--on-paper);
  border: 1px solid var(--paper-line);
}
.btn-ghost-paper:hover { border-color: var(--on-paper); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 60;
  display: flex; align-items: center;
  background: transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,10,9,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--ink-line);
}
.nav .inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; font-size: 15px;
  color: var(--on-ink);
}
.brand .glyph {
  width: 28px; height: 28px; border-radius: 8px;
  background: conic-gradient(from 220deg at 50% 50%, var(--teal), var(--green), var(--deep-teal), var(--teal));
  position: relative;
}
.brand .glyph::after { content:""; position:absolute; inset:6px; background: var(--ink); border-radius:4px; }
.brand .glyph::before { content:""; position:absolute; inset:10px; background: linear-gradient(135deg, var(--green), var(--teal)); border-radius:2px; }

.nav-links {
  display: flex; gap: 30px;
  font-family: 'Geist Mono', monospace; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--on-ink-2);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--on-ink); }

/* hamburger + mobile dropdown */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; margin-right: -8px;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--on-ink); transition: transform .25s, opacity .2s;
}
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px var(--pad-x) 22px;
  background: rgba(5,10,9,0.94);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--ink-line);
  font-family:'Geist Mono', monospace; font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--on-ink-2);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .26s ease, opacity .26s ease;
}
.nav-mobile a:not(.btn) { padding: 13px 2px; border-bottom: 1px solid var(--ink-line); }
.nav-mobile a:not(.btn):hover { color: var(--on-ink); }
.nav-mobile .btn { margin-top: 16px; justify-content: center; }
.nav.menu-open .nav-mobile { transform: none; opacity: 1; pointer-events: auto; }

@media (max-width: 860px){
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .nav .inner .nav-cta { display:none; }
  /* give the dropdown the scrolled glass even at the top of the page */
  .nav.menu-open { background: rgba(5,10,9,0.94); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
}
@media (min-width: 861px){ .nav-mobile { display:none; } }

@media (max-width: 600px){
  :root { --pad-x: 22px; }
  .hero { align-items: flex-start; min-height: auto; padding-bottom: 120px; }
  .hero-pill { margin-bottom: 24px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 64px;
  overflow: hidden;
}
.hero::before {
  content:""; position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(55% 50% at 15% 25%, rgba(45,212,191,0.20), transparent 60%),
    radial-gradient(50% 55% at 88% 80%, rgba(134,239,172,0.12), transparent 62%);
}
.hero .container { position: relative; z-index: 3; width: 100%; }

/* faint photographic depth at the foot of the hero */
.hero-photo {
  position: absolute; inset: auto 0 0 0; z-index: 0;
  height: 62%;
  background: url("assets/tickets-falling.png") center 30% / cover no-repeat;
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 55%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 55%, transparent);
  filter: saturate(0.9);
}

/* animated falling tickets */
.hero-tickets { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.ticket {
  position: absolute; top: -8vh; left: var(--x);
  width: var(--w); height: calc(var(--w) * 0.46);
  border-radius: 4px;
  background: linear-gradient(115deg, rgba(94,234,212,0.9), rgba(134,239,172,0.85));
  opacity: var(--op);
  box-shadow: 0 6px 18px -8px rgba(45,212,191,0.6);
  will-change: transform;
  animation: ticket-fall var(--dur) linear var(--delay) infinite;
}
.ticket.alt { background: linear-gradient(115deg, rgba(236,242,240,0.92), rgba(180,200,195,0.8)); box-shadow: 0 6px 18px -10px rgba(0,0,0,0.5); }
.ticket::before {
  content:""; position:absolute; top:0; bottom:0; left: 30%; width: 0;
  border-left: 1.5px dashed rgba(5,10,9,0.35);
}
.ticket::after {
  content:""; position:absolute; left: 30%; top: 50%;
  width: 5px; height: 5px; border-radius: 999px; background: var(--ink);
  transform: translate(-50%, -50%);
}
@keyframes ticket-fall {
  0%   { transform: translate3d(0, -8vh, 0) rotate(var(--r0)); }
  100% { transform: translate3d(var(--drift), 112vh, 0) rotate(var(--r1)); }
}
@media (prefers-reduced-motion: reduce) {
  .ticket { animation: none; display: none; }
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; border: 1px solid var(--ink-line-2); border-radius: 999px;
  font-family:'Geist Mono', monospace; font-size: 12.5px; letter-spacing:0.14em;
  text-transform: uppercase; color: var(--on-ink-2);
  background: rgba(255,255,255,0.02); margin-bottom: 36px;
}
.hero-pill .dot { width:8px;height:8px;border-radius:999px;background:var(--teal);box-shadow:0 0 12px var(--teal); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.65} }

.hero h1 {
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 0.98;
  margin: 0 0 28px; max-width: 16ch; text-wrap: balance;
}
.hero h1 .gr {
  background: linear-gradient(105deg, var(--teal), var(--green));
  -webkit-background-clip:text; background-clip:text; color: transparent;
}
.hero .sub {
  font-size: clamp(19px, 1.9vw, 24px); color: var(--on-ink-2);
  max-width: 56ch; margin: 0 0 40px; line-height: 1.5;
}
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }

/* prize marquee strip at the bottom of hero */
.marquee {
  position: absolute; left:0; right:0; bottom: 0; z-index: 2;
  border-top: 1px solid var(--ink-line);
  padding: 18px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: scroll-x 38s linear infinite;
  font-family:'Geist Mono', monospace; font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--on-ink-3);
}
.marquee-track span { display:inline-flex; align-items:center; gap: 48px; }
.marquee-track span::after { content:"✦"; color: var(--teal); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   PROOF BAND
   ============================================================ */
.proof {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  align-items: start;
}
.proof .it .v {
  font-size: clamp(40px, 4vw, 60px); font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(120deg, var(--mint), var(--green));
  -webkit-background-clip:text; background-clip:text; color: transparent;
  margin-bottom: 12px;
}
.proof .it .l { font-size: 15px; color: var(--on-ink-2); line-height: 1.45; }
@media (max-width: 760px){ .proof { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.kicker {
  display:inline-flex; align-items:center; gap: 12px;
  font-family:'Geist Mono', monospace; font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 24px;
}
.kicker .dot { width:8px;height:8px;border-radius:999px;background:var(--teal); }
.surface-paper .kicker { color: var(--on-paper-3); }
.surface-ink .kicker, .surface-deep .kicker { color: var(--on-ink-3); }

.h2 {
  font-size: clamp(34px, 4.4vw, 60px); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.05; margin: 0; max-width: 18ch; text-wrap: balance;
}
.h2 .gr {
  background: linear-gradient(100deg, var(--deep-teal), var(--teal) 60%, var(--green));
  -webkit-background-clip:text; background-clip:text; color: transparent;
}
.surface-ink .h2 .gr, .surface-deep .h2 .gr {
  background: linear-gradient(100deg, var(--teal), var(--green));
  -webkit-background-clip:text; background-clip:text; color: transparent;
}
.lead {
  font-size: clamp(18px, 1.7vw, 21px); line-height: 1.55; max-width: 60ch; margin: 22px 0 0;
}
.surface-paper .lead { color: var(--on-paper-2); }
.surface-ink .lead, .surface-deep .lead { color: var(--on-ink-2); }

.head-row { margin-bottom: 64px; }

/* ============================================================
   WHAT WE DO — cards (paper)
   ============================================================ */
.do-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.do-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fafcfb 100%);
  border: 1px solid var(--paper-line); border-radius: 22px;
  padding: 36px; display:flex; flex-direction: column; gap: 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.do-card::before {
  content:""; position:absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--green), transparent);
  opacity: 0; transition: opacity .25s;
}
.do-card::after {
  content:""; position:absolute; right: -30%; top: -40%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(45,212,191,0.10), transparent 70%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.do-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -34px rgba(8,20,18,0.4); border-color: rgba(13,148,136,0.28); }
.do-card:hover::before { opacity: 1; }
.do-card:hover::after { opacity: 1; }
.do-card > * { position: relative; z-index: 1; }
.do-card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(45,212,191,0.16), rgba(134,239,172,0.12));
  border: 1px solid rgba(13,148,136,0.25);
}
.do-card .ic svg { width: 26px; height: 26px; stroke: var(--deep-teal); fill: none; stroke-width: 1.8; }
.do-card h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; margin: 0; line-height: 1.15; }
.do-card p { font-size: 16px; color: var(--on-paper-2); margin: 0; line-height: 1.55; }
@media (max-width: 860px){ .do-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MANAGER VIDEO (ink)
   ============================================================ */
.video-wrap { display:grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.video-card {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 16 / 10; border: 1px solid var(--ink-line);
  background: #06100e; cursor: pointer;
}
.video-card img { width:100%; height:100%; object-fit: cover; opacity: 0.72; transition: transform .6s, opacity .3s; }
.video-card:hover img { transform: scale(1.04); opacity: 0.82; }
.video-card::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(5,10,9,0.1), rgba(5,10,9,0.55));
}
.video-card .play {
  position:absolute; inset:0; margin:auto; z-index: 2;
  width: 96px; height: 96px; border-radius: 999px;
  background: rgba(45,212,191,0.92); color:#03100d;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 0 12px rgba(45,212,191,0.14), 0 20px 50px -12px rgba(45,212,191,0.6);
  transition: transform .2s, box-shadow .2s;
}
.video-card:hover .play { transform: scale(1.07); box-shadow: 0 0 0 16px rgba(45,212,191,0.18), 0 24px 60px -12px rgba(45,212,191,0.7); }
.video-card .play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-card .vlabel {
  position:absolute; left: 22px; bottom: 22px; z-index: 2;
  display:flex; flex-direction: column; gap: 4px;
}
.video-card .vlabel .nm { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.video-card .vlabel .rl { font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); }
.video-card .vchip {
  position:absolute; top: 20px; right: 20px; z-index: 2;
  display:inline-flex; align-items:center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(5,10,9,0.55); border: 1px solid var(--ink-line-2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-ink);
}
.video-card .vchip .rec { width: 8px; height: 8px; border-radius:999px; background:#ef4444; box-shadow:0 0 8px #ef4444; }

.video-copy .h2 { margin-bottom: 0; }
.video-copy ul { list-style:none; padding:0; margin: 28px 0 0; display:flex; flex-direction:column; gap: 14px; }
.video-copy li { display:flex; gap: 12px; font-size: 16px; color: var(--on-ink-2); line-height: 1.5; }
.video-copy li svg { flex:none; width: 20px; height: 20px; stroke: var(--teal); fill:none; stroke-width: 2; margin-top: 3px; }
@media (max-width: 880px){ .video-wrap { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   HOW IT WORKS — 3 steps (paper)
   ============================================================ */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; overflow: hidden; padding: 36px 32px;
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff 0%, #f9fbfa 100%);
  border: 1px solid var(--paper-line);
  display:flex; flex-direction:column; gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.step::after {
  content:""; position:absolute; left: -20%; bottom: -50%; width: 70%; height: 100%;
  background: radial-gradient(circle, rgba(134,239,172,0.12), transparent 70%);
  pointer-events:none;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 26px 54px -34px rgba(8,20,18,0.38); border-color: rgba(13,148,136,0.28); }
.step > * { position: relative; z-index: 1; }
.step .n {
  font-family:'Geist Mono', monospace; font-size: 13px; letter-spacing: 0.14em;
  color: var(--deep-teal); font-weight: 600;
}
.step h4 { font-size: 23px; font-weight: 600; letter-spacing:-0.01em; margin: 0; }
.step p { font-size: 16px; color: var(--on-paper-2); margin: 0; line-height: 1.55; }
.step .big {
  position:absolute; top: 24px; right: 28px;
  font-size: 56px; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: rgba(8,20,18,0.06);
}
@media (max-width: 860px){ .steps { grid-template-columns: 1fr; } }

/* ============================================================
   CAMPAIGN TIMELINE — six phases (ink)
   ============================================================ */
.phase-rail {
  position: relative;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  padding-top: 56px;
}
.phase-rail .rail-line {
  position: absolute; top: 27px;
  left: calc(100% / 12); right: calc(100% / 12); height: 2px;
  background: linear-gradient(90deg, var(--deep-teal), var(--teal) 50%, var(--green));
  opacity: 0.55; border-radius: 2px;
}
.pcard { position: relative; display: flex; flex-direction: column; gap: 10px; }
.pcard .node {
  position: absolute; top: -41px; left: 50%; transform: translateX(-50%);
  width: 15px; height: 15px; border-radius: 999px;
  background: var(--ink); border: 3px solid var(--teal);
  box-shadow: 0 0 12px var(--teal); z-index: 2;
}
.pcard .body {
  background: var(--ink-card); border: 1px solid var(--ink-line);
  border-radius: 16px; padding: 22px 18px;
  display: flex; flex-direction: column; gap: 8px; height: 100%;
  transition: border-color .2s, transform .2s;
}
.pcard:hover .body { border-color: rgba(45,212,191,0.4); transform: translateY(-3px); }
.pcard .ep {
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
}
.pcard h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0; line-height: 1.15; }
.pcard p { font-size: 14px; color: var(--on-ink-2); margin: 0; line-height: 1.45; }
.pcard .wk {
  margin-top: auto; padding-top: 10px;
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--on-ink-3);
}
@media (max-width: 980px){
  .phase-rail { grid-template-columns: 1fr; gap: 0; padding: 0 0 0 30px; }
  .phase-rail .rail-line { top: 8px; bottom: 8px; left: 6px; right: auto; width: 2px; height: auto; }
  .pcard { padding: 12px 0; }
  .pcard .node { top: 22px; left: -30px; transform: none; }
}

/* ============================================================
   ZERO RISK (deep)
   ============================================================ */
.surface-deep { position: relative; overflow: hidden; }
.surface-deep::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(50% 70% at 85% 20%, rgba(45,212,191,0.18), transparent 60%),
    radial-gradient(45% 60% at 12% 90%, rgba(134,239,172,0.10), transparent 62%);
}
.surface-deep .container { position: relative; z-index: 1; }
.risk-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.risk-grid .big-claim {
  font-size: clamp(32px, 3.8vw, 52px); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.08; margin: 0; text-wrap: balance;
}
.risk-grid .big-claim .gr {
  background: linear-gradient(105deg, var(--teal), var(--green));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.risk-list { display:flex; flex-direction:column; gap: 4px; }
.risk-row {
  display:flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--ink-line);
}
.risk-row:last-child { border-bottom: 1px solid var(--ink-line); }
.risk-row .rk {
  flex:none; font-family:'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.14em;
  color: var(--teal); padding-top: 4px; width: 40px;
}
.risk-row .rb h5 { font-size: 19px; font-weight: 600; margin: 0 0 4px; letter-spacing:-0.01em; }
.risk-row .rb p { font-size: 15px; color: var(--on-ink-2); margin: 0; line-height: 1.5; }
@media (max-width: 880px){ .risk-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   CONTACT (ink)
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(60% 80% at 50% 0%, rgba(45,212,191,0.16), transparent 60%);
}
.contact .container { position: relative; z-index: 1; }
.contact-inner { display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.contact h2 {
  font-size: clamp(38px, 5vw, 72px); font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.02; margin: 0 0 24px; text-wrap: balance;
}
.contact h2 .gr { background: linear-gradient(105deg, var(--teal), var(--green)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.contact .sub { font-size: 19px; color: var(--on-ink-2); margin: 0 0 36px; max-width: 46ch; }
.contact-meta { display:flex; flex-direction:column; gap: 14px; }
.contact-meta .row {
  display:flex; align-items:center; gap: 16px;
  font-family:'Geist Mono', monospace; font-size: 16px;
}
.contact-meta .row .k { color: var(--on-ink-3); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; min-width: 64px; }
.contact-meta .row a:hover { color: var(--teal); }

.lead-card {
  background: var(--ink-card); border: 1px solid var(--ink-line); border-radius: 24px;
  padding: 36px; display:flex; flex-direction: column; gap: 16px;
}
.lead-card h4 { font-size: 21px; font-weight: 600; margin: 0; letter-spacing:-0.01em; }
.lead-card .fc-sub { font-size: 14px; color: var(--on-ink-2); margin: 0; }
.field { display:flex; flex-direction:column; gap: 6px; }
.field label { font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-ink-3); }
.field input, .field textarea {
  background: rgba(5,10,9,0.6); border: 1px solid var(--ink-line-2); border-radius: 11px;
  padding: 13px 15px; color: var(--on-ink); font-family: inherit; font-size: 15px; transition: border-color .15s;
}
.field input:focus, .field textarea:focus { outline:none; border-color: var(--teal); }
.lead-card .sr { display:flex; align-items:center; justify-content:space-between; gap: 12px; margin-top: 6px; flex-wrap:wrap; }
.lead-card .sr-note { font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing:0.14em; text-transform: uppercase; color: var(--on-ink-3); }
.form-success { padding: 16px; border-radius: 12px; background: rgba(45,212,191,0.1); border: 1px solid rgba(45,212,191,0.4); color: var(--teal); font-size: 14px; }
@media (max-width: 880px){ .contact-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #030605; border-top: 1px solid var(--ink-line); padding: 56px 0 30px; }
.foot-top { display:flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.foot-top .brand { margin-bottom: 16px; }
.foot-top .blurb { font-size: 15px; color: var(--on-ink-2); max-width: 38ch; line-height: 1.6; }
.foot-links { display:flex; gap: 56px; flex-wrap: wrap; }
.foot-col h5 { font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-ink-3); margin: 0 0 16px; font-weight: 500; }
.foot-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 10px; }
.foot-col a { font-size: 15px; color: var(--on-ink-2); transition: color .15s; }
.foot-col a:hover { color: var(--on-ink); }
.foot-bot {
  display:flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--ink-line);
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-3);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #14201d; border-radius: 10px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: #1d2e2a; }

/* ============================================================
   PRIZES — past campaigns gallery (deep)
   ============================================================ */
.prize-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.prize {
  position: relative; overflow: hidden; margin: 0;
  border-radius: 20px; border: 1px solid var(--ink-line);
  aspect-ratio: 5 / 4; background: #06100e;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.prize img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, opacity .3s;
  opacity: 0.94;
}
.prize:hover { border-color: rgba(45,212,191,0.4); transform: translateY(-4px); box-shadow: 0 32px 64px -34px rgba(0,0,0,0.7); }
.prize:hover img { transform: scale(1.05); opacity: 1; }
.prize::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, rgba(5,10,9,0) 32%, rgba(5,10,9,0.55) 70%, rgba(5,10,9,0.88) 100%);
}
.prize .meta {
  position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2;
  display: flex; flex-direction: column; gap: 6px;
}
.prize .tag {
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mint);
}
.prize .nm { font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }
.prize .num {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  color: var(--on-ink); padding: 6px 11px; border-radius: 999px;
  background: rgba(5,10,9,0.5); border: 1px solid var(--ink-line-2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 680px){ .prize-gallery { grid-template-columns: 1fr; } }

/* faint "tickets on the floor" texture behind the How-it-works steps */
.floor-tickets {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("assets/tickets-falling.png") center 78% / cover no-repeat;
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
  filter: grayscale(0.2) contrast(1.05);
}
@media (max-width: 860px){ .floor-tickets { opacity: 0.10; } }

/* ============================================================
   PRODUCTION & LIVE DRAWS (deep)
   ============================================================ */
.prod-hero {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 18px;
}
.ph {
  position: relative; margin: 0; overflow: hidden;
  border-radius: 20px; border: 1px solid var(--ink-line); background: #06100e;
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.ph:hover img { transform: scale(1.04); }
.prod-hero .ph-main { aspect-ratio: 16 / 9; }
.prod-hero .ph:not(.ph-main) { aspect-ratio: 4 / 5; }
.ph-cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(5,10,9,0.55); border: 1px solid var(--ink-line-2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink);
}
.ph-cap .rec { width: 8px; height: 8px; border-radius: 999px; background: #ef4444; box-shadow: 0 0 8px #ef4444; }

.prod-rows { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.prod-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.prod-row .ph { aspect-ratio: 16 / 11; }
.prod-row.reverse .ph { order: 2; }
.prod-copy .pi {
  display: inline-block; font-family:'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.16em;
  color: var(--teal); margin-bottom: 14px;
}
.prod-copy h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.1; }
.prod-copy p { font-size: 17px; color: var(--on-ink-2); margin: 0 0 20px; line-height: 1.55; max-width: 46ch; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span {
  font-family:'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mint); padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--ink-line-2); background: rgba(255,255,255,0.02);
}

.prod-it {
  margin-top: 20px; display: grid; grid-template-columns: 1fr 1.25fr;
  border: 1px solid var(--ink-line); border-radius: 22px; overflow: hidden;
  background: var(--ink-card);
}
.prod-it .ph { border: 0; border-radius: 0; }
.prod-it .ph img { height: 100%; min-height: 300px; }
.prod-it-copy { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; }
.prod-it-copy h3 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; margin: 10px 0 28px; max-width: 24ch; }
.prod-it-copy .gr, .prod-copy .gr {
  background: linear-gradient(100deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.it-points { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.it-pt h5 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--teal); }
.it-pt p { font-size: 15px; color: var(--on-ink-2); margin: 0; line-height: 1.55; }

@media (max-width: 920px){
  .prod-hero { grid-template-columns: 1fr; }
  .prod-row { grid-template-columns: 1fr; gap: 22px; }
  .prod-row.reverse .ph { order: 0; }
  .prod-it { grid-template-columns: 1fr; }
  .prod-it .ph img { min-height: 220px; }
  .it-points { grid-template-columns: 1fr; gap: 22px; }
}
