*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0A0A0B;
  --navy: #0D1B3E;
  --navy-mid: #132347;
  --white: #F0F2F5;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --muted: #8A919E;
  --rule: rgba(240,242,245,0.08);
}
html { scroll-behavior: smooth; }
body { 
  width: 100%; 
  max-width: 1920px; 
  margin: 0 auto; 
  background: var(--black); 
  color: var(--white); 
  font-family: 'Inter', sans-serif; 
  font-size: 20px; 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden; 
}

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; width: 100%; max-width: 1920px; margin: 0 auto; z-index: 100; padding: 24px 100px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,10,11,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--rule); }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.08em; display: flex; align-items: center; gap: 10px; color: var(--white); }
.nav-logo::before { content: ''; width: 8px; height: 8px; background: var(--gold); display: block; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--white); }
.nav-cta { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 9px 22px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── SPLASH ── */
.splash { min-height: 100vh; background: var(--black); display: flex; align-items: center; justify-content: center; border-bottom: 2px solid var(--white); position: relative; overflow: hidden; }
.splash::before { content: 'WA POLICE'; position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px, 20vw, 280px); color: rgba(255,255,255,0.018); white-space: nowrap; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; letter-spacing: 0.05em; }
.splash-inner { text-align: center; position: relative; z-index: 1; padding: 40px; max-width: 1200px; }
.splash-stamp { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 48px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.splash-stamp::before,.splash-stamp::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.splash-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(100px, 14vw, 200px); line-height: 0.85; letter-spacing: 0.02em; color: var(--white); margin-bottom: 32px; }
.splash-subtitle { font-size: clamp(16px, 2.5vw, 22px); font-weight: 300; color: rgba(240,242,245,0.6); line-height: 1.6; margin-bottom: 12px; }
.splash-subtitle span { color: var(--gold); font-weight: 500; }
.splash-divider { width: 60px; height: 2px; background: var(--gold); margin: 28px auto; }
.splash-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 10px 28px; margin-bottom: 16px; }
.splash-sub { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 48px; }
.splash-cta { display: inline-block; background: var(--gold); color: var(--black); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 16px 40px; text-decoration: none; transition: opacity 0.2s; }
.splash-cta:hover { opacity: 0.85; }
.phase-badge { position: absolute; top: 28px; right: 32px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 8px 18px; z-index: 2; }

/* ── HERO ── */
.hero { min-height: 100vh; background: linear-gradient(160deg, var(--navy) 0%, #060C1E 60%, var(--black) 100%); display: flex; flex-direction: column; justify-content: center; padding: 160px 100px 120px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.015) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 80px); pointer-events: none; }
.hero-badge { position: absolute; top: 48px; right: 60px; border: 1px solid var(--gold); padding: 10px 20px; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.redact-block { display: inline-block; background: var(--white); color: var(--black); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 3px 10px; margin-bottom: 20px; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(90px, 9vw, 160px); line-height: 0.92; color: var(--white); margin-bottom: 28px; position: relative; z-index: 1; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 17px; font-weight: 300; color: rgba(240,242,245,0.7); max-width: 800px; margin-bottom: 44px; line-height: 1.7; }

/* trailer btn */
.trailer-btn { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 48px; background: rgba(201,168,76,0.1); border: 1px solid var(--gold); color: var(--gold); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 28px; transition: background 0.2s; }
.trailer-btn:hover { background: rgba(201,168,76,0.2); }
.trailer-play { font-size: 16px; line-height: 1; }

/* hero stats */
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 0; width: fit-content; }
.hero-stat-item { padding: 28px 48px 28px 0; border-right: 1px solid rgba(201,168,76,0.2); margin-right: 48px; }
.hero-stat-item:last-child { border-right: none; margin-right: 0; }
.hero-stat-item .num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 10vw, 140px); color: var(--gold); line-height: 0.9; display: block; letter-spacing: -0.01em; }
.hero-stat-item .label { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 8px; display: block; }

/* ── SECTION SHELLS ── */
.section { padding: 140px 100px; border-top: 1px solid var(--rule); max-width: 1600px; margin: 0 auto; }
.section-dark { background: var(--navy); border-top: 1px solid var(--rule); padding: 100px 0; }
.section-dark-inner { max-width: 1600px; margin: 0 auto; padding: 0 100px; }
.eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 8vw, 90px); line-height: 1; margin-bottom: 16px; }
.section-lead { font-size: 17px; font-weight: 300; color: rgba(240,242,245,0.65); max-width: 900px; line-height: 1.75; margin-bottom: 56px; }

/* ── UNITS ── */
.unit-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 32px; margin-bottom: 28px; }
.unit-pill { display: flex; align-items: center; gap: 10px; background: var(--navy-mid); border: 1px solid var(--rule); padding: 12px 20px; font-size: 13px; font-weight: 500; color: rgba(240,242,245,0.8); }
.unit-pill span { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--gold); line-height: 1; }
.doc-image-note { font-size: 12px; color: rgba(240,242,245,0.25); letter-spacing: 0.05em; border: 1px dashed rgba(201,168,76,0.15); padding: 20px 24px; text-align: center; }
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 32px; }
.showcase-item { aspect-ratio: 16/9; overflow: hidden; background: var(--navy-mid); }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.showcase-item:hover img { transform: scale(1.05); }

/* ── 6 BENEFITS ── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.benefit-card { background: var(--navy-mid); font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 6vw, 60px); letter-spacing: 0.04em; color: var(--white); padding: 40px 36px; line-height: 1; border-left: 3px solid var(--gold); transition: background 0.2s, color 0.2s; }
.benefit-card:hover { background: #172a5a; color: var(--gold); }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.why-card { background: var(--navy-mid); padding: 40px; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); }
.wc-industry { font-family: 'Bebas Neue', sans-serif !important; font-size: clamp(28px, 6vw, 60px) !important; letter-spacing: 0.04em !important; color: var(--gold) !important; margin-bottom: 14px !important; padding-left: 16px !important; line-height: 1 !important; text-transform: uppercase !important; }
.why-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.03em; margin-bottom: 10px; padding-left: 16px; }
.why-card p { font-size: 14px; color: rgba(240,242,245,0.6); line-height: 1.65; padding-left: 16px; }
.wc-proof { margin-top: 16px; padding: 12px 16px; background: rgba(201,168,76,0.08); font-size: 12px; color: var(--gold); font-weight: 500; }

/* ── AUDIENCE ── */
.audience-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }
.audience-hero-stat { background: var(--navy-mid); padding: 40px; }
.audience-hero-stat .big { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 10vw, 90px); color: var(--gold); line-height: 1; display: block; }
.audience-hero-stat .desc { font-size: 14px; color: rgba(240,242,245,0.6); margin-top: 8px; line-height: 1.5; }
.audience-hero-stat .title { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.demo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.demo-cell { background: #0F0F11; border: 1px solid var(--rule); padding: 28px 24px; }
.demo-cell .d-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.demo-cell .d-val { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 8vw, 40px); line-height: 1; margin-bottom: 6px; }
.demo-cell .d-sub { font-size: 12px; color: rgba(240,242,245,0.45); line-height: 1.5; }
.buys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 2px; }
.buys-cell { background: var(--navy-mid); padding: 24px 28px; display: flex; align-items: flex-start; gap: 14px; }
.buys-icon { font-size: 22px; flex-shrink: 0; }
.buys-cell .b-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; letter-spacing: 0.02em; }
.buys-cell .b-sub { font-size: 12px; color: rgba(240,242,245,0.45); line-height: 1.5; }

/* ── NO BRAINER ── */
.nobrainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 8px; }
.nb-card { background: #0F0F11; border: 1px solid var(--rule); padding: 36px 28px; }
.nb-card.highlight { background: var(--navy-mid); border-color: var(--gold); }
.nb-card .nb-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 9vw, 80px); color: var(--gold); line-height: 1; margin-bottom: 10px; }
.nb-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 10px; letter-spacing: 0.02em; }
.nb-card p { font-size: 13px; color: rgba(240,242,245,0.5); line-height: 1.65; }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.package-card { background: #0F0F11; border: 1px solid var(--rule); padding: 44px 32px; position: relative; }
.package-card.featured { background: var(--navy-mid); border: 1px solid var(--gold); }
.featured-badge { position: absolute; top: -1px; right: 24px; background: var(--gold); color: var(--black); font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px; }
.package-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.package-card.featured .package-tag { color: var(--gold); }
.package-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 8vw, 48px); letter-spacing: 0.04em; margin-bottom: 6px; }
.package-price { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 10vw, 64px); color: var(--gold); line-height: 1; margin-bottom: 28px; }
.package-price sup { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; color: var(--muted); vertical-align: super; }
.package-divider { height: 1px; background: var(--rule); margin-bottom: 24px; }
.package-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.package-list li { font-size: 13px; color: rgba(240,242,245,0.7); padding-left: 18px; position: relative; line-height: 1.5; }
.package-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }
.package-list li.highlight-border { border: 1px solid var(--gold); padding: 8px 16px 8px 32px; margin-top: 4px; display: inline-block; color: var(--gold); }
.package-list li.highlight-border::before { left: 12px; top: 9px; }

/* ── REACH ── */
.reach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 48px; }
.reach-cell { background: var(--navy-mid); padding: 40px 28px; text-align: center; }
.reach-cell .big { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 8vw, 64px); color: var(--gold); line-height: 1; display: block; }
.reach-cell .reach-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }
.reach-cell .reach-sub { font-size: 12px; color: rgba(240,242,245,0.35); margin-top: 6px; }

/* ── LOGOS ── */
.logos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 40px; }
.logo-tile { background: #111; display: flex; align-items: center; justify-content: center; padding: 28px 20px; min-height: 90px; border: 1px solid var(--rule); overflow: hidden; }
.logo-tile img { max-width: 180px; max-height: 80px; width: 100%; object-fit: contain; transform: scale(var(--scale, 1)); transition: transform 0.3s ease; }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: rgba(240,242,245,0.35); letter-spacing: 0.08em; text-align: center; }
.media-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: nowrap; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--rule); max-width: 100%; }
.media-row img { max-height: 48px; width: auto; object-fit: contain; flex-shrink: 1; min-width: 0; transform: scale(var(--scale, 1)); transition: transform 0.3s ease; }
.media-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }

/* ── FOUNDER ── */
.founder-section { border-top: 1px solid var(--rule); padding: 140px 100px; background: var(--black); }
.founder-inner { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.founder-img-slot { aspect-ratio: 3/4; background: var(--navy-mid); border: 1px dashed rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; }
.founder-img-placeholder { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,242,245,0.2); text-align: center; padding: 20px; }
.founder-quote { font-size: 18px; font-weight: 300; color: rgba(240,242,245,0.8); line-height: 1.75; font-style: italic; margin-bottom: 20px; border-left: 3px solid var(--gold); padding-left: 20px; }
.founder-bio { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #060C1E 100%); padding: 160px 100px; text-align: center; border-top: 1px solid var(--rule); position: relative; overflow: hidden; }
.cta-section::before { content: 'INSIDE WA POLICE'; position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 15vw, 200px); color: rgba(255,255,255,0.018); white-space: nowrap; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 8vw, 120px); margin-bottom: 16px; position: relative; }
.cta-section .cta-lead { font-size: 15px; color: rgba(240,242,245,0.5); margin-bottom: 44px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; margin-bottom: 36px; }
.btn-primary { background: var(--gold); color: var(--black); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 18px 40px; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.85; }
.btn-ghost { background: transparent; color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 18px 40px; text-decoration: none; display: inline-block; border: 1px solid rgba(240,242,245,0.2); transition: border-color 0.2s; }
.btn-ghost:hover { border-color: rgba(240,242,245,0.5); }
.urgency { font-size: 12px; color: var(--muted); position: relative; }
.urgency strong { color: var(--gold); }

/* ── CONTACT BAR ── */
.contact-bar { background: var(--navy-mid); border-top: 2px solid var(--gold); padding: 40px 100px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-item:hover { color: var(--gold); }
.contact-item .ci-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── EDIT TOOLBAR ── */
.edit-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; display: flex; align-items: center; gap: 10px;
  background: rgba(10,10,11,0.97); border: 1px solid var(--gold);
  padding: 12px 20px; backdrop-filter: blur(16px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  white-space: nowrap; border-radius: 2px;
}
.edit-bar-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.eb-sep { width: 1px; height: 20px; background: var(--rule); }
.edit-btn { background: transparent; color: var(--muted); border: 1px solid var(--rule); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.edit-btn:hover { border-color: var(--gold); color: var(--gold); }
.edit-btn.primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.edit-btn.primary:hover { opacity: 0.85; }
.edit-btn.danger { border-color: #e74c3c; color: #e74c3c; }
.edit-btn.danger:hover { background: #e74c3c; color: #fff; }
.edit-hint { font-size: 10px; color: rgba(201,168,76,0.6); letter-spacing: 0.08em; }
.toast { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 10px 28px; z-index: 9999; opacity: 0; transition: opacity 0.3s; pointer-events: none; border-radius: 1px; }
.toast.show { opacity: 1; }

/* ── EDIT MODE STYLES ── */
body.edit-mode [data-editable] { outline: 1px dashed rgba(201,168,76,0.4); cursor: text; border-radius: 2px; min-width: 20px; min-height: 1em; }
body.edit-mode [data-editable]:hover { outline: 1px solid rgba(201,168,76,0.8); background: rgba(201,168,76,0.04); }
body.edit-mode [data-editable]:focus { outline: 2px solid var(--gold); background: rgba(201,168,76,0.07); box-shadow: 0 0 0 4px rgba(201,168,76,0.08); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  nav { padding: 24px 48px; }
  .hero { padding: 140px 48px 80px; }
  .section { padding: 100px 48px; }
  .section-dark-inner { padding: 0 48px; }
  .founder-section { padding: 100px 48px; }
  .cta-section { padding: 100px 48px; }
  .contact-bar { padding: 32px 48px; }
  .founder-inner { grid-template-columns: 300px 1fr; gap: 48px; }
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .reach-grid { grid-template-columns: repeat(2, 1fr); }
  .buys-grid, .unit-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 64px; }
  .hero-badge { position: absolute; top: 32px; right: 24px; margin-bottom: 0; width: auto; padding: 8px 16px; font-size: 9px; }
  .section { padding: 72px 24px; }
  .section-dark-inner { padding: 0 24px; }
  .audience-intro,.why-grid,.founder-inner { grid-template-columns: 1fr; }
  .demo-grid,.showcase-grid,.unit-strip { grid-template-columns: 1fr 1fr; }
  .reach-grid { grid-template-columns: 1fr 1fr; }
  .buys-grid,.nobrainer-grid,.packages-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-tile img { transform: scale(calc(var(--scale, 1) * 0.7)); }
  .media-row { flex-wrap: wrap; justify-content: center; gap: 24px 32px; padding-top: 24px; }
  .media-label { flex-basis: 100%; text-align: center; margin-bottom: 8px; }
  .media-row img { max-height: 36px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 0; }
  .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); margin-right: 0; padding: 20px 0; }
  .hero-stat-item:last-child { border-bottom: none; }
  .cta-section { padding: 80px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 320px; text-align: center; padding: 16px 24px; }
  .contact-bar { padding: 28px 24px; gap: 20px; flex-direction: column; align-items: flex-start; }
  .founder-section { padding: 72px 24px; }
  .edit-bar { max-width: calc(100vw - 32px); flex-wrap: wrap; justify-content: center; bottom: 16px; }
  .founder-img-slot { max-width: 320px; margin: 0 auto; aspect-ratio: 3/4; border-radius: 4px; }
}

@media (max-width: 600px) {
  .hero-badge { top: 24px; right: 16px; padding: 6px 12px; font-size: 8px; }
  .splash-title { font-size: clamp(60px, 14vw, 100px); }
  .splash-subtitle { font-size: clamp(10px, 3.5vw, 13px); white-space: nowrap; }
  .hero h1 { font-size: clamp(50px, 9vw, 90px); }
  .demo-grid,.reach-grid,.showcase-grid { grid-template-columns: 1fr; }
  .unit-strip { grid-template-columns: 1fr; }
  .logo-tile img { transform: scale(calc(var(--scale, 1) * 0.5)); }
  .media-row img { max-height: 28px; }
  .founder-img-slot { max-width: 250px; }
  .trailer-btn { padding: 12px 20px; font-size: 11px; }
  .hero-eyebrow { font-size: 9px; flex-wrap: wrap; }
  .redact-block { font-size: 9px; }
}
