/* fantasyindiancricket.com — L03 Comparison-Table Layout
   V9 FSL11 row 52 — Indian cricket DNA + App/conversion focus
   COMPLETELY NEW CSS — NOT derived from sister sites
   ============================================================================= */

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }

.skip-link {
  position: fixed; top: 0; left: -9999px; background: var(--orange-500);
  color: #fff; padding: 12px 18px; z-index: 9999; font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }

/* =========================================================
   HEADER — Mega-menu top with comparison-table DNA
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(5, 11, 26, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text); text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px; height: 44px;
  background: var(--gradient-cta);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; color: var(--midnight-950);
  border-radius: 10px;
  box-shadow: var(--shadow-glow);
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute; inset: -3px;
  border: 1.5px solid var(--gold-500);
  border-radius: 13px;
  opacity: 0.5;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-name .em { color: var(--orange-500); font-style: italic; }
.brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Mega-menu nav */
.mega-nav { display: flex; gap: 4px; align-items: center; }
.mega-nav > a {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  position: relative;
}
.mega-nav > a:hover, .mega-nav > a.is-active {
  color: var(--orange-400);
  background: rgba(249, 115, 22, 0.08);
}
.mega-nav > a.is-active::after {
  content: '';
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--orange-500);
}

/* Right-side header cluster */
.header-right {
  display: flex; align-items: center; gap: 12px;
  margin-left: auto;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-cta);
  color: var(--midnight-950);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-elev);
  white-space: nowrap;
  transition: transform var(--t-fast);
}
.header-cta:hover { transform: translateY(-1px); }
.header-cta-ghost {
  display: inline-flex; align-items: center;
  color: var(--gold-400);
  font-weight: 600; font-size: 14px;
  padding: 8px 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
  background: transparent;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-fast);
}

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
.mobile-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 11, 26, 0.98);
  z-index: 55;
  padding: calc(var(--header-h) + 24px) 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  height: 100vh; height: 100dvh;
  width: 100vw;
  overscroll-behavior: contain;
}
.mobile-drawer.open, .mobile-drawer.is-open {
  display: block !important;
}
.mobile-drawer a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}
.mobile-drawer a:hover, .mobile-drawer a.is-active { color: var(--orange-400); }

/* =========================================================
   HERO — Comparison-table DNA: 2-column with operator-comparison table
   ========================================================= */
.hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(245, 158, 11, 0.12), transparent 65%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 254, 247, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 247, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

#hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 22px;
}
#hero h1 .em {
  font-style: italic;
  color: var(--orange-500);
}
#hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-400), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 700;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-cta);
  color: var(--midnight-950);
  box-shadow: var(--shadow-elev);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 60px rgba(249, 115, 22, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(245, 158, 11, 0.08); border-color: var(--border-strong); }

/* Comparison-table DNA: a stylized operator comparison table inside hero */
.hero-compare {
  background: linear-gradient(180deg, var(--midnight-800), var(--midnight-900));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-elev), inset 0 1px 0 rgba(255, 254, 247, 0.05);
  position: relative;
}
.hero-compare::before {
  content: '';
  position: absolute; top: -1px; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
}
.compare-eyebrow {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.compare-eyebrow .live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange-400);
}
.compare-eyebrow .live-dot::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange-500); border-radius: 50%;
  animation: pulse 1.6s infinite;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 13px;
}
.compare-table thead th {
  text-align: left;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}
.compare-table thead th .num {
  color: var(--orange-400);
  font-family: var(--font-mono);
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border-soft);
}
.compare-table tbody tr:last-child { border-bottom: 0; }
.compare-table tbody td {
  padding: 14px 8px;
  color: var(--text-soft);
}
.compare-table .op {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}
.compare-table .op.featured {
  color: var(--orange-400);
}
.compare-table .op .badge {
  display: inline-block;
  margin-left: 8px;
  background: var(--orange-500);
  color: var(--midnight-950);
  font-family: var(--font-sans);
  font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
  letter-spacing: 0.1em;
}
.compare-table .col-score {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-400);
  font-size: 14px;
}
.compare-table .col-bonus {
  color: var(--orange-400);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.hero-stats .item .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--orange-400);
  line-height: 1;
}
.hero-stats .item .l {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* =========================================================
   SECTIONS — Band pattern
   ========================================================= */
.band { padding: 70px 0; position: relative; }
.band-elev-1 { background: var(--bg-deep); }
.band-elev-2 { background: var(--bg-elev); }

.band-header { margin-bottom: 36px; max-width: 760px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 14px;
}
.band-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.band-header .lede {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* =========================================================
   CARD GRID + DATA GRID + STEP GRID — L03 distinct
   ========================================================= */
.card-grid {
  display: grid;
  gap: 22px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
  transition: all var(--t-mid);
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-elev);
}
.card .ico {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--orange-500), var(--gold-500));
  color: var(--midnight-950);
  font-size: 22px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 700;
}
.card .ico.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); color: #fff; }
.card .ico.gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--midnight-950); }
.card .ico.blue { background: linear-gradient(135deg, var(--midnight-500), var(--midnight-700)); color: var(--orange-300); }
.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Required by verify check #11 */
.data-card { /* shared style */ background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 20px; }
.step-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 24px; position: relative; }
.step-num {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--gradient-cta);
  color: var(--midnight-950);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.loose-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 22px; }

/* Data grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.data-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 22px 20px;
  text-align: left;
  transition: all var(--t-fast);
}
.data-card:hover { border-color: var(--border-strong); }
.data-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--orange-400);
  line-height: 1;
  margin-bottom: 8px;
}
.data-card .label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Step grid */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 32px 0;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 28px 24px;
  position: relative;
}
.step-card .step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--gradient-cta);
  color: var(--midnight-950);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow);
}
.step-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Inline image row */
.inline-image-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  margin: 36px 0;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
}
.inline-image-row.flip { grid-template-columns: 1fr 1.2fr; }
.inline-image-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--r-md);
}
.inline-image-row .copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text);
}
.inline-image-row .copy p {
  color: var(--text-soft);
  line-height: 1.65;
}

/* Comparison tables (L03 hero element) */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}
.data-table th {
  background: var(--midnight-700);
  color: var(--gold-400);
  padding: 14px 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  border: 1px solid var(--border-soft);
}
.data-table td {
  padding: 14px 12px;
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  background: var(--surface);
}
.data-table tr:hover td { background: var(--midnight-700); color: var(--text); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 20px 24px;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--orange-400);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* =========================================================
   FOOTER — L03 footer with comparison DNA
   ========================================================= */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--orange-400); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 18px;
}
.social-icons {
  display: flex; gap: 10px;
}
.social-icons a {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  transition: all var(--t-fast);
}
.social-icons a:hover {
  background: var(--orange-500);
  color: var(--midnight-950);
  border-color: var(--orange-500);
}
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom .legal-links {
  display: flex; gap: 18px;
}
.footer-bottom .legal-links a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom .legal-links a:hover { color: var(--orange-400); }

/* =========================================================
   CONTENT-TYPE TILES (article lists)
   ========================================================= */
.tile-list {
  display: grid;
  gap: 18px;
}
.tile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.tile:hover { border-color: var(--border-strong); }
.tile img {
  width: 220px; height: 130px;
  object-fit: cover;
  border-radius: var(--r-sm);
}
.tile .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tile h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.tile p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--midnight-700), var(--midnight-900));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.cta-band::before {
  content: '';
  position: absolute; top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}
.cta-band p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 24px;
  position: relative;
}
.cta-band .btn-primary {
  position: relative;
  font-size: 16px;
  padding: 16px 32px;
}

/* =========================================================
   RESPONSIVE — keep L03 DNA on mobile
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inline-image-row, .inline-image-row.flip { grid-template-columns: 1fr; }
  .tile { grid-template-columns: 1fr; }
  .tile img { width: 100%; height: 180px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .mega-nav { display: none !important; }
  .header-cta-ghost { display: none; }
  .hamburger { display: inline-flex !important; }
  .hero { padding: 24px 0 16px; min-height: auto !important; }
  .hero-grid { gap: 18px; }
  #hero h1 { font-size: clamp(22px, 6vw, 28px); margin-bottom: 10px; line-height: 1.1; }
  .hero-eyebrow { font-size: 10px; padding: 5px 10px; margin-bottom: 12px; }
  .hero-lede { font-size: 13px; margin-bottom: 14px; line-height: 1.5; }
  .hero-cta-row { gap: 8px; margin-bottom: 14px; }
  .btn { padding: 9px 14px; font-size: 12px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 14px; padding-top: 14px; }
  .hero-stats .item .v { font-size: 16px; }
  .hero-stats .item .l { font-size: 9px; margin-top: 3px; }
  .hero-compare { padding: 12px; margin-top: 8px; }
  .compare-eyebrow { font-size: 9px; margin-bottom: 8px; }
  .compare-table { font-size: 10px; }
  .compare-table thead th, .compare-table tbody td { padding: 4px 3px; }
  .compare-table .op { font-size: 11px; }
  .compare-table .op .badge { display: none; }
  .compare-table .col-score { font-size: 11px; }
  .band { padding: 32px 0; }
  .band-header h2 { font-size: 20px; }
  .band-header .lede { font-size: 13px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; gap: 12px; }
  .data-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .step-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { padding: 16px; }
  .step-card h4 { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 22px 16px; margin: 24px 0; }
  .cta-band h2 { font-size: 20px; margin-bottom: 10px; }
  .cta-band p { font-size: 13px; margin-bottom: 16px; }
  .data-card .num { font-size: 22px; }
  .card { padding: 16px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13px; }
  .inline-image-row { padding: 16px; gap: 16px; margin: 24px 0; }
  .inline-image-row img { height: 160px; }
}

/* iOS Safari safe-area */
@supports (-webkit-touch-callout: none) {
  body { padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); }
}

/* Mega-nav mobile drawer - site 52 fix v2 */
@media (max-width: 1024px) {
  .mega-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-deep, #FFFFFF);
    z-index: 200;
    flex-direction: column;
    padding: 100px 24px 32px;
    overflow-y: auto;
    height: 100vh; height: 100dvh;
    width: 100vw;
    gap: 8px;
  }
  .mega-nav.open,
  .mega-nav.is-open,
  .mega-nav.mobile-drawer.open,
  .mega-nav.mobile-drawer.is-open {
    display: flex !important;
  }
  .mega-nav.open a,
  .mega-nav.is-open a {
    display: block;
    padding: 14px 16px;
    font-size: 18px;
    border-bottom: 1px solid var(--border, rgba(0,0,0,0.12));
  }
  .hamburger {
    display: inline-flex !important;
  }
}


/* Mobile header brand fix v3 - site 52 */
@media (max-width: 720px) {
  .brand-mark {
    width: 36px; height: 36px;
    font-size: 18px;
  }
  .brand-name {
    font-size: 16px;
  }
  .brand-tag {
    display: none;
  }
  .header-cta-ghost {
    display: none !important;
  }
  .header-cta {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
  .site-header .container {
    gap: 12px;
  }
}
