/* ================================================================
   LUMEN — Design System
   Palette: deep ink bg · azure primary · mint accent
   Fonts:   Fraunces (display) · Sora (body)
   All sizes: fluid clamp(). All spacing: --sp-* tokens.
   All colours: --c-* tokens from :root.
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Sora:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --c-bg:         oklch(0.13 0.022 252);
  --c-surf:       oklch(0.18 0.025 250);
  --c-surf2:      oklch(0.22 0.028 250);
  --c-surf3:      oklch(0.27 0.030 250);

  /* Brand */
  --c-azure:      oklch(0.74 0.16  232);
  --c-azure-dim:  oklch(0.60 0.13  232);
  --c-mint:       oklch(0.86 0.13  175);
  --c-mint-dim:   oklch(0.72 0.11  175);

  /* Text */
  --c-text:       oklch(0.96 0.010 230);
  --c-muted:      oklch(0.72 0.020 240);
  --c-faint:      oklch(0.48 0.015 240);

  /* Status */
  --c-ok:         oklch(0.78 0.15  165);
  --c-warn:       oklch(0.83 0.16   85);
  --c-err:        oklch(0.62 0.22   27);

  /* Borders */
  --c-border:     oklch(0.96 0.010 230 / 0.10);
  --c-border-hi:  oklch(0.96 0.010 230 / 0.22);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--c-azure) 0%, var(--c-mint) 100%);
  --grad-ink:     radial-gradient(120% 80% at 50% 0%,
                    oklch(0.22 0.05 245) 0%,
                    oklch(0.13 0.022 252) 55%,
                    oklch(0.10 0.018 252) 100%);
  --grad-halo:    radial-gradient(55% 55% at 50% 50%,
                    oklch(0.74 0.16 232 / 0.40) 0%,
                    oklch(0.74 0.16 232 / 0.00) 70%);

  /* Glows */
  --glow-azure:   0 0 60px oklch(0.74 0.16 232 / 0.45),
                  0 0 12px oklch(0.74 0.16 232 / 0.60);
  --glow-mint:    0 0 60px oklch(0.86 0.13 175 / 0.40),
                  0 0 12px oklch(0.86 0.13 175 / 0.50);
  --glow-card:    0 20px 60px oklch(0.05 0 0 / 0.60),
                  0  4px 20px oklch(0.05 0 0 / 0.40);

  /* Spacing — 4 px base */
  --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;

  /* Type — fluid */
  --t-xs:   clamp(0.70rem,  0.65rem + 0.25vw, 0.80rem);
  --t-sm:   clamp(0.85rem,  0.78rem + 0.30vw, 1.00rem);
  --t-base: clamp(1.00rem,  0.92rem + 0.35vw, 1.13rem);
  --t-lg:   clamp(1.13rem,  1.00rem + 0.60vw, 1.40rem);
  --t-xl:   clamp(1.25rem,  1.05rem + 1.00vw, 1.75rem);
  --t-2xl:  clamp(1.50rem,  1.15rem + 1.75vw, 2.25rem);
  --t-3xl:  clamp(1.88rem,  1.30rem + 3.00vw, 3.25rem);
  --t-4xl:  clamp(2.25rem,  1.40rem + 5.00vw, 4.50rem);
  --t-hero: clamp(2.75rem,  1.60rem + 7.00vw, 7.00rem);

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

  /* Motion */
  --ease-expo:   cubic-bezier(0.16, 1, 0.30, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.40, 0, 0.20, 1);
  --d-fast: 150ms;  --d-base: 250ms;  --d-slow: 450ms;

  /* Fonts */
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body:    'Sora', ui-sans-serif, system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  background-image: var(--grad-ink);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── SKIP NAV ───────────────────────────────────────────────── */
.skip-nav {
  position: absolute; top: -100%; left: var(--sp-4);
  background: var(--c-azure); color: var(--c-bg);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm); font-size: var(--t-sm);
  z-index: 1000; transition: top var(--d-fast);
}
.skip-nav:focus { top: var(--sp-4); }

/* ── CONTAINERS ─────────────────────────────────────────────── */
.wrap        { max-width: 1280px; margin-inline: auto; padding-inline: clamp(var(--sp-4), 5vw, var(--sp-12)); }
.wrap-mid    { max-width: 1024px; margin-inline: auto; padding-inline: clamp(var(--sp-4), 5vw, var(--sp-10)); }
.wrap-narrow { max-width:  720px; margin-inline: auto; padding-inline: clamp(var(--sp-4), 5vw, var(--sp-8)); }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: clamp(var(--sp-4), 4vw, var(--sp-12));
  padding-block: var(--sp-4);
  transition: padding-block var(--d-base) var(--ease-smooth),
              background    var(--d-base),
              box-shadow     var(--d-base);
}
.nav.scrolled {
  padding-block: var(--sp-3);
  background: oklch(0.13 0.022 252 / 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display); font-size: var(--t-xl);
  font-weight: 600; letter-spacing: -0.02em;
  transition: opacity var(--d-fast);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: var(--sp-6);
}
.nav-links a {
  font-size: var(--t-sm); color: var(--c-muted);
  transition: color var(--d-fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--c-azure);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--d-base) var(--ease-expo);
}
.nav-links a:hover { color: var(--c-text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: var(--t-sm); font-weight: 600;
  padding: var(--sp-2) var(--sp-5);
  background: var(--c-azure); color: var(--c-bg);
  border-radius: var(--r-full);
  transition: background var(--d-fast), box-shadow var(--d-base), transform var(--d-base) var(--ease-expo);
}
.nav-cta:hover {
  background: var(--c-mint); color: var(--c-bg);
  box-shadow: var(--glow-mint); transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--sp-2); min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform var(--d-base), opacity var(--d-fast);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; z-index: 99;
    background: var(--c-bg); align-items: center; justify-content: center;
    gap: var(--sp-10);
  }
  .nav.open .nav-links a { font-size: var(--t-2xl); color: var(--c-text); }
  .nav.open .nav-cta { display: block; margin-top: var(--sp-4); }
}

/* ── LOADER ─────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--sp-6);
}
#loader .loader-logo { animation: loaderPulse 1.4s ease-in-out infinite; }
#loader .loader-bar-wrap {
  width: 200px; height: 2px;
  background: var(--c-border); border-radius: var(--r-full); overflow: hidden;
}
#loader .loader-bar {
  height: 100%; width: 0;
  background: var(--grad-primary); border-radius: var(--r-full);
  transform-origin: left;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.97); }
  50%       { opacity: 1.0; transform: scale(1.03); }
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: var(--sp-3) var(--sp-7);
  min-height: 48px; min-width: 44px;
  font-family: var(--font-body); font-size: var(--t-sm);
  font-weight: 600; border-radius: var(--r-md);
  border: 1.5px solid transparent; cursor: pointer;
  white-space: nowrap; position: relative; overflow: hidden;
  transition: background var(--d-fast), color var(--d-fast),
              border-color var(--d-fast), transform var(--d-base) var(--ease-expo),
              box-shadow var(--d-base) var(--ease-expo);
}
.btn:focus-visible { outline: 2px solid var(--c-azure); outline-offset: 3px; }
.btn:active { transform: translateY(0) scale(0.99) !important; }

.btn-primary {
  background: var(--c-azure); color: var(--c-bg);
  border-color: var(--c-azure);
}
.btn-primary:hover {
  background: var(--c-mint); border-color: var(--c-mint);
  box-shadow: var(--glow-mint); transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--c-text);
  border-color: var(--c-border-hi);
}
.btn-ghost:hover {
  border-color: var(--c-azure); color: var(--c-azure);
  background: oklch(0.74 0.16 232 / 0.08);
  transform: translateY(-1px);
}

.btn-gradient {
  background: var(--grad-primary); color: var(--c-bg);
  border: none; font-weight: 700;
}
.btn-gradient:hover {
  box-shadow: var(--glow-azure); transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-lg { padding: var(--sp-4) var(--sp-10); font-size: var(--t-base); min-height: 56px; border-radius: var(--r-lg); }
.btn-sm { padding: var(--sp-2) var(--sp-4); font-size: var(--t-xs); min-height: 36px; }
.btn-full { width: 100%; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--c-surf);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--sp-8);
  transition: transform var(--d-base) var(--ease-expo),
              box-shadow var(--d-base), border-color var(--d-base);
}
.card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: var(--glow-card); border-color: var(--c-border-hi);
}

.glass {
  background: oklch(0.20 0.025 250 / 0.60);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid oklch(0.96 0.01 230 / 0.08);
  box-shadow: var(--glow-card);
}

/* ── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--t-xs); font-weight: 600;
  border-radius: var(--r-full);
  border: 1px solid currentColor;
}
.badge-azure { color: var(--c-azure); background: oklch(0.74 0.16 232 / 0.12); }
.badge-mint  { color: var(--c-mint);  background: oklch(0.86 0.13 175 / 0.12); }
.badge-ok    { color: var(--c-ok);    background: oklch(0.78 0.15 165 / 0.12); }

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.display { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.025em; font-weight: 700; }
.eyebrow {
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-azure);
}
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.text-muted  { color: var(--c-muted); }
.text-faint  { color: var(--c-faint); }
.text-azure  { color: var(--c-azure); }
.text-mint   { color: var(--c-mint);  }
.text-center { text-align: center; }

/* ── SCORE RING ─────────────────────────────────────────────── */
.score-ring-wrap {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
}
.score-ring svg { overflow: visible; }
.score-ring-track { fill: none; stroke: var(--c-border); stroke-width: 6; }
.score-ring-fill  {
  fill: none; stroke-width: 6; stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.2s var(--ease-expo);
}
.score-ring-label {
  font-family: var(--font-display); fill: var(--c-text);
  font-size: 1.4rem; font-weight: 700;
  dominant-baseline: central; text-anchor: middle;
}
.score-ring-sub {
  font-size: var(--t-xs); color: var(--c-muted); font-weight: 500;
}

/* ── GRID TEXTURE ───────────────────────────────────────────── */
.grid-texture {
  background-image:
    linear-gradient(oklch(0.96 0.01 230 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.96 0.01 230 / 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ── FORM ELEMENTS ──────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group label { font-size: var(--t-sm); font-weight: 500; color: var(--c-muted); }
.input {
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-surf); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); font-size: var(--t-base); color: var(--c-text);
  transition: border-color var(--d-fast), box-shadow var(--d-fast);
  min-height: 48px; width: 100%;
}
.input:focus {
  outline: none; border-color: var(--c-azure);
  box-shadow: 0 0 0 3px oklch(0.74 0.16 232 / 0.18);
}

/* ── PROGRESS STEP ──────────────────────────────────────────── */
.step-bar {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-10);
}
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--c-border); background: transparent;
  display: grid; place-items: center;
  font-size: var(--t-xs); font-weight: 600; color: var(--c-faint);
  transition: all var(--d-base) var(--ease-expo); flex-shrink: 0;
}
.step-dot.active {
  border-color: var(--c-azure); background: var(--c-azure);
  color: var(--c-bg); box-shadow: var(--glow-azure);
}
.step-dot.done {
  border-color: var(--c-mint); background: var(--c-mint); color: var(--c-bg);
}
.step-line {
  flex: 1; height: 1px; background: var(--c-border);
  transition: background var(--d-slow);
}
.step-line.done { background: var(--c-mint); }

/* ── LOCKED OVERLAY ─────────────────────────────────────────── */
.locked {
  position: relative; overflow: hidden;
}
.locked::after {
  content: ''; position: absolute; inset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: oklch(0.13 0.022 252 / 0.55);
  z-index: 2; border-radius: inherit;
}
.locked-cta {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--sp-3);
  text-align: center; padding: var(--sp-6);
}

/* ── OVAL FACE GUIDE ────────────────────────────────────────── */
.face-guide {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}

/* ── TOAST ──────────────────────────────────────────────────── */
#toast {
  position: fixed; bottom: var(--sp-8); left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--c-surf2); border: 1px solid var(--c-border-hi);
  padding: var(--sp-3) var(--sp-6); border-radius: var(--r-full);
  font-size: var(--t-sm); font-weight: 500;
  z-index: 9000; white-space: nowrap;
  transition: transform var(--d-base) var(--ease-expo);
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); }
#toast.ok   { color: var(--c-ok);  border-color: var(--c-ok); }
#toast.err  { color: var(--c-err); border-color: var(--c-err); }

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 800;
  background: oklch(0 0 0 / 0.75);
  backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: var(--sp-6);
  opacity: 0; pointer-events: none;
  transition: opacity var(--d-base);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--c-surf); border: 1px solid var(--c-border-hi);
  border-radius: var(--r-xl); padding: var(--sp-8); max-width: 520px; width: 100%;
  transform: translateY(24px) scale(0.97);
  transition: transform var(--d-slow) var(--ease-expo);
  position: relative; max-height: 90dvh; overflow-y: auto;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-surf2); display: grid; place-items: center;
  color: var(--c-muted); font-size: var(--t-lg);
  transition: background var(--d-fast), color var(--d-fast);
}
.modal-close:hover { background: var(--c-surf3); color: var(--c-text); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  margin-top: var(--sp-24); padding-block: var(--sp-12);
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10); align-items: start;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: var(--t-sm); font-weight: 600; margin-bottom: var(--sp-4); }
.footer-col a, .footer-col p {
  display: block; font-size: var(--t-sm); color: var(--c-muted);
  margin-bottom: var(--sp-2);
  transition: color var(--d-fast);
}
.footer-col a:hover { color: var(--c-azure); }
.footer-bottom {
  margin-top: var(--sp-8); padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
  font-size: var(--t-xs); color: var(--c-faint);
}

/* ── PRODUCT CARD ───────────────────────────────────────────── */
.product-card {
  background: var(--c-surf); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--d-base) var(--ease-expo),
              box-shadow var(--d-base), border-color var(--d-base);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-card); border-color: var(--c-border-hi);
}
.product-card-img {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--c-surf2);
}
.product-card-body { padding: var(--sp-5); }
.product-card-brand { font-size: var(--t-xs); color: var(--c-azure); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.product-card-name  { font-family: var(--font-display); font-size: var(--t-lg); font-weight: 600; margin-block: var(--sp-1); }
.product-card-price { font-size: var(--t-xl); font-weight: 700; color: var(--c-mint); }
.product-card-ingredients {
  display: flex; flex-wrap: wrap; gap: var(--sp-1); margin-top: var(--sp-3);
}
.ingredient-tag {
  font-size: var(--t-xs); color: var(--c-muted);
  padding: 2px var(--sp-2); background: var(--c-surf2);
  border-radius: var(--r-full); border: 1px solid var(--c-border);
}

/* ── ANALYZING SCREEN ───────────────────────────────────────── */
.analyzing-screen {
  position: fixed; inset: 0; z-index: 700;
  background: var(--c-bg); background-image: var(--grad-ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--sp-8);
  opacity: 0; pointer-events: none;
  transition: opacity var(--d-slow);
}
.analyzing-screen.active { opacity: 1; pointer-events: all; }
.analyzing-dots { display: flex; gap: var(--sp-2); }
.analyzing-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-azure); opacity: 0.3;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.analyzing-dot:nth-child(2) { animation-delay: 0.2s; }
.analyzing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
  40%            { transform: translateY(-8px); opacity: 1; }
}
.analyzing-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid oklch(0.74 0.16 232 / 0.25);
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.12); opacity: 0.15; }
}

/* ── SCROLL REVEAL (pre-animation state) ───────────────────── */
[data-reveal] { opacity: 0; transform: translateY(36px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── TRUST CHIPS ────────────────────────────────────────────── */
.trust-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.trust-chip {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--t-xs); color: var(--c-muted);
  padding: var(--sp-2) var(--sp-3);
  background: oklch(0.96 0.01 230 / 0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
}
.trust-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-mint);
  box-shadow: 0 0 6px var(--c-mint);
}

/* ── UTILITY ────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.hidden   { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
