/* ═══════════════════════════════════════════════════════════
   Aiburi Landing Page — Modern Dark SaaS Theme
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:          #07090f;
  --bg-2:        #0d1017;
  --bg-card:     #111520;
  --bg-card-alt: #13181f;
  --border:      rgba(255, 255, 255, 0.07);
  --border-hover:rgba(255, 255, 255, 0.14);
  --text:        #e8eaf0;
  --text-soft:   #7a8399;
  --text-dim:    #4a5168;
  --accent:      #4f7cff;
  --accent-2:    #a78bfa;
  --accent-glow: rgba(79, 124, 255, 0.28);
  --green:       #22c55e;
  --yellow:      #eab308;
  --red:         #ef4444;
  --grad-text:   linear-gradient(135deg, #7eb3ff 0%, #a78bfa 50%, #f0a0ff 100%);
  --grad-btn:    linear-gradient(135deg, #4f7cff 0%, #7c5cfc 100%);
  --grad-hero:   radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,124,255,0.14) 0%, transparent 65%);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.24);
  --shadow-glow: 0 0 0 1px rgba(79,124,255,0.25), 0 8px 32px rgba(79,124,255,0.22);
  --radius:      14px;
  --radius-sm:   8px;
  --nav-h:       64px;
  font-size: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 700; }
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 6px; background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2535; border-radius: 3px; }

/* ══ BUTTONS ═══════════════════════════════════════════════════════════════ */
.btn-primary,
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-btn);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  text-decoration: none;
}
.btn-primary    { padding: 13px 26px; font-size: 0.97rem; box-shadow: var(--shadow-glow); }
.btn-primary-sm { padding: 8px  18px; font-size: 0.85rem; }

.btn-ghost,
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.btn-ghost      { padding: 13px 26px; font-size: 0.97rem; color: var(--text); border: 1px solid var(--border-hover); }
.btn-outline-sm { padding: 8px  18px; font-size: 0.85rem; color: var(--text-soft); border: 1px solid var(--border); }

.btn-primary:hover, .btn-primary-sm:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(79,124,255,0.42); opacity: 0.92; }
.btn-ghost:hover      { background: rgba(255,255,255,0.05); }
.btn-outline-sm:hover { background: rgba(255,255,255,0.05); border-color: var(--border-hover); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  font-size: 0.97rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: transparent;
  transition: background 0.18s ease;
  text-decoration: none;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }

/* ══ NAVBAR ════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--border);
}
.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.3rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  padding: 6px 13px;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.lang-switch { display: flex; gap: 2px; background: rgba(255,255,255,0.06); border-radius: 8px; padding: 3px; }
.lang-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: .75rem; font-weight: 600; font-family: inherit; padding: 4px 10px; border-radius: 6px; transition: background .2s, color .2s; }
.lang-btn.active { background: var(--accent); color: #fff; }
.lang-btn:hover:not(.active) { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══════════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 24px 72px;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(79,124,255,0.3);
  border-radius: 999px;
  background: rgba(79,124,255,0.1);
  font-size: 0.82rem;
  font-weight: 500;
  color: #91b8ff;
  margin-bottom: 22px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 54ch;
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}
.stat { text-align: center; padding: 0 20px; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat span   { font-size: 0.79rem; color: var(--text-dim); }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ── App Mockup ────────────────────────────────────────────────────────── */
.hero-visual { position: relative; z-index: 1; }

.app-mockup {
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 4px 8px rgba(0,0,0,0.5), 0 24px 60px rgba(0,0,0,0.4),
              0 0 0 1px rgba(79,124,255,0.1);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.dot        { width: 11px; height: 11px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.mockup-title {
  margin-left: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
  flex: 1;
  text-align: center;
}
.mockup-body { display: flex; height: 320px; }
.mockup-sidebar {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-nav {
  padding: 7px 10px;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-radius: 6px;
}
.mock-nav.active { background: rgba(79,124,255,0.15); color: #91b8ff; }

.mockup-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-prompt-area {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-line {
  height: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  animation: shimmer 2.2s ease-in-out infinite;
}
.mock-line.w80 { width: 80%; }
.mock-line.w65 { width: 65%; animation-delay: 0.3s; }
.mock-line.w90 { width: 90%; animation-delay: 0.6s; }
.mock-line.w55 { width: 55%; animation-delay: 0.9s; }
.mock-line.w60 { width: 60%; animation-delay: 0.2s; }
.mock-line.w75 { width: 75%; animation-delay: 0.5s; }
.mock-line.w50 { width: 50%; animation-delay: 0.8s; }
.mock-line.w70 { width: 70%; animation-delay: 1.1s; }
@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.mock-table { display: flex; flex-direction: column; gap: 6px; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.mock-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-status.processing { background: var(--accent); animation: pulse-dot 1.5s infinite; }
.mock-status.done       { background: var(--green); }
.mock-status.pending    { background: var(--text-dim); }

/* ══ SECTION COMMONS ══════════════════════════════════════════════════════ */
.section-block {
  padding: 96px 24px;
}
.section-block.section-dark {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  padding: 4px 13px;
  font-size: 0.77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(79,124,255,0.1);
  border: 1px solid rgba(79,124,255,0.25);
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══ FEATURES ═════════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(79,124,255,0.12);
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p  { font-size: 0.91rem; color: var(--text-soft); line-height: 1.6; }

/* ══ TUTORIAL / STEPS ════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}
.step-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.2s ease;
}
.step-card:hover { border-color: rgba(79,124,255,0.3); }
.step-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}
.step-card h3 { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-card p  { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-dim);
  padding: 0 12px;
  padding-top: 28px;
}

/* ══ PRICING ══════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
}
.pricing-loading, .pricing-err {
  text-align: center;
  color: var(--text-soft);
  padding: 40px;
  width: 100%;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  width: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.price-card.featured {
  border-color: rgba(79,124,255,0.5);
  background: linear-gradient(160deg, rgba(79,124,255,0.1) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow-glow);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-btn);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.price-amount { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.price-num    { font-size: 1.35rem; font-weight: 800; color: #fff; }
.price-period { font-size: 0.8rem; color: var(--text-dim); }
.price-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.price-features li {
  font-size: 0.86rem;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}
.price-features li strong { color: var(--text); }
.btn-price {
  display: block;
  text-align: center;
  padding: 11px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border);
  transition: background 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
}
.btn-price:hover { background: rgba(255,255,255,0.12); border-color: var(--border-hover); }
.btn-price.featured { background: var(--grad-btn); border-color: transparent; color: #fff; }
.btn-price.featured:hover { opacity: 0.88; }

/* ══ DOWNLOAD ════════════════════════════════════════════════════════════ */
.download-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.download-card:hover { border-color: rgba(79,124,255,0.35); transform: translateY(-2px); }
.dl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(79,124,255,0.1);
  color: #91b8ff;
  flex-shrink: 0;
}
.dl-info { flex: 1; }
.dl-info h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.dl-version { font-size: 0.84rem; color: var(--accent); margin-bottom: 2px; }
.dl-compat  { font-size: 0.8rem;  color: var(--text-dim); }
.dl-btn { white-space: nowrap; flex-shrink: 0; font-size: 0.9rem; padding: 10px 20px; }

.install-guide {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.install-guide h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.install-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.install-block h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.install-block ol {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.install-block li { font-size: 0.88rem; color: var(--text-soft); line-height: 1.55; }
.install-block code {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.82rem;
  font-family: ui-monospace, monospace;
  color: var(--text);
}

/* ══ CTA ══════════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(79,124,255,0.15) 0%, rgba(167,139,250,0.12) 100%);
  border-top: 1px solid rgba(79,124,255,0.2);
  border-bottom: 1px solid rgba(79,124,255,0.2);
  padding: 88px 24px;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.cta-inner p { color: var(--text-soft); margin-bottom: 28px; font-size: 1rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══ FOOTER ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 42ch;
  margin-top: 12px;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col   { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-col a { font-size: 0.88rem; color: var(--text-soft); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ══ RESPONSIVE ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
  }
  .hero-visual { order: -1; max-width: 540px; margin: 0 auto; width: 100%; }
  .hero-sub    { max-width: 100%; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid   { grid-template-columns: 1fr; gap: 14px; }
  .step-arrow   { display: none; }

  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-links  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7, 9, 15, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 11px 14px; font-size: 1rem; }
  .nav-cta        { display: none; }
  .hamburger      { display: flex; }

  .section-block  { padding: 64px 16px; }
  .feature-grid   { grid-template-columns: 1fr; }
  .pricing-grid   { flex-direction: column; align-items: center; }
  .price-card     { width: 100%; max-width: 340px; }
  .download-cards { grid-template-columns: 1fr; }
  .install-cols   { grid-template-columns: 1fr; gap: 24px; }
  .cta-section    { padding: 64px 16px; }
  .footer-inner   { padding: 40px 16px 28px; }
  .footer-links   { grid-template-columns: 1fr 1fr; }
  .footer-bottom  { padding: 14px 16px; }
}

@media (max-width: 420px) {
  .hero-title   { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats   { flex-direction: column; gap: 8px; padding: 14px; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }

  .download-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .dl-btn        { width: 100%; text-align: center; justify-content: center; }

  .cta-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-primary, .btn-ghost-light { justify-content: center; }
}
