/* ─────────────────────────────────────────────────────────
   SchoolBag Landing CSS  — shared across all marketing pages
   ───────────────────────────────────────────────────────── */

/* ── Tokens ────────────────────────────────────────────── */
:root {
  --bg:         #F5F4F0;
  --surface:    #FFFFFF;
  --border:     #E2E0D8;
  --text:       #1A1916;
  --muted:      #8A8880;
  --accent:     #C8392B;
  --accent-dk:  #A52D21;
  --accent-lt:  #FDF0EF;
  --dark:       #111110;
  --dark-2:     #1A1916;
  --green:      #166534;
  --green-lt:   #DCFCE7;
  --blue:       #1A56A4;
  --blue-lt:    #DBEAFE;
  --amber:      #B45309;
  --amber-lt:   #FEF3C7;
  --purple:     #6D28D9;
  --purple-lt:  #EDE9FE;
  --teal:       #0F766E;
  --teal-lt:    #CCFBF1;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-mono:  'DM Mono', 'Fira Code', monospace;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.15);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Layout ────────────────────────────────────────────── */
.l-wrap  { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.l-wrap--wide { max-width: 1320px; }
.l-wrap--narrow { max-width: 820px; }
.l-section  { padding: 100px 0; }
.l-section--sm { padding: 64px 0; }
.l-section--lg { padding: 140px 0; }
.l-section--dark  { background: var(--dark-2); }
.l-section--surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.l-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.l-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.l-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }

/* ── Typography ────────────────────────────────────────── */
.t-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.t-eyebrow--green { color: var(--green); }
.t-eyebrow--blue  { color: var(--blue); }

.t-heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05; letter-spacing: -.5px;
}
.t-heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -.3px;
}
.t-heading-md {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2; letter-spacing: -.2px;
}
.t-heading-sm {
  font-size: 18px; font-weight: 700; line-height: 1.3;
}
.t-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7;
}
.t-sub--sm { font-size: 15px; }
.t-center { text-align: center; }

em.accent { font-style: italic; color: var(--accent); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  padding: 11px 22px; border: none; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary  { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dk); }
.btn--ghost    { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--text); }
.btn--ghost-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn--ghost-white:hover { border-color: rgba(255,255,255,.7); }
.btn--white    { background: #fff; color: var(--accent); }
.btn--white:hover { background: #f5f4f0; }
.btn--dark     { background: var(--dark-2); color: #fff; }
.btn--dark:hover { background: #111; }
.btn--green    { background: #16a34a; color: #fff; }
.btn--green:hover { background: #15803d; }
.btn--lg { font-size: 15px; padding: 14px 28px; }
.btn--sm { font-size: 12px; padding: 8px 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Badge / Tag ───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  padding: 4px 10px;
}
.badge--red    { background: var(--accent-lt); color: var(--accent); }
.badge--green  { background: var(--green-lt);  color: var(--green); }
.badge--blue   { background: var(--blue-lt);   color: var(--blue); }
.badge--amber  { background: var(--amber-lt);  color: var(--amber); }
.badge--purple { background: var(--purple-lt); color: var(--purple); }
.badge--teal   { background: var(--teal-lt);   color: var(--teal); }
.badge--dark   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.badge--muted  { background: var(--border); color: var(--muted); }

/* ── Nav ───────────────────────────────────────────────── */
.l-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,244,240,.95);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.l-nav__inner {
  display: flex; align-items: center; gap: 0;
  height: 68px;
}
.l-nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 20px; letter-spacing: -.2px;
  margin-right: 40px; flex-shrink: 0;
}
.l-nav__brand img { width: 34px; height: 34px; object-fit: contain; }
.l-nav__brand span { color: var(--accent); }
.l-nav__links {
  display: flex; gap: 0; list-style: none; flex: 1;
}
.l-nav__links a {
  display: block; padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  transition: color .15s;
  border-bottom: 2px solid transparent;
}
.l-nav__links a:hover,
.l-nav__links a.active { color: var(--text); }
.l-nav__links a.active { border-bottom-color: var(--accent); }
.l-nav__cta {
  display: flex; gap: 8px; align-items: center; margin-left: auto;
}
.l-nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.l-nav__hamburger span {
  width: 22px; height: 2px; background: var(--text);
  transition: all .2s;
}
.l-nav__mobile {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--surface); z-index: 199;
  padding: 24px 28px; overflow-y: auto;
  border-top: 1px solid var(--border);
}
.l-nav__mobile.open { display: block; }
.l-nav__mobile-links { list-style: none; margin-bottom: 24px; }
.l-nav__mobile-links li a {
  display: block; padding: 14px 0;
  font-size: 16px; font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.l-nav__mobile-cta { display: flex; flex-direction: column; gap: 10px; }

/* ── Footer ────────────────────────────────────────────── */
.l-footer {
  background: var(--dark-2); padding: 80px 0 40px;
}
.l-footer__top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 40px;
}
.l-footer__brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.l-footer__brand-logo img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.l-footer__brand-name {
  font-family: var(--font-serif); font-size: 20px; color: #fff;
}
.l-footer__brand-name span { color: var(--accent); }
.l-footer__tagline { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.l-footer__socials { display: flex; gap: 8px; }
.l-footer__social-btn {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .15s;
}
.l-footer__social-btn:hover { border-color: rgba(255,255,255,.3); color: #fff; }
.l-footer__social-btn svg { width: 15px; height: 15px; }
.l-footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.l-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.l-footer__links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .15s; }
.l-footer__links a:hover { color: #fff; }
.l-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.l-footer__copy { font-size: 12px; color: rgba(255,255,255,.25); }
.l-footer__legal { display: flex; gap: 20px; }
.l-footer__legal a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .15s; }
.l-footer__legal a:hover { color: rgba(255,255,255,.55); }

/* ── Hero ──────────────────────────────────────────────── */
.l-hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.l-hero--dark {
  background: var(--dark-2); border-bottom: none; padding: 120px 0 96px;
}
.l-hero--center { text-align: center; }
.l-hero--center .t-sub { max-width: 600px; margin: 0 auto; }
.l-hero__badge { margin-bottom: 28px; }
.l-hero__heading { margin-bottom: 24px; }
.l-hero__sub { margin-bottom: 40px; }
.l-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.l-hero--center .l-hero__actions { justify-content: center; }
.l-hero--dark .t-sub { color: rgba(255,255,255,.55); }
.l-hero--dark .t-heading-xl { color: #fff; }
.l-hero--dark .t-heading-lg { color: #fff; }

/* ── Platform Pills ────────────────────────────────────── */
.platform-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px;
}
.platform-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  padding: 7px 14px;
  background: var(--surface); border: 1px solid var(--border);
}
.platform-pill svg { width: 14px; height: 14px; }
.platform-pill.live  { border-color: #86efac; color: var(--green); background: var(--green-lt); }
.platform-pill.soon  { color: var(--muted); }
.platform-pill.live svg { color: var(--green); }

/* ── Section header ────────────────────────────────────── */
.l-section-hd { margin-bottom: 64px; }
.l-section-hd--center { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.l-section-hd .t-heading-lg { margin-bottom: 16px; }
.l-section-hd .t-sub { margin-top: 12px; }

/* ── Feature cards ─────────────────────────────────────── */
.l-feat-card {
  background: var(--surface); padding: 40px 32px;
  transition: background .15s;
}
.l-feat-card:hover { background: var(--bg); }
.l-feat-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.l-feat-card__icon svg { width: 22px; height: 22px; }
.l-feat-card__icon--red    { background: var(--accent-lt); color: var(--accent); }
.l-feat-card__icon--green  { background: var(--green-lt);  color: var(--green); }
.l-feat-card__icon--blue   { background: var(--blue-lt);   color: var(--blue); }
.l-feat-card__icon--purple { background: var(--purple-lt); color: var(--purple); }
.l-feat-card__icon--amber  { background: var(--amber-lt);  color: var(--amber); }
.l-feat-card__icon--teal   { background: var(--teal-lt);   color: var(--teal); }
.l-feat-card__icon--dark   { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); }
.l-feat-card__title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.l-feat-card__desc  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.l-feat-card__tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }

/* ── Stats bar ─────────────────────────────────────────── */
.l-stats { background: var(--dark-2); padding: 56px 0; }
.l-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
}
.l-stat {
  background: var(--dark-2); padding: 40px 32px; text-align: center;
}
.l-stat__num {
  font-family: var(--font-serif); font-size: 48px; color: #fff;
  line-height: 1; margin-bottom: 8px;
}
.l-stat__num span { color: var(--accent); }
.l-stat__label { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500; }

/* ── Bot highlight ─────────────────────────────────────── */
.l-bot-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--border); border: 1px solid var(--border);
}
.l-bot-card {
  background: var(--surface); padding: 48px 40px;
}
.l-bot-card__header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.l-bot-card__avatar {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.l-bot-card__name { font-size: 20px; font-weight: 700; }
.l-bot-card__handle { font-size: 13px; color: var(--muted); }
.l-bot-card__desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.l-bot-commands {
  display: flex; flex-direction: column; gap: 6px;
}
.l-bot-cmd {
  display: flex; align-items: baseline; gap: 10px;
  padding: 8px 12px; background: var(--bg);
  border: 1px solid var(--border);
  font-size: 13px;
}
.l-bot-cmd__name { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--accent); flex-shrink: 0; }
.l-bot-cmd__desc { color: var(--muted); }

/* ── Testimonials ──────────────────────────────────────── */
.l-testimonial {
  background: var(--surface); padding: 40px 32px;
}
.l-testimonial__quote { font-family: var(--font-serif); font-size: 40px; color: var(--border); line-height: .8; margin-bottom: 16px; }
.l-testimonial__text { font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.l-testimonial__author { display: flex; align-items: center; gap: 12px; }
.l-testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.l-testimonial__name { font-size: 13px; font-weight: 700; }
.l-testimonial__role { font-size: 12px; color: var(--muted); }

/* ── Pricing ───────────────────────────────────────────── */
.l-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border); border: 1px solid var(--border);
}
.l-pricing-card { background: var(--surface); padding: 40px 32px; }
.l-pricing-card--featured { background: var(--dark-2); }
.l-pricing-card--featured * { --text: #fff; }
.l-price-tier {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.l-pricing-card--featured .l-price-tier { color: rgba(255,255,255,.4); }
.l-price-amount {
  font-family: var(--font-serif); font-size: 52px; line-height: 1; margin-bottom: 4px;
}
.l-pricing-card--featured .l-price-amount { color: #fff; }
.l-price-currency { font-size: 20px; vertical-align: super; }
.l-price-period { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.l-pricing-card--featured .l-price-period { color: rgba(255,255,255,.4); }
.l-price-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.l-pricing-card--featured .l-price-desc { color: rgba(255,255,255,.5); }
.l-price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.l-price-features li { display: flex; gap: 10px; font-size: 13px; line-height: 1.5; }
.l-pricing-card--featured .l-price-features li { color: rgba(255,255,255,.75); }
.l-price-check  { color: var(--green); font-weight: 700; flex-shrink: 0; }
.l-price-cross  { color: var(--muted); flex-shrink: 0; }
.l-pricing-card--featured .l-price-check { color: #86efac; }
.l-price-divider {
  height: 1px; background: var(--border); margin: 24px 0;
}
.l-pricing-card--featured .l-price-divider { background: rgba(255,255,255,.08); }

/* ── Token packs ───────────────────────────────────────── */
.l-token-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border); border: 1px solid var(--border);
}
.l-token-card {
  background: var(--surface); padding: 32px 24px; position: relative;
}
.l-token-card--popular::before {
  content: 'BEST VALUE';
  position: absolute; top: -1px; right: 20px;
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 8px;
}
.l-token-amount { font-family: var(--font-serif); font-size: 40px; line-height: 1; margin-bottom: 4px; }
.l-token-unit   { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.l-token-price  { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.l-token-note   { font-size: 12px; color: var(--muted); }

/* ── Currency toggle ───────────────────────────────────── */
.l-currency-bar {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); overflow: hidden; width: fit-content;
}
.l-currency-btn {
  padding: 8px 16px; font-size: 12px; font-weight: 700;
  cursor: pointer; border: none; background: var(--surface);
  color: var(--muted); transition: all .15s;
}
.l-currency-btn.active { background: var(--accent); color: #fff; }

/* ── Feature detail rows ───────────────────────────────── */
.l-feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.l-feat-row:last-child { border-bottom: none; }
.l-feat-row:nth-child(even) { direction: rtl; }
.l-feat-row:nth-child(even) > * { direction: ltr; }
.l-feat-row__text h3 { margin-bottom: 16px; }
.l-feat-row__text p  { margin-bottom: 20px; }
.l-feat-row__checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.l-feat-row__checklist li {
  display: flex; gap: 10px; font-size: 14px; line-height: 1.55;
}
.l-feat-row__check {
  width: 18px; height: 18px; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}
.l-feat-row__visual {
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); overflow: hidden;
}

/* ── Command table ─────────────────────────────────────── */
.l-cmd-table { width: 100%; border-collapse: collapse; }
.l-cmd-table th {
  text-align: left; font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--muted); padding: 10px 16px;
  background: var(--bg); border-bottom: 1px solid var(--border);
}
.l-cmd-table td {
  padding: 10px 16px; font-size: 13px;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.l-cmd-table tr:last-child td { border-bottom: none; }
.l-cmd-table tr:hover td { background: var(--bg); }
.l-cmd-table td:first-child { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.l-cmd-table td:last-child { color: var(--muted); }

/* ── Download platform cards ───────────────────────────── */
.l-dl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--border); border: 1px solid var(--border);
}
.l-dl-card {
  background: var(--surface); padding: 48px 32px; text-align: center;
}
.l-dl-card--coming { background: var(--bg); }
.l-dl-card__icon { font-size: 48px; margin-bottom: 20px; }
.l-dl-card__name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.l-dl-card__desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.l-dl-card__actions { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.l-dl-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark-2); color: #fff;
  padding: 10px 20px; font-size: 13px; font-weight: 600;
  transition: background .15s;
}
.l-dl-badge:hover { background: #000; }
.l-dl-badge svg { width: 18px; height: 18px; }
.l-dl-badge--green { background: #15803d; }
.l-dl-badge--green:hover { background: #166534; }
.l-dl-badge--gray  { background: var(--muted); cursor: not-allowed; opacity: .7; }

/* ── Comparison table ──────────────────────────────────── */
.l-comp-table { width: 100%; border-collapse: collapse; }
.l-comp-table th, .l-comp-table td {
  padding: 14px 20px; text-align: left; font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.l-comp-table th {
  background: var(--bg); font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; color: var(--muted);
}
.l-comp-table td:first-child { font-weight: 600; }
.l-comp-table td.check-y { color: var(--green); font-weight: 700; }
.l-comp-table td.check-n { color: var(--border); }
.l-comp-table tr:hover td { background: var(--bg); }

/* ── FAQ ───────────────────────────────────────────────── */
.l-faq { max-width: 760px; margin: 0 auto; }
.l-faq-item { border-bottom: 1px solid var(--border); }
.l-faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-family: inherit;
}
.l-faq-q:hover { color: var(--accent); }
.l-faq-q__arrow { font-size: 18px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.l-faq-item.open .l-faq-q__arrow { transform: rotate(45deg); }
.l-faq-a { display: none; padding: 0 0 20px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.l-faq-item.open .l-faq-a { display: block; }

/* ── CTA Banner ────────────────────────────────────────── */
.l-cta { background: var(--accent); padding: 96px 0; }
.l-cta--dark { background: var(--dark-2); }
.l-cta__inner { text-align: center; max-width: 600px; margin: 0 auto; }
.l-cta__inner h2 { color: #fff; margin-bottom: 20px; }
.l-cta__inner p  { color: rgba(255,255,255,.7); margin-bottom: 40px; font-size: 17px; line-height: 1.65; }
.l-cta__actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Misc helpers ──────────────────────────────────────── */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .l-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .l-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .l-pricing-grid { grid-template-columns: 1fr; }
  .l-token-grid { grid-template-columns: repeat(2, 1fr); }
  .l-dl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .l-section { padding: 64px 0; }
  .l-section--lg { padding: 80px 0; }
  .l-wrap { padding: 0 20px; }
  .l-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .l-grid-3 { grid-template-columns: 1fr; }
  .l-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .l-bot-grid { grid-template-columns: 1fr; }
  .l-feat-row { grid-template-columns: 1fr; gap: 32px; }
  .l-feat-row:nth-child(even) { direction: ltr; }
  .l-feat-row__visual { display: none; }
  .l-nav__links { display: none; }
  .l-nav__cta { display: none; }
  .l-nav__hamburger { display: flex; }
  .l-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .l-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .l-stat__num { font-size: 36px; }
  .l-stats__grid { grid-template-columns: 1fr 1fr; }
  .l-dl-grid { grid-template-columns: 1fr; }
  .l-token-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .l-wrap { padding: 0 16px; }
  .l-grid-4 { grid-template-columns: 1fr; }
  .l-stats__grid { grid-template-columns: 1fr; }
  .l-token-grid { grid-template-columns: 1fr; }
  .platform-pills { gap: 6px; }
  .platform-pill { font-size: 11px; padding: 5px 10px; }
}
