/* =============================================================
   Media Kit Website — local styles
   Imports the global design tokens, then layers component CSS.
   ============================================================= */
@import url('../../colors_and_type.css');

/* ---------- Layout primitives ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-1);
  color: var(--text-primary);
  font-family: var(--font-family-base);
  font-weight: var(--fw-medium);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  padding: 96px 0;
}
.section + .section { padding-top: 64px; }

/* ---------- Halo background system ---------- */
.halo-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.halo-wrap[data-variant="hero"] { padding: 132px 0 96px; }
.halo-wrap[data-variant="cta"]  { padding: 32px 0 64px; }
.halo { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; }
.halo-a {
  width: 620px; height: 620px;
  left: -180px; top: -140px;
  background: var(--halo-primary);
}
.halo-b {
  width: 520px; height: 520px;
  right: -160px; top: 40px;
  background: var(--halo-secondary);
}
.halo-content { position: relative; z-index: 1; }

.halo-wrap[data-variant="hero"]::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 80% at 10% 0%, #EAF3FE 0%, #F7F8FA 50%, #FFFFFF 100%);
}

/* ---------- Eyebrow + section header ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.eyebrow--on-light { color: var(--brand-primary); }

.section-header { max-width: 720px; margin-bottom: 48px; }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-wrap: balance;
  color: var(--text-primary);
}
.section-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  text-wrap: pretty;
  max-width: 60ch;
}

/* ---------- Glass card primitive ---------- */
.glass-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--shadow-inner-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s var(--ease-out, cubic-bezier(0.22,1,0.36,1)), box-shadow .18s ease-out, background-color .18s ease-out;
}
.btn--primary { background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-glow-primary); }
.btn--primary:hover { transform: translateY(-1px); background: #038BA8; box-shadow: 0 22px 50px rgba(2,160,193,0.36); }
.btn--primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn--secondary { background: #fff; color: var(--text-primary); border-color: var(--neutral-line); box-shadow: var(--shadow-sm); }
.btn--secondary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); border-color: #D2D6DD; }

.btn--ghost { background: transparent; color: var(--text-primary); }
.btn--ghost:hover { background: rgba(15,23,42,0.04); }

.btn--lime { background: var(--brand-accent-green); color: var(--text-primary); }

.btn-icon { display: inline-flex; align-items: center; transform: translateY(-1px); }

/* ---------- Pills / chips ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-size: 13px; font-weight: 700;
  border-radius: var(--radius-pill);
  background: var(--brand-soft-blue);
  color: #1F4D8C;
  line-height: 1;
}
.pill--soft  { background: var(--brand-soft-blue); color: #1F4D8C; }
.pill--lime  { background: var(--brand-accent-green); color: var(--text-primary); position: relative; }
.pill--sm    { padding: 5px 10px; font-size: 11px; font-weight: 700; }

.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1FA968;
  position: relative;
}
.pill--lime .pill-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(31,169,104,0.4); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }

/* =============================================================
   TOP NAV  (fixed — floats over the hero halo so there is no
   white strip above it)
   ============================================================= */
.topnav-wrap {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 50;
  padding: 0 32px;
  transition: padding .2s ease-out, top .2s ease-out;
  pointer-events: none;
}
.topnav-wrap > * { pointer-events: auto; }
.topnav-wrap--scrolled { padding: 0 16px; top: 10px; }
.topnav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 12px 10px 18px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.topnav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-primary);
  font-weight: 800; font-size: 15px; letter-spacing: -0.01em;
  white-space: nowrap; flex-shrink: 0;
}
.topnav-mark {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 16px rgba(2,160,193,0.32);
}
.topnav-links { list-style: none; display: flex; gap: 22px; padding: 0; margin: 0 0 0 12px; }
.topnav-links a {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  text-decoration: none; opacity: 0.78;
  transition: opacity .15s ease-out;
}
.topnav-links a:hover { opacity: 1; }

.topnav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.topnav-cta .btn { padding: 10px 18px; font-size: 13px; }

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero-title {
  font-size: 60px; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em;
  margin: 8px 0 0;
  color: var(--text-primary);
}

/* Hero combined-audience banner */
.hero-combined {
  width: 100%;
  display: flex; align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--shadow-inner-soft);
}
.hero-combined-main { display: flex; flex-direction: column; gap: 2px; }
.hero-combined-lbl {
  font-size: 11px; font-weight: 800;
  color: var(--brand-primary);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-combined-num {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline;
}
.hero-combined-num-val { min-width: 6ch; display: inline-block; }
.hero-combined-plus {
  color: var(--brand-primary);
  font-size: 26px; margin-left: 4px;
}
.hero-combined-tag {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  margin-top: 4px;
}
.hero-combined-divider {
  width: 1px; align-self: stretch;
  background: var(--neutral-line);
}
.hero-combined-sub {
  display: flex; gap: 24px;
  margin-left: auto;
}
.hcs-n {
  font-size: 22px; font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.01em; line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.hcs-n span { color: var(--brand-primary); font-size: 16px; margin-left: 2px; }
.hcs-n--accent { color: var(--brand-primary); }
.hcs-l {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 2px;
}
.hero-title-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px; font-weight: 500;
  line-height: 1.55; color: var(--text-secondary);
  margin: 0; max-width: 56ch;
}
.hero-sub strong { font-weight: 700; color: var(--text-primary); }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Visual side */
.hero-visual { position: relative; height: 520px; }

/* Orbiting wrapper for the floating stat tiles around the portrait.
   The wrapper spins slowly; each tile counter-spins so it stays upright. */
.portrait-orbit {
  position: absolute; inset: 0;
  pointer-events: none;
  animation: portrait-orbit 38s linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}
.portrait-orbit .float-tile-link {
  animation: portrait-orbit-counter 38s linear infinite;
  transform-origin: 50% 50%;
  pointer-events: auto;
  will-change: transform;
}
@keyframes portrait-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes portrait-orbit-counter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .portrait-orbit, .portrait-orbit .float-tile-link { animation: none !important; }
}
.portrait-ring {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--grad-primary);
  padding: 6px;
  box-shadow: var(--shadow-glow-primary);
  display: flex; align-items: center; justify-content: center;
}
.portrait-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(180deg, #FFFFFF 0%, #D7E8FB 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portrait-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}
.portrait-initial {
  font-size: 120px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--brand-primary);
  opacity: 0.85;
}
.portrait-cap {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,0.78); padding: 4px 10px; border-radius: 999px;
}

.float-tile-link {
  position: absolute;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.float-tile-link:focus-visible {
  outline: 3px solid rgba(2,160,193,0.45);
  outline-offset: 3px;
}
.float-tile-link:hover .float-tile {
  box-shadow: var(--shadow-lg), 0 18px 40px rgba(2,160,193,0.18);
}
.float-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 18px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), var(--shadow-inner-soft);
  transition: box-shadow .2s ease-out;
}
.float-tile--a { top: 6%;   left: -10px; }
.float-tile--b { top: 38%;  right: -20px; }
.float-tile--c { bottom: 6%; left: 28px; }

.float-tile-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft-blue);
  color: var(--brand-primary);
  flex-shrink: 0;
}
.float-tile-num { font-size: 18px; font-weight: 800; color: var(--text-primary); line-height: 1.1; letter-spacing: -0.01em; }
.float-tile-lbl { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* =============================================================
   ABOUT
   ============================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-intro .section-header { margin-bottom: 24px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; }
.about-pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
}
.about-pillar-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--brand-soft-blue); color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-pillar-title { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: var(--text-primary); }
.about-pillar-body  { margin: 0; font-size: 14px; font-weight: 500; color: var(--text-secondary); line-height: 1.55; }

/* =============================================================
   AUDIENCE
   ============================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.audience-card { padding: 24px; }
.audience-card-title {
  margin: 0 0 16px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-primary);
}

.bars { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; flex-direction: column; gap: 6px; }
.bar-row-head { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--text-primary); }
.bar-value { font-variant-numeric: tabular-nums; color: var(--text-muted); font-weight: 600; }
.bar-track { height: 8px; background: var(--brand-soft-blue); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--brand-primary); border-radius: 999px; transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1); }

.donut-row { display: flex; align-items: center; gap: 24px; }
.donut {
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.donut-inner {
  width: 70%; height: 70%; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--text-primary); font-size: 18px;
  letter-spacing: -0.02em;
}
.legend { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-primary); }
.legend .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }

.role-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.role-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text-primary);
}
.role-list li span { margin-left: auto; color: var(--text-muted); font-variant-numeric: tabular-nums; font-weight: 700; font-size: 13px; }

/* Ranked roles list (Top 01–05 · audience snapshot) */
.role-list--ranked { gap: 8px; }
.role-list--ranked li {
  display: grid;
  grid-template-columns: 56px 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s ease-out, transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.audience-card.is-revealed .role-list--ranked li { opacity: 1; transform: none; }
.audience-card.is-revealed .role-list--ranked li:nth-child(1) { transition-delay: 0.05s; }
.audience-card.is-revealed .role-list--ranked li:nth-child(2) { transition-delay: 0.15s; }
.audience-card.is-revealed .role-list--ranked li:nth-child(3) { transition-delay: 0.25s; }
.audience-card.is-revealed .role-list--ranked li:nth-child(4) { transition-delay: 0.35s; }
.audience-card.is-revealed .role-list--ranked li:nth-child(5) { transition-delay: 0.45s; }
.role-list--ranked li:first-child {
  background: linear-gradient(90deg, rgba(2,160,193,0.14), rgba(53,129,225,0.06));
  border-color: rgba(2,160,193,0.28);
}
.role-list--ranked .role-rank {
  font-size: 10px; font-weight: 800;
  color: var(--brand-primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-left: 0;
}
.role-list--ranked .role-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  color: var(--text-muted);
  margin: 0;
}
.role-list--ranked .role-name {
  font-size: 13px; font-weight: 700; color: var(--text-primary);
  margin: 0;
}
.role-list--ranked .role-pct {
  margin-left: 0;
  font-size: 13px; font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* Geo split */
.geo-split { display: flex; flex-direction: column; gap: 16px; }
.geo-bar {
  display: flex; height: 56px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--neutral-line);
}
.geo-seg {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8px 14px; gap: 2px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.geo-seg span { font-size: 13px; font-weight: 700; color: inherit; }
.geo-seg .geo-pct { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.geo-seg--id   { background: var(--brand-primary); color: #fff; }
.geo-seg--intl { background: var(--brand-soft-blue); color: #1F4D8C; }

.geo-intl-list { display: flex; flex-direction: column; gap: 8px; }
.geo-intl-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.geo-intl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.geo-intl-chips .pill {
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s ease-out, transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.audience-card.is-revealed .geo-intl-chips .pill { opacity: 1; transform: none; }
.audience-card.is-revealed .geo-intl-chips .pill:nth-child(1) { transition-delay: 0.4s; }
.audience-card.is-revealed .geo-intl-chips .pill:nth-child(2) { transition-delay: 0.5s; }
.audience-card.is-revealed .geo-intl-chips .pill:nth-child(3) { transition-delay: 0.6s; }
.audience-card.is-revealed .geo-intl-chips .pill:nth-child(4) { transition-delay: 0.7s; }
.audience-card.is-revealed .geo-intl-chips .pill:nth-child(5) { transition-delay: 0.8s; }

.audience-foot {
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); font-weight: 600;
}

/* =============================================================
   SOCIAL REACH
   ============================================================= */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.reach-card {
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  text-decoration: none; color: inherit;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.reach-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg), var(--shadow-inner-soft); }
.reach-card:hover .reach-visit { color: var(--brand-primary); gap: 8px; }
.reach-card:focus-visible {
  outline: 3px solid rgba(2,160,193,0.45);
  outline-offset: 2px;
}

.reach-visit {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.005em;
  transition: color .18s ease-out, gap .18s ease-out;
}
.reach-flag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 800; color: var(--brand-primary);
  background: var(--brand-soft-blue);
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.reach-card--primary {
  background: linear-gradient(170deg, rgba(255,255,255,0.85), rgba(215,232,251,0.7));
  border-color: rgba(2,160,193,0.25);
}
.reach-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.reach-icon--brand {
  background: #fff;
  border: 1px solid var(--neutral-line);
  box-shadow: var(--shadow-xs);
}
.reach-count { font-size: 22px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1.1; }
.reach-name  { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.reach-handle{ font-size: 12px; font-weight: 600; color: var(--text-muted); }
.reach-delta {
  margin-top: 8px;
  align-self: flex-start;
  font-size: 11px; font-weight: 700; color: var(--text-primary);
  background: var(--brand-accent-green);
  padding: 3px 8px; border-radius: 999px;
}

.reach-total {
  margin-top: 20px;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.reach-total-lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-primary); }
.reach-total-num { font-size: 34px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.1; margin-top: 4px; font-variant-numeric: tabular-nums; }
.reach-total-stats { display: flex; gap: 32px; }
.rts-n { font-size: 22px; font-weight: 800; color: var(--text-primary); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.rts-l { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 2px; }

/* BIG combined-audience banner (under platform grid) */
.reach-total--big {
  margin-top: 24px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #02A0C1 0%, #006C82 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.reach-total--big::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 90% 10%, rgba(214,253,145,0.22), transparent 70%),
    radial-gradient(50% 80% at 0% 100%, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.reach-total--big > * { position: relative; }
.reach-total-left { display: flex; flex-direction: column; gap: 4px; }
.reach-total--big .reach-total-lbl { color: var(--brand-accent-green); }
.reach-total--big .reach-total-num {
  font-size: 64px; font-weight: 800; line-height: 1;
  letter-spacing: -0.03em; color: #fff;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline;
}
.reach-total--big .reach-total-num > span:first-child { min-width: 6ch; display: inline-block; }
.reach-total-plus {
  font-size: 38px; font-weight: 800; color: var(--brand-accent-green);
  margin-left: 4px;
}
.reach-total-tag {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.78);
  letter-spacing: 0;
}
.reach-total--big .reach-total-stats { gap: 14px; }
.rts-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 14px 20px;
  min-width: 150px;
}
.rts-card--accent { background: rgba(214,253,145,0.18); border-color: rgba(214,253,145,0.35); }
.reach-total--big .rts-n { color: #fff; font-size: 28px; }
.reach-total--big .rts-n span { color: var(--brand-accent-green); font-size: 22px; margin-left: 2px; }
.rts-card--accent .rts-n { color: var(--brand-accent-green); }
.reach-total--big .rts-l { color: rgba(255,255,255,0.78); }

/* =============================================================
   WHY BRANDS
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--shadow-inner-soft); }
.why-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--brand-soft-blue); color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.why-title { margin: 0; font-size: 17px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.why-body  { margin: 0; font-size: 14px; font-weight: 500; color: var(--text-secondary); line-height: 1.55; }

/* =============================================================
   PILLARS
   ============================================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease-out, box-shadow .2s ease-out, border-color .2s;
}
.pillar-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #D2D6DD; }
.pillar-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft-teal);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pillar-card:nth-child(3n) .pillar-icon { background: var(--brand-soft-blue); color: var(--brand-primary); }
.pillar-card:nth-child(3n+1) .pillar-icon { background: var(--brand-accent-green); color: var(--text-primary); }
.pillar-content { flex: 1; }
.pillar-title { margin: 0 0 2px; font-size: 16px; font-weight: 700; color: var(--text-primary); }
.pillar-body  { margin: 0; font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.5; }
.pillar-card > [data-lucide] { color: var(--text-muted); }

/* =============================================================
   COLLAB
   ============================================================= */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.collab-card {
  background: #fff;
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.collab-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.collab-card--featured {
  background: linear-gradient(180deg, #02A0C1 0%, #006C82 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow-primary);
}
.collab-card--featured .collab-title,
.collab-card--featured .collab-price { color: #fff; }
.collab-card--featured .collab-sub { color: rgba(255,255,255,0.85); }
.collab-card--featured .collab-bullets li { color: rgba(255,255,255,0.92); }
.collab-card--featured .collab-bullets li [data-lucide] { color: var(--brand-accent-green); }
.collab-card--featured .btn--primary {
  background: var(--brand-accent-green); color: var(--text-primary);
  box-shadow: none;
}
.collab-card--featured .btn--primary:hover { background: #C7F478; box-shadow: 0 10px 28px rgba(214,253,145,0.4); }

.collab-badge {
  position: absolute; top: -12px; left: 24px;
  font-size: 10px; font-weight: 800; padding: 5px 12px; border-radius: 999px;
  background: var(--brand-soft-blue); color: var(--brand-primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap;
}
.collab-badge--featured { background: var(--brand-accent-green); color: var(--text-primary); }

.collab-title { margin: 0; font-size: 20px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.01em; }
.collab-sub   { margin: 0; font-size: 13px; font-weight: 500; color: var(--text-muted); }
.collab-price {
  font-size: 32px; font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  margin: 4px 0 6px;
}
.collab-price span {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-left: 4px; letter-spacing: 0;
}
.collab-card--featured .collab-price span { color: rgba(255,255,255,0.7); }

.collab-bullets {
  list-style: none; padding: 0; margin: 8px 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.collab-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary); line-height: 1.5;
}
.collab-bullets li [data-lucide] { color: var(--brand-primary); margin-top: 2px; flex-shrink: 0; }

.collab-card > .btn { margin-top: auto; justify-content: center; }

.collab-extras {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.collab-extra {
  background: #fff;
  border: 1px dashed #CFD4DC;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.collab-extra-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--brand-soft-blue); color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.collab-extra-body { flex: 1; }
.collab-extra-head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.collab-extra-head h4 { margin: 0; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.collab-extra-tag {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--neutral-light); color: var(--text-muted);
}
.collab-extra-tag.is-free { background: var(--brand-accent-green); color: var(--text-primary); }
.collab-extra-body p { margin: 0; font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.5; }

.collab-foot {
  margin-top: 24px; text-align: center;
  font-size: 12px; color: var(--text-muted); font-weight: 600;
  display: inline-flex; gap: 8px; align-items: center;
  width: 100%; justify-content: center;
}

/* =============================================================
   SOCIAL PROOF
   ============================================================= */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote-card {
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.quote-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand-soft-blue); color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
}
.quote-body { margin: 0; font-size: 15px; font-weight: 500; line-height: 1.55; color: var(--text-primary); }
.quote-author { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.quote-name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.quote-role { font-size: 12px; font-weight: 500; color: var(--text-muted); }

/* =============================================================
   PARTNERS (was social proof brand strip)
   ============================================================= */
.brands-strip { margin-top: 8px; }
.brands-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.brand-logo {
  display: inline-flex; align-items: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--neutral-page);
  border: 1px solid var(--neutral-line);
  color: var(--text-primary);
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  transition: transform .15s ease-out, border-color .15s, background .15s;
}
.brand-logo:hover { transform: translateY(-1px); border-color: #C9D0DA; background: #fff; }
.brand-logo--featured {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.brand-logo--featured:hover { background: #2C2C2C; }
.brand-logo--more {
  background: transparent;
  border: 1px dashed #CFD4DC;
  color: var(--text-muted);
  font-weight: 600;
}

/* =============================================================
   PROCESS
   ============================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.process-step {
  background: #fff;
  border: 1px solid var(--neutral-line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  box-shadow: var(--shadow-xs);
}
.process-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--brand-soft-blue); color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.process-n {
  position: absolute; top: 18px; right: 18px;
  font-size: 12px; font-weight: 800; color: var(--text-muted);
  letter-spacing: 0.05em;
}
.process-title { margin: 0; font-size: 17px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.01em; }
.process-body  { margin: 0; font-size: 13px; font-weight: 500; color: var(--text-secondary); line-height: 1.5; }
.process-connector {
  position: absolute; top: 46px; right: -10px;
  width: 20px; height: 2px; background: var(--neutral-line);
  z-index: 1;
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.final-cta { position: relative; padding: 64px 0 32px; }
.final-cta .halo-wrap { padding: 0; }
.final-card {
  background: linear-gradient(180deg, #02A0C1 0%, #006C82 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-glow-primary);
}
.final-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 20% 10%, rgba(255,255,255,0.18), transparent 70%),
    radial-gradient(45% 70% at 80% 90%, rgba(214,253,145,0.25), transparent 70%);
  pointer-events: none;
}
.final-card > * { position: relative; }
.final-card .eyebrow { color: var(--brand-accent-green); }
.final-title {
  font-size: 56px; font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
  color: #fff;
  text-wrap: balance;
}
.final-title .hero-title-grad {
  background: linear-gradient(135deg, #D6FD91 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-sub {
  margin: 0 auto 24px; max-width: 60ch;
  font-size: 17px; font-weight: 500; line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.final-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta-row .btn--primary { background: var(--brand-accent-green); color: var(--text-primary); box-shadow: 0 18px 36px rgba(0,0,0,0.18); }
.final-cta-row .btn--primary:hover { background: #C7F478; }
.final-cta-row .btn--ghost { color: #fff; }
.final-cta-row .btn--ghost:hover { background: rgba(255,255,255,0.12); }
.final-meta {
  margin-top: 20px;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75);
}
.final-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { padding: 56px 0 24px; background: #fff; border-top: 1px solid var(--neutral-line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--neutral-line);
}
.footer-brand .logo-lockup { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-glow-primary);
}
.logo-name { font-size: 16px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.01em; }
.logo-role { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }
.footer-tag { margin: 0; font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.55; max-width: 32ch; }

.footer-col h4 { margin: 0 0 12px; font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col a {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  text-decoration: none; opacity: 0.85;
}
.footer-col a:hover { opacity: 1; color: var(--brand-primary); }
.footer-social img { display: inline-block; }

.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  padding-top: 16px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
}

/* =============================================================
   MODAL
   ============================================================= */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: scrim-in .18s ease-out;
}
@keyframes scrim-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%; max-width: 460px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-in .26s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--neutral-line);
  background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.modal-close:hover { background: var(--neutral-page); color: var(--text-primary); }
.modal-title { margin: 4px 0 6px; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.modal-sub { margin: 0 0 18px; font-size: 14px; font-weight: 500; color: var(--text-secondary); line-height: 1.55; }
.modal-email {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 14px;
  background: var(--neutral-page); border: 1px solid var(--neutral-line);
  margin-bottom: 16px;
  font-size: 14px; font-weight: 600; color: var(--text-primary);
}
.modal-email span { flex: 1; }
.modal-copy {
  border: none; background: var(--brand-primary); color: #fff;
  padding: 6px 12px; border-radius: 999px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  cursor: pointer;
}
.modal-copy:hover { background: #038BA8; }
.modal-row { display: flex; gap: 10px; }
.modal-row .btn { flex: 1; justify-content: center; }
.modal-foot { margin: 16px 0 0; font-size: 12px; font-weight: 500; color: var(--text-muted); text-align: center; }

/* =============================================================
   RESPONSIVE — design width 1280; clean down to ~360px
   ============================================================= */

/* No horizontal scroll anywhere */
html, body { max-width: 100%; overflow-x: hidden; }

/* ---------- TABLET ≤ 1024px ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }
  .section + .section { padding-top: 48px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 38px; }
  .section-sub { font-size: 17px; }

  /* Top nav: shrink links */
  .topnav-links { gap: 16px; margin-left: 4px; }
  .topnav-links a { font-size: 12px; }

  /* Hero */
  .hero-grid { gap: 40px; }
  .hero-title { font-size: 52px; }
  .hero-sub { font-size: 17px; }
  .hero-combined { padding: 16px 18px; gap: 16px; }
  .hero-combined-num { font-size: 36px; }
  .hero-combined-sub { gap: 16px; }

  /* Reach grid: 5 → 3 */
  .reach-grid { grid-template-columns: repeat(3, 1fr); }

  /* Reach total banner */
  .reach-total--big { padding: 26px 28px; gap: 24px; }
  .reach-total--big .reach-total-num { font-size: 52px; }
  .reach-total--big .reach-total-stats { gap: 12px; }
  .rts-card { min-width: 130px; padding: 12px 16px; }

  /* Why / Quotes: 3 → 2 */
  .why-grid, .collab-extras { grid-template-columns: repeat(2, 1fr); }

  /* Process: hide connectors at tablet */
  .process-connector { display: none; }
}

/* ---------- TABLET PORTRAIT ≤ 820px ---------- */
@media (max-width: 820px) {
  .topnav-wrap { top: 12px; padding: 0 16px; }
  .topnav { padding: 8px 10px 8px 14px; gap: 12px; }
  .topnav-links { display: none; }  /* hide nav links — logo + CTA only */
  .topnav-cta { gap: 8px; }
  .topnav-cta .pill { display: none; }
  .topnav-cta .btn { padding: 9px 14px; font-size: 12px; }
  .topnav-mark { width: 26px; height: 26px; font-size: 13px; }
  .topnav-logo { font-size: 14px; }

  /* Hero → single column */
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { height: 360px; max-width: 420px; margin: 0 auto; }
  .portrait-ring { width: 300px; height: 300px; }
  .hero-title { font-size: 48px; }
  .hero-combined { flex-direction: column; align-items: flex-start; }
  .hero-combined-divider { display: none; }
  .hero-combined-sub { margin-left: 0; width: 100%; justify-content: space-between; }

  /* About → single column */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Two-up grids */
  .audience-grid, .reach-grid, .collab-grid, .pillars-grid,
  .process-grid, .quote-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why → 2 columns */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer brand spans both columns */
  .footer-brand { grid-column: 1 / -1; }

  /* Final CTA */
  .final-card { padding: 48px 32px; }
  .final-title { font-size: 42px; }
  .final-sub { font-size: 15px; }

  /* Reach total stacks */
  .reach-total--big { padding: 24px; }
  .reach-total--big .reach-total-num { font-size: 44px; }
  .reach-total-plus { font-size: 28px; }
}

/* ---------- PHONE ≤ 560px ---------- */
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section + .section { padding-top: 32px; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: 30px; line-height: 1.12; }
  .section-sub { font-size: 15px; }

  /* Halo wraps need less padding at top */
  .halo-wrap[data-variant="hero"] { padding: 88px 0 56px; }
  .halo-wrap[data-variant="cta"]  { padding: 16px 0 24px; }

  /* Top nav */
  .topnav-logo span { font-size: 13px; }
  .topnav-cta .btn { padding: 8px 12px; font-size: 11px; }

  /* Hero */
  .hero-grid { gap: 28px; }
  .hero-title { font-size: 40px; letter-spacing: -0.025em; }
  .hero-sub { font-size: 15px; }
  .hero-visual { height: 280px; }
  .portrait-ring { width: 240px; height: 240px; padding: 5px; }
  .portrait-initial { font-size: 84px; }

  /* Float tiles: shrink + tuck inside */
  .float-tile { padding: 8px 12px 8px 8px; gap: 8px; border-radius: 14px; }
  .float-tile-icon { width: 32px; height: 32px; border-radius: 10px; }
  .float-tile-num { font-size: 14px; }
  .float-tile-lbl { font-size: 9px; }
  .float-tile--a { top: 0; left: -4px; }
  .float-tile--b { top: 38%; right: -4px; }
  .float-tile--c { bottom: 0; left: 8%; }

  /* Hero combined */
  .hero-combined { padding: 14px 16px; gap: 12px; }
  .hero-combined-num { font-size: 32px; }
  .hero-combined-plus { font-size: 22px; }
  .hero-combined-tag { font-size: 11px; }
  .hcs-n { font-size: 18px; }
  .hcs-n span { font-size: 13px; }
  .hcs-l { font-size: 10px; }

  .hero-meta { gap: 12px; font-size: 12px; }
  .hero-cta-row { width: 100%; gap: 10px; }
  .hero-cta-row .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 14px; }

  /* All grids → single column */
  .audience-grid, .reach-grid, .collab-grid, .collab-extras,
  .pillars-grid, .process-grid, .why-grid, .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-brand { grid-column: auto; }

  /* Cards */
  .audience-card, .why-card, .quote-card, .glass-card { padding: 20px; }
  .audience-card-title { font-size: 12px; margin-bottom: 12px; }
  .donut { width: 92px; height: 92px; }
  .donut-inner { font-size: 14px; }

  .reach-card { padding: 18px 16px; }
  .reach-count { font-size: 20px; }

  /* Reach total — fully stacked */
  .reach-total--big {
    padding: 22px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: var(--radius-lg);
  }
  .reach-total--big .reach-total-num { font-size: 40px; }
  .reach-total-plus { font-size: 24px; }
  .reach-total--big .reach-total-stats {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .reach-total--big .rts-card { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 12px 14px; }
  .reach-total--big .rts-n { font-size: 22px; }

  /* Collab cards */
  .collab-card { padding: 24px 22px; }
  .collab-card--featured { transform: none; }   /* don't lift featured on mobile */
  .collab-badge { left: 18px; }
  .collab-price { font-size: 28px; }

  /* Pillars */
  .pillar-card { padding: 16px 18px; }
  .pillar-card > [data-lucide]:last-child { display: none; }

  /* Process */
  .process-step { padding: 20px; }

  /* Final CTA */
  .final-card { padding: 36px 22px; border-radius: var(--radius-lg); }
  .final-title { font-size: 32px; letter-spacing: -0.025em; }
  .final-sub { font-size: 14px; }
  .final-cta-row { width: 100%; gap: 10px; }
  .final-cta-row .btn { flex: 1; justify-content: center; }
  .final-meta { font-size: 11px; gap: 6px; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
  .footer-grid { gap: 28px; padding-bottom: 28px; }
  .footer-base { flex-direction: column; gap: 6px; }

  /* Brand strip */
  .brands-row { padding: 18px; gap: 8px; }
  .brand-logo { padding: 10px 14px; font-size: 13px; }
}

/* ---------- TINY PHONES ≤ 380px ---------- */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 34px; }
  .section-title { font-size: 26px; }
  .topnav-logo span { display: none; }   /* mark-only logo */
  .float-tile-lbl { display: none; }     /* keep only number */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
