/* ═══════════════════════════════════════════════════════════════
   CIRQLE DESIGN SYSTEM — "Quiet Confidence"
   Modern, simple, professional. White space, hairline borders,
   one steel-blue accent, editorial serif italics for emphasis,
   and a signature circle motif (rings, dots, orbits) throughout.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  /* neutrals — cool, clean grey scale */
  --paper:      #FFFFFF;   /* page background — clean white */
  --paper-deep: #F5F7FA;   /* subtle tinted panels / alt sections */
  --card:       #FFFFFF;   /* card faces */
  --ink:        #0F172A;   /* slate-900 — headings & primary text */
  --ink-soft:   #64748B;   /* slate-500 — secondary text */
  --line:       #E6EAF0;   /* hairline borders */
  --line-soft:  #EFF2F6;   /* faintest dividers */

  /* brand — steel-blue from the Cirqle logo, refined */
  --blue:        #437D9E;  /* primary — buttons, brand marks, links */
  --blue-deep:   #35637F;  /* hover / active / focus */
  --blue-tint:   #E3EDF5;  /* palest blue — soft surfaces & highlights */
  --blue-pale:   #EEF4FA;  /* barely-there blue panel */
  --blue-glow:   rgba(67,125,158,.14);   /* spotlight wash */
  --blue-ring:   rgba(67,125,158,.55);   /* spotlight border */

  /* soft accent — used sparingly */
  --teal:       #4B9CC9;
  --teal-tint:  #EAF4FA;

  /* legacy aliases — existing markup keeps working, now calm & on-brand */
  --lime:       var(--blue);        /* was the loud accent — now brand blue */
  --lime-soft:  var(--blue-tint);
  --green:      var(--blue-deep);   /* positive figures */
  --pink:       var(--paper-deep);
  --pink-deep:  var(--blue-deep);
  --sky:        var(--blue-tint);
  --sky-deep:   var(--blue-deep);
  --tang:       var(--paper-deep);
  --tang-deep:  var(--blue-deep);
  --red:        #DC2626;   /* errors */

  /* type — single clean grotesque, two roles */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* shape */
  --r-card: 18px;
  --r-chip: 999px;
  --bw: 1px;                                          /* hairline border */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.07);
  --shadow:    0 4px 16px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow-lg: 0 18px 40px rgba(15,23,42,.10), 0 4px 10px rgba(15,23,42,.05);
  --shadow-blue: 0 6px 18px rgba(53,99,127,.22), 0 1px 3px rgba(53,99,127,.18);

  /* motion — smooth, no bounce */
  --bounce: cubic-bezier(.2, .7, .3, 1);
  --snap:   cubic-bezier(.2, .7, .3, 1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  -webkit-tap-highlight-color: transparent;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
::selection { background: var(--blue-tint); color: var(--blue-deep); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: #D4DAE3; border-radius: 5px; border: 2px solid var(--paper); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; }
a { color: inherit; }
img { max-width: 100%; display: block; }
[id] { scroll-margin-top: 90px; }

/* film-grain wash — imperceptible up close, adds print-like depth to flat areas */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 6000;
}

/* ── Scroll progress bar (injected by enhance.js) ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 3000;
  pointer-events: none;
  transition: width .12s linear;
}

/* ══════════════════════════════════════
   BACKGROUND ORNAMENTS
   ══════════════════════════════════════ */

/* concentric orbit rings — faint background ornament (place inside a
   position:relative container; sized & positioned per page) */
.orbit {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    rgba(67,125,158,.12) 0 1px, transparent 1px 72px);
  -webkit-mask-image: radial-gradient(circle at center, #000 20%, transparent 68%);
  mask-image: radial-gradient(circle at center, #000 20%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* dot-grid texture layer — fades out radially (place inside position:relative) */
.dots {
  position: absolute;
  background-image: radial-gradient(circle, #C4D2DF 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 40%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 75% at 50% 40%, #000 25%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.nav {
  position: sticky; top: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 44px);
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(15,23,42,.05); }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--blue);
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 30px; list-style: none;
  font-size: .92rem; font-weight: 500;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  position: relative;
  text-decoration: none; color: var(--ink-soft);
  padding: 4px 2px;
  transition: color .15s var(--snap);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 2px; border-radius: 2px;
  background: var(--blue);
  transition: right .28s var(--snap);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ── Mobile menu (burger + dropdown, injected by enhance.js) ── */
.nav-burger {
  display: none;
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--card); cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.nav-burger span {
  position: relative; display: block;
  width: 16px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: background .2s;
}
.nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 0;
  width: 16px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .25s var(--snap), top .25s var(--snap);
}
.nav-burger span::before { top: -5px; }
.nav-burger span::after  { top: 5px; }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.open span::after  { top: 0; transform: rotate(-45deg); }
.nav-menu {
  position: fixed; top: 64px; left: 12px; right: 12px;
  z-index: 999;
  background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
}
.nav-menu.open { display: block; animation: popIn .18s var(--snap); }
.nav-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: .95rem; font-weight: 600; color: var(--ink);
}
.nav-menu a:active, .nav-menu a:hover { background: var(--paper-deep); }
.nav-menu a[aria-current="page"] { color: var(--blue-deep); background: var(--blue-pale); }
.nav-menu .nav-menu-divider { height: 1px; background: var(--line-soft); margin: 6px 10px; }
@media (max-width: 900px) {
  .nav-burger { display: inline-flex; }
}

/* ══════════════════════════════════════
   BUTTONS — clean pill, soft depth, shine sweep
   ══════════════════════════════════════ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--snap), box-shadow .18s var(--snap), background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: #D8DEE7; }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn-lime {
  background: linear-gradient(180deg, #4B87A9, #3F7495);
  color: #fff; border-color: transparent;
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-lime:hover {
  background: linear-gradient(180deg, #427A9B, #35637F);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(53,99,127,.28), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-ink   { background: var(--ink); color: #fff; border-color: transparent; }
.btn-ink:hover { background: #1E293B; border-color: transparent; }
.btn-pink  { background: #FEF2F2; color: #B91C1C; border-color: #F3D6D6; }
.btn-pink:hover { background: #FDE8E8; border-color: #EFC3C3; }
/* light sweep across solid buttons on hover */
.btn-lime::after, .btn-ink::after {
  content: '';
  position: absolute; top: -2px; bottom: -2px; left: -70%;
  width: 46%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .5s ease;
}
.btn-lime:hover::after, .btn-ink:hover::after { left: 135%; }
.btn-lg { font-size: 1rem; padding: 14px 28px; }
.btn-sm { font-size: .82rem; padding: 8px 15px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.success { background: var(--blue); color: #fff; border-color: transparent; }

/* ══════════════════════════════════════
   PILLS, CHIPS & BADGES  (formerly "stickers")
   ══════════════════════════════════════ */
.sticker {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: .78rem;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.sticker-lime { background: var(--blue-tint); border-color: transparent; color: var(--blue-deep); }
.sticker-pink { background: var(--paper-deep); border-color: transparent; }
.sticker-sky  { background: var(--blue-tint); border-color: transparent; color: var(--blue-deep); }
.sticker-tang { background: var(--paper-deep); border-color: transparent; }
.sticker-r    { transform: none; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  background: var(--paper-deep);
  color: var(--ink-soft);
}

/* coin — Cirqle's circle motif, a clean icon badge */
.coin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.coin-lime { background: var(--blue); color: #fff; border-color: transparent; }
.coin-pink { background: var(--paper-deep); color: var(--ink); }
.coin-sky  { background: var(--blue-tint); color: var(--blue-deep); }

/* "SHOP • POST • EARN" ring — kept, no longer spins */
.spin-ring { width: 130px; height: 130px; }
.spin-ring svg { width: 100%; height: 100%; overflow: visible; opacity: .5; }
.spin-ring text {
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; letter-spacing: 2px;
  fill: var(--ink-soft); text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* underline accent for hero words — clean, straight */
.squiggle { position: relative; display: inline-block; color: var(--blue); }
.squiggle::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -0.06em;
  height: 3px; border-radius: 3px;
  background: var(--blue);
  opacity: .35;
}
.squiggle-lime::after { background: var(--blue); }

/* soft highlight behind words */
.hl { padding: 0 .1em; border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; color: var(--blue-deep); }
.hl-lime { background: var(--blue-tint); }
.hl-pink { background: var(--blue-tint); }
.hl-sky  { background: var(--blue-tint); }

/* ══════════════════════════════════════
   CARDS — hairline faces + cursor spotlight
   ══════════════════════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  position: relative;
}
.card-hover { transition: transform .22s var(--snap), box-shadow .22s var(--snap), border-color .22s; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #DCE2EA; }

/* spotlight: a soft interior wash + lit border ring that follows the
   cursor (enhance.js feeds --mx / --my). Invisible until hover.
   .spot opts any element in; .card-hover gets it for free. */
.spot { position: relative; }
.card-hover::after, .spot::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), var(--blue-glow), transparent 68%);
  opacity: 0;
  transition: opacity .35s var(--snap);
  pointer-events: none;
  z-index: 1;
}
.card-hover::before, .spot::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), var(--blue-ring), transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--snap);
  pointer-events: none;
  z-index: 2;
}
.card-hover:hover::after, .spot:hover::after,
.card-hover:hover::before, .spot:hover::before { opacity: 1; }

/* Tile colour variants normalised to white — the mixed pale-blue/grey tiles
   read as random. Colour now comes only from deliberate accents (.card-ink,
   solid feature panels), not from alternating card faces. */
.card-lime { background: var(--card); border-color: var(--line); }
.card-pink { background: var(--card); }
.card-sky  { background: var(--card); }
.card-tang { background: var(--card); }
.card-ink  { background: var(--ink); color: #fff; border-color: transparent; }
/* stronger spotlight reads better on the dark slab */
.card-ink.card-hover::after { background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%), rgba(125,178,210,.16), transparent 68%); }

/* ══════════════════════════════════════
   SECTION SCAFFOLDING
   ══════════════════════════════════════ */
.section { position: relative; z-index: 1; padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 44px); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .74rem;
  text-transform: uppercase; letter-spacing: 1.4px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  background: var(--card);
  color: var(--blue-deep);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h-sub { font-size: clamp(.98rem, 1.6vw, 1.12rem); color: var(--ink-soft); max-width: 560px; line-height: 1.7; margin-top: 18px; text-wrap: pretty; }
.center .h-sub { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   MARQUEE TICKER — quiet brand strip, faded edges
   ══════════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
  overflow: hidden;
  padding: 14px 0;
  position: relative; z-index: 1;
}
/* stationary edge fade so items dissolve in/out of the strip */
.ticker::before, .ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: clamp(40px, 9vw, 140px);
  pointer-events: none;
  z-index: 2;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--paper-deep), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--paper-deep), transparent); }
.ticker-track {
  display: flex; gap: 40px; align-items: center;
  width: max-content;
  animation: ticker 40s linear infinite;
  padding-right: 40px;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-pink { background: var(--paper-deep); }
.ticker-sky  { background: var(--paper-deep); }
.ticker-track.rev { animation-name: ticker-rev; }
@keyframes ticker     { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ticker-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tick-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 500; font-size: .92rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.tick-item b { font-weight: 600; color: var(--ink); }
.tick-dot { width: 4px; height: 4px; border-radius: 50%; background: #C6CEDA; flex-shrink: 0; }

/* ══════════════════════════════════════
   FORMS
   ══════════════════════════════════════ */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .2px;
  color: var(--ink);
  margin-bottom: 8px;
}
.field-wrap { position: relative; }
.field-icon {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  font-size: .95rem; pointer-events: none; opacity: .6;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 15px;
  color: var(--ink);
  font-size: .95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .15s var(--snap), box-shadow .15s var(--snap);
}
.field .field-wrap input { padding-left: 42px; }
.field input::placeholder, .field textarea::placeholder { color: #9AA6B4; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(60,125,166,.15);
}
.field input.error { border-color: var(--red); background: #FEF2F2; }
.field-error { font-size: .78rem; font-weight: 500; color: var(--red); margin-top: 6px; display: none; }
.field-error.visible { display: block; }

.pass-toggle {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: .95rem; padding: 2px; opacity: .6;
}

/* ══════════════════════════════════════
   TOAST
   ══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--ink); color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 13px 22px;
  font-size: .9rem; font-weight: 500;
  z-index: 5000;
  opacity: 0;
  transition: all .3s var(--snap);
  pointer-events: none;
  white-space: nowrap;
  max-width: 92vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════
   BACK TO TOP — floating ring (injected by enhance.js)
   ══════════════════════════════════════ */
.back-top {
  position: fixed; right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 1500;
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s var(--snap), transform .3s var(--snap), color .2s, border-color .2s;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { color: var(--blue-deep); border-color: #CBD8E4; transform: translateY(-2px); }

/* ══════════════════════════════════════
   FOOTER — dark slate slab with watermark
   ══════════════════════════════════════ */
.footer {
  position: relative; z-index: 1;
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 4vw, 44px) 36px;
  overflow: hidden;
}
/* giant ghost wordmark rising from the bottom edge */
.footer::after {
  content: 'cirqle';
  position: absolute; left: 50%; bottom: -0.34em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(110px, 19vw, 260px);
  letter-spacing: -0.045em;
  line-height: 1;
  color: rgba(255,255,255,.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.footer-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px; text-decoration: none;
}
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
  text-decoration: none; color: rgba(255,255,255,.8);
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--snap);
}
.social-link:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .76rem; font-weight: 600;
  color: rgba(255,255,255,.9);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,.55); text-decoration: none; font-size: .9rem; font-weight: 400;
  transition: color .15s, padding-left .2s var(--snap);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ══════════════════════════════════════
   CONTENT-PAGE HELPERS (about, legal, etc.)
   ══════════════════════════════════════ */
.page { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; padding: clamp(44px, 7vw, 80px) clamp(20px, 4vw, 44px) 90px; }
.page-wide { max-width: 1140px; }
.page-hero { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; font-size: .96rem; line-height: 1.75; text-wrap: pretty; }
.prose ul { margin: 0 0 16px 22px; color: var(--ink-soft); font-size: .96rem; line-height: 1.8; }
.prose a {
  color: var(--blue); font-weight: 500;
  text-decoration-color: rgba(67,125,158,.35);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.prose a:hover { text-decoration-color: var(--blue); }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 12px 0 20px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.prose th { background: var(--paper-deep); text-align: left; padding: 11px 14px; font-family: var(--font-display); font-weight: 600; border-bottom: 1px solid var(--line); }
.prose td { padding: 11px 14px; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); }
.prose tr:last-child td { border-bottom: none; }

/* ── FAQ accordion ── */
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq-item.open { border-color: #D5DEE8; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer;
  width: 100%; background: none; border: none; text-align: left;
  font-family: var(--font-body); color: var(--ink);
}
.faq-chevron {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; background: var(--paper-deep); color: var(--ink-soft);
  transition: transform .3s var(--snap), background .3s, color .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue); color: #fff; border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--snap); }
.faq-a-inner { padding: 0 20px 18px; font-size: .89rem; color: var(--ink-soft); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 320px; }

/* ══════════════════════════════════════
   NUMBERS — stats read like a ledger
   ══════════════════════════════════════ */
.stat-num, .stat-v, .stat-val, .count, .demo-metric-val, .earn-val, .wp-balance {
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════
   ANIMATION UTILITIES
   ══════════════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes popIn  { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp .7s var(--snap) forwards; }
.d1 { animation-delay: .06s; } .d2 { animation-delay: .13s; } .d3 { animation-delay: .2s; }
.d4 { animation-delay: .27s; } .d5 { animation-delay: .34s; }  .d6 { animation-delay: .41s; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--snap), transform .6s var(--snap); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.floaty { animation: floaty 5s ease-in-out infinite; }

/* ══════════════════════════════════════
   RESPONSIVE + REDUCED MOTION
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .orbit { display: none; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-lg { width: 100%; }
  .back-top { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .ticker-track { animation: none !important; transform: none !important; }
  .floaty { animation: none !important; }
  .fade-up, .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════
   ICONS — sleek monoline glyphs replacing emojis.
   CSS masks, so they inherit colour (brand blue by default) and
   stay crisp at any size. Use: <i class="ico ico-bag"></i>
   ══════════════════════════════════════ */
.ico {
  display: inline-block; width: 1em; height: 1em; vertical-align: -0.14em;
  background-color: currentColor; color: var(--blue); flex: none;
  -webkit-mask: center / contain no-repeat; mask: center / contain no-repeat;
}
.ico-ink   { color: var(--ink); }
.ico-soft  { color: var(--ink-soft); }
.ico-deep  { color: var(--blue-deep); }
.ico-white { color: #fff; }
.ico-lg { width: 1.5em; height: 1.5em; }
/* Inside coloured badges/buttons/pills, follow the container's text colour. */
.coin .ico, .btn .ico, .sticker .ico, .chip .ico, .nav-avatar .ico,
.clist-thumb .ico, .bubble .ico { color: inherit; }

.ico-check    { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-x        { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-star     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2.5l2.9 5.9 6.5.9-4.7 4.6 1.1 6.5L12 18.9 6.2 21.4l1.1-6.5L2.6 9.3l6.5-.9z'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-search   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='7'/%3E%3Cpath d='M21 21l-5.5-5.5'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-lock     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-eye      { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6.5 10-6.5S22 12 22 12s-3.5 6.5-10 6.5S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.6'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-eyeoff   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4l16 16'/%3E%3Cpath d='M9.6 5.6A9.6 9.6 0 0 1 12 5.4c6.5 0 10 6.6 10 6.6a17 17 0 0 1-3.2 3.9M6.3 7.4A17 17 0 0 0 2 12s3.5 6.6 10 6.6a9.5 9.5 0 0 0 3.2-.55'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-bell     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9a6 6 0 0 1 12 0c0 5 2 6 2 6H4s2-1 2-6z'/%3E%3Cpath d='M10 20a2 2 0 0 0 4 0'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-mail     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M4 7l8 6 8-6'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-chat     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M4 5h16a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H9l-4 4v-4H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1z'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-user     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20a7 7 0 0 1 14 0'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-users    { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='9' r='3'/%3E%3Cpath d='M3.5 19a5.5 5.5 0 0 1 11 0'/%3E%3Cpath d='M15 6.4a3 3 0 0 1 0 5.7M15.5 14.2A5.5 5.5 0 0 1 19.5 19'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-warning  { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l9.5 16.5H2.5L12 3z'/%3E%3Cpath d='M12 10v4M12 17.4v.02'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-bolt     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M13 2L4 14h6l-1 8 9-12h-6l1-8z'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-rocket   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3c3 1 5 4 5 8l-2 4H9l-2-4c0-4 2-7 5-8z'/%3E%3Cpath d='M9 15l-2 4 4-1M15 15l2 4-4-1'/%3E%3Ccircle cx='12' cy='9' r='1.3'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-target   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%23000'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-chart    { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4v16h16'/%3E%3Cpath d='M8 16v-4M12.5 16V8M17 16v-6'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-trophy   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10v4a5 5 0 0 1-10 0V4z'/%3E%3Cpath d='M7 6H4v1.5a3 3 0 0 0 3 3M17 6h3v1.5a3 3 0 0 1-3 3'/%3E%3Cpath d='M12 13v4M9 21h6M10 21v-4h4v4'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-megaphone{ --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10v4h4l8 4V6l-8 4H4z'/%3E%3Cpath d='M19 9a4 4 0 0 1 0 6'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-camera   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M4 8h3l1.5-2h7L17 8h3a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3Ccircle cx='12' cy='13' r='3.2'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-cash     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2.5' y='6' width='19' height='12' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2.6'/%3E%3Cpath d='M6 9v6M18 9v6'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-receipt  { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12v18l-3-2-3 2-3-2-3 2V3z'/%3E%3Cpath d='M9 8h6M9 12h6'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-bookmark { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M7 4h10v16l-5-4-5 4V4z'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-sparkles { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 3l1.7 4.6L18 9.3l-4.3 1.7L12 15.6l-1.7-4.6L6 9.3l4.3-1.7L12 3z'/%3E%3Cpath d='M18.5 14l.8 2.1 2.2.8-2.2.8-.8 2.1-.8-2.1-2.2-.8 2.2-.8.8-2.1z'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-clock    { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Cpath d='M12 7v5l3.5 2'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-box      { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 4.5v9L12 21l-8-4.5v-9L12 3z'/%3E%3Cpath d='M4 7.5l8 4.5 8-4.5M12 12v9'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-refresh  { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12a8 8 0 1 1-2.3-5.6'/%3E%3Cpath d='M20 4v4h-4'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-home     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11l8-7 8 7'/%3E%3Cpath d='M6 10v10h12V10'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-briefcase{ --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-palette  { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M12 3a9 9 0 0 0 0 18c1.4 0 2-1 2-2s-1-1.4-1-2.4 1-1.6 2-1.6h1a5 5 0 0 0 5-5c0-4-4-5-9-5z'/%3E%3Ccircle cx='8' cy='11' r='1' fill='%23000'/%3E%3Ccircle cx='12' cy='8' r='1' fill='%23000'/%3E%3Ccircle cx='16' cy='11' r='1' fill='%23000'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-cap      { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9l10-4 10 4-10 4L2 9z'/%3E%3Cpath d='M6 11v5c0 1.5 3 3 6 3s6-1.5 6-3v-5'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-device   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='3' width='10' height='18' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-laptop   { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='11' rx='1.5'/%3E%3Cpath d='M2 20h20'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-shirt    { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 4l4 2 4-2 4 3-3 3v10H7V10L4 7l4-3z'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-cup      { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8h12l-1 10a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 8z'/%3E%3Cpath d='M17 9h2a2 2 0 0 1 0 4h-2M8 3v2M11 3v2M14 3v2'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-plane    { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 4L3 11l6 2 2 6 3-4 4 3 3-14z'/%3E%3Cpath d='M9 13l6-5'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-dumbbell { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9v6M7 7v10M17 7v10M20 9v6M7 12h10'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-play     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M10 8.5l6 3.5-6 3.5z' fill='%23000' stroke='none'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-tag      { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M4 12V5a1 1 0 0 1 1-1h7l8 8-8 8-8-8z'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.2' fill='%23000'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-bag      { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l-1 12H7L6 8z'/%3E%3Cpath d='M9 8V6a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-book     { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h11v16H6a2 2 0 0 0-2 2V5z'/%3E%3Cpath d='M17 3v16'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-ghost    { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 20V11a7 7 0 0 1 14 0v9l-2.3-1.6L14 20l-2-1.5L10 20l-2.7-1.4L5 20z'/%3E%3Ccircle cx='9.5' cy='11' r='.8' fill='%23000'/%3E%3Ccircle cx='14.5' cy='11' r='.8' fill='%23000'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-instagram{ --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17' cy='7' r='1.1' fill='%23000' stroke='none'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }
.ico-facebook { --i:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M13.5 21v-7h2.4l.4-3h-2.8V9.1c0-.85.25-1.4 1.5-1.4H16.4V5.1C16.1 5.05 15.2 5 14.2 5 12 5 10.5 6.3 10.5 8.8V11H8v3h2.5v7z'/%3E%3C/svg%3E"); -webkit-mask-image:var(--i); mask-image:var(--i); }

/* ══════════════════════════════════════
   POLISH — mobile comfort + touch ergonomics
   ══════════════════════════════════════ */
/* Fingers, not cursors: comfortable tap targets on touch devices */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; }
  .nav-links a, .footer-links a { padding-top: 6px; padding-bottom: 6px; }
}
@media (max-width: 600px) {
  /* 16px inputs stop iOS Safari auto-zooming the page on focus */
  input, select, textarea { font-size: 16px !important; }
  .nav { padding: 10px 16px; }
  /* Phones: the nav is just the wordmark + burger — every action lives in
     the menu. Hide all nav buttons/chips/user pills on every page. */
  .nav .nav-cta, .nav > .btn, .nav > .chip, .nav .nav-user { display: none !important; }
  .logo { font-size: 1.3rem; }
  .card { padding: 20px; }
  .section { padding-left: 18px; padding-right: 18px; }
  .h-sub { font-size: 1rem; }
  /* wide tables (legal/press pages) scroll instead of breaking the layout */
  .prose table { display: block; overflow-x: auto; }
}
