/*:root {
  --lime: #0171df;
  --lime-dim: #9DC400;
  --ink: #080A06;
  --ink2: #0F1209;
  --ink3: rgb(2 130 255 / 11%);
  --ink4: #0c86ff1a;
  --ash: #2C3428;
  --muted: #667b8f;
  --soft: #9fb5ca;
  --white: #F0F4E8;
  --border: rgba(59,130,246,0.1);
  --border2: rgba(59,130,246,0.06);
}
*/
/*:root {*/
/*  --primary: #3b82f6;*/
/*  --primary-light: #60a5fa;*/
/*  --primary-dim: #2563eb;*/
/*  --primary-glow: rgba(59,130,246,0.15);*/
/*  --primary-border: rgba(59,130,246,0.25);*/
/*  --ink: #0b0f17;*/
/*  --ink2: #111827;*/
/*  --ink3: #1f2937;*/
/*  --ink4: #374151;*/
/*  --white: #f9fafb;*/
/*  --soft: #9ca3af;*/
/*  --muted: #6b7280;*/
/*  --lime: #dedddd;*/
/*  --border: rgba(59,130,246,0.2);*/
/*  --border2: rgba(59,130,246,0.1);*/
/*  --success: #22c55e;*/
/*  --danger: #ef4444;*/
/*  --warning: #f59e0b;*/
/*  --info: #06b6d4;*/
/*  --radius: 10px;*/
/*  --radius-sm: 6px;*/
/*  --shadow: 0 4px 24px rgba(0,0,0,0.4);*/
/*  --shadow-glow: 0 0 30px rgba(59,130,246,0.08);*/
/*  --sidebar-w: 240px;*/
/*}*/

:root {
  --primary: #3b82f6;
  --primary-light: #93c5fd;
  --primary-dim: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.08);
  --primary-border: rgba(59, 130, 246, 0.15);
  --ink: #111827;
  --ink2: #1f2937;
  --ink3: #374151;
  --ink4: #4b5563;
  --white: #ffffff;
  --soft: #9ca3af;
  --muted: #6b7280;
  --lime: #f3f4f6;
  --border: rgba(59, 130, 246, 0.15);
  --border2: rgba(59, 130, 246, 0.05);
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #06b6d4;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.05);
  --sidebar-w: 240px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink2);
  color: var(--white);
  overflow-x: hidden;
}
.btn-primary {
    border:none;
}
.mb-5 {
    margin-bottom:50px;
}
/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  mix-blend-mode: normal;
    backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--lime); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.btn-login {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: var(--soft); text-decoration: none; transition: color 0.2s;
}
.btn-login:hover { color: var(--lime); }
.btn-signup {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  background: var(--primary-dim);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-signup:hover { background: var(--primary-dim);color:black; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

/* Animated mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(59,130,246,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 80%, rgba(59,130,246,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at -10% 20%, rgba(59,130,246,0.03) 0%, transparent 60%);
}

/* Diagonal lines texture */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(59,130,246,0.015) 40px,
    rgba(59,130,246,0.015) 41px
  );
}

.hero-container {
  max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--lime);
  letter-spacing: 1px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hero-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--ink4);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 6vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 .outline {
  -webkit-text-stroke: 1px rgb(15 194 105);
  color: transparent;
}
.hero h1 .lime { color: var(--lime); }

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dim);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--primary-dim);color:black; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(59,130,246,0.2); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--soft);
  color: var(--soft);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.brands_logo_title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--lime);
}
/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(12,16,8,0.8);
  backdrop-filter: blur(20px);
}
.hstat {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid var(--border2);
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--lime);
  letter-spacing: 1px;
}
.hstat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Hero right side - Dashboard mockup */
.hero-right { position: relative; }

.dashboard-frame {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.05),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 100px rgba(59,130,246,0.04);
}

.dash-topbar {
  background: var(--ink2);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dot-red { width:10px; height:10px; border-radius:50%; background:#FF5F57; }
.dot-yellow { width:10px; height:10px; border-radius:50%; background:#FEBC2E; }
.dot-green { width:10px; height:10px; border-radius:50%; background:#28C840; }
.dash-url {
  margin-left: 0.5rem;
  background: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 0.3rem 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  flex: 1;
}

.dash-body { padding: 1.5rem; }

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.dash-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--white);
}
.dash-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.5px;
}
.live-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Earnings big number */
.earn-block {
  background: var(--ink4);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.earn-block::before {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.earn-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}
.earn-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.earn-value span { color: var(--lime); }
.earn-up {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lime);
}

/* Mini chart bars */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 1rem;
}
.bar {
  flex: 1;
  background: var(--ink3);
  border-radius: 3px 3px 0 0;
  transition: background 0.3s;
  animation: barUp 0.8s ease both;
}
.bar.active { background: var(--lime); }
.bar.mid { background: rgba(59,130,246,0.3); }
@keyframes barUp { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }

/* Offer table */
.offer-table { margin-top: 1rem; }
.offer-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 0.5rem 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offer-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  align-items: center;
  transition: background 0.2s;
  margin-bottom: 2px;
}
.offer-row:hover { background: var(--ink4); }
.offer-name { font-size: 0.78rem; color: var(--soft); font-weight: 500; }
.offer-payout { font-size: 0.78rem; font-weight: 700; color: var(--lime); margin-right: 1rem; }
.offer-badge {
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.badge-hot { background: rgba(255,90,60,0.12); color: #FF5A3C; border: 1px solid rgba(255,90,60,0.2); }
.badge-new { background: rgba(96,165,250,0.12); color: #60A5FA; border: 1px solid rgba(96,165,250,0.2); }
.badge-top { background: rgba(59,130,246,0.1); color: var(--lime); border: 1px solid rgba(59,130,246,0.2); }

/* Float cards */
.float-card {
  position: absolute;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  font-size: 0.75rem;
  color: var(--soft);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  white-space: nowrap;
  z-index: 3;
}
.float-card strong { color: var(--lime); font-weight: 700; }
.float-1 { top: -20px; right: -30px; animation: floatY 3s ease-in-out infinite; }
.float-2 { bottom: 30px; left: -50px; animation: floatY 3.5s ease-in-out 0.5s infinite; }
@keyframes floatY {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}

/* ===== TICKER ===== */
.ticker {
  background: var(--ink4);
  padding: 0.75rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: tickerSlide 20s linear infinite;
}
@keyframes tickerSlide {
  0%{transform:translateX(0)} 100%{transform:translateX(-50%)}
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
  white-space: nowrap;
}
.ticker-dot { width:6px; height:6px; border-radius:50%; background:rgba(0,0,0,0.3); }

/* ===== HOW IT WORKS ===== */
.section {
  padding: 7rem 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--lime);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
}

/* Steps - horizontal numbered */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.step-item {
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.step-item:last-child { border-right: none; }
.step-item:hover { background: rgba(59,130,246,0.02); }
.step-num-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(59,130,246,0.06);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  letter-spacing: 2px;
}
.step-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--lime);
  margin-bottom: 1.5rem;
}
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ===== BENEFITS - bento grid ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 4rem;
}

.bento {
  background: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.bento:hover {
  border-color: rgba(59,130,246,0.2);
  transform: translateY(-3px);
}
.bento-1 { grid-column: span 5; }
.bento-2 { grid-column: span 7; background: #0c86ff1a; }
.bento-3 { grid-column: span 4; }
.bento-4 { grid-column: span 4; }
.bento-5 { grid-column: span 4; }
.bento-6 { grid-column: span 7; }
.bento-7 { grid-column: span 5; }

.bento-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgb(2 130 255 / 11%);
  border: 1px solid rgba(59,130,246,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--lime);
  margin-bottom: 1.2rem;
}
.bento-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.bento-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* Big payout number */
.big-payout {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--lime);
  letter-spacing: 2px;
  margin: 1rem 0 0.5rem;
}

/* Progress bars */
.prog-row { margin-bottom: 1rem; }
.prog-label { display:flex; justify-content:space-between; font-size:0.75rem; color:var(--muted); margin-bottom:0.4rem; }
.prog-label strong { color: var(--soft); }
.prog-bar { height:4px; background:var(--ash); border-radius:4px; overflow:hidden; }
.prog-fill { height:100%; background: var(--lime); border-radius:4px; transition: width 1.5s ease; }

/* ===== WHY US ===== */
.why-section { background: var(--ink2); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.checklist { margin-top: 2rem; }
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.check-row:last-child { border-bottom: none; }
.check-icon {
  width: 24px; height: 24px; min-width:24px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size: 0.65rem;
  color: var(--lime);
  margin-top: 1px;
}
.check-text { font-size: 0.88rem; color: var(--soft); line-height: 1.6; }
.check-text strong { color: var(--white); display: block; font-size: 0.9rem; margin-bottom: 2px; }

/* Right - model types */
.model-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.model-card {
  background: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.model-card:hover { border-color: var(--lime); }
.model-card.highlight {
  background: rgba(59,130,246,0.05);
  border-color: rgba(59,130,246,0.3);
  grid-column: span 2;
}
.model-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}
.model-name { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.model-desc { font-size: 0.82rem; color: var(--soft); margin-top: 0.8rem; line-height: 1.6; }

/* ===== HOW TO JOIN ===== */
.join-section { background: var(--ink2); }

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.timeline { margin-top: 3rem; }
.tline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 3rem;
  position: relative;
}
.tline-item::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(59,130,246,0.25), transparent);
}
.tline-item:last-child::after { display: none; }
.tline-item:last-child { padding-bottom: 0; }
.tline-num {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.06);
  display:flex; align-items:center; justify-content:center;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  position: relative; z-index:1;
}
.tline-content { padding-top: 0.5rem; }
.tline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tline-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* Platform pills */
.platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.platform-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}
.platform-pill:hover { border-color: var(--lime); transform: translateX(4px); }
.platform-pill.full { grid-column: span 2; }
.pill-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.1rem;
}
.pill-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.pill-sub { font-size: 0.7rem; color: var(--muted); }
.pill-status {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lime);
}
.brands-section {
    padding-top:50px;
}
.footer-logo img,
.nav-logo img {
        width: 160px;
}
/* ===== CTA ===== */
.cta-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: rgb(2 130 255 / 11%);
}
.cta-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 20rem);
  color: rgba(59,130,246,0.025);
  letter-spacing: 5px;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 5vw, 8rem);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-heading .lime { color: var(--lime); }
.cta-heading .outline {
  -webkit-text-stroke: 1px rgb(15 194 105);
  color: transparent;
}
.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* Mini stats row under CTA */
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.cta-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--lime);
  letter-spacing: 1px;
}
.cta-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink2);
  border-top: 1px solid var(--border2);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border2);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--lime); }
.footer-bio { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.socials { display:flex; gap:0.5rem; }
.social-btn {
  width: 34px; height: 34px;
  background: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: 6px;
  display:flex; align-items:center; justify-content:center;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--lime); color: var(--lime); }
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
      color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--lime); }
.footer-contact { font-size: 0.83rem; color: var(--muted); line-height: 2; }
.footer-contact a { color: var(--lime); text-decoration: none; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-copy { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.5px; }
.footer-legal { display:flex; gap:1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--muted); text-decoration:none; transition:color 0.2s; }
.footer-legal a:hover { color: var(--lime); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-grid, .join-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bento-1, .bento-2 { grid-column: span 12; }
  .bento-3, .bento-4, .bento-5 { grid-column: span 4; }
  .bento-6, .bento-7 { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step-item:last-child { border-bottom: none; }
}
/* ===== LOGO SLIDER ===== */
    .logo-slider-section {
      
      overflow: hidden;
    }
 
 
    .slider-track-wrapper {
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }
 
    .slider-track {
      display: flex;
      gap: 2.5rem;
      width: max-content;
      animation: infiniteSlide 28s linear infinite;
    }
 
    .slider-track:hover { animation-play-state: paused; }
 
    @keyframes infiniteSlide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--ink3);
    border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 0.9rem 2rem;
      min-width: 150px;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }
 
    .logo-item:hover {
      border-color: rgba(201,168,76,0.35);
      background: var(--dark-4);
    }
 
    .logo-text {
          white-space: nowrap;
        height: 70px;
    }
    .logo-text img {
        height: 100%;
        object-fit: scale-down;
    }
/* Toggle button */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
/* ===== TITLE ===== */
.contact-title {
  text-align: center;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 400;
    font-size: 25px;
}

/* ===== CARD ===== */
.contact-card {
  max-width: 600px;
  margin: auto;
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ===== FORM GROUP ===== */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 6px;
}

/* ===== INPUT ===== */
.form-control {
  background: var(--ink4);
  border: 1px solid var(--border2);
  color: var(--white);
  border-radius: 8px;
  padding: 10px;
  width:100%;
  transition: 0.3s;
}

.form-control:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(23,232,118,0.2);
  background: var(--ink3);
}

/* ===== TEXTAREA ===== */
textarea.form-control {
  resize: none;
}

/* ===== CAPTCHA ===== */
.captcha-box {
  margin: 10px 0;
}

/* ===== BUTTON AREA ===== */
.form-action {
  margin-top: 15px;
}

/* ===== ALERT ===== */
.alert-danger {
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255,0,0,0.2);
  color: #ff6b6b;
  padding: 10px;
  border-radius: 8px;
}
.contact_page {
        padding: 110px 0 50px;
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .contact-card {
    padding: 20px;
            max-width: 95%;
  }
  

}
/* ===== PAGE ===== */
.about_page {
  padding: 110px 0 50px;
}

/* ===== HERO ===== */
.about-hero {
  text-align: center;
  margin-bottom: 40px;
}

.about-hero h1 {
  color: var(--lime);
  font-size: 32px;
}

.about-hero p {
  color: var(--soft);
  font-size: 14px;
  line-height: 20px;
}

/* ===== CONTAINER ===== */
.about-container {
  max-width: 1000px;
  margin: auto;
}

/* ===== CARD ===== */
.about-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.about-card h3 {
  color: var(--lime);
  margin-bottom: 15px;
}

/* ===== LIST ===== */
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--soft);
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--lime);
}

/* ===== BENEFITS ===== */
.benefits-section {
  margin-top: 50px;
  text-align: center;
}

.benefits-section h2 {
  color: var(--lime);
  margin-bottom: 30px;
}

/* ===== GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

/* ===== CARD ===== */
.benefit-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
}

.benefit-card img {
  width: 40px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--soft);
  font-size: 13px;
}

/* ===== CTA ===== */
.about-cta {
  text-align: center;
  margin-top: 40px;
}
/* ===== PAGE ===== */
.advertisers_page {
  padding: 110px 0 50px;
}

/* ===== HERO ===== */
.adv-hero {
  text-align: center;
  margin-bottom: 40px;
}

.adv-hero h1 {
  color: var(--lime);
  font-size: 32px;
}

.adv-hero p {
  color: var(--soft);
  font-size: 14px;
}

/* ===== CONTAINER ===== */
.adv-container {
  max-width: 1000px;
  margin: auto;
}

/* ===== CARD ===== */
.adv-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.adv-card h3 {
  color: var(--lime);
  margin-bottom: 15px;
}

/* ===== LIST ===== */
.adv-list {
  list-style: none;
  padding: 0;
}

.adv-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--soft);
}

.adv-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--lime);
}

/* ===== FEATURES ===== */
.adv-features {
  margin-top: 50px;
}

/* ===== GRID ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

/* ===== FEATURE CARD ===== */
.adv-feature-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.adv-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
}

.adv-feature-card img {
  width: 50px;
  margin-bottom: 10px;
}

.adv-feature-card h4 {
  color: var(--lime);
  font-size: 14px;
  margin-bottom: 8px;
}

.adv-feature-card p {
  color: var(--soft);
  font-size: 13px;
}

/* ===== CTA ===== */
.adv-cta {
  text-align: center;
  margin-top: 50px;
}

.adv-tagline {
  margin-top: 15px;
  color: var(--soft);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .adv-hero h1 {
    font-size: 24px;
  }

}
/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 24px;
  }

}    
@media (max-width: 768px) {
.menu-toggle {
    display: block;
  }

  #top_nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--ink3);
    display: none;
    flex-direction: column;
    padding: 10px 0;
  }

  #top_nav.active {
    display: block;
  }

  #top_nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  #top_nav ul li {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: #071227;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }    
    
    
  .nav-inner,
  .container,
  .hero-container {
          padding: 0 15px;
  }
  .btn-outline,
  .btn-signup,
  .btn-primary {
          font-size: 12px;
    letter-spacing: 0.5px;
    padding: 10px 15px;
  }
  .hero h1 { font-size: 3.5rem; }
  .bento-3, .bento-4, .bento-5 { grid-column: span 12; }
  .bento-6, .bento-7 { grid-column: span 12; }
  .model-cards { grid-template-columns: 1fr; }
  .model-card.highlight { grid-column: span 1; }
  .platforms { grid-template-columns: 1fr; }
  .platform-pill.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-stats { gap: 2rem; }
}
.publishers_alt {
  padding: 110px 0 50px;
}

/* HERO */
.pub-hero-alt {
  text-align: center;
  margin-bottom: 40px;
}

.pub-hero-alt h1 {
  color: var(--lime);
  font-size: 34px;
}

.pub-hero-alt p {
  color: var(--soft);
}

/* INTRO BOX */
.pub-intro {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.pub-intro-box {
  background: linear-gradient(135deg, var(--ink2), var(--ink3));
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 12px;
  width: 100%;
}

.pub-intro-box h3 {
  color: var(--lime);
  margin-bottom: 10px;
}

.pub-intro-box ul {
  list-style: none;
}

.pub-intro-box li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.pub-intro-box li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: var(--lime);
}

/* TIMELINE */
.pub-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pub-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.pub-row.reverse {
  flex-direction: row-reverse;
}

.pub-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
}

.pub-content h4 {
  color: var(--lime);
  margin-bottom: 8px;
}

.pub-content p {
  color: var(--soft);
}

/* TOOLS */
.pub-tools-alt {
  margin-top: 60px;
  text-align: center;
}

.pub-tools-alt h2 {
  color: var(--lime);
  margin-bottom: 25px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.tool-box {
  background: var(--ink2);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.tool-box:hover {
  transform: scale(1.05);
  border-color: var(--lime);
}

.tool-box h5 {
  color: var(--lime);
}

/* CTA */
.pub-cta-alt {
  text-align: center;
  margin-top: 50px;
}

/* MOBILE */
@media (max-width: 768px) {
  .pub-row {
    flex-direction: column !important;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== PAGE ===== */
.privacy_page {
  padding: 110px 0 50px;
}


/* ===== TITLE ===== */
.privacy-title {
  text-align: center;
  color: var(--lime);
  margin-bottom: 30px;
}

/* ===== CARD ===== */
.privacy-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ===== SECTION ===== */
.privacy-section {
  margin-bottom: 25px;
}

.privacy-section h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.privacy-section p {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== DIVIDER ===== */
.privacy-section:not(:last-child) {
  border-bottom: 1px solid var(--border2);
  padding-bottom: 15px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .privacy-card {
    padding: 20px;
  }

  .privacy-title {
    font-size: 22px;
  }
  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

}