/* ─── RESET & ROOT ─────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --cream:   #F5F0E8;
  --cream2:  #EDE8DF;
  --ink:     #0D0D0D;
  --ink2:    #2A2A2A;
  --muted:   #888;
  --green:   #00C853;
  --green-d: #009E3F;
  --green-bg:#E6F9EE;
  --amber:   #F5A623;
  --red:     #E53E3E;
  --border:  rgba(13,13,13,0.1);
  --border2: rgba(13,13,13,0.06);
  --card-bg: #FFFFFF;
  --radius:  16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 12px;
  padding-bottom: 56px; 
}


/* ─── NOISE TEXTURE OVERLAY ─────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* ─── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 40px;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 18px; height: 18px; }
.nav-logo-text {
  font-size: 17px; font-weight: 700;
}
.nav-logo-text em { font-style: normal; color: var(--green); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--green); transform: scale(1.03); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 40px 60px;
  position: relative; overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-bg-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation: float2 10s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }

.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  padding: 7px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:0.5; transform:scale(1.4)} }

.hero-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2px;
}
.hero-title .green-hl {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero-title .green-hl::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--green); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underline 0.5s 0.8s ease forwards;
}
@keyframes underline { to { transform: scaleX(1); } }

.hero-disclaimer {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-bg); border: 1px solid rgba(0,200,83,0.25);
  border-radius: 8px; padding: 8px 14px;
  font-size: 12px; color: #006629; font-weight: 600;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.15s ease both;
}
.hero-disclaimer svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-sub {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; max-width: 420px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta-block {
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-cta-label {
  font-size: 12px; color: var(--muted); margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.hero-form {
  display: flex; gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 8px 8px 8px 20px;
  max-width: 440px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.hero-form:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.12);
}
.hero-form-inputs { flex: 1; display: flex; gap: 8px; }
.hero-form input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 14px; color: var(--ink);
  background: transparent;
  min-width: 0;
}
.hero-form input::placeholder { color: #bbb; }
.hero-form-sep {
  width: 1px; background: var(--border); flex-shrink: 0;
  align-self: stretch;
}
.hero-form button {
  background: var(--ink); color: #fff;
  border: none;
  border-radius: 10px; padding: 13px 22px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.hero-form button:hover { background: var(--green); transform: scale(1.03); }
.hero-form button.success { background: var(--green); }
.hero-social-proof {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; font-size: 13px; color: var(--muted);
}
.avatars-row { display: flex; }
.avatars-row .av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  margin-left: -8px;
}
.avatars-row .av:first-child { margin-left: 0; }
.av-1 { background: #0D0D0D; color: #fff; }
.av-2 { background: #00C853; color: #000; }
.av-3 { background: #F5A623; color: #fff; }
.av-4 { background: #E53E3E; color: #fff; }

/* ─── HERO RIGHT — PHONE MOCKUP ─────────────────── */
.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  animation: fadeRight 0.8s 0.4s ease both;
}
@keyframes fadeRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.phone-wrap {
  position: relative;
}
.phone-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  animation: floatCard 4s ease-in-out infinite;
}
.phone-float-1 {
  top: 30px; left: -120px;
  font-size: 11px; font-weight: 600; color: var(--ink);
  animation-delay: 0s;
  white-space: nowrap;
}
.phone-float-2 {
  bottom: 60px; right: -150px;
  font-size: 11px; font-weight: 600;
  animation-delay: 1.5s;
}
@keyframes floatCard {
  0%,100%{transform:translateY(0) rotate(-1deg)}
  50%{transform:translateY(-10px) rotate(1deg)}
}
.float-val { font-size: 22px; font-weight: 700; color: var(--green); display: block; }
.float-label { font-size: 10px; color: var(--muted); font-weight: 500; }

.phone {
  width: 280px;
  background: #0D0D0D;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 0 0 6px #111;
  position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #0D0D0D;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-screen {
  background: #0D0D0D;
  padding: 36px 0 0;
  min-height: 560px;
  display: flex; flex-direction: column;
}
.ps-sb {
  display: flex; justify-content: space-between;
  padding: 8px 20px; font-size: 10px; font-weight: 600; color: #fff;
}
.ps-header {
  padding: 24px 20px 14px;
}
.ps-eyebrow { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.ps-title { font-size: 22px; font-weight: 800; color: #fff; }
.ps-tabs {
  display: flex; gap: 0;
  background: #161616; border-radius: 10px; margin: 0 20px 14px; padding: 4px;
}
.ps-tab {
  flex: 1; text-align: center; padding: 7px;
  font-size: 11px; font-weight: 600;
  border-radius: 7px; color: rgba(255,255,255,0.35);
}
.ps-tab.active {
  background: rgba(0,200,83,0.12);
  color: #00C853;
  border: 1px solid rgba(0,200,83,0.2);
}

/* podium */
.ps-podium {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 0; padding: 0 20px 10px;
}
.pod-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pod-av {
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 700;
}
.pod-av.p1 { width: 44px; height: 44px; font-size: 13px; background: rgba(0,200,83,0.15); border: 2px solid #00C853; color: #00C853; position: relative; }
.pod-av.p2 { width: 36px; height: 36px; font-size: 11px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.pod-av.p3 { width: 33px; height: 33px; font-size: 10px; background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); color: #F5A623; }
.pod-crown { font-size: 10px; margin-bottom: -4px; }
.pod-name { font-size: 9px; color: rgba(255,255,255,0.6); font-weight: 600; }
.pod-pts { font-size: 13px; font-weight: 800; color: #00C853; font-family: 'DM Mono', monospace; }
.pod-bar { width: 100%; border-radius: 6px 6px 0 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.pod-bar.b1 { background: #00C853; color: #000; height: 40px; }
.pod-bar.b2 { background: #1C1C1C; color: #fff; height: 30px; }
.pod-bar.b3 { background: rgba(245,166,35,0.15); color: #F5A623; height: 22px; }

.ps-list { padding: 8px 16px; display: flex; flex-direction: column; gap: 6px; }
.ps-row {
  background: #161616; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
}
.ps-row.me { border-color: rgba(0,200,83,0.2); background: rgba(0,200,83,0.04); }
.ps-pos { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.25); width: 16px; }
.ps-pos.g { color: #00C853; }
.ps-av-sm {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}
.av-g { background: rgba(0,200,83,0.15); color: #00C853; border: 1px solid rgba(0,200,83,0.3); }
.av-w { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }
.av-a { background: rgba(245,166,35,0.1); color: #F5A623; }
.ps-name { flex: 1; font-size: 11px; font-weight: 600; color: #fff; }
.ps-val-num { font-size: 13px; font-weight: 700; font-family: 'DM Mono', monospace; }
.ps-val-num.pos { color: #00C853; }
.ps-val-num.neg { color: #E53E3E; }

.ps-nav {
  display: flex; margin-top: auto;
  background: #161616; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 10px 0 18px;
}
.ps-ni { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ps-ni-icon { width: 18px; height: 18px; }
.ps-ni-label { font-size: 7px; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; text-transform: uppercase; }
.ps-ni.active .ps-ni-label { color: #00C853; }

/* ─── SECTION SHARED ─────────────────────────────── */
.section { padding: 100px 40px; position: relative; z-index: 1; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: var(--green); border-radius: 2px;
}
.section-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; letter-spacing: -2px;
  line-height: 1.05; color: var(--ink);
  margin-bottom: 16px;
}
.section-title .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400;
  letter-spacing: -1px;
}
.section-sub {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; max-width: 480px;
  margin-bottom: 10px;
}

/* ─── DISCLAIMER BAND ───────────────────────────── */
.disclaimer-band {
  background: var(--ink); color: #fff;
  padding: 18px 40px;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  font-size: 14px; font-weight: 500;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
}
.disclaimer-band strong { color: var(--green); }
.disclaimer-band .pill {
  background: rgba(0,200,83,0.15);
  border: 1px solid rgba(0,200,83,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px; font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.how-section { background: var(--cream2); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  border: 1.5px solid var(--border); border-radius: 20px;
  overflow: hidden;
}
.step {
  background: var(--card-bg);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s;
}
.step:hover { background: #F9F9F9; }
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--muted);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.step-num::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border2);
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--cream); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.step-icon svg { width: 24px; height: 24px; }
.step-title { font-size: 17px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step.highlight { background: var(--ink); }
.step.highlight .step-num { color: rgba(255,255,255,0.3); }
.step.highlight .step-num::after { background: rgba(255,255,255,0.1); }
.step.highlight .step-icon { background: rgba(0,200,83,0.1); border-color: rgba(0,200,83,0.2); }
.step.highlight .step-title { color: #fff; }
.step.highlight .step-desc { color: rgba(255,255,255,0.45); }

/* ─── FEATURES ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.feat-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden; position: relative;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.feat-card.wide { grid-column: span 2; }
.feat-card.dark { background: var(--ink); }
.feat-card.green-card { background: var(--green); }
.feat-icon-wrap {
  width: 48px; height: 48px;
  background: var(--cream); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; border: 1px solid var(--border);
}
.feat-card.dark .feat-icon-wrap { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.feat-card.green-card .feat-icon-wrap { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.1); }
.feat-icon-wrap svg { width: 22px; height: 22px; }
.feat-title { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
.feat-card.dark .feat-title { color: #fff; }
.feat-card.green-card .feat-title { color: #000; }
.feat-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
.feat-card.dark .feat-desc { color: rgba(255,255,255,0.4); }
.feat-card.green-card .feat-desc { color: rgba(0,0,0,0.55); }

/* wide feature card innards */
.feat-wide-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feat-screens-row {
  display: flex; gap: 10px; align-items: center;
  overflow: hidden;
}
.feat-phone-mini {
  background: #161616;
  border-radius: 18px; border: 1px solid rgba(255,255,255,0.08);
  padding: 10px;
  flex-shrink: 0;
}
.fpm-header { margin-bottom: 8px; }
.fpm-label { font-size: 7px; color: rgba(255,255,255,0.3); letter-spacing: 1.5px; text-transform: uppercase; }
.fpm-title { font-size: 11px; color: #fff; font-weight: 700; }
.fpm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fpm-row:last-of-type { border-bottom: none; }
.fpm-pick { font-size: 8px; color: rgba(255,255,255,0.5); }
.fpm-odd { font-size: 12px; color: #00C853; font-weight: 700; font-family: 'DM Mono', monospace; }
.fpm-total-row { display: flex; justify-content: space-between; margin-top: 6px; background: rgba(0,200,83,0.08); border-radius: 6px; padding: 5px 6px; }
.fpm-total-label { font-size: 7px; color: rgba(255,255,255,0.3); }
.fpm-total-val { font-size: 11px; color: #00C853; font-weight: 700; font-family: 'DM Mono', monospace; }
.fpm-lock {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.04); border-radius: 6px;
  padding: 8px; margin-top: 6px;
}
.fpm-lock-icon { font-size: 12px; }
.fpm-lock-text { font-size: 8px; color: rgba(255,255,255,0.3); }

/* ─── SPORTS SECTION ─────────────────────────────── */
.sports-section { background: var(--cream); }
.sports-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sport-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s;
}
.sport-card:hover { transform: translateY(-3px); }
.sport-card.active { border-color: var(--green); background: var(--green-bg); }
.sport-card.coming { opacity: 0.6; }
.sport-emoji { font-size: 36px; }
.sport-name { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }
.sport-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  align-self: flex-start;
}
.sport-status.available { background: var(--green); color: #000; }
.sport-status.coming-soon { background: var(--cream2); color: var(--muted); border: 1px solid var(--border); }
.sport-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
  padding: 80px 40px 100px;
  position: relative; z-index: 1;
}

.cta-section button {
  display: block;
  margin: 14px auto 0;
  background: var(--green); color: #000;
  border: none;
  border-radius: 10px; padding: 14px 32px;
  font-family: inherit; font-size: 13px; font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 20px;
  margin-top: 20px;
}

.cta-section button:hover { background: #00E060; transform: scale(1.02); }

.cta-box {
  max-width: 1100px; margin: 0 auto;
  background: var(--ink);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 600px; height:600px;
  background: radial-gradient(circle, rgba(0,200,83,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
.cta-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 700; letter-spacing: -2.5px;
  color: #fff; line-height: 1.0; margin-bottom: 20px;
}
.cta-title .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 40px; line-height: 1.6; }
.cta-form {
  display: flex; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 24px 24px 24px 24px;;
  max-width: 500px; margin: 0 auto 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-form:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,200,83,0.15);
}
.cta-form-inputs { flex: 1; display: flex; gap: 12px; }
.cta-form input {
  flex: 1; border: none; outline: none; min-width: 0;
  font-family: inherit; font-size: 14px;
  background: transparent; color: #fff;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form-sep { width: 1px; background: rgba(255,255,255,0.1); }
.cta-form button {
  background: var(--green); color: #000;
  border: none;
  border-radius: 10px; padding: 14px 24px;
  font-family: inherit; font-size: 13px; font-weight: 800;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.cta-form button:hover { background: #00E060; transform: scale(1.02); }
.cta-form button.success { background: #00C853; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.25); }
.cta-note strong { color: rgba(255,255,255,0.5); }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  padding: 40px 40px 32px;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  margin-bottom: 10px;
}
.footer-logo-mark {
  width: 28px; height: 28px;
  background: var(--ink); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 15px; height: 15px; }
.footer-logo-text { font-size: 15px; font-weight: 700; }
.footer-logo-text em { font-style: normal; color: var(--green); }
.footer-tagline { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.footer-ezapps { font-size: 12px; color: var(--muted); opacity: 0.6; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1100px; margin: 32px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted); opacity: 0.7;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SCROLLING MARQUEE ──────────────────────────── */
.marquee-section {
  overflow: hidden; padding: 24px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 50s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 40px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.35);
  letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item .dot { width: 4px; height: 4px; background: var(--green); border-radius: 50%; }

@keyframes marquee { 
    from{transform:translateX(0)} 
    to{transform:translateX(-50%)} 
}

/* ─── COUNTER ANIMATION ──────────────────────────── */
.counter { display: inline-block; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .section { padding: 60px 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card.wide { grid-column: span 1; }
  .feat-wide-inner { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .disclaimer-band { flex-wrap: wrap; justify-content: center; text-align: center; gap: 10px; }
  .cta-box { padding: 48px 28px; }
  .cta-form { flex-direction: column; padding: 16px; }
  .cta-form-inputs { flex-direction: column; }
  .cta-form-sep { width: 100%; height: 1px; }
}

/* ─── SUCCESS STATE ──────────────────────────────── */
.success-msg {
  display: none;
  align-items: center; gap: 8px;
  color: var(--green); font-size: 14px; font-weight: 600;
  margin-top: 12px;
}
.success-msg.show { display: flex; }
.success-msg-cta { display: none; }
.success-msg-cta.show { display: flex; align-items: center; gap: 8px; color: var(--green); font-size: 14px; font-weight: 600; margin-top: 12px; justify-content: center; }
