/* ---------- Design tokens (MSME by G3G — brand-locked) ---------- */
/* Defaults = dark theme. Light mode is opt-in via [data-theme="light"]. */
:root, [data-theme="dark"] {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-3: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #fafafa;
  --text-muted: rgba(250, 250, 250, 0.7);
  --text-subtle: rgba(250, 250, 250, 0.62);

  --primary: #4ade80;
  --primary-strong: #22c55e;
  --primary-deep: #16a34a;
  --primary-soft: rgba(74, 222, 128, 0.12);
  --primary-glow: rgba(74, 222, 128, 0.35);
  --on-primary: #052e16;

  --accent: #a855f7;
  --accent-glow: rgba(168, 85, 247, 0.22);

  /* Theme-sensitive structural colors */
  --nav-glass: rgba(8, 8, 8, 0.65);
  --nav-glass-strong: rgba(10, 10, 10, 0.92);
  --grad-side: #ffffff;
  --ambient-1: rgba(74, 222, 128, 0.14);
  --ambient-2: rgba(168, 85, 247, 0.13);
  --ambient-3: rgba(74, 222, 128, 0.08);
  --dot: rgba(255, 255, 255, 0.035);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset,
                 0 24px 60px -30px rgba(0, 0, 0, 0.6);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

[data-theme="light"] {
  --bg: #f7f7f5;
  --bg-elevated: #ffffff;
  --surface: rgba(10, 10, 10, 0.035);
  --surface-2: rgba(10, 10, 10, 0.06);
  --surface-3: rgba(10, 10, 10, 0.09);
  --border: rgba(10, 10, 10, 0.10);
  --border-strong: rgba(10, 10, 10, 0.18);

  --text: #0a0a0a;
  --text-muted: #525252;
  --text-subtle: #737373;

  --primary: #16a34a;
  --primary-strong: #15803d;
  --primary-deep: #14532d;
  --primary-soft: rgba(34, 197, 94, 0.12);
  --primary-glow: rgba(34, 197, 94, 0.4);
  --on-primary: #ffffff;

  --accent: #9333ea;
  --accent-glow: rgba(147, 51, 234, 0.16);

  --nav-glass: rgba(255, 255, 255, 0.72);
  --nav-glass-strong: rgba(255, 255, 255, 0.95);
  --grad-side: #0a0a0a;
  --ambient-1: rgba(34, 197, 94, 0.12);
  --ambient-2: rgba(147, 51, 234, 0.10);
  --ambient-3: rgba(34, 197, 94, 0.06);
  --dot: rgba(10, 10, 10, 0.045);

  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
                 0 14px 40px -22px rgba(10, 10, 10, 0.18);
}

html { color-scheme: dark; }
[data-theme="light"] { color-scheme: light; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100dvh;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection { background: var(--primary); color: var(--on-primary); }

/* ---------- Ambient page background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 8%, var(--ambient-1), transparent 60%),
    radial-gradient(50% 40% at 92% 18%, var(--ambient-2), transparent 60%),
    radial-gradient(70% 50% at 50% 100%, var(--ambient-3), transparent 60%);
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* Layered: subtle dot grid + a fine grain noise. The noise is a tiny
     inline SVG using feTurbulence; it gives surfaces tactility without
     adding network requests. */
  background-image:
    radial-gradient(var(--dot) 1px, transparent 1px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='1'/></svg>");
  background-size: 28px 28px, 220px 220px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: 0;
  opacity: 1;
}
[data-theme="light"] body::after {
  /* Invert the noise tint for light backgrounds. */
  background-image:
    radial-gradient(var(--dot) 1px, transparent 1px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='1'/></svg>");
}
main, header, footer { position: relative; z-index: 1; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 240ms ease, background-color 240ms ease, border-color 240ms ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(10, 10, 10, 0.0);
  transition: background-color 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}
.nav.is-scrolled .nav__inner {
  background: var(--nav-glass);
  border-color: var(--border);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav__brand img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(0) saturate(100%) drop-shadow(0 0 18px rgba(74,222,128,0.35));
  /* Use the green logo as-is (it's already a brand-green). Drop the white invert. */
  filter: drop-shadow(0 0 18px rgba(74,222,128,0.25));
}
.nav__brand small {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--text); background: var(--surface-2); }
.nav__link.is-active::after { transform: scaleX(1); transform-origin: center; }

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__cta { display: none; }

.nav__burger,
.nav__theme {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  transition: background-color 180ms ease, border-color 180ms ease;
}
.nav__theme:hover { background: var(--surface-2); border-color: var(--border-strong); }
.nav__theme .theme-sun { display: none; }
.nav__theme .theme-moon { display: block; }
[data-theme="light"] .nav__theme .theme-sun { display: block; }
[data-theme="light"] .nav__theme .theme-moon { display: none; }
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  display: block;
  width: 16px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav__burger span::before { position: absolute; top: -5px; }
.nav__burger span::after  { position: absolute; top: 5px; }

@media (min-width: 880px) {
  .nav__links { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__cta { display: inline-flex; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 64px 16px auto 16px;
  z-index: 49;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--nav-glass-strong);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 15px;
  transition: background-color 160ms ease, color 160ms ease;
}
.mobile-menu a:hover { background: var(--surface); color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 180ms ease,
              box-shadow 240ms ease,
              color 180ms ease,
              border-color 180ms ease;
}
.btn svg {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 12px 32px -12px var(--primary-glow);
}
.btn--primary:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -12px var(--primary-glow);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
}
[data-theme="light"] .btn--ghost:hover { border-color: rgba(10, 10, 10, 0.25); }
.btn--lg { padding: 14px 26px; font-size: 15px; }

/* ---------- Section / Eyebrow ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); position: relative; }
.section--compact { padding-block: clamp(48px, 7vw, 88px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-glow);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(36px, 6.4vw, 72px);
  color: var(--text);
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  font-size: clamp(28px, 4.2vw, 46px);
  color: var(--text);
}
.h-card {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text);
}
.lede {
  color: var(--text-muted);
  font-size: clamp(15.5px, 1.4vw, 18px);
  max-width: 56ch;
}
.text-grad {
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
  /* Italic glyphs lean right; reserve a little inline-end space so their
     tails don't get clipped by background-clip text or container edges. */
  padding-inline-end: 0.14em;
  margin-inline-end: -0.04em;
  background: linear-gradient(120deg, var(--grad-side) 0%, var(--primary) 50%, var(--grad-side) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- Hero ---------- */
.hero { padding-top: 140px; padding-bottom: clamp(72px, 9vw, 112px); }
.hero__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.hero__copy { max-width: 600px; }
.hero__title { margin-top: 22px; }
.hero__lede { margin-top: 22px; }
.hero__ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stores { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  border-radius: var(--radius);
  background: var(--border);
  overflow: hidden;
}
.stats__cell {
  padding: 20px 22px;
  background: var(--bg-elevated);
}
.stats__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.stats__label {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Real phone screenshots ---------- */
.phone-img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 60px 80px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 60px rgba(74, 222, 128, 0.18));
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.phone-img--lg { max-width: 440px; }
.phone-img--tilt { transform: rotate(-2deg); }
.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 8px;
}
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 8% 14%;
  background: radial-gradient(closest-side, rgba(74,222,128,0.22), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}
.phone-stage > * { position: relative; z-index: 1; }

/* ---------- Store badges (custom, theme-adaptive) ---------- */
/* Designed in-house so light and dark modes both feel intentional. Dark mode
   uses a black pill (matching official conventions); light mode uses a white
   pill with a quiet border so the badge stays a distinct surface, not a
   bleeding shape. SVG icons recolor via currentColor. */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  height: 52px;
  border-radius: 12px;
  background: #0a0a0a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 180ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 240ms ease;
  font-family: var(--font-body);
  text-decoration: none;
  white-space: nowrap;
}
[data-theme="light"] .store-btn {
  background: #ffffff;
  color: #0a0a0a;
  border: 1px solid rgba(10, 10, 10, 0.14);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.04);
}
.store-btn:hover {
  transform: translateY(-2px);
  background: #141414;
  box-shadow: 0 18px 38px -18px rgba(0, 0, 0, 0.8);
}
[data-theme="light"] .store-btn:hover {
  background: #fafafa;
  border-color: rgba(10, 10, 10, 0.22);
  box-shadow: 0 14px 30px -18px rgba(10, 10, 10, 0.18);
}
.store-btn__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
}
.store-btn__icon svg { width: 100%; height: 100%; }
.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.store-btn__text small {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.78;
}
.store-btn__text b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  margin-top: 2px;
}
/* APK variant — uses brand green so it reads as the "primary" download path */
.store-btn--apk {
  background: var(--primary);
  color: var(--on-primary);
  border-color: transparent;
  box-shadow: 0 12px 28px -14px var(--primary-glow);
}
[data-theme="light"] .store-btn--apk {
  background: var(--primary);
  color: var(--on-primary);
  border-color: transparent;
}
.store-btn--apk:hover {
  background: var(--primary-strong);
  box-shadow: 0 16px 36px -12px var(--primary-glow);
}
/* 3-column grid for download page hero badges */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 560px;
}
@media (min-width: 720px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}
.store-grid .store-btn { width: 100%; justify-content: flex-start; }
.app-badge--apk {
  background: var(--primary);
  border-color: transparent;
  padding: 0 18px;
  color: var(--on-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  gap: 8px;
  letter-spacing: -0.005em;
}
.app-badge--apk:hover { background: var(--primary-strong); }

/* ---------- Real MMQR payment screenshot ---------- */
.qr-frame {
  display: block;
  width: min(280px, 100%);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 60px -10px rgba(74, 222, 128, 0.18);
}
.qr-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- iOS phone mockup (blank — drop screenshots in later) ---------- */
.phone {
  position: relative;
  width: min(280px, 90%);
  margin-inline: auto;
  aspect-ratio: 9 / 19.5;
  border-radius: 48px;
  padding: 6px;
  background: #0a0a0a;
  box-shadow:
    inset 0 0 0 1.5px #1f1f1f,
    0 60px 100px -40px rgba(0, 0, 0, 0.55),
    0 30px 60px -30px var(--primary-glow);
}
[data-theme="light"] .phone {
  background: #111;
  box-shadow:
    inset 0 0 0 1.5px #2a2a2a,
    0 50px 80px -36px rgba(10, 10, 10, 0.25),
    0 24px 50px -30px var(--primary-glow);
}
/* Dynamic Island */
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 32%; max-width: 100px;
  height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
/* Side buttons (drawn via box-shadow offsets so they scale with the phone) */
.phone__btn {
  position: absolute;
  background: #0a0a0a;
  z-index: 1;
  pointer-events: none;
}
.phone__btn--mute {
  left: -2px;
  top: 12%;
  width: 3px; height: 4%;
  border-radius: 2px 0 0 2px;
}
.phone__btn--vol-up {
  left: -3px;
  top: 19%;
  width: 4px; height: 8%;
  border-radius: 2px 0 0 2px;
}
.phone__btn--vol-down {
  left: -3px;
  top: 29%;
  width: 4px; height: 8%;
  border-radius: 2px 0 0 2px;
}
.phone__btn--power {
  right: -3px;
  top: 23%;
  width: 4px; height: 12%;
  border-radius: 0 2px 2px 0;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 42px;
  background: var(--phone-screen, #ffffff);
  overflow: hidden;
}
[data-theme="light"] .phone__screen {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
/* Optional subtle placeholder text inside the screen */
.phone__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.22);
}
/* (Old app-UI helpers removed — phone is now a blank iOS mockup.) */

/* Phone size + tilt variants */
.phone--sm { width: min(240px, 90%); }
.phone--md { width: min(280px, 90%); }
.phone--tilt-l { transform: rotate(-4deg); transform-origin: center; }
.phone--tilt-r { transform: rotate(4deg); transform-origin: center; }

/* Phone — products list variant (Key Features bento, Story) */
.phone-row {
  padding: 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.phone-row__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.phone-row__thumb {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(74,222,128,0.28), rgba(168,85,247,0.18));
  flex-shrink: 0;
}
.phone-row__info { flex: 1; min-width: 0; }
.phone-row__info b {
  display: block;
  font-size: 11px;
  color: var(--text);
  font-weight: 600;
}
.phone-row__info span {
  display: block;
  font-size: 9.5px;
  color: var(--text-muted);
}
.phone-row__price {
  font-size: 10px;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Phone — payment / MMQR variant */
.phone__pay-header {
  padding: 16px 18px 8px;
  text-align: center;
}
.phone__pay-header small {
  font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.phone__pay-header b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.phone__pay-header b small {
  font-size: 11px; color: var(--text-muted);
  margin-left: 4px; letter-spacing: 0;
}
.phone__pay-qr {
  margin: 6px 18px 14px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: grid; place-items: center;
}
.phone__pay-qr svg { width: 100%; height: auto; }
.phone__pay-wallets {
  padding: 0 18px 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.phone__wallet {
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: #fff;
}
.phone__wallet--kbz { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.phone__wallet--cb  { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.phone__wallet--aya { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.phone__wallet--ap  { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.phone__wallet--wave { background: linear-gradient(135deg, #f59e0b, #b45309); }
.phone__wallet--zego { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.phone__wallet--ok   { background: linear-gradient(135deg, #facc15, #ca8a04); color: #052e16; }
.phone__wallet--uab  { background: linear-gradient(135deg, #4ade80, #16a34a); color: #052e16; }

/* Phone — login welcome variant */
.phone__login {
  padding: 22px 22px 18px;
  flex: 1; display: flex; flex-direction: column; gap: 14px;
}
.phone__login h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.phone__login p { font-size: 11px; color: var(--text-muted); margin-top: -10px; }
.phone__field {
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  padding: 0 10px;
  font-size: 11px; color: var(--text-subtle);
}
.phone__login-btn {
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  display: grid; place-items: center;
  margin-top: 4px;
}

/* Phone — settings/account variant for delete-account page */
.phone__settings {
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.phone__setting-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
  color: var(--text);
}
.phone__setting-row .ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.phone__setting-row.is-danger {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.28);
  color: #fca5a5;
}
.phone__setting-row.is-danger .ic {
  background: rgba(220, 38, 38, 0.18);
  color: #fca5a5;
}

/* Stage frames a single phone in a section, gives it ambient glow */
.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 8px;
}
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 8% 14%;
  background: radial-gradient(closest-side, rgba(74,222,128,0.22), transparent 70%);
  filter: blur(28px);
  z-index: 0;
}
.phone-stage > * { position: relative; z-index: 1; }

/* Floating cards beside phone */
.hero__visual { position: relative; }
.hero__floater {
  position: absolute;
  border: 1px solid var(--border);
  background: var(--nav-glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
}
[data-theme="light"] .hero__floater {
  box-shadow: 0 14px 36px -18px rgba(10, 10, 10, 0.18);
}
.hero__floater--top { top: 14%; left: -8%; animation: floatA 6s ease-in-out infinite; }
.hero__floater--bottom { bottom: 12%; right: -6%; animation: floatB 7s ease-in-out infinite; }
.hero__floater small { display: block; color: var(--text-muted); font-size: 11px; }
.hero__floater b { font-family: var(--font-display); font-weight: 600; font-size: 13px; }
.hero__floater .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  flex-shrink: 0;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---------- Generic content card ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: border-color 240ms ease, transform 240ms ease;
}
.card:hover { border-color: var(--border-strong); }
.card__glow {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(60% 50% at 30% 0%, var(--primary-soft), transparent 60%);
  opacity: 0.7;
}

/* ---------- Split section (image / text) ---------- */
.split {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse > :first-child { order: 2; }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 48px;
  position: relative;
}
@media (min-width: 880px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  z-index: 1;
  transition: border-color 240ms ease, transform 240ms ease;
}
.step:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.step__num {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
  margin-bottom: 18px;
}
.step__title { margin-bottom: 8px; }
.step__body { color: var(--text-muted); font-size: 15px; }

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .benefits { grid-template-columns: 1fr 1fr; gap: 24px; } }
.benefit__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.benefit__title .chip {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.benefit__list { display: flex; flex-direction: column; gap: 12px; }
.benefit__item {
  display: flex; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.benefit__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--primary);
  color: var(--on-primary);
  display: grid; place-items: center;
}

/* ---------- Bento features ---------- */
.bento {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.bento__cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 240ms ease, transform 240ms ease;
  min-height: 180px;
}
.bento__cell:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.bento__cell::after {
  content: "";
  position: absolute;
  inset: -50% -30% auto auto;
  width: 280px; height: 220px;
  background: radial-gradient(closest-side, var(--primary-soft), transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}
.bento__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  display: grid; place-items: center;
  color: var(--primary);
}
.bento__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.bento__body {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.bento__cell--wide { grid-column: span 1; }
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__cell--wide { grid-column: span 2; }
}

/* ---------- Payment highlight ---------- */
.payment {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(70% 80% at 0% 50%, var(--ambient-1), transparent 60%),
    radial-gradient(70% 80% at 100% 50%, var(--ambient-2), transparent 60%),
    var(--surface);
}
@media (min-width: 880px) { .payment { grid-template-columns: 1fr 1fr; } }
.qr {
  position: relative;
  width: min(260px, 100%);
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 22px;
  background: #ffffff;
  padding: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 60px -28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(74, 222, 128, 0.12) inset,
    0 0 60px -16px var(--primary-glow);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}
[data-theme="light"] .qr {
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow:
    0 18px 40px -22px rgba(10, 10, 10, 0.22),
    0 0 60px -16px var(--primary-glow);
}
.qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Center brand mark — sits over the QR's high error-correction area */
.qr__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--on-primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  box-shadow:
    0 0 0 6px #ffffff,
    0 10px 24px -10px rgba(74, 222, 128, 0.55);
}
.qr:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 36px 70px -28px rgba(0, 0, 0, 0.6),
    0 0 80px -10px var(--primary-glow);
}
[data-theme="light"] .qr:hover {
  box-shadow:
    0 24px 48px -22px rgba(10, 10, 10, 0.28),
    0 0 60px -10px var(--primary-glow);
}
/* "Scan to visit" caption rendered after the QR card */
.qr-caption {
  margin-top: 14px;
  display: block;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.qr-caption b {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--text);
}
.qr__grid {
  width: 100%; height: 100%;
  background:
    linear-gradient(#0a0a0a, #0a0a0a) padding-box;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(13, 1fr);
  gap: 2px;
  background: transparent;
}
.qr__grid i {
  display: block;
  background: #0a0a0a;
  border-radius: 2px;
}

/* ---------- Final CTA ---------- */
.cta-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 0%, var(--ambient-1), transparent 60%),
    radial-gradient(80% 100% at 50% 100%, var(--ambient-2), transparent 60%),
    var(--surface);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}
[data-theme="light"] .cta-card::before {
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.05) 100%);
}
.cta-card > * { position: relative; }

/* ---------- Store badges ---------- */
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.store:hover { transform: translateY(-2px); border-color: var(--border-strong); background: var(--surface-2); }
.store__icon { width: 22px; height: 22px; }
.store__txt small {
  display: block;
  font-size: 10.5px;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.store__txt b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* ---------- Trust strip (partner brands) ---------- */
.trust {
  padding-block: clamp(40px, 6vw, 72px);
}
.trust__label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 24px;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding-block: 4px;
}
@media (min-width: 720px) {
  .trust__row { grid-template-columns: repeat(6, 1fr); }
}
.trust__brand {
  width: 100%;
  max-width: 160px;
  height: 56px;
  display: grid;
  place-items: center;
  opacity: 0.55;
  transition: opacity 200ms ease, filter 200ms ease;
}
.trust__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 200ms ease, opacity 200ms ease;
  /* Clean alpha-cut colored logos (@imgly/background-removal output).
     Dark mode: lift dark navy/grey marks so they read on black.
     Light mode: keep brand colors with a subtle contrast bump. */
  filter: brightness(1.55) saturate(0.9);
}
[data-theme="light"] .trust__brand img {
  filter: contrast(1.05);
}
.trust__brand:hover { opacity: 1; }
.trust__brand:hover img { filter: none; }

/* ---------- Featured products showcase ---------- */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 220ms ease,
              box-shadow 240ms ease;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.55);
}
[data-theme="light"] .product:hover {
  box-shadow: 0 18px 38px -22px rgba(10, 10, 10, 0.18);
}
.product__media {
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.product:hover .product__media img { transform: scale(1.04); }
.product__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product__shop {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.product__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 2px;
}
.product__row {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.product__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.product__rating {
  font-size: 12.5px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product__rating::before {
  content: "★";
  color: #fbbf24;
  font-size: 13px;
}

/* ---------- Editorial market band ---------- */
.editorial {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-block: clamp(48px, 6vw, 80px);
  isolation: isolate;
}
.editorial__img {
  display: block;
  width: 100%;
  height: clamp(280px, 36vw, 480px);
  object-fit: cover;
  filter: saturate(1.05);
}
.editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
  z-index: 1;
}
.editorial__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(24px, 4vw, 48px);
  z-index: 2;
  color: #fff;
}
.editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.editorial__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-glow);
}
.editorial__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 14px;
  max-width: 28ch;
  color: #fff;
}
.editorial__sub {
  margin-top: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
}

/* ---------- Testimonials (download page) ---------- */
/* White cards in both themes — feels like a curated review wall. */
.testimonials {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonials { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  /* Generous top padding so the decorative quote mark has clear breathing
     room from the card edge AND from the star rating below it. */
  padding: 72px 28px 28px;
  border-radius: var(--radius-lg);
  /* Theme-adaptive surface: white in light mode, soft dark surface in dark
     mode. Text + avatars switch with the surface via tokens below. */
  background: #ffffff;
  color: #0a0a0a;
  border: 1px solid rgba(10, 10, 10, 0.06);
  position: relative;
  box-shadow: 0 14px 32px -22px rgba(0, 0, 0, 0.4);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
[data-theme="dark"] .testimonial {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 50px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.5),
              0 0 50px -20px var(--primary-glow);
}
[data-theme="dark"] .testimonial:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  box-shadow: 0 28px 56px -28px rgba(0, 0, 0, 0.8),
              0 0 50px -20px var(--primary-glow);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 22px; left: 26px;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: rgba(34, 197, 94, 0.32);
}
[data-theme="dark"] .testimonial::before { color: rgba(74, 222, 128, 0.34); }
.testimonial__rating {
  position: relative;
  display: inline-flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 10px;
}
.testimonial p {
  position: relative;
  font-size: 15.5px;
  line-height: 1.6;
  color: #1f1f1f;
}
[data-theme="dark"] .testimonial p { color: var(--text); }
.testimonial cite {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  font-style: normal;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, #e5e7eb, #cbd5e1);
  border: 1px solid rgba(10, 10, 10, 0.08);
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #475569;
  letter-spacing: -0.01em;
}
[data-theme="dark"] .testimonial__avatar {
  background: linear-gradient(140deg, rgba(74,222,128,0.18), rgba(74,222,128,0.06));
  border-color: var(--border-strong);
  color: var(--primary);
}
.testimonial__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial__who {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.testimonial__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: #0a0a0a;
  letter-spacing: -0.005em;
}
[data-theme="dark"] .testimonial__name { color: var(--text); }
.testimonial__role {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 2px;
}
[data-theme="dark"] .testimonial__role { color: var(--text-muted); }

/* ---------- Contact (support) ---------- */
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 240ms ease, transform 240ms ease;
}
.contact-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.contact-card__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid rgba(74,222,128,0.25);
  color: var(--primary);
  display: grid; place-items: center;
}
.contact-card small {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
}
.contact-card b {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  font-size: 15.5px;
  display: block;
  margin-top: 2px;
}

/* ---------- Privacy article ---------- */
.legal {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .legal { grid-template-columns: 240px 1fr; gap: 48px; }
}
.legal__toc {
  align-self: start;
}
@media (min-width: 960px) {
  .legal__toc { position: sticky; top: 100px; }
}
.legal__toc h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 14px;
}
.legal__toc a {
  display: block;
  padding: 7px 12px;
  border-radius: 9px;
  color: var(--text-muted);
  font-size: 13.5px;
  transition: color 160ms ease, background-color 160ms ease;
}
.legal__toc a:hover, .legal__toc a.is-active {
  color: var(--text);
  background: var(--surface);
}
.legal__body article + article { margin-top: 36px; }
.legal__body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.legal__body p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.legal__body p + p { margin-top: 12px; }
.legal__body ul {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal__body li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 15px;
}
.legal__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.legal__body a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- Delete-account steps ---------- */
.guide-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.guide-step__num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 17px;
}
.guide-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.guide-step p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.guide-step p + p { margin-top: 6px; }

.notice {
  display: flex; gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.06);
}
.notice__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.15);
  color: #fca5a5;
  display: grid; place-items: center;
}
.notice b { font-family: var(--font-display); font-weight: 600; color: #fecaca; }
.notice p { color: var(--text-muted); font-size: 14.5px; margin-top: 4px; }

/* ---------- Page header (sub-pages) ---------- */
.page-head {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
}
.page-head .eyebrow { margin-bottom: 20px; }
.page-head p { margin-top: 14px; margin-inline: auto; }

/* ---------- Footer ---------- */
.footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: var(--nav-glass);
  backdrop-filter: blur(10px);
}
.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-block: 56px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand p { color: var(--text-muted); font-size: 14.5px; margin-top: 12px; max-width: 36ch; }
.footer__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 18px;
  color: var(--text);
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color 160ms ease;
}
.footer__links a:hover { color: var(--primary); }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}
.footer__socials a:hover { color: var(--primary); border-color: rgba(74,222,128,0.3); background: var(--primary-soft); }
.footer__stores { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--text-subtle);
  font-size: 13px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__floater--top, .hero__floater--bottom { animation: none; }
}
