/* E-IX — custom theme (dark-first, light via data-theme="light") */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.11.0/dist/tabler-icons.min.css');

/* ─── DESIGN TOKENS (dark default) ─── */
:root {
  --bg:               #150f1e;
  --surface:          #1c1626;
  --surface-2:        rgba(255,255,255,0.04);
  --border:           rgba(255,255,255,0.08);
  --text-primary:     #f2f0f7;
  --text-secondary:   #a39dbd;
  --text-emphasis:    #c9c4d9;
  --text-muted:       #8a84a0;
  --accent:           #f472b6;
  --active-tab-bg:    rgba(244,114,182,0.12);
  --active-tab-border:rgba(244,114,182,0.3);
  --green:            #2fbf71;
  --green-bg:         #0f2a1c;
  --icon-tile-bg:     rgba(244,114,182,0.1);
  --logo-gradient:    linear-gradient(135deg, #ff4d94, #a78bfa);
  --btn-gradient:     linear-gradient(90deg, #ff4d94, #a78bfa);
}

/* Light theme */
[data-theme="light"] {
  --bg:             #faf8fc;
  --surface:        #ffffff;
  --surface-2:      #f5f3fa;
  --border:         #ece8f3;
  --text-primary:   #1a1625;
  --text-secondary: #6b6480;
  --text-emphasis:  #4a4560;
  --text-muted:     #948da8;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ─── PAGE GLOW (dark only) ─── */
body:not([data-theme="light"])::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 500px;
  background: radial-gradient(ellipse 900px 400px at 50% 0%, rgba(168,85,247,0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  height: 60px;
}

/* Logo */
.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo { width: 28px; height: 28px; border-radius: 50%; }
.brand-name { font-size: 17px; font-weight: 800; color: var(--accent); }

/* Pill nav */
.pill-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  margin: 0 auto;
}
.pill-nav-item {
  position: relative;
}
.pill-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  white-space: nowrap;
  transition: color 0.15s;
  text-decoration: none;
}
.pill-tab:hover { color: var(--text-primary); text-decoration: none; }
.pill-tab.active {
  background: var(--active-tab-bg);
  border-color: var(--active-tab-border);
  color: var(--text-primary);
}

/* Download dropdown */
.pill-nav-item .dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  min-width: 220px;
  padding-top: 8px;
  display: none;
  z-index: 200;
}
.pill-nav-item:hover .dropdown-panel,
.pill-nav-item.open .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-emphasis);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.dropdown-panel a:last-child { border-bottom: none; }
.dropdown-panel a:hover { color: var(--text-primary); background: var(--surface-2); }

/* Right side controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.btn-theme, .btn-lang {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.btn-theme:hover, .btn-lang:hover { color: var(--text-primary); }
.btn-signin {
  padding: 6px 14px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn-signin:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.btn-cta {
  padding: 7px 16px;
  border-radius: 9px;
  background: var(--btn-gradient);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta:hover { opacity: 0.9; text-decoration: none; }
.btn-cta-ghost {
  padding: 7px 16px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* Language dropdown in nav-right */
.nav-right .dropdown { position: relative; }
.nav-right .dropdown .dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  transform: none;
  min-width: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  padding-top: 8px;
  z-index: 200;
}
.nav-right .dropdown.open .dropdown-panel { display: block; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-primary);
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  flex-shrink: 0;
}

/* Mobile menu — hidden by default at all widths */
.nav-links { display: none; }

/* ─── MOBILE NAV ─── */
@media (max-width: 899px) {
  .pill-nav { display: none; }
  .nav-right .btn-theme,
  .nav-right .btn-signin,
  .nav-right .btn-cta { display: none; }
  .nav-right .dropdown { display: none; }
  .nav-toggle { display: block; }
  .nav { padding-right: 8px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 28px;
    gap: 0;
    z-index: 99;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
  }
  .nav-links a:last-child { border-bottom: none; }

  .mobile-lang {
    padding-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .mobile-lang a {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-secondary);
  }
  .mobile-lang a.active { border-color: var(--accent); color: var(--accent); }

  .mobile-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    text-align: center;
  }
  .mobile-cta a { width: 100%; text-align: center; }
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-logo { width: 20px; height: 20px; border-radius: 50%; }
.footer-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-right a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}
.footer-right a:hover { color: var(--text-primary); }

/* ─── LAYOUT WRAPPER ─── */
.page-content { position: relative; z-index: 1; }

/* ─── HERO ─── */
.hero {
  padding: 56px 28px 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.available-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.available-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.platform-tile {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  text-decoration: none;
}
.platform-tile i { font-size: 22px; color: var(--text-primary); }
.platform-tile .ti-brand-android { color: var(--green); }
.platform-tile .ti-brand-windows { color: var(--accent); }
.platform-tile:hover { border-color: var(--accent); text-decoration: none; }

/* ─── SECTIONS ─── */
section { padding: 8px 28px 48px; position: relative; z-index: 1; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.section-head { margin-bottom: 24px; }
.section-head h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.section-head p { color: var(--text-secondary); }

/* ─── FEATURE STRIP ─── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.icon-tile {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--icon-tile-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.icon-tile i { font-size: 18px; color: var(--accent); }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); }

/* ─── WIDE CARDS ─── */
.wide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  max-width: 1100px;
  margin: 0 auto 16px;
}
.wide-card-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.wide-card p { color: var(--text-secondary); margin-bottom: 16px; }
.stat-big { font-size: 44px; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ─── PRICING ─── */
.pricing-section { padding: 56px 28px 48px; }
.pricing-section h1 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.pricing-section .sub { color: var(--text-secondary); margin-bottom: 28px; }
.filter-row { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
}
.filter-btn.active { color: var(--text-primary); border-color: var(--accent); }
.filter-btn i { color: var(--accent); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 20px;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.plan-card .btn-cta { display: block; width: 100%; text-align: center; margin-top: 16px; }
.plan-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.plan-name { font-size: 17px; font-weight: 700; }
.stock-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
}
.plan-price { font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.price-suffix { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.billing-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 16px;
}
.chip {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
}
.chip.sel {
  background: var(--active-tab-bg);
  border-color: var(--active-tab-border);
  color: var(--text-primary);
}
.chip .chk { color: var(--green); }
.chip .cross { color: var(--text-muted); }
.payment-note {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 1100px;
  margin: 0 auto;
}
.payment-note i { font-size: 18px; color: var(--accent); flex-shrink: 0; }

/* ─── DOWNLOAD ─── */
.dl-section { padding: 56px 28px 48px; }
.dl-section h1 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.dl-section .sub { color: var(--text-secondary); margin-bottom: 28px; }
.platform-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.platform-card i { font-size: 28px; color: var(--text-primary); }
.platform-card .ti-brand-android { color: var(--green); }
.platform-card .ti-brand-windows { color: var(--accent); }
.platform-card h3 { font-size: 16px; font-weight: 700; }
.platform-card .version { font-size: 12px; color: var(--text-muted); }
.platform-card .btn-cta { width: 100%; text-align: center; margin-top: auto; }
.clash-section { max-width: 1100px; margin: 0 auto 32px; }
.clash-section .eyebrow { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.clash-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.clash-list { display: flex; flex-direction: column; gap: 0; }
.clash-row {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
}
.clash-row:first-child { border-radius: 14px 14px 0 0; }
.clash-row:last-child { border-radius: 0 0 14px 14px; border-top: none; }
.clash-row:only-child { border-radius: 14px; }
.clash-row:not(:first-child) { border-top: none; }
.clash-icon { flex-shrink: 0; }
.clash-info { flex: 1; }
.clash-info h4 { font-size: 15px; font-weight: 700; }
.clash-info p { font-size: 12px; color: var(--text-muted); }
.clash-row .ext-icon { color: var(--text-muted); }
.dl-closing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Platform download page */
.platform-switcher { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.platform-chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}
.platform-chip.active {
  background: var(--active-tab-bg);
  border-color: var(--active-tab-border);
  color: var(--text-primary);
}
.platform-chip:hover { text-decoration: none; border-color: var(--accent); color: var(--accent); }
.dl-platform-section { padding: 40px 28px 48px; max-width: 900px; margin: 0 auto; }
.dl-platform-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.dl-platform-head i { font-size: 28px; }
.dl-platform-head h1 { font-size: 24px; font-weight: 700; }
.dl-platform-req { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.dl-app-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.dl-app-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.dl-app-info p { font-size: 12px; color: var(--text-muted); }
.dl-steps-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-top: 20px; }
.dl-steps-card .eyebrow { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.dl-step { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.dl-step:last-child { border-bottom: none; }
.dl-step-num { font-size: 16px; font-weight: 800; color: var(--accent); min-width: 20px; }
.dl-step p { font-size: 14px; color: var(--text-emphasis); }

/* ─── AFFILIATE ─── */
.aff-section { padding: 56px 28px 48px; }
.aff-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; max-width: 1100px; margin: 0 auto 40px; }
.aff-eyebrow { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.aff-h1 { font-size: 30px; font-weight: 800; line-height: 1.28; margin-bottom: 14px; }
.aff-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; max-width: 480px; }
.aff-stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 32px 40px; text-align: center; }
.aff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 1100px; margin: 0 auto 32px; }
.aff-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.aff-card .step-num { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.worked-example { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; max-width: 1100px; margin: 0 auto 32px; }
.worked-example .eyebrow { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.example-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.example-col { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; flex: 1; min-width: 140px; }
.example-col .label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.example-col .value { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.example-col .value.earn { color: var(--green); }
.arrow-sep { color: var(--text-muted); font-size: 18px; }
.aff-closing { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; max-width: 1100px; margin: 0 auto; text-align: center; }
.aff-closing h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.aff-closing p { color: var(--text-secondary); margin-bottom: 20px; }

/* ─── PROSE (privacy/terms) ─── */
.prose-section { padding: 56px 28px 48px; }
.prose-section h1 { font-size: 26px; font-weight: 700; margin-bottom: 24px; }
.prose-inner { max-width: 760px; }
.prose-inner h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.prose-inner p { margin-bottom: 14px; color: var(--text-secondary); }
.prose-inner ul { padding-left: 20px; color: var(--text-secondary); margin-bottom: 14px; }
.prose-inner li { margin-bottom: 6px; }

/* ─── FAQ ─── */
.faq-section { padding: 8px 28px 48px; }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text-primary); font-size: 15px; font-weight: 600;
  padding: 16px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 18px; color: var(--text-muted); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding-bottom: 14px; color: var(--text-secondary); font-size: 14px; }
.faq-item.open .faq-a { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1023px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: repeat(2, 1fr); }
  .aff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .aff-hero-grid { grid-template-columns: 1fr; }
  .aff-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { text-align: center; width: 100%; max-width: 320px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .dl-platform-section { padding: 28px 20px 40px; }
  /* §14: all CTA buttons centered at mobile */
  .btn-cta { display: block; text-align: center; margin-left: auto; margin-right: auto; }
  /* Stack download app cards vertically so CTA stays centered */
  .dl-app-card { flex-direction: column; align-items: center; text-align: center; }
  .dl-app-info { text-align: center; }
}
@media (max-width: 479px) {
  .nav { padding: 0 8px 0 16px; }
  section { padding: 8px 16px 36px; }
  .pricing-section, .dl-section, .aff-section, .prose-section { padding-left: 16px; padding-right: 16px; }
}
