/* ============================================================
   BogeyHunter — Design System
   Shared CSS across all pages
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Tokens */
:root {
  --bg: #0f1a14;
  --bg-elevated: #141f19;
  --bg-card: rgba(30, 48, 38, 0.5);
  --border: rgba(60, 90, 72, 0.25);
  --border-light: rgba(60, 90, 72, 0.15);
  --accent: #2ea854;
  --accent-light: #36c462;
  --accent-glow: rgba(46, 168, 84, 0.15);
  --gold: #d4a017;
  --cream: #e2dbd0;
  --muted: #8da396;
  --dim: #5a7565;
  --deep: #3a5045;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
}

/* Links */
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  background: rgba(15, 26, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
}
.header-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.header-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.header-logo .hl { color: var(--accent); }

/* Desktop nav */
.header-nav {
  display: flex;
  gap: 0;
  align-items: center;
}
.header-nav > a,
.header-nav .nav-dropdown > .nav-trigger {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dim);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.header-nav > a:hover,
.header-nav .nav-dropdown:hover > .nav-trigger,
.header-nav .nav-dropdown > .nav-trigger:hover { color: var(--cream); }
.header-nav > a.active,
.header-nav .nav-dropdown.active > .nav-trigger { color: var(--accent); }

/* Dropdown arrow */
.nav-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(15, 26, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
  color: var(--cream);
  background: rgba(46, 168, 84, 0.08);
}
.nav-dropdown-menu a.active {
  color: var(--accent);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile slide-out panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(15, 26, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border);
  padding: 80px 1.5rem 2rem;
  transition: right 0.3s ease;
  z-index: 105;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 104;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; }

.mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:hover { color: var(--cream); }
.mobile-nav a.active { color: var(--accent); }

/* Mobile accordion sections */
.mobile-nav-section {
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.mobile-nav-section-title svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  color: var(--dim);
}
.mobile-nav-section.open .mobile-nav-section-title svg {
  transform: rotate(180deg);
}
.mobile-nav-section-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav-section.open .mobile-nav-section-links {
  max-height: 200px;
}
.mobile-nav-section-links a {
  padding-left: 1rem;
  font-size: 0.82rem;
  border-bottom: none;
}

/* Noscript fallback */
noscript .noscript-nav {
  background: var(--bg-elevated);
  padding: 0.8rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  margin-top: 64px;
}
noscript .noscript-nav a {
  color: var(--muted);
  margin: 0 0.8rem;
  font-size: 0.82rem;
}

/* ===== SHARED LAYOUT ===== */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.section { padding: 6rem 0; position: relative; }
.section + .section { border-top: 1px solid var(--border-light); }

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.platform-tag {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 0.15em 0.5em;
  vertical-align: middle;
  white-space: nowrap;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 0.8rem 0;
  font-size: 0.72rem;
  color: var(--dim);
}
.breadcrumbs a {
  color: var(--dim);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--cream); }
.breadcrumbs .sep { margin: 0 0.4rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 50% 35%, rgba(46, 168, 84, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(46, 168, 84, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }

.hero-logo { width: 72px; height: 72px; margin-bottom: 2rem; filter: drop-shadow(0 0 24px rgba(46,168,84,0.12)); }
.wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.wordmark-green {
  background: linear-gradient(135deg, #36c462, #2ea854, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 2.5rem;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 2.5rem;
}
.hero-tagline {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* Stats strip */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 2px;
  border-radius: 10px;
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.75rem;
  text-align: center;
  flex: 1;
  min-width: 0;
}
.stat-item:first-child { border-radius: 10px 0 0 10px; }
.stat-item:last-child { border-radius: 0 10px 10px 0; }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  background: linear-gradient(135deg, #36c462, #2ea854);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.6rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== PLATFORM ROWS ===== */
.platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.platform-row:last-child { margin-bottom: 0; }
.platform-row.reverse .platform-text { order: 2; }
.platform-row.reverse .platform-visual { order: 1; }

.platform-visual {
  background: rgba(20, 34, 26, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.platform-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}
.platform-visual .placeholder-text {
  font-size: 0.7rem;
  color: var(--deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.platform-text .section-label { margin-bottom: 0.75rem; }
.platform-text .section-title { font-size: 1.4rem; margin-bottom: 0.75rem; }
.platform-text .section-desc { font-size: 0.88rem; margin-bottom: 1.25rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-list li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

/* ===== PLATFORM CARDS (Landing page) ===== */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.platform-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.platform-card:hover {
  border-color: rgba(46, 168, 84, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.platform-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.platform-card-body {
  padding: 1.5rem;
}
.platform-card-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.platform-card-body .feature-list { margin-bottom: 1.25rem; }
.platform-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.platform-card-link:hover { gap: 0.6rem; }
.platform-card-link svg { width: 14px; height: 14px; }

/* Phone frame for mobile screenshots */
.phone-frame {
  max-width: 180px;
}
.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

/* ===== COACH CARD ===== */
.coach-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  position: relative;
}
.coach-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(46,168,84,0.2));
  border-radius: 2px;
}
.coach-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 15%;
  border: 2px solid rgba(46, 168, 84, 0.35);
  box-shadow: 0 0 16px rgba(46, 168, 84, 0.1);
  flex-shrink: 0;
}
.coach-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.coach-role {
  font-size: 0.72rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.coach-quote {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* ===== SCREENSHOTS ===== */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.screenshot-frame {
  background: rgba(20, 34, 26, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
}
.screenshot-frame:hover {
  border-color: rgba(46, 168, 84, 0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}
.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.screenshot-frame .placeholder-text {
  font-size: 0.65rem;
  color: var(--deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.screenshot-frame.mobile {
  aspect-ratio: 9/19;
  max-width: 200px;
  justify-self: center;
}
.screenshots-mobile {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Screenshot with caption */
.screenshot-captioned { text-align: center; }
.screenshot-captioned .caption {
  font-size: 0.75rem;
  color: var(--dim);
  margin-top: 0.5rem;
}

/* ===== CTA / COMING SOON ===== */
.cta-card {
  text-align: center;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 12px;
  padding: 3rem;
  max-width: 640px;
  margin: 0 auto;
}
.cta-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cta-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.cta-card p:last-child { margin-bottom: 0; }
.cta-card strong { color: var(--cream); }

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  text-align: center;
}
.footer-links {
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--dim);
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-links a:hover { color: var(--muted); }
.footer-contact { font-size: 0.8rem; color: var(--dim); margin-bottom: 0.4rem; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-contact a:hover { color: var(--accent-light); }
.footer-copy { font-size: 0.68rem; color: rgba(90,117,101,0.5); margin-top: 0.4rem; }
.footer-copy a { color: rgba(90,117,101,0.5); text-decoration: none; }
.footer-copy a:hover { color: var(--muted); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }

/* ===== CONTENT PAGES (prose) ===== */
.content {
  max-width: 740px;
  margin: 0 auto;
  padding: 120px clamp(1.5rem, 4vw, 3rem) 80px;
}

.content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.effective-date,
.subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}

.content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.content p,
.content li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.content ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.content li { margin-bottom: 0.4rem; }

.highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
}
.highlight p { margin-bottom: 0; }

/* Rating badge (age-rating page) */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(46, 168, 84, 0.12);
  border: 1px solid rgba(46, 168, 84, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
}
th, td {
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border-light);
}
th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
td { color: var(--cream); }
.none { color: var(--accent); font-weight: 500; }

/* Code */
code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.84rem;
  background: rgba(30, 48, 38, 0.6);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

/* Verdict badge (encryption page) */
.verdict {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2em 0.6em;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.verdict-exempt { background: rgba(46,168,84,0.15); color: var(--accent); }

/* ===== INFO CARD ===== */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.info-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  margin-top: 0;
}
.info-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.info-card a { font-weight: 500; }

/* ===== WIDE CONTENT (for sub-pages with broader layouts) ===== */
.content-wide {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px clamp(1.5rem, 4vw, 3rem) 80px;
}

/* Page header for sub-pages */
.page-header {
  margin-bottom: 3rem;
}
.page-header .section-label { margin-bottom: 0.5rem; }
.page-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .mobile-nav-overlay { display: block; }

  .platform-row { grid-template-columns: 1fr; gap: 2rem; }
  .platform-row.reverse .platform-text { order: 1; }
  .platform-row.reverse .platform-visual { order: 2; }

  .platform-cards { grid-template-columns: 1fr; }

  .screenshots-grid { grid-template-columns: 1fr; }
  .screenshots-mobile { flex-direction: column; align-items: center; }

  .stats-strip { flex-direction: column; border-radius: 10px; }
  .stat-item:first-child { border-radius: 10px 10px 0 0; }
  .stat-item:last-child { border-radius: 0 0 10px 10px; }

  .hero { min-height: auto; padding: 8rem 1.5rem 4rem; }
}
