/* Fantasy Cricket T20 - EMPIRE EDITION v5 (2026-07-06)
   Brand: Navy #0F172A + Gold #F59E0B
   Layout: LAYOUT_013 EDITORIAL DASHBOARD
   CRITICAL FIXES: body padding-top 102px, single @media, hamburger position absolute, mobile btn hidden
*/

:root {
  --primary: #0F172A;
  --primary-light: #1E293B;
  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --text: #0F172A;
  --text-light: #475569;
  --muted: #64748B;
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --surface-2: #F1F5F9;
  --border: #E2E8F0;
  --positive: #10B981;
  --negative: #EF4444;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  padding-top: 102px;  /* topbar 32 + header 70 */
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: absolute !important; left: 0 !important; top: 0 !important; background: var(--accent) !important; color: var(--primary) !important; padding: 14px 22px !important; z-index: 9999; font-weight: 900; }

/* TOPBAR with TICKER - LAYOUT_013 unique */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-bottom: 2px solid var(--accent);
  z-index: 103;
  display: flex;
  align-items: center;
  font-size: 11px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; height: 100%; padding: 0 16px; }
.promo { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.badge { background: var(--accent); color: var(--primary); padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 900; flex-shrink: 0; }
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-move { display: inline-block; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-item { display: inline-block; margin-right: 40px; color: rgba(255,255,255,0.85); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.social { display: flex; gap: 8px; flex-shrink: 0; }
.social a { color: #fff; padding: 2px 8px; border: 1px solid rgba(255,255,255,0.2); border-radius: 3px; font-size: 10px; }

/* CTA BAR */
.cta-bar {
  display: none;
  position: fixed;
  top: 102px;
  left: 0; right: 0;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  z-index: 101;
}
.cta-bar .container { display: flex; gap: 0; padding: 0; }
.cta-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  color: #fff !important;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.cta-bar a:last-child { border-right: 0; }
.cta-bar a.primary-cta { background: var(--accent); color: var(--primary) !important; }
.cta-bar a.primary-cta:hover { background: var(--accent-light); }
.cta-bar a.secondary-cta { background: var(--accent-light); color: var(--primary) !important; }

/* HEADER */
header.site {
  position: fixed;
  top: 32px;
  left: 0; right: 0;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(15,23,42,0.06);
  z-index: 102;
  display: flex;
  align-items: center;
}
header.site .container {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 0 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo .mark {
  background: var(--primary);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.logo .cs {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 4px;
  flex-shrink: 0;
}

nav.main {
  display: flex;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
nav.main a {
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 6px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
}
nav.main a:hover, nav.main a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  flex-shrink: 0;
}
.btn-primary { background: var(--accent); color: var(--primary) !important; }
.btn-primary:hover { background: var(--accent-light); }
.btn-outline { border: 2px solid var(--text); color: var(--text) !important; background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid var(--text);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 10px;
  width: 22px !important;
  height: 3px !important;
  background: var(--text) !important;
  display: block !important;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 30px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 19px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 19px; }

/* BREADCRUMB */
.breadcrumb {
  background: var(--surface);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; color: var(--muted); }
.breadcrumb a { color: var(--primary) !important; font-weight: 700; }
.breadcrumb span:last-child { color: var(--text); font-weight: 800; }

/* SECTION COMMON */
section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-tag { display: inline-block; background: var(--primary); color: var(--accent); padding: 6px 16px; border-radius: 30px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 700px; margin: 0 auto; }
.disclaimer { background: var(--surface); color: var(--muted); border-left: 4px solid var(--accent); padding: 10px 16px; font-size: 12px; text-align: center; }

/* HERO - EDITORIAL DASHBOARD STYLE */
.hero {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 24px;
}
.hero-content { max-width: 100%; }
.hero-eyebrow { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-eyebrow span { background: rgba(245,158,11,0.2); color: var(--accent); padding: 6px 12px; border-radius: 30px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid rgba(245,158,11,0.3); }
.hero-title { font-size: clamp(34px, 5vw, 60px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; color: #fff; }
.hero-lede { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 24px; max-width: 580px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta-primary { background: var(--accent) !important; color: var(--primary) !important; padding: 14px 24px; font-size: 14px; }
.hero-cta-secondary { border: 2px solid var(--accent) !important; color: var(--accent) !important; background: transparent; padding: 14px 24px; font-size: 14px; }

/* HERO TICKER - dashboard style */
.hero-ticker {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 12px;
}
.ticker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,158,11,0.1);
}
.ticker-row:last-child { border-bottom: 0; }
.ticker-label { color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; }
.ticker-value { color: #fff; font-weight: 700; font-size: 14px; font-family: var(--font-mono); }

/* 4-COL DASHBOARD CARDS - LAYOUT_013 unique */
.section-dashboard-4col { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dashboard-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.dash-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.dash-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); }
.dash-icon { font-size: 24px; margin-bottom: 8px; }
.dash-num { font-size: 28px; font-weight: 900; color: var(--text); line-height: 1; font-family: var(--font-mono); }
.dash-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; font-weight: 700; }
.dash-trend { font-size: 11px; color: var(--positive); font-weight: 700; margin-top: 8px; }

/* 4-COL HUB MAGAZINE GRID */
.section-hub-magazine { background: #fff; }
.hub-magazine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hub-magazine-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.hub-magazine-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(15,23,42,0.08); }
.hub-mag-header { background: var(--primary); color: var(--accent); padding: 16px; font-size: 32px; text-align: center; }
.hub-mag-body { padding: 14px; }
.hub-mag-body h3 { font-size: 14px; font-weight: 900; margin-bottom: 4px; text-transform: uppercase; }
.hub-mag-body p { font-size: 12px; color: var(--text-light); margin: 0 0 8px 0; }
.hub-mag-arrow { color: var(--accent); font-weight: 900; font-size: 14px; }

/* 3-COL EDITORIAL FEATURES */
.section-editorial-3col { background: var(--surface); }
.editorial-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ed-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 24px;
}
.ed-icon { font-size: 32px; margin-bottom: 12px; }
.ed-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; text-transform: uppercase; }
.ed-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; margin: 0 0 12px 0; }
.ed-link a { color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* 4-COL MINI TOOLS */
.section-mini-4col { background: #fff; }
.mini-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.mini-card:hover { border-color: var(--accent); }
.mini-icon { font-size: 32px; margin-bottom: 8px; }
.mini-name { font-size: 14px; font-weight: 900; text-transform: uppercase; }
.mini-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* 5-COL DIFFERENTIALS - carousel style */
.section-differentials-5col { background: var(--surface); }
.diff-5col { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.diff-5card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}
.diff-5name { font-size: 14px; font-weight: 900; margin-bottom: 4px; }
.diff-5team { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.diff-5pts { font-size: 22px; font-weight: 900; color: var(--accent); font-family: var(--font-mono); }
.diff-5own { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* 2-COL BATTLE */
.section-battle-2col { background: #fff; }
.battle-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.battle-col { background: var(--surface); border: 2px solid var(--border); border-radius: 12px; padding: 24px; }
.battle-ai { border-color: var(--accent); }
.battle-header { font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 12px; }
.battle-player { font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.battle-stats { display: flex; gap: 14px; margin-bottom: 12px; }
.battle-stats span { background: var(--primary); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.battle-reasoning { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* 3-COL HOW STEPS */
.section-how-3col { background: var(--surface); }
.how-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.how-3step { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px 20px; text-align: center; }
.how-3num { font-size: 36px; font-weight: 900; color: var(--accent); line-height: 1; font-family: var(--font-mono); margin-bottom: 8px; }
.how-3icon { font-size: 28px; margin-bottom: 8px; }
.how-3step h3 { font-size: 16px; font-weight: 900; margin-bottom: 6px; text-transform: uppercase; }
.how-3step p { font-size: 13px; color: var(--text-light); margin: 0; }

/* 6-COL STATS */
.section-stats-6col { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-6col { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.stat-6item { text-align: center; padding: 18px 8px; }
.stat-6num { font-size: 26px; font-weight: 900; color: var(--accent); line-height: 1; font-family: var(--font-mono); }
.stat-6label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; font-weight: 700; }

/* 2-COL CODE + MEGA */
.section-code-mega-2col { background: var(--surface); }
.code-mega-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cm-2code { background: #fff; border: 2px solid var(--accent); border-radius: 12px; padding: 24px; text-align: center; }
.cm-2code-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.cm-2code-value { font-family: var(--font-mono); font-size: 30px; color: var(--accent); font-weight: 900; letter-spacing: 3px; margin-bottom: 8px; }
.cm-2code-terms { font-size: 12px; color: var(--muted); }
.cm-2mega { background: var(--primary); color: #fff; border-radius: 12px; padding: 24px; text-align: center; }
.cm-2mega-label { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.cm-2mega-pool { font-size: 36px; font-weight: 900; color: var(--accent); font-family: var(--font-mono); margin-bottom: 8px; }
.cm-2mega-info { font-size: 12px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }

/* 3-COL TESTIMONIALS */
.section-testimonials-3col { background: #fff; }
.testimonials-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.test-3card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.test-3rating { color: var(--accent); font-size: 13px; margin-bottom: 10px; font-weight: 900; }
.test-3text { font-size: 15px; color: var(--text); line-height: 1.5; margin: 0 0 12px 0; font-style: italic; font-weight: 600; }
.test-3by { font-size: 11px; color: var(--muted); font-weight: 700; }

/* 4-COL FAQ GRID */
.section-faq-4col { background: var(--surface); }
.faq-4col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.faq-4item { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 14px 18px; }
.faq-4item summary { color: var(--primary); font-weight: 800; cursor: pointer; font-size: 14px; }
.faq-4item div { margin-top: 8px; color: var(--text-light); line-height: 1.6; font-size: 13px; }

/* FINAL CTA */
.section-final { background: var(--primary); color: #fff; padding: 80px 0; text-align: center; }
.final-cta { padding: 0 20px; }
.final-badge { display: inline-block; background: var(--accent); color: var(--primary); padding: 6px 16px; border-radius: 30px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.final-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.final-desc { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-btn { padding: 14px 28px; font-size: 14px; }

/* STICKY CTA BOTTOM */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); padding: 10px 12px; z-index: 90; gap: 8px; justify-content: center; border-top: 2px solid var(--accent); }
.sticky-cta .btn { flex: 1; max-width: 200px; font-size: 12px; padding: 8px 12px; }

/* HUB HERO */
.hub-hero { background: var(--primary); color: #fff; padding: 60px 0; border-bottom: 4px solid var(--accent); }
.hub-hero .container { padding: 0 16px; }
.hub-hero-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: #fff; margin-bottom: 14px; }
.hub-hero-lede { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 700px; line-height: 1.5; }

/* HUB CONTENT */
.section-hub-content { background: #fff; }
.section-hub-content .container { max-width: 760px; }
.longform h2 { color: var(--text); margin-top: 32px; text-align: left; font-size: 24px; }
.longform p { margin-bottom: 16px; line-height: 1.75; color: var(--text-light); }
.figure-inline { margin: 28px 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.figure-inline img { width: 100%; height: auto; }
.stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.stats-table th { background: var(--primary); color: var(--accent); padding: 12px; text-align: left; }
.stats-table td { padding: 10px; border: 1px solid var(--border); color: var(--text-light); }
.stats-table tr:nth-child(even) { background: var(--surface); }

.section-cta-inline { background: var(--surface); padding: 50px 0; }
.cta-inline-card { background: var(--primary); color: #fff; padding: 36px; text-align: center; border-radius: 12px; border: 2px solid var(--accent); }
.cta-inline-card h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.cta-inline-card p { color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--primary); color: rgba(255,255,255,0.85); padding: 48px 0 20px; border-top: 4px solid var(--accent); }
footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 28px; }
footer .footer-brand p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.7; margin: 10px 0 16px; }
footer .logo { color: #fff; }
footer .cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
footer .footer-heading { color: var(--accent); font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 6px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 6px; }
footer ul li a { color: rgba(255,255,255,0.85); font-size: 13px; }
footer ul li a:hover { color: var(--accent); }
footer .legal-bar { grid-column: 1 / -1; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 12px; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* === SINGLE @media (BUG #1 fix) === */
@media (max-width: 768px) {
  body { padding-top: 88px; }
  .topbar { height: 28px; font-size: 10px; }
  .topbar .container { padding: 0 8px; gap: 6px; }
  .topbar .social { display: none; }
  .ticker-wrap { display: none; }
  .cta-bar { display: flex !important; top: 80px; }
  .cta-bar a { font-size: 11px; padding: 10px 8px; }
  header.site { top: 28px; height: 60px; }
  header.site .container { padding: 0 8px; gap: 6px; }
  .logo { font-size: 12px; gap: 6px; max-width: 50vw; }
  .logo .mark { padding: 3px 6px; font-size: 10px; }
  .logo .cs { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none !important; }
  nav.main { display: none; }
  nav.main.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: #fff; padding: 8px; gap: 0; box-shadow: 0 8px 24px rgba(15,23,42,0.15); z-index: 100; border-bottom: 4px solid var(--accent); }
  nav.main.open a { width: 100%; padding: 14px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
  nav.main.open a:last-child { border-bottom: 0; }
  body.menu-open { overflow: hidden !important; position: fixed !important; width: 100%; height: 100%; top: 0; left: 0; }
  section { padding: 40px 0; }
  .container { padding: 0 16px; }
  h1 { font-size: 28px !important; }
  h2 { font-size: 22px; }
  .hero { padding: 32px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 24px; }
  .hero-title { font-size: 28px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .dashboard-4col { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .hub-magazine-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .editorial-3col { grid-template-columns: 1fr !important; gap: 14px; }
  .mini-4col { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .diff-5col { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .battle-2col { grid-template-columns: 1fr !important; gap: 14px; }
  .how-3col { grid-template-columns: 1fr !important; gap: 14px; }
  .stats-6col { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .code-mega-2col { grid-template-columns: 1fr !important; gap: 14px; }
  .testimonials-3col { grid-template-columns: 1fr !important; gap: 14px; }
  .faq-4col { grid-template-columns: 1fr !important; }
  footer .container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .sticky-cta { display: flex !important; }
  .sticky-cta .btn { max-width: 50%; }
}

/* SECTION IMAGES - small 320px max */
section > picture { display: block; max-width: 320px; margin: 0 auto 16px; text-align: center; }
section > picture img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
