@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   STATUSLY — COMPLETE STYLESHEET
   Naming: semantic kebab-case
   Layout: CSS Grid + Flexbox hybrid
   Theme: Lean dark, tropical candy accent
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

ul, ol { list-style: none; }

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

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Primary palette — anchored at ~288° */
  --hue-primary: 288;
  --clr-primary:       hsl(288, 80%, 62%);
  --clr-primary-dark:  hsl(288, 70%, 48%);
  --clr-primary-glow:  hsl(288, 90%, 72%);

  /* Accent candy colours */
  --clr-coral:   hsl(12,  95%, 65%);
  --clr-mint:    hsl(162, 85%, 52%);
  --clr-yellow:  hsl(46,  98%, 60%);
  --clr-sky:     hsl(200, 90%, 62%);

  /* Dark surfaces */
  --clr-bg:         hsl(230, 18%, 9%);
  --clr-surface-1:  hsl(230, 16%, 13%);
  --clr-surface-2:  hsl(230, 14%, 18%);
  --clr-surface-3:  hsl(230, 12%, 24%);

  /* Text */
  --clr-text-base:    hsl(220, 20%, 92%);
  --clr-text-muted:   hsl(220, 12%, 60%);
  --clr-text-faint:   hsl(220, 10%, 40%);
  --clr-heading:      hsl(0, 0%, 100%);

  /* Borders */
  --clr-border:       hsl(230, 14%, 22%);
  --clr-border-light: hsl(230, 14%, 30%);

  /* Typography */
  --ff-display: 'Syne', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Fluid type scale */
  --fs-xs:   clamp(0.72rem,  0.68rem + 0.2vw,  0.8rem);
  --fs-sm:   clamp(0.85rem,  0.82rem + 0.2vw,  0.95rem);
  --fs-base: clamp(0.95rem,  0.9rem  + 0.3vw,  1.05rem);
  --fs-md:   clamp(1.05rem,  1rem    + 0.35vw, 1.2rem);
  --fs-lg:   clamp(1.2rem,   1.1rem  + 0.6vw,  1.5rem);
  --fs-xl:   clamp(1.5rem,   1.3rem  + 1vw,    2rem);
  --fs-2xl:  clamp(1.9rem,   1.5rem  + 2vw,    2.8rem);
  --fs-3xl:  clamp(2.4rem,   1.8rem  + 3vw,    3.8rem);
  --fs-4xl:  clamp(3rem,     2rem    + 4.5vw,  5rem);

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px hsl(230 30% 4% / 0.4);
  --shadow-md:  0 4px 20px hsl(230 30% 4% / 0.5);
  --shadow-lg:  0 12px 40px hsl(230 30% 4% / 0.6);
  --shadow-glow-primary: 0 0 32px hsl(288 80% 62% / 0.35);
  --shadow-glow-mint:    0 0 24px hsl(162 85% 52% / 0.3);
  --shadow-glow-coral:   0 0 24px hsl(12  95% 65% / 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--clr-text-base);
  background-color: var(--clr-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--clr-heading);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
h6 { font-size: var(--fs-base); font-weight: 600; }

p {
  color: var(--clr-text-base);
  max-width: 68ch;
  line-height: 1.75;
}

p.lead {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  font-weight: 500;
  max-width: 56ch;
  line-height: 1.6;
}

strong { font-weight: 700; color: var(--clr-heading); }

small { font-size: var(--fs-xs); color: var(--clr-text-muted); }

/* ── LINKS ──────────────────────────────────────────────────── */
a.text-link {
  color: var(--clr-primary-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-out);
}

a.text-link:hover {
  color: var(--clr-mint);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  cursor: pointer;
  transition:
    background var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 18px hsl(288 80% 62% / 0.45);
}

.btn-primary:hover {
  background: var(--clr-primary-glow);
  box-shadow: var(--shadow-glow-primary);
  transform: translateY(-2px);
}

.btn-mint {
  background: var(--clr-mint);
  color: hsl(162, 50%, 12%);
  box-shadow: 0 4px 18px hsl(162 85% 52% / 0.4);
}

.btn-mint:hover {
  filter: brightness(1.1);
  box-shadow: var(--shadow-glow-mint);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--clr-coral);
  color: #fff;
  box-shadow: 0 4px 18px hsl(12 95% 65% / 0.4);
}

.btn-coral:hover {
  filter: brightness(1.08);
  box-shadow: var(--shadow-glow-coral);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-text-base);
  border: 1.5px solid var(--clr-border-light);
}

.btn-ghost:hover {
  border-color: var(--clr-primary-glow);
  color: var(--clr-primary-glow);
  background: hsl(288 80% 62% / 0.08);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: var(--fs-md);
  padding: var(--sp-4) var(--sp-8);
}

.btn-sm {
  font-size: var(--fs-xs);
  padding: var(--sp-2) var(--sp-4);
}

/* ── SITE HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(230, 18%, 9%, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--clr-border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-block: var(--sp-4);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header-logo__wordmark {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-heading);
  letter-spacing: -0.03em;
}

.header-logo__wordmark span {
  color: var(--clr-primary-glow);
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.header-nav__link {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition:
    color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.header-nav__link:hover,
.header-nav__link[aria-current="page"] {
  color: var(--clr-heading);
  background: var(--clr-surface-2);
}

.header-nav__link[aria-current="page"] {
  color: var(--clr-primary-glow);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Mobile hamburger */
.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  background: var(--clr-surface-2);
  border: none;
}

.header-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-text-base);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}

/* ── SITE FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-surface-1);
  border-top: 1px solid var(--clr-border);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand__tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: var(--sp-3);
  max-width: 28ch;
  line-height: 1.6;
}

.footer-brand__badges {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-mint);
  background: hsl(162 85% 52% / 0.12);
  border: 1px solid hsl(162 85% 52% / 0.3);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3);
}

.status-badge::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--clr-mint);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.footer-col__heading {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-bottom: var(--sp-4);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col__links a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-col__links a:hover {
  color: var(--clr-heading);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
}

.footer-bottom__copy span {
  color: var(--clr-coral);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--clr-surface-2);
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.footer-social a:hover {
  background: var(--clr-primary);
  color: #fff;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
}

.section--tight {
  padding-block: clamp(var(--sp-10), 5vw, var(--sp-20));
}

.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.section--surface {
  background: var(--clr-surface-1);
}

.section--surface-2 {
  background: var(--clr-surface-2);
}

/* Section header */
.section-header {
  margin-bottom: clamp(var(--sp-8), 4vw, var(--sp-16));
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary-glow);
  margin-bottom: var(--sp-4);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero-section {
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-32)) clamp(var(--sp-12), 8vw, var(--sp-24));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, hsl(288 80% 62% / 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, hsl(162 85% 52% / 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.hero-title {
  font-size: var(--fs-4xl);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-title .highlight-coral  { color: var(--clr-coral); }
.hero-title .highlight-mint   { color: var(--clr-mint); }
.hero-title .highlight-yellow { color: var(--clr-yellow); }
.hero-title .highlight-purple { color: var(--clr-primary-glow); }

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 50ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.hero-image-slot {
  position: relative;
}

.hero-image-slot img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  background: var(--clr-surface-2);
}

.hero-image-slot::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-mint) 100%);
  z-index: -1;
  opacity: 0.5;
  filter: blur(24px);
}

/* ── FEATURE CARDS ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.card {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: clamp(var(--sp-6), 3vw, var(--sp-8));
  transition:
    border-color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-mint));
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.card:hover {
  border-color: var(--clr-border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
  font-size: 1.4rem;
}

.card__icon--coral   { background: hsl(12  95% 65% / 0.15); }
.card__icon--mint    { background: hsl(162 85% 52% / 0.15); }
.card__icon--yellow  { background: hsl(46  98% 60% / 0.15); }
.card__icon--sky     { background: hsl(200 90% 62% / 0.15); }
.card__icon--purple  { background: hsl(288 80% 62% / 0.15); }

.card__title {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--clr-heading);
}

.card__body {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ── STATS ──────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.stat-item {
  text-align: center;
  padding: clamp(var(--sp-5), 3vw, var(--sp-8));
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
}

.stat-item__number {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--clr-primary-glow), var(--clr-mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}

.stat-item__label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg,
    hsl(288, 60%, 18%) 0%,
    hsl(288, 50%, 14%) 50%,
    hsl(200, 50%, 14%) 100%);
  border-radius: var(--r-xl);
  padding: clamp(var(--sp-10), 6vw, var(--sp-20));
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(288 80% 62% / 0.25);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, hsl(288 80% 62% / 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-band__sub {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-8);
  position: relative;
  margin-inline: auto;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  position: relative;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 780px;
}

.faq-item {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-heading);
  cursor: pointer;
  background: transparent;
  text-align: left;
  transition: color var(--dur-fast);
}

.faq-item__question:hover {
  color: var(--clr-primary-glow);
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  background: var(--clr-primary);
  color: #fff;
}

.faq-item__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: none;
}

/* ── GENERIC CONTENT SECTION ────────────────────────────────── */
.content-section .section-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-8), 6vw, var(--sp-16));
  align-items: start;
}

.content-section .section-body--single {
  grid-template-columns: 1fr;
  max-width: 72ch;
}

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-base);
}

.form-input {
  background: var(--clr-surface-2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  color: var(--clr-heading);
  font-size: var(--fs-base);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}

.form-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px hsl(288 80% 62% / 0.2);
}

.form-input::placeholder {
  color: var(--clr-text-faint);
}

.form-inline {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.form-inline .form-input {
  flex: 1;
  min-width: 200px;
}

/* ── BADGE / PILL ───────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.pill--coral  { background: hsl(12  95% 65% / 0.15); color: var(--clr-coral); }
.pill--mint   { background: hsl(162 85% 52% / 0.15); color: var(--clr-mint); }
.pill--yellow { background: hsl(46  98% 60% / 0.15); color: var(--clr-yellow); }
.pill--sky    { background: hsl(200 90% 62% / 0.15); color: var(--clr-sky); }
.pill--purple { background: hsl(288 80% 62% / 0.15); color: var(--clr-primary-glow); }

/* ── DECORATIVE NOISE / TEXTURE OVERLAY ─────────────────────── */
.noise-overlay {
  position: relative;
}

.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: var(--clr-surface-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-primary-dark); }

/* ── UTILITY ────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-muted   { color: var(--clr-text-muted) !important; }
.text-coral   { color: var(--clr-coral) !important; }
.text-mint    { color: var(--clr-mint) !important; }
.text-yellow  { color: var(--clr-yellow) !important; }
.text-purple  { color: var(--clr-primary-glow) !important; }
.mt-auto      { margin-top: auto; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--clr-surface-1);
    border-bottom: 1px solid var(--clr-border);
    padding: var(--sp-4);
    gap: var(--sp-1);
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav__link {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
  }

  .header-actions .btn {
    display: none;
  }

  .header-menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-slot {
    display: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .content-section .section-body {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-band__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-band__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
html{-webkit-text-size-adjust:100%}
img,svg,video{max-width:100%;height:auto}
*{box-sizing:border-box}
