/* Arrow Spark — Cosmic glassmorphism game-UI landing page */

:root {
  --as-bg: #0F0F23;
  --as-bg-elevated: #16162e;
  --as-primary: #7C3AED;
  --as-secondary: #A78BFA;
  --as-cta: #F43F5E;
  --as-cta-hover: #fb7185;
  --as-cyan: #22D3EE;
  --as-gold: #FBBF24;
  --as-text: #E2E8F0;
  --as-text-muted: #94A3B8;
  --as-glass: rgba(255, 255, 255, 0.06);
  --as-glass-border: rgba(255, 255, 255, 0.12);
  --as-radius: 20px;
  --as-radius-sm: 12px;
  --as-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --as-glow-pink: 0 0 24px rgba(244, 63, 94, 0.35);
  --as-glow-purple: 0 0 24px rgba(124, 58, 237, 0.35);
  --as-font: 'Inter', system-ui, -apple-system, sans-serif;
  --as-hud-h: 64px;
  --as-dock-h: 72px;
  --as-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--as-hud-h) + 16px);
}

body {
  font-family: var(--as-font);
  background: var(--as-bg);
  color: var(--as-text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(var(--as-dock-h) + 24px);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Skip link */
.as-skip {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--as-cta);
  color: #fff;
  border-radius: var(--as-radius-sm);
  font-weight: 600;
}
.as-skip:focus { top: 16px; }

/* ── Cosmic background (static — no canvas, no filter blur) ── */
.as-cosmos {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  contain: strict;
  background: linear-gradient(160deg, #0a0a1a 0%, #1a0a2e 40%, #0f0f23 70%, #0a1628 100%);
}

.as-cosmos__stars {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1px 1px at 70% 45%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,0.75), transparent),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 45% 40%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,0.65), transparent);
  background-size: 280px 280px;
  background-repeat: repeat;
}

.as-cosmos__nebula {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}
.as-cosmos__nebula--1 {
  width: 60vw;
  height: 60vw;
  top: -10%;
  right: -15%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28) 0%, rgba(244, 63, 94, 0.08) 45%, transparent 70%);
}
.as-cosmos__nebula--2 {
  width: 50vw;
  height: 50vw;
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(124, 58, 237, 0.06) 45%, transparent 70%);
}

.as-cosmos__constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.as-cosmos__constellation line {
  stroke: var(--as-secondary);
  stroke-width: 1;
}
.as-cosmos__constellation circle {
  fill: var(--as-cyan);
}

/* ── HUD header ── */
.as-hud {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 100;
  transition: transform 0.3s var(--as-ease), opacity 0.3s var(--as-ease);
}
.as-hud--hidden { transform: translateY(-120%); opacity: 0; }

.as-hud__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  background: rgba(15, 15, 35, 0.92);
  border: 1px solid var(--as-glass-border);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow);
}

.as-hud__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.as-hud__brand:hover { opacity: 0.85; }

.as-hud__icon {
  border-radius: 10px;
  box-shadow: var(--as-glow-pink);
}

.as-hud__name {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.as-hud__counters {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (min-width: 640px) { .as-hud__counters { display: flex; } }

.as-hud__counter {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--as-glass-border);
  background: rgba(0, 0, 0, 0.25);
}
.as-hud__counter svg { width: 16px; height: 16px; }
.as-hud__counter--coin { color: var(--as-gold); }
.as-hud__counter--gem { color: var(--as-cyan); }

.as-hud__nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
@media (min-width: 900px) { .as-hud__nav { display: flex; } }

.as-hud__link {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--as-text-muted);
  transition: color 0.2s, background 0.2s;
}
.as-hud__link:hover {
  color: var(--as-text);
  background: rgba(255, 255, 255, 0.06);
}

.as-hud__cta { margin-left: auto; }
@media (min-width: 900px) { .as-hud__cta { margin-left: 0; } }

/* Hamburger */
.as-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
}
@media (min-width: 900px) { .as-menu-btn { display: none; } }
.as-menu-btn span {
  display: block;
  height: 2px;
  background: var(--as-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.as-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.as-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.as-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.as-drawer {
  position: fixed;
  top: calc(var(--as-hud-h) + 20px);
  left: 12px;
  right: 12px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: rgba(22, 22, 46, 0.96);
  border: 1px solid var(--as-glass-border);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow);
}
.as-drawer[hidden] { display: none; }
.as-drawer a {
  padding: 12px 16px;
  border-radius: var(--as-radius-sm);
  font-weight: 500;
  transition: background 0.2s;
}
.as-drawer a:hover { background: rgba(255, 255, 255, 0.06); }

/* ── Buttons ── */
.as-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s var(--as-ease), box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.as-btn svg { width: 18px; height: 18px; }
.as-btn:focus-visible { outline: 2px solid var(--as-cyan); outline-offset: 2px; }

.as-btn--cta {
  background: linear-gradient(135deg, var(--as-cta), #e11d48);
  color: #fff;
  box-shadow: var(--as-glow-pink);
}
.as-btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(244, 63, 94, 0.5);
}

.as-btn--glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--as-glass-border);
  color: var(--as-text);
}
.as-btn--glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.as-btn--lg { padding: 14px 28px; font-size: 1rem; }
.as-btn--xl { padding: 16px 36px; font-size: 1.05rem; }
.as-btn--block { width: 100%; }

/* ── Main layout ── */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Hero ── */
.as-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - var(--as-hud-h) - var(--as-dock-h));
  padding: calc(var(--as-hud-h) + 32px) 0 48px;
}
@media (min-width: 900px) {
  .as-hero {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.as-hero__content { text-align: center; }
@media (min-width: 900px) { .as-hero__content { text-align: left; } }

.as-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--as-gold);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
}
.as-hero__badge svg { width: 14px; height: 14px; }

.as-hero__icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.as-hero__icon-glow {
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.35), transparent 70%);
  opacity: 0.85;
}
.as-hero__icon {
  position: relative;
  border-radius: 28px;
  box-shadow: var(--as-glow-pink);
}
.as-hero__level {
  position: absolute;
  bottom: -4px;
  right: -8px;
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--as-primary), var(--as-secondary));
  border-radius: 999px;
  border: 2px solid var(--as-bg);
}

.as-hero__title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 30%, var(--as-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.as-hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--as-secondary);
  margin-bottom: 12px;
}

.as-hero__desc {
  font-size: 0.95rem;
  color: var(--as-text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
}
@media (min-width: 900px) { .as-hero__desc { margin: 0 0 28px; } }

.as-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 900px) { .as-hero__actions { justify-content: flex-start; } }

/* Hero device mockup */
.as-hero__device {
  display: flex;
  justify-content: center;
  align-items: center;
}

.as-hero__phone {
  width: min(100%, 280px);
  padding: 10px;
  border-radius: 32px;
  background: rgba(22, 22, 46, 0.85);
  border: 2px solid var(--as-glass-border);
  box-shadow: var(--as-shadow), var(--as-glow-pink);
}

.as-hero__phone img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

/* ── Stats row ── */
.as-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 64px;
}
@media (min-width: 640px) { .as-stats { grid-template-columns: repeat(4, 1fr); } }

.as-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--as-radius);
  border: 1px solid var(--as-glass-border);
  background: rgba(22, 22, 46, 0.65);
  transition: border-color 0.2s;
}
.as-stat:hover { border-color: rgba(255, 255, 255, 0.2); }
.as-stat svg { width: 28px; height: 28px; flex-shrink: 0; }
.as-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}
.as-stat span { font-size: 0.75rem; color: var(--as-text-muted); }
.as-stat--gold { border-color: rgba(251, 191, 36, 0.3); }
.as-stat--gold svg { color: var(--as-gold); }
.as-stat--cyan { border-color: rgba(34, 211, 238, 0.3); }
.as-stat--cyan svg { color: var(--as-cyan); }
.as-stat--rose { border-color: rgba(244, 63, 94, 0.3); }
.as-stat--rose svg { color: var(--as-cta); }
.as-stat--violet { border-color: rgba(124, 58, 237, 0.3); }
.as-stat--violet svg { color: var(--as-secondary); }

/* ── Section headers ── */
.as-section-head {
  text-align: center;
  margin-bottom: 36px;
}
.as-section-head__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--as-cyan);
  margin-bottom: 8px;
}
.as-section-head__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ── Game modes ── */
.as-modes,
.as-features,
.as-showcase,
.as-download {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.as-modes {
  margin-bottom: 80px;
}

.as-modes__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) { .as-modes__grid { grid-template-columns: repeat(3, 1fr); } }

.as-mode {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--as-radius);
  border: 1px solid var(--as-glass-border);
  overflow: hidden;
  transition: border-color 0.2s;
  cursor: pointer;
}
.as-mode:hover { border-color: rgba(255, 255, 255, 0.22); }

.as-mode--pink {
  background: linear-gradient(160deg, rgba(244, 63, 94, 0.2), rgba(30, 10, 30, 0.8));
}
.as-mode--purple {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.25), rgba(20, 10, 40, 0.8));
}
.as-mode--cyan {
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.15), rgba(10, 20, 40, 0.8));
}

.as-mode__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}
.as-mode__icon svg { width: 26px; height: 26px; }

.as-mode__body { flex: 1; }
.as-mode__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.as-mode__body p {
  font-size: 0.85rem;
  color: var(--as-text-muted);
  margin-bottom: 12px;
}

.as-mode__tags {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.as-mode__tags span {
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--as-text-muted);
}

.as-mode__progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  overflow: hidden;
}
.as-mode__progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--as-cta), var(--as-gold));
  transition: width 1s var(--as-ease);
}

.as-mode__stars {
  display: flex;
  gap: 2px;
}
.as-mode__stars svg { width: 14px; height: 14px; color: rgba(255, 255, 255, 0.2); }
.as-star--filled { color: var(--as-gold) !important; fill: var(--as-gold); }

.as-mode__play {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--as-glass-border);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.as-mode__play svg { width: 18px; height: 18px; }
.as-mode__play:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

/* ── Features mosaic ── */
.as-features { margin-bottom: 80px; }

.as-features__mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .as-features__mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
  .as-feature--wide { grid-column: span 2; }
}

.as-feature {
  padding: 24px;
  border-radius: var(--as-radius);
  border: 1px solid var(--as-glass-border);
  background: rgba(22, 22, 46, 0.6);
  transition: border-color 0.2s;
}
.as-feature:hover {
  border-color: rgba(124, 58, 237, 0.4);
}
.as-feature svg {
  width: 28px;
  height: 28px;
  color: var(--as-secondary);
  margin-bottom: 12px;
}
.as-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.as-feature p {
  font-size: 0.85rem;
  color: var(--as-text-muted);
}

/* ── Showcase carousel ── */
.as-showcase { margin-bottom: 80px; }

.as-showcase__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--as-primary) transparent;
}

.as-showcase__slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
}
.as-showcase__slide img {
  border-radius: 24px;
  border: 2px solid var(--as-glass-border);
  box-shadow: var(--as-shadow);
}
.as-showcase__slide figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--as-text-muted);
}

/* ── Download section ── */
.as-download { margin-bottom: 48px; }

.as-download__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px;
  border-radius: var(--as-radius);
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15), rgba(124, 58, 237, 0.15));
  border: 1px solid var(--as-glass-border);
  text-align: center;
}
@media (min-width: 768px) {
  .as-download__card {
    flex-direction: row;
    text-align: left;
    padding: 32px 40px;
  }
}

.as-download__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--as-cta), var(--as-primary));
  flex-shrink: 0;
}
.as-download__icon svg { width: 28px; height: 28px; color: #fff; }

.as-download__text { flex: 1; }
.as-download__text h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.as-download__text p {
  font-size: 0.9rem;
  color: var(--as-text-muted);
}

.as-download__reward {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--as-gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.as-download__reward svg { width: 18px; height: 18px; }

/* ── Footer ── */
.as-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--as-glass-border);
}
@media (min-width: 640px) {
  .as-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

.as-footer__copy {
  font-size: 0.8rem;
  color: var(--as-text-muted);
}

.as-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.as-footer__links a {
  font-size: 0.8rem;
  color: var(--as-text-muted);
  transition: color 0.2s;
}
.as-footer__links a:hover { color: var(--as-secondary); }

/* ── Bottom dock nav ── */
.as-dock {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 480px;
  margin: 0 auto;
  padding: 8px 12px;
  background: rgba(15, 15, 35, 0.94);
  border: 1px solid var(--as-glass-border);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.as-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--as-text-muted);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.as-dock__item svg { width: 20px; height: 20px; }
.as-dock__item:hover { color: var(--as-text); }
.as-dock__item--active {
  color: var(--as-secondary);
  background: rgba(124, 58, 237, 0.15);
}
.as-dock__item--cta {
  background: linear-gradient(135deg, var(--as-cta), #e11d48);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: var(--as-glow-pink);
}
.as-dock__item--cta:hover {
  box-shadow: 0 0 28px rgba(244, 63, 94, 0.45);
}

/* ── Modal ── */
.as-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(90vw, 400px);
  padding: 32px 28px;
  border: 1px solid var(--as-glass-border);
  border-radius: var(--as-radius);
  background: var(--as-bg-elevated);
  color: var(--as-text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
}
.as-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.as-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--as-text-muted);
  transition: background 0.2s, color 0.2s;
}
.as-modal__close svg { width: 18px; height: 18px; }
.as-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--as-text);
}
.as-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--as-primary), var(--as-cta));
}
.as-modal__icon svg { width: 32px; height: 32px; color: #fff; }
.as-modal h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.as-modal p {
  font-size: 0.9rem;
  color: var(--as-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
