/* ============================================================
   Eka — Global Stylesheet
   Design tokens, layout, components, responsive
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---------- Tokens ---------- */
:root {
  --eka-blue:       #1D5FF4;
  --eka-blue-dark:  #1448C8;
  --eka-blue-light: #ECF1FD;
  --eka-navy:       #0a1b3d;
  --eka-navy-2:     #0f2750;
  --eka-accent:     #F4A53B;
  --eka-accent-dim: rgba(244,165,59,0.15);
  --surface:        #FFFFFF;
  --surface-2:      #F5F7FC;
  --ink:            #0D1B2A;
  --muted:          #5C6E82;
  --border:         rgba(29,95,244,0.14);
  --radius:         12px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow:         0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.14);
  --container:      1180px;
  --nav-h:          68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand img { height: 42px; width: auto; display: block; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a5f;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--eka-blue); background: var(--eka-blue-light); }
.nav-link.active { color: var(--eka-blue); }
.nav-link.nav-cta {
  color: var(--eka-blue);
  border: 1.5px solid var(--eka-blue);
  padding: 0.4rem 1rem;
  margin-left: 0.5rem;
  transition: background 0.15s, color 0.15s;
}
.nav-link.nav-cta:hover { background: var(--eka-blue); color: #fff; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s;
  pointer-events: none;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-drawer-link:last-child { border-bottom: none; }
.nav-drawer-link:hover { color: var(--eka-blue); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { font-size: 0.85rem; padding: 0.6rem 1.25rem; }
.btn-lg { font-size: 1.05rem; padding: 1rem 2.25rem; }

.btn-primary {
  background: var(--eka-blue);
  color: #fff;
  border-color: var(--eka-blue);
}
.btn-primary:hover {
  background: var(--eka-blue-dark);
  border-color: var(--eka-blue-dark);
  box-shadow: 0 4px 16px rgba(29,95,244,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--eka-blue);
  border-color: var(--eka-blue);
}
.btn-outline-dark:hover {
  background: var(--eka-blue);
  color: #fff;
}

.btn-accent {
  background: var(--eka-accent);
  color: var(--ink);
  border-color: var(--eka-accent);
}
.btn-accent:hover {
  background: #e09420;
  border-color: #e09420;
  box-shadow: 0 4px 16px rgba(244,165,59,0.4);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding-block: 6rem;
}
.section-sm { padding-block: 4rem; }
.section-alt { background: var(--surface-2); }
.section-dark {
  background: var(--eka-navy);
  color: #e9f0ff;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eka-blue);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--eka-blue);
  border-radius: 2px;
}
.section-dark .section-eyebrow {
  color: var(--eka-accent);
}
.section-dark .section-eyebrow::before {
  background: var(--eka-accent);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.section-heading-light { color: #e9f0ff; }

.section-body {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
}
.section-body-light { color: rgba(233,240,255,0.8); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--eka-navy);
  background-size: cover;
  background-position: center 40%;
  padding-top: var(--nav-h);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,27,61,0.94) 0%, rgba(10,27,61,0.78) 60%, rgba(10,27,61,0.62) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eka-accent);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--eka-accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero variant: gradient only (for sub-pages) */
.hero-gradient {
  background-image: linear-gradient(135deg, var(--eka-navy) 0%, #1a3a7a 60%, var(--eka-navy-2) 100%);
}
.hero-gradient::after { display: none; }

/* Hero pattern overlay */
.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(244,165,59,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(29,95,244,0.15) 0%, transparent 50%);
  z-index: 0;
}

/* ============================================================
   STAT BAND
   ============================================================ */
.stat-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stat-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding-block: 3rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 3.5rem;
  flex: 1;
  min-width: 200px;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--eka-blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { padding-block: 5rem 3rem; }
.map-card {
  width: 100%;
  max-width: 820px;
  margin: 2rem auto 0;
  background:
    radial-gradient(110% 90% at 64% 8%, rgba(29,95,244,.20), transparent 60%),
    radial-gradient(70% 80% at 86% 92%, rgba(255,178,62,.12), transparent 60%),
    var(--eka-navy-2);
  border: 1px solid rgba(120,160,235,.18);
  border-radius: 22px;
  padding: 30px 30px 24px;
  color: #e9f0ff;
  box-shadow: 0 30px 80px -30px rgba(8,20,50,.9);
}
.map-card svg {
  width: 100%; height: auto;
  display: block;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 14px;
  background: #08152e;
  pointer-events: none;
}
.map-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.map-eyebrow { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: #8aa3d4; font-weight: 600; }
.map-title { font-size: clamp(18px,3vw,24px); font-weight: 700; margin: 3px 0 0; letter-spacing: -.01em; max-width: 22ch; color: #e9f0ff; }
.map-count { font-size: clamp(34px,7vw,52px); font-weight: 800; line-height: 1; color: #fff; letter-spacing: -.02em; text-align: right; }
.map-count .plus { color: #FFCB5E; }
.map-count-label { font-size: 13px; color: #8aa3d4; text-align: right; margin-top: 4px; }

/* Map dot animations */
.map-card .ca-fill { fill: #0f2750; }
.map-card .ca-stroke { fill: none; stroke: #1D5FF4; stroke-width: 1.3; opacity: .85; filter: drop-shadow(0 0 6px rgba(29,95,244,.55)); }
.map-card .dot .ring { fill: none; stroke: #F4A93B; stroke-width: 1.2; opacity: 0; transform-box: fill-box; transform-origin: center; animation: pulse 3s ease-out infinite; animation-delay: var(--d); }
.map-card .dot.live .core { fill: #eaf2ff; filter: drop-shadow(0 0 3.5px rgba(150,195,255,.95)); }
.map-card .dot.soon .core { fill: #FFCB5E; filter: drop-shadow(0 0 4.5px rgba(255,200,90,1)); }
@keyframes pulse { 0%{opacity:.8;transform:scale(.55)} 70%{opacity:0;transform:scale(2.8)} 100%{opacity:0;transform:scale(2.8)} }
.map-card .region { fill: #e9f0ff; font-size: 11.5px; font-weight: 600; letter-spacing: .03em; opacity: .9; paint-order: stroke; stroke: #0f2750; stroke-width: 2.5px; }
@media (prefers-reduced-motion: reduce) { .map-card .dot .ring { animation: none; opacity: .45; transform: scale(1.5); } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--eka-blue), var(--eka-accent));
  border-radius: 2px;
  opacity: 0.3;
}
.step-card {
  text-align: center;
  padding: 0 1rem;
}
.step-icon {
  width: 4.5rem; height: 4.5rem;
  margin: 0 auto 1.5rem;
  background: var(--eka-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}
.step-number {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--eka-blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.step-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   AUDIENCE CARDS (fork section)
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.audience-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.audience-card:hover {
  border-color: var(--eka-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.audience-icon {
  width: 3rem; height: 3rem;
  background: var(--eka-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.audience-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.audience-pitch {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--eka-blue);
}
.card-link:hover { gap: 0.65rem; }
.card-link svg { width: 16px; height: 16px; transition: transform 0.15s; }
.card-link:hover svg { transform: translateX(3px); }

/* ============================================================
   FEATURE / PITCH BLOCKS
   ============================================================ */
.pitch-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pitch-block.reversed { direction: rtl; }
.pitch-block.reversed > * { direction: ltr; }
.pitch-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
}
.pitch-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pitch-text {}
.pitch-text .section-eyebrow { margin-bottom: 0.75rem; }
.pitch-text .section-heading { margin-bottom: 1rem; }
.pitch-text .section-body { margin-bottom: 1.5rem; }

/* Value props list */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.value-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--eka-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eka-blue);
  font-size: 0.7rem;
  margin-top: 1px;
}

/* Feature cards grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--eka-blue);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.feature-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
  background: var(--surface-2);
}
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.app-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.app-phone-mock {
  width: 260px;
  height: 520px;
  background: var(--eka-navy);
  border-radius: 36px;
  border: 8px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 80px -20px rgba(10,27,61,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.app-phone-notch {
  width: 80px; height: 20px;
  background: rgba(0,0,0,0.4);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  flex-shrink: 0;
}
.app-phone-screen {
  flex-grow: 1;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.app-screen-bar {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.app-screen-bar.blue { background: rgba(29,95,244,0.4); width: 60%; }
.app-screen-bar.accent { background: rgba(244,165,59,0.4); width: 40%; }
.app-screen-chart {
  margin-top: 0.75rem;
  height: 80px;
  background: rgba(29,95,244,0.08);
  border-radius: 8px;
  border: 1px solid rgba(29,95,244,0.15);
  display: flex;
  align-items: flex-end;
  padding: 0.5rem;
  gap: 4px;
}
.app-screen-bar-v {
  flex: 1;
  background: rgba(29,95,244,0.35);
  border-radius: 3px 3px 0 0;
}
.app-screen-bar-v:nth-child(3) { background: rgba(244,165,59,0.5); height: 70%;}
.app-screen-bar-v:nth-child(1) { height: 40%; }
.app-screen-bar-v:nth-child(2) { height: 60%; }
.app-screen-bar-v:nth-child(4) { height: 85%; }
.app-screen-bar-v:nth-child(5) { height: 50%; }
.app-screen-bar-v:nth-child(6) { height: 75%; }
.app-screen-bar-v:nth-child(7) { height: 90%; background: rgba(29,95,244,0.5); }

.app-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(29,95,244,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.app-text .section-heading { margin-bottom: 1rem; }
.app-capabilities {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.app-cap {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.app-cap-icon {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  background: var(--eka-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.app-cap-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.badge-link { display: inline-block; transition: opacity 0.15s; }
.badge-link:hover { opacity: 0.85; }
.badge-link img { height: 44px; width: auto; }

/* ============================================================
   WHO SECTION (local advertisers vertical grid)
   ============================================================ */
.verticals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.vertical-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.vertical-tag:hover {
  border-color: var(--eka-blue);
  background: var(--eka-blue-light);
  color: var(--eka-blue);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--eka-blue);
  padding-block: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(244,165,59,0.10) 0%, transparent 60%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.cta-band-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ============================================================
   SHELF HOOK (signature callout block)
   ============================================================ */
.shelf-hook {
  border-left: 4px solid var(--eka-accent);
  padding: 1.5rem 2rem;
  background: var(--eka-blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.shelf-hook p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  font-style: italic;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {}
.contact-info .section-heading { margin-bottom: 1rem; }
.contact-info .section-body { margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.contact-detail strong { color: var(--ink); font-weight: 600; }
.contact-detail a { color: var(--eka-blue); font-weight: 600; }

.contact-form {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--eka-blue);
  box-shadow: 0 0 0 3px rgba(29,95,244,0.12);
}
textarea { resize: vertical; min-height: 130px; }
select { cursor: pointer; }
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
}
.form-success, .form-error {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-success { background: #d1fae5; color: #065f46; }
.form-error { background: #fee2e2; color: #991b1b; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--eka-navy);
  color: #8aa3d4;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #8aa3d4;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-link {
  font-size: 0.9rem;
  color: #8aa3d4;
  transition: color 0.15s;
}
.footer-link:hover { color: #fff; }
.footer-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #8aa3d4;
  margin-bottom: 1.25rem;
  transition: color 0.15s;
}
.footer-email:hover { color: #fff; }
.footer-badges { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-badge-link img { height: 38px; width: auto; opacity: 0.85; transition: opacity 0.15s; }
.footer-badge-link:hover img { opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--eka-navy);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.legal-hero .meta { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding: 4rem 1.5rem 6rem;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-content a { color: var(--eka-blue); text-decoration: underline; }
.legal-content ul { margin: 0.75rem 0 1rem 1.25rem; }
.legal-content li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
  list-style: disc;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   PAGE PADDING (push below fixed nav)
   ============================================================ */
.page-body { padding-top: var(--nav-h); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 768–1024px */
@media (max-width: 1024px) {
  .pitch-block { gap: 3rem; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .app-inner { gap: 3rem; }
}

/* Mobile: below 768px */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding-block: 4rem; }

  /* Nav */
  .nav-list { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Stat band */
  .stat-band-inner { flex-direction: column; gap: 0.5rem; }
  .stat-item { padding: 1rem 1rem; border-bottom: 1px solid var(--border); width: 100%; flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
  .stat-item:last-child { border-bottom: none; }
  .stat-divider { display: none; }
  .stat-label { text-align: right; max-width: 160px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .step-card { text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
  .step-icon { margin: 0; flex-shrink: 0; }

  /* Audience grid */
  .audience-grid { grid-template-columns: 1fr; }

  /* Pitch block */
  .pitch-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .pitch-block.reversed { direction: ltr; }
  .pitch-image { order: -1; }

  /* Feature grid */
  .feature-grid { grid-template-columns: 1fr; }

  /* App section */
  .app-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .app-visual { order: -1; }
  .app-phone-mock { width: 200px; height: 400px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Legal */
  .legal-content { padding: 2.5rem 1rem 4rem; }
}

/* Small mobile */
@media (max-width: 420px) {
  .btn-lg { font-size: 0.95rem; padding: 0.85rem 1.75rem; }
  .hero-title { font-size: 2rem; }
}
