/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  --lime:       #c8ff00;
  --lime-dim:   rgba(200,255,0,.10);
  --lime-hover: #d4ff2a;
  --dark:       #0f0f11;
  --dark-2:     #16161a;
  --white:      #ffffff;
  --light:      #f5f5f2;
  --text:       #1a1a1c;
  --muted:      #70707a;
  --border:     #e2e2e2;
  --border-dk:  #252528;
  --r:          6px;
  --r-lg:       12px;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1,h2,h3 { line-height: 1.08; letter-spacing: -.035em; font-weight: 800; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.875rem); }
h3 { font-size: 1.125rem; font-weight: 700; }

/* ── Container ─────────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .9375rem; font-weight: 600; letter-spacing: -.01em;
  border-radius: var(--r); padding: 11px 22px;
  transition: background .15s, border-color .15s, color .15s;
  cursor: pointer; border: 1.5px solid transparent; white-space: nowrap;
}
.btn-lg  { font-size: 1rem; padding: 14px 30px; }
.btn-sm  { font-size: .875rem; padding: 8px 16px; }

.btn-lime        { background: var(--lime); color: var(--dark); border-color: var(--lime); }
.btn-lime:hover  { background: var(--lime-hover); border-color: var(--lime-hover); }

.btn-dark        { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover  { background: #2c2c30; border-color: #2c2c30; }

.btn-ghost       { background: transparent; color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.07); color: #fff; }

.btn-outline-light        { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; }
.btn-outline-light:hover  { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); }

.btn-outline-dark         { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline-dark:hover   { background: var(--light); }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* NAV                                                                         */
/* ── ──────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 28px;
  background: rgba(15,15,17,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dk);
  height: 64px;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; height: 100%; gap: 36px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: .9375rem; letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links {
  display: flex; gap: 28px; flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,.55); font-size: .9375rem;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }

/* Mobile menu toggle (hidden by default on desktop) */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.75); border-radius: 2px; transition: .2s;
}

/* ── ──────────────────────────────────────────────────────────────────────── */
/* HERO                                                                        */
/* ── ──────────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 28px 96px;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-content { max-width: 660px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lime); background: var(--lime-dim);
  border: 1px solid rgba(200,255,0,.2);
  padding: 6px 12px; border-radius: 4px; margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--lime); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--lime); }

.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,.55);
  max-width: 500px; margin-bottom: 40px; line-height: 1.72;
}
.hero-ctas  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note  { font-size: .8125rem; color: rgba(255,255,255,.3); letter-spacing: -.01em; }

/* Large decorative mark */
.hero-mark {
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%);
  width: min(480px, 40vw);
  opacity: .045;
  pointer-events: none; user-select: none;
}

/* ── ──────────────────────────────────────────────────────────────────────── */
/* STATS TICKER                                                                */
/* ── ──────────────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--lime);
  padding: 22px 28px;
}
.stats-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: center; gap: 72px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num   { font-size: 1.875rem; font-weight: 900; color: var(--dark); letter-spacing: -.05em; line-height: 1; }
.stat-label { font-size: .8125rem; font-weight: 600; color: rgba(15,15,17,.55); margin-top: 4px; }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* SECTIONS (shared)                                                           */
/* ── ──────────────────────────────────────────────────────────────────────── */
.section         { padding: 108px 28px; }
.section--light  { background: var(--light); }
.section--dark   { background: var(--dark); }
.section-header  { margin-bottom: 72px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.section--dark .section-label { color: rgba(255,255,255,.38); }
.section--dark h2              { color: #fff; }
.section-sub {
  font-size: 1.0625rem; color: var(--muted); line-height: 1.7; margin-top: 12px;
}
.section--dark .section-sub { color: rgba(255,255,255,.48); }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* HOW IT WORKS                                                                */
/* ── ──────────────────────────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.step {
  background: #fff; padding: 44px 36px;
  position: relative;
}
.step-num {
  font-size: 3.5rem; font-weight: 900; letter-spacing: -.06em;
  color: var(--lime); line-height: 1; margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p  { color: var(--muted); font-size: .9375rem; line-height: 1.68; }
.step-arrow {
  position: absolute; right: -1px; top: 44px;
  width: 26px; height: 26px;
  background: var(--lime); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--dark); font-weight: 800;
  z-index: 1;
}
.step:last-child .step-arrow { display: none; }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* FEATURES GRID                                                               */
/* ── ──────────────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.feature {
  background: var(--light); padding: 40px 36px;
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--dark); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3  { margin-bottom: 10px; }
.feature p   { color: var(--muted); font-size: .9375rem; line-height: 1.68; }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* FOR TEAMS                                                                   */
/* ── ──────────────────────────────────────────────────────────────────────── */
.for-teams-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.for-teams-text h2      { margin-bottom: 20px; }
.for-teams-text .intro  { color: rgba(255,255,255,.55); font-size: 1.0625rem; line-height: 1.72; margin-bottom: 32px; }
.check-list             { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.check-list li          { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.7); font-size: .9375rem; }
.check-icon {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  background: var(--lime); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6875rem; color: var(--dark); font-weight: 800;
}

/* Dashboard mockup card */
.mock-card {
  background: var(--dark-2); border: 1px solid var(--border-dk);
  border-radius: var(--r-lg); padding: 28px; overflow: hidden;
}
.mock-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.mock-topbar-title { font-size: .9375rem; font-weight: 700; color: #fff; }
.mock-pill {
  font-size: .6875rem; font-weight: 700; background: var(--lime-dim);
  color: var(--lime); padding: 3px 10px; border-radius: 100px;
}
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.mock-kpi {
  background: rgba(255,255,255,.04); border: 1px solid var(--border-dk);
  border-radius: 8px; padding: 14px;
}
.mock-kpi-val { font-size: 1.375rem; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.mock-kpi-lbl { font-size: .6875rem; color: rgba(255,255,255,.38); margin-top: 3px; }
.mock-bars { display: flex; flex-direction: column; gap: 10px; }
.mock-bar-row { display: flex; align-items: center; gap: 10px; }
.mock-bar-lbl { font-size: .6875rem; color: rgba(255,255,255,.4); width: 64px; flex-shrink: 0; }
.mock-bar-track {
  flex: 1; height: 5px; background: rgba(255,255,255,.06);
  border-radius: 3px; overflow: hidden;
}
.mock-bar-fill { height: 100%; background: var(--lime); border-radius: 3px; }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* PRICING                                                                     */
/* ── ──────────────────────────────────────────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 56px;
}
.toggle-lbl       { font-size: .9375rem; color: var(--muted); transition: color .15s; }
.toggle-lbl.on    { color: var(--text); font-weight: 600; }
.toggle-track {
  width: 46px; height: 26px; background: var(--border);
  border-radius: 13px; cursor: pointer; position: relative; transition: background .2s;
}
.toggle-track.on  { background: var(--lime); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-track.on .toggle-knob { transform: translateX(20px); }
.toggle-save {
  font-size: .75rem; font-weight: 700; color: var(--dark);
  background: var(--lime); padding: 3px 9px; border-radius: 100px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pricing-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  background: var(--dark); border-color: var(--dark);
}
.pc-eyebrow {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.featured .pc-eyebrow { color: rgba(255,255,255,.42); }
.pc-name   { font-size: 1.125rem; font-weight: 800; margin-bottom: 6px; }
.featured .pc-name   { color: #fff; }
.pc-desc   { font-size: .875rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6; min-height: 56px; }
.featured .pc-desc   { color: rgba(255,255,255,.45); }
.pc-price  { margin-bottom: 28px; display: flex; align-items: baseline; gap: 4px; }
.pc-amount { font-size: 2.625rem; font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.featured .pc-amount { color: #fff; }
.pc-period { font-size: .875rem; color: var(--muted); }
.featured .pc-period { color: rgba(255,255,255,.42); }

/* prices swap via JS */
.price-monthly { display: block; }
.price-annual  { display: none; }
.annual-mode .price-monthly { display: none; }
.annual-mode .price-annual  { display: flex; }

.pc-btn    { width: 100%; margin-bottom: 28px; }
.pc-list   { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pc-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .875rem; color: var(--text);
}
.featured .pc-list li { color: rgba(255,255,255,.68); }
.pc-check {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  background: var(--lime); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .5625rem; color: var(--dark); font-weight: 900;
}

/* ── ──────────────────────────────────────────────────────────────────────── */
/* TESTIMONIALS                                                                */
/* ── ──────────────────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.tcard-stars { color: var(--lime); font-size: 1rem; letter-spacing: 2px; }
.tcard-quote { font-size: 1rem; line-height: 1.72; color: var(--text); }
.tcard-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9375rem; flex-shrink: 0;
}
.tcard-name { font-weight: 700; font-size: .9375rem; }
.tcard-role { font-size: .8125rem; color: var(--muted); }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* CTA BANNER                                                                  */
/* ── ──────────────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--lime);
  padding: 96px 28px; text-align: center;
}
.cta-band h2   { color: var(--dark); margin-bottom: 14px; }
.cta-band p    { color: rgba(15,15,17,.58); font-size: 1.0625rem; margin-bottom: 40px; }
.cta-band-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* FOOTER                                                                      */
/* ── ──────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 72px 28px 36px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top   { display: flex; gap: 80px; margin-bottom: 56px; }
.footer-brand { flex: 0 0 240px; }
.footer-logo  {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: .9375rem; margin-bottom: 16px;
}
.footer-logo img { height: 24px; width: auto; }
.footer-tagline  { color: rgba(255,255,255,.3); font-size: .875rem; line-height: 1.65; }
.footer-links    { display: flex; gap: 60px; flex: 1; }
.footer-col h4   {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 18px;
}
.footer-col a    {
  display: block; color: rgba(255,255,255,.5);
  font-size: .875rem; margin-bottom: 12px;
  transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid var(--border-dk);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy  { font-size: .8125rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: .8125rem; color: rgba(255,255,255,.28);
  transition: color .15s;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                                  */
/* ── ──────────────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .steps { grid-template-columns: 1fr; gap: 2px; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .for-teams-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 44px; }
  .footer-links { flex-wrap: wrap; gap: 36px; }
  .hero-mark { display: none; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-self: flex-start; }
  .stats-inner { gap: 36px; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* ── ──────────────────────────────────────────────────────────────────────── */
/* LEGAL PAGES                                                                 */
/* ── ──────────────────────────────────────────────────────────────────────── */
.legal-page { padding-top: 64px; min-height: 100vh; background: #fff; }

.legal-hero {
  background: var(--dark);
  padding: 72px 28px 60px;
}
.legal-hero-inner { max-width: 760px; margin: 0 auto; }
.legal-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px;
}
.legal-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 18px;
}
.legal-meta {
  font-size: .9rem; color: rgba(255,255,255,.45);
}
.legal-meta strong { color: rgba(255,255,255,.7); font-weight: 600; }

.legal-body {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 220px 1fr;
  gap: 64px; padding: 64px 28px 100px;
  align-items: start;
}

/* Sticky TOC sidebar */
.legal-sidebar { position: sticky; top: 88px; }
.legal-toc { display: flex; flex-direction: column; gap: 4px; }
.legal-toc-title {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.legal-toc-link {
  font-size: .875rem; color: var(--muted);
  padding: 5px 10px; border-radius: 6px;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  line-height: 1.4;
}
.legal-toc-link:hover { color: var(--text); background: var(--light); }
.legal-toc-link.active { color: var(--text); border-left-color: var(--lime); font-weight: 600; background: var(--light); }

/* Content */
.legal-content { max-width: 680px; }
.legal-content section { margin-bottom: 52px; scroll-margin-top: 96px; }
.legal-content h2 {
  font-size: 1.25rem; font-weight: 800; color: var(--text);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}
.legal-content h3 {
  font-size: 1rem; font-weight: 700; color: var(--text);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: .9625rem; color: #3a3a40; line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: .9375rem; color: #3a3a40; line-height: 1.7;
  padding-left: 20px; position: relative;
}
.legal-content ul li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
}
.legal-content a { color: var(--text); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: #000; }

/* Table */
.legal-table {
  width: 100%; border-collapse: collapse; margin-bottom: 14px;
  font-size: .9rem;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 11px 14px;
  border: 1px solid var(--border);
  line-height: 1.55; color: #3a3a40;
}
.legal-table th {
  background: var(--light); font-weight: 700;
  color: var(--text); font-size: .8125rem;
  letter-spacing: .02em;
}
.legal-table tr:nth-child(even) td { background: #fafafa; }

/* Contact block */
.legal-contact-block {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 24px;
  font-size: .9375rem; line-height: 1.8; color: var(--text);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 860px) {
  .legal-body { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 80px; }
  .legal-sidebar { position: static; }
  .legal-toc { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .legal-toc-title { display: none; }
  .legal-toc-link { border-left: none; border-bottom: 2px solid transparent; padding: 4px 10px; border-radius: 20px; background: var(--light); }
  .legal-toc-link.active { border-bottom-color: var(--lime); background: var(--light); }
}
@media (max-width: 600px) {
  .legal-hero { padding: 56px 20px 44px; }
  .legal-toc { gap: 4px; }
  .legal-toc-link { font-size: .8rem; padding: 4px 8px; }
}

/* ── ──────────────────────────────────────────────────────────────────────── */
/* STORE BADGES (hero + download section)                                      */
/* ── ──────────────────────────────────────────────────────────────────────── */
.hero-store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 9px 16px;
  text-decoration: none !important;
  transition: border-color .15s, transform .15s;
  cursor: pointer;
}
.store-badge:hover { border-color: rgba(255,255,255,.45); transform: translateY(-1px); }
.store-badge--lg   { padding: 11px 20px; border-radius: 12px; }

.store-badge svg   { flex-shrink: 0; }

.store-badge > span { display: flex; flex-direction: column; }
.badge-sub  { font-size: .65rem; color: rgba(255,255,255,.55); letter-spacing: .02em; line-height: 1.2; }
.badge-name { font-size: .975rem; font-weight: 700; color: #fff; letter-spacing: -.01em; line-height: 1.3; }

/* ── ──────────────────────────────────────────────────────────────────────── */
/* DOWNLOAD SECTION                                                            */
/* ── ──────────────────────────────────────────────────────────────────────── */
.download-section {
  padding: 108px 28px;
  background: #0d0d10;
}
.download-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.section-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 14px;
}
.download-text .section-label { color: rgba(255,255,255,.38); }
.download-text h2  { color: #fff; margin-bottom: 16px; }
.download-text p   { color: rgba(255,255,255,.5); font-size: 1.0625rem; line-height: 1.72; margin-bottom: 36px; }
.download-badges   { display: flex; gap: 14px; flex-wrap: wrap; }

/* Phone frames — real screenshots */
.download-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 520px;
}

.phone-frame {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.55), 0 0 0 1.5px rgba(255,255,255,.1);
  background: #000;
  transition: transform .3s ease;
}
.phone-frame img {
  display: block;
  width: 210px;
  height: auto;
  border-radius: 34px;
}

/* Centre / front phone */
.phone-frame--front {
  position: relative;
  z-index: 3;
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 2px rgba(255,255,255,.14);
}
.phone-frame--front img { width: 230px; }

/* Left back phone */
.phone-frame--back {
  z-index: 2;
  transform: translateX(-145px) translateY(24px) rotate(-8deg) scale(.88);
  opacity: .72;
}
.phone-frame--back:hover { opacity: .9; }

/* Right back phone */
.phone-frame--back.phone-frame--right {
  transform: translateX(145px) translateY(24px) rotate(8deg) scale(.88);
}

/* Responsive */
@media (max-width: 768px) {
  .download-inner { grid-template-columns: 1fr; gap: 56px; }
  .download-phones { height: 380px; }
  .phone-frame--back { transform: translateX(-110px) translateY(20px) rotate(-8deg) scale(.82); }
  .phone-frame--back.phone-frame--right { transform: translateX(110px) translateY(20px) rotate(8deg) scale(.82); }
}
@media (max-width: 600px) {
  .hero-store-badges { gap: 10px; }
  .download-badges   { flex-direction: column; align-items: flex-start; }
  .phone-frame--back { display: none; }
  .download-phones { height: 420px; }
}
