:root {
  --bg-deep: #0B2417;
  --bg-panel: #0F2E1C;
  --bg-card: #133922;
  --bg-elev: #1A4A2C;
  --bg-elev2: #225a37;
  --border: #1F5A36;
  --border-soft: #1a4a2c;
  --accent: #C8FF3A;
  --accent-hover: #B7EE2A;
  --accent-text: #0B2417;
  --text: #FFFFFF;
  --text-muted: #B8CFC1;
  --text-dim: #7E9A89;
  --warn: #FFB020;
  --success: #4ADE80;
  --danger: #FF5A5A;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-8: 48px;
  --sp-10: 64px;
  --sp-12: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-tile: 0 4px 14px rgba(0,0,0,.35);
  --shadow-elev: 0 10px 30px rgba(0,0,0,.45);
  --shadow-glow: 0 6px 16px rgba(200,255,58,.25);

  --header-h: 64px;
  --sidebar-w: 220px;
  --content-max: 1320px;
  --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-stack);
  background: var(--bg-deep);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-text);
  padding: 10px 14px; border-radius: var(--radius-sm); font-weight: 700; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .04em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  line-height: 1.25;
  text-align: center;
  max-width: 100%;
  word-break: break-word;
}
.site-header .btn-primary, .site-header .btn-ghost { white-space: nowrap; }
.btn-primary { background: var(--accent); color: var(--accent-text); box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--accent-hover); color: var(--accent-text); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--accent); }
.btn-ghost:hover { background: rgba(200,255,58,.08); color: var(--text); }
.btn-block { width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,36,23,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--header-h);
}
.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-5);
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 800; font-size: 18px; letter-spacing: .02em;
}
.logo img { height: 38px; width: auto; }
.logo span { display: inline-block; }

.nav-primary { display: flex; align-items: center; gap: var(--sp-2); margin-left: var(--sp-5); }
.nav-primary a {
  color: var(--text); padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
}
.nav-primary a:hover { background: var(--bg-elev); color: var(--text); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: var(--sp-3); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  color: var(--text);
}
.hamburger span {
  display: block; width: 18px; height: 2px; background: currentColor;
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

.page {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0,1fr);
  max-width: var(--content-max);
  margin: 0 auto;
  gap: 0;
  align-items: start;
}

.sidebar {
  background: var(--bg-panel);
  padding: var(--sp-5) var(--sp-3);
  position: sticky;
  top: var(--header-h);
  border-right: 1px solid var(--border-soft);
  align-self: stretch;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.sidebar__title {
  text-transform: uppercase; font-size: 11px; letter-spacing: .12em;
  color: var(--text-dim); padding: 4px 12px var(--sp-2);
}
.sidebar__nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar__nav a {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
}
.sidebar__nav a:hover { background: var(--bg-elev); color: var(--text); }
.sidebar__nav a svg { flex: 0 0 18px; width: 18px; height: 18px; opacity: .85; }

main { min-width: 0; padding: var(--sp-5) var(--sp-5) var(--sp-8); }

.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: var(--sp-6);
}
.hero__media {
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 220px;
  background: linear-gradient(135deg, #1a4a2c, #0b2417);
  overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,36,23,.92) 0%, rgba(11,36,23,.55) 50%, rgba(11,36,23,.15) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--sp-6) var(--sp-8);
  gap: var(--sp-3);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,255,58,.12);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.hero__headline {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  max-width: 640px;
}
.hero__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-muted);
  max-width: 540px;
}
.hero__ctas { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); flex-wrap: wrap; }

.chips {
  display: flex; gap: var(--sp-2);
  overflow-x: auto;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-2);
  scrollbar-width: thin;
}
.chips::-webkit-scrollbar { height: 6px; }
.chips::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-pill); }
.chips a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.chips a:hover { background: var(--bg-elev); color: var(--text); border-color: var(--accent); }

.slot-section { margin-bottom: var(--sp-6); }
.slot-section__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-4);
  gap: var(--sp-3);
}
.section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; letter-spacing: .01em;
}
.section-title::before {
  content: ""; display: inline-block; width: 4px; height: 22px;
  background: var(--accent); border-radius: 2px;
}
.section-more {
  font-size: 13px; font-weight: 700; color: var(--text-muted); padding: 6px 10px;
  border-radius: var(--radius-sm);
}
.section-more:hover { color: var(--accent); background: var(--bg-elev); }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--sp-3);
}
.slot-tile {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease, outline-color .15s ease;
  outline: 2px solid transparent;
}
.slot-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elev);
  outline-color: var(--accent);
}
.slot-tile__img {
  aspect-ratio: 1 / 1.4;
  overflow: hidden;
  background: var(--bg-elev);
}
.slot-tile__img img { width: 100%; height: 100%; object-fit: cover; }
.slot-tile__name {
  padding: 8px 10px 4px;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.slot-tile__cta {
  padding: 0 10px 10px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.slot-tile__cta::after { content: " ▸"; }

.seo-content {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 48px);
  margin-top: var(--sp-8);
}
.seo-content__inner { max-width: 820px; margin: 0 auto; }
.seo-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; line-height: 1.15;
  margin: 0 0 var(--sp-5);
  color: var(--text);
}
.seo-content h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin: var(--sp-8) 0 var(--sp-4);
  padding-left: var(--sp-3);
  border-left: 4px solid var(--accent);
  color: var(--text);
}
.seo-content h3 {
  font-size: 20px; font-weight: 700;
  margin: var(--sp-6) 0 var(--sp-3);
  color: var(--text);
}
.seo-content h4 {
  font-size: 17px; font-weight: 700;
  margin: var(--sp-5) 0 var(--sp-2);
  color: var(--text);
}
.seo-content p {
  margin: 0 0 var(--sp-4);
  color: var(--text-muted);
  line-height: 1.7;
}
.seo-content strong { color: var(--text); }
.seo-content em { color: var(--text); }
.seo-content ul, .seo-content ol { margin: 0 0 var(--sp-4); padding-left: 22px; color: var(--text-muted); }
.seo-content li { margin-bottom: 6px; line-height: 1.6; }
.seo-content li::marker { color: var(--accent); }
.seo-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.seo-content a:hover { color: var(--accent-hover); }
.seo-content a.btn-primary,
.seo-content a.btn-ghost { text-decoration: none; }
.seo-content a.btn-primary,
.seo-content a.btn-primary:hover { color: var(--accent-text); }
.seo-content a.btn-ghost,
.seo-content a.btn-ghost:hover { color: var(--text); }
.seo-content hr { border: 0; height: 1px; background: var(--border); margin: var(--sp-6) 0; }
.seo-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 16px;
  background: var(--bg-elev);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  margin: var(--sp-4) 0;
}

.cta-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin: var(--sp-5) 0 !important; }
.cta-row .btn-primary, .cta-row .btn-ghost { flex: 0 1 auto; min-width: 0; }
@media (max-width: 540px) {
  .cta-row .btn-primary, .cta-row .btn-ghost { flex: 1 1 100%; }
}

.table-scroll {
  overflow-x: auto;
  margin: 0 0 var(--sp-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-elev);
  -webkit-overflow-scrolling: touch;
}
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.seo-content thead th {
  background: var(--bg-elev2);
  color: var(--text);
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.seo-content tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  vertical-align: top;
}
.seo-content tbody tr:nth-child(even) td { background: rgba(26,74,44,.4); }
.seo-content tbody tr:last-child td { border-bottom: 0; }

.faq { display: flex; flex-direction: column; gap: var(--sp-2); }
.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  margin: 0; font-size: 16px; font-weight: 700;
  flex: 1;
}
.faq-item summary::after {
  content: "+";
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%; background: var(--bg-card);
  color: var(--accent); font-weight: 800;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 18px 16px;
  color: var(--text-muted);
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

.split-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  align-items: stretch;
}
.split-hero__form, .split-hero__visual {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.split-hero__form .hero__eyebrow { margin-bottom: var(--sp-3); }
.split-hero__form .hero__headline { font-size: clamp(22px, 3vw, 32px); }
.split-hero__visual { padding: 0; overflow: hidden; position: relative; min-height: 260px; }
.split-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.split-hero__visual .hero__overlay { padding: var(--sp-5); }

.mock-form { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3); }
.mock-input {
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none;
  cursor: pointer;
}
.mock-input__label {
  font-size: 13px; color: var(--text-muted); font-weight: 600;
}
.mock-input__field {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  width: 100%;
  transition: border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.mock-input:hover .mock-input__field,
.mock-input:focus .mock-input__field {
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(200,255,58,.15);
}
.mock-form .form-row { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); }
.mock-form .form-row a { font-size: 13px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  position: relative;
}
.step-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%; font-weight: 800; font-size: 14px;
  margin-bottom: var(--sp-3);
}
.step-card__title { font-weight: 700; margin-bottom: 6px; }
.step-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.bonus-tier-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.bonus-tier {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-panel) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  text-align: center;
  position: relative;
}
.bonus-tier__label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-dim); font-weight: 700; margin-bottom: var(--sp-2);
}
.bonus-tier__value { font-size: 24px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.bonus-tier__sub { font-size: 13px; color: var(--text-muted); }

.app-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  margin-bottom: var(--sp-6);
  overflow: hidden;
}
.app-hero__phone {
  display: flex; justify-content: center; align-items: center;
}
.app-hero__phone-frame {
  background: linear-gradient(180deg, #225a37, #0b2417);
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  width: 220px;
  border: 6px solid #1a4a2c;
  position: relative;
}
.app-hero__phone-frame::before {
  content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 14px; background: #0b2417;
  border-radius: 0 0 12px 12px;
}
.app-hero__phone-screen {
  background: var(--bg-deep);
  border-radius: 22px;
  aspect-ratio: 9/19;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: var(--sp-4);
}
.app-hero__phone-screen img { max-width: 80%; height: auto; }
.app-hero__copy { display: flex; flex-direction: column; gap: var(--sp-3); }
.store-badges { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-3); }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  color: var(--text);
  font-weight: 700;
}
.store-badge:hover { border-color: var(--accent); color: var(--text); }
.store-badge__line1 { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); display: block; }
.store-badge__line2 { font-size: 15px; font-weight: 800; }

.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-10);
  padding: var(--sp-8) var(--sp-5) var(--sp-5);
}
.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-soft);
}
.footer-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text); font-weight: 800; margin: 0 0 var(--sp-3);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 var(--sp-3); }

.footer-bottom {
  padding-top: var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-3);
  font-size: 13px; color: var(--text-dim);
}
.footer-bottom__row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; justify-content: space-between; }
.payment-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }
.payment-row .pm {
  font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: var(--radius-sm);
  background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border-soft);
}

.legal-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.legal-row span { color: var(--text-dim); }

.error-page { text-align: center; padding: var(--sp-12) var(--sp-5); }
.error-page__code { font-size: clamp(80px, 14vw, 160px); font-weight: 900; line-height: 1; color: var(--accent); margin: 0; }
.error-page__title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin: var(--sp-4) 0 var(--sp-3); }
.error-page__desc { color: var(--text-muted); max-width: 540px; margin: 0 auto var(--sp-5); }
.error-page__ctas { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

.drawer {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.drawer__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; transition: opacity .25s ease;
}
.drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-panel);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform .25s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
body.drawer-open .drawer { pointer-events: auto; visibility: visible; }
body.drawer-open .drawer__backdrop { opacity: 1; }
body.drawer-open .drawer__panel { transform: translateX(0); }
body.drawer-open { overflow: hidden; }

.drawer__head {
  padding: var(--sp-4);
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__close {
  background: transparent; border: 1px solid var(--border);
  color: var(--text); font-size: 18px; line-height: 1;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
}
.drawer__nav, .drawer__cats { padding: var(--sp-3); display: flex; flex-direction: column; gap: 2px; }
.drawer__nav a, .drawer__cats a {
  color: var(--text-muted); padding: 12px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.drawer__nav a:hover, .drawer__cats a:hover { background: var(--bg-elev); color: var(--text); }
.drawer__sectionlabel {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-dim); padding: var(--sp-3) var(--sp-3) var(--sp-2);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .page { grid-template-columns: 64px minmax(0,1fr); }
  .sidebar { padding: var(--sp-3) 6px; }
  .sidebar__title { display: none; }
  .sidebar__nav a { justify-content: center; padding: 12px 8px; font-size: 0; }
  .sidebar__nav a svg { margin: 0; opacity: 1; }
  .nav-primary { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .site-header__inner { padding: 0 var(--sp-3); gap: var(--sp-2); }
  .logo span { display: none; }
  .logo img { height: 32px; }
  .header-cta .btn-ghost { display: none; }
  .header-cta { gap: var(--sp-2); }
  .header-cta .btn-primary { padding: 10px 14px; font-size: 12px; }
  .hamburger { display: inline-flex; }

  .page { grid-template-columns: minmax(0,1fr); }
  .sidebar { display: none; }
  main { padding: var(--sp-3); }

  .hero__overlay { padding: var(--sp-5) var(--sp-4); }
  .hero__media { aspect-ratio: 16 / 11; }

  .split-hero { grid-template-columns: 1fr; }
  .split-hero__visual { min-height: 200px; }

  .app-hero { grid-template-columns: 1fr; padding: var(--sp-5); text-align: center; }
  .app-hero__phone-frame { width: 180px; }

  .slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-2); }

  .hero__ctas { width: 100%; }
  .hero__ctas .btn-primary, .hero__ctas .btn-ghost { flex: 1 1 auto; }
  .store-badges { width: 100%; }
  .store-badges .store-badge { flex: 1 1 auto; min-width: 0; justify-content: center; }

  .seo-content { padding: var(--sp-4) var(--sp-3); border-radius: var(--radius-md); }
  .seo-content h2 { padding-left: 10px; }

  .footer-grid { gap: var(--sp-5); }
}

@media (max-width: 380px) {
  .header-cta .btn-primary { font-size: 11px; padding: 9px 10px; }
}
