/* =========================================================
   ELDOVAULT — design system v2
   Perf rules that must not be broken:
     · never animate filter: blur() on a viewport-sized layer
     · backdrop-filter only on the header (1 element), never on card grids
   Both destroy INP, and Core Web Vitals are a ranking factor.
   ========================================================= */

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* ground */
  --bg:        #04040A;
  --bg-2:      #08080F;
  --panel:     rgba(13, 13, 22, .72);
  --panel-2:   rgba(18, 18, 30, .82);
  --border:    rgba(255, 255, 255, .075);
  --border-2:  rgba(255, 255, 255, .14);
  --border-3:  rgba(255, 255, 255, .22);

  /* accents */
  --gold:      #FFC94A;
  --gold-hi:   #FFE9A8;
  --gold-lo:   #D9942A;
  --ember:     #FF8A3D;
  --violet:    #8B5CF6;
  --violet-hi: #A78BFA;
  --emerald:   #2DD4A7;
  --cyan:      #38BDF8;

  /* ink */
  --text:      #F2F2F7;
  --text-2:    #ADADC0;
  --muted:     #74748C;
  --faint:     #4C4C60;

  /* type */
  --display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* geometry */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 34px;
  --maxw: 1220px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow: 0 30px 70px -34px rgba(0, 0, 0, .95);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2.4rem, 6.4vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.05rem, 1.9vw, 1.3rem); letter-spacing: -.02em; }
p  { margin: 0 0 1rem; color: var(--text-2); }

::selection { background: var(--gold); color: #0B0B12; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   ambient layers
   ========================================================= */
.bg-mesh {
  position: fixed; inset: -20%;
  z-index: -3; pointer-events: none;
  opacity: .9;
}
.bg-mesh span { position: absolute; display: block; border-radius: 50%; will-change: transform; }
.bg-mesh .m1 {
  width: 62vw; height: 62vw; top: -6%; left: -6%;
  background: radial-gradient(closest-side,
    rgba(255,201,74,.26), rgba(255,138,61,.12) 36%, rgba(255,201,74,.04) 60%, transparent 76%);
  animation: mesh1 30s var(--ease) infinite alternate;
}
.bg-mesh .m2 {
  width: 70vw; height: 70vw; top: 10%; right: -12%;
  background: radial-gradient(closest-side,
    rgba(139,92,246,.32), rgba(139,92,246,.14) 36%, rgba(139,92,246,.04) 60%, transparent 76%);
  animation: mesh2 36s var(--ease) infinite alternate;
}
.bg-mesh .m3 {
  width: 58vw; height: 58vw; bottom: -8%; left: 26%;
  background: radial-gradient(closest-side,
    rgba(45,212,167,.16), rgba(56,189,248,.08) 38%, transparent 74%);
  animation: mesh3 42s var(--ease) infinite alternate;
}
@keyframes mesh1 { to { transform: translate3d(12vw, 8vh, 0) scale(1.18); } }
@keyframes mesh2 { to { transform: translate3d(-14vw, 12vh, 0) scale(1.12); } }
@keyframes mesh3 { to { transform: translate3d(9vw, -10vh, 0) scale(1.22); } }

/* film grain — static SVG turbulence, costs one paint */
.bg-grain {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* engineering grid, faded at the edges */
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 78% 55% at 50% 0%, #000 12%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 78% 55% at 50% 0%, #000 12%, transparent 72%);
}

/* =========================================================
   layout
   ========================================================= */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

/* glowing hairline between sections */
.rule {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, rgba(255,201,74,.28) 20%, rgba(139,92,246,.34) 50%, rgba(255,201,74,.28) 80%, transparent);
}

.section-head { max-width: 660px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; }

/* =========================================================
   primitives
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  padding: .42rem .9rem .42rem .75rem;
  border: 1px solid rgba(255,201,74,.2);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255,201,74,.1), rgba(255,138,61,.04));
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 2px rgba(255,201,74,.9);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .3; transform: scale(.7); } }

.grad-gold {
  background: linear-gradient(102deg, var(--gold-hi) 0%, var(--gold) 34%, var(--ember) 72%, var(--violet) 108%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-soft {
  background: linear-gradient(170deg, #FFFFFF 12%, #B9B9CE 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  letter-spacing: -.01em;
  padding: .95rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #17110A;
  background: linear-gradient(140deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-lo) 100%);
  box-shadow:
    0 0 0 1px rgba(255,201,74,.3),
    0 10px 30px -10px rgba(255,201,74,.55),
    inset 0 1px 0 rgba(255,255,255,.55);
  overflow: hidden;
}
.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255,201,74,.45),
    0 18px 50px -12px rgba(255,201,74,.75),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 22%, rgba(255,255,255,.6) 48%, transparent 74%);
  background-size: 260% 100%;
  animation: sheen 5s linear infinite;
  mix-blend-mode: overlay; pointer-events: none;
}
@keyframes sheen { to { background-position: -260% 0; } }

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.045);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,201,74,.4); }

.btn-dark {
  color: var(--text);
  background: rgba(8,8,15,.9);
  border-color: var(--border-2);
}
.btn-dark:hover { border-color: rgba(255,201,74,.45); background: rgba(14,14,24,.95); }

.btn-sm { padding: .62rem 1.15rem; font-size: .86rem; }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- panel (the base card) ---------- */
.panel {
  position: relative;
  background:
    linear-gradient(158deg, rgba(255,255,255,.065) 0%, rgba(255,255,255,.018) 46%, rgba(255,255,255,.005) 100%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
/* top edge highlight — the detail that stops it reading as a flat div */
.panel::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32) 30%, rgba(255,255,255,.32) 70%, transparent);
  pointer-events: none;
}
/* cursor spotlight */
.panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, -20%),
    rgba(255,201,74,.14), rgba(139,92,246,.06) 42%, transparent 66%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.panel:hover { transform: translateY(-4px); border-color: var(--border-2); }
.panel:hover::before { opacity: 1; }

/* rotating conic border — reserved for the one hero element per section */
.glow-ring { position: relative; }
.glow-ring::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: conic-gradient(from var(--angle),
    rgba(255,201,74,0) 0deg, var(--gold) 60deg, rgba(139,92,246,.9) 140deg,
    rgba(255,201,74,0) 220deg, rgba(255,201,74,0) 360deg);
  animation: spin 6s linear infinite;
}
@keyframes spin { to { --angle: 360deg; } }

/* =========================================================
   marketplace lockup — tells the visitor what these accounts are FOR
   ========================================================= */
.mk {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem .85rem .45rem .55rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  white-space: nowrap;
}
/* Image slot for the marketplace icon.
   Full-bleed by default so artwork that carries its own background fills the
   tile edge to edge and picks up the rounded corners. The hairline is an inset
   box-shadow, not a border — a real border sits outside the image, adds 2px to
   the box and knocks the lockup out of alignment with its text.
   If you swap in a transparent-background icon and it looks cramped, give it
   breathing room with:  .mk-glyph { --icon-pad: 3px; } */
.mk-glyph {
  --icon-pad: 0px;
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: block; padding: var(--icon-pad);
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 0 14px -5px rgba(255,201,74,.45);
  overflow: hidden;
}
.mk-glyph img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.mk-name {
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  letter-spacing: -.01em; line-height: 1.1;
}
.mk-name small {
  display: block; font-family: var(--body); font-weight: 500;
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}

/* the "accounts for" strip */
.for-strip {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1rem 1.75rem;
  padding: 1.5rem 0;
}
.for-strip .label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-family: var(--display); font-weight: 600;
}
.wordmark {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: -.03em;
  color: var(--text);
  display: inline-flex; align-items: baseline; gap: .12em;
  opacity: .92; transition: opacity .3s, transform .3s var(--ease);
}
.wordmark:hover { opacity: 1; transform: translateY(-2px); }
.wordmark .tld { color: var(--gold); }
.wordmark.dim { color: var(--text-2); opacity: .55; font-size: clamp(.95rem, 1.7vw, 1.2rem); }
.wordmark.dim .tld { color: var(--muted); }

/* =========================================================
   header
   ========================================================= */
.topbar {
  position: relative;
  font-size: .78rem; padding: .55rem 1rem;
  color: #F6E6BC;
  background: linear-gradient(90deg, rgba(139,92,246,.2), rgba(255,201,74,.2) 50%, rgba(139,92,246,.2));
  border-bottom: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .3rem .65rem;
}
.topbar .sep { opacity: .4; }

header.nav {
  position: sticky; top: 0; z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), border-color .45s, backdrop-filter .45s;
}
header.nav.stuck {
  background: rgba(4,4,10,.78);
  backdrop-filter: blur(20px) saturate(170%);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; padding: .85rem 0; }

.logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
/* Site logo is a single <img src="assets/logo.svg"> on every page — swap that one
   file and the whole site changes. object-fit keeps a non-square file from
   stretching. */
.logo-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255,201,74,.45));
}
.logo-text { font-family: var(--display); font-weight: 700; font-size: 1.14rem; letter-spacing: -.03em; line-height: 1.12; }
.logo-text small {
  display: block; font-family: var(--body); font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}

.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a { position: relative; font-size: .89rem; color: var(--text-2); padding: .3rem 0; transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  box-shadow: 0 0 8px rgba(255,201,74,.7);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none; margin-left: auto;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-2);
  border-radius: var(--r-sm); padding: .55rem .7rem; cursor: pointer;
}

/* =========================================================
   hero
   ========================================================= */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .line { display: block; }

.hero-tag {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1rem, 1.9vw, 1.28rem);
  color: var(--gold); margin: 0 0 1.35rem; min-height: 1.5em;
}
.rotator { display: inline-grid; vertical-align: bottom; }
.rotator span { grid-area: 1 / 1; opacity: 0; animation: rot 9s infinite; }
/* base opacity matters: with animations off the element falls back to it,
   so the first line stays readable instead of vanishing */
.rotator span:nth-child(1) { opacity: 1; animation-delay: 0s; }
.rotator span:nth-child(2) { animation-delay: 3s; }
.rotator span:nth-child(3) { animation-delay: 6s; }
@keyframes rot {
  0%, 2%   { opacity: 0; transform: translateY(.4em); }
  6%, 30%  { opacity: 1; transform: none; }
  36%,100% { opacity: 0; transform: translateY(-.4em); }
}

.hero-sub { font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 48ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .75rem 1.65rem; }
.proof-item { display: flex; align-items: center; gap: .5rem; font-size: .86rem; color: var(--text-2); }
.proof-item svg { width: 17px; height: 17px; color: var(--emerald); flex-shrink: 0; }

/* ---------- hero product card ---------- */
.hero-card-wrap { position: relative; perspective: 1400px; }
.hero-card {
  position: relative; padding: 1.65rem;
  border-radius: var(--r-lg);
  transform-style: preserve-3d;
  transition: transform .35s var(--ease-out);
}
/* holographic sweep across the card face */
.hero-card .holo {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 30%, rgba(255,201,74,.13) 44%, rgba(139,92,246,.16) 52%, transparent 66%);
  background-size: 250% 250%;
  animation: holo 7s var(--ease) infinite;
  mix-blend-mode: screen;
}
@keyframes holo { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.card-top {
  display: flex; align-items: center; gap: .8rem;
  padding-bottom: 1.05rem; margin-bottom: 1.05rem;
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
/* Same slot rules as .mk-glyph — full bleed, inset hairline, rounded corners
   inherited by the image. Override --icon-pad for transparent artwork. */
.card-avatar {
  --icon-pad: 0px;
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: block; padding: var(--icon-pad);
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 0 22px -8px rgba(255,201,74,.55);
  overflow: hidden;
}
.card-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.card-title { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: -.02em; }
.card-title small { display: block; font-family: var(--body); font-size: .74rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.pill-ok {
  margin-left: auto; display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--display); font-size: .66rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--emerald); background: rgba(45,212,167,.1);
  border: 1px solid rgba(45,212,167,.3); border-radius: 999px; padding: .3rem .6rem;
}

.rows { display: grid; gap: .5rem; position: relative; z-index: 2; }
.row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .86rem; padding: .62rem .85rem;
  background: rgba(255,255,255,.028);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.row > span:first-child { color: var(--muted); }
.row > span:last-child { font-family: var(--display); font-weight: 600; letter-spacing: -.01em; }
.row .ok { color: var(--emerald); }

.meter { height: 6px; border-radius: 99px; background: rgba(255,255,255,.07); overflow: hidden; margin-top: 1.1rem; position: relative; z-index: 2; }
.meter i {
  display: block; height: 100%; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--ember) 50%, var(--violet));
  box-shadow: 0 0 14px rgba(255,201,74,.8);
  transition: width 1.7s var(--ease);
}
.meter-label { display: flex; justify-content: space-between; font-size: .73rem; color: var(--muted); margin-top: .5rem; position: relative; z-index: 2; }

.chip {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem .85rem;
  font-family: var(--display); font-size: .76rem; font-weight: 600;
  background: rgba(9,9,16,.92);
  border: 1px solid var(--border-2); border-radius: 999px;
  box-shadow: 0 18px 44px -18px rgba(0,0,0,.95);
  animation: bob 6s ease-in-out infinite;
}
.chip svg { width: 14px; height: 14px; }
.chip-tl { top: -16px; left: -20px; color: var(--emerald); }
.chip-br { bottom: -14px; right: -12px; color: var(--gold); animation-delay: -3s; }
@keyframes bob { 50% { transform: translateY(-10px); } }

/* =========================================================
   marquee
   ========================================================= */
.marquee {
  overflow: hidden; padding: 1rem 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(139,92,246,.05), rgba(255,201,74,.05));
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; gap: 2.75rem; width: max-content; animation: slide 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--display); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-2);
  white-space: nowrap;
}
.marquee-track span::after { content: "◆"; color: var(--gold); font-size: .55rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* =========================================================
   stats
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { padding: 1.8rem 1.35rem; text-align: center; }
.stat b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.9rem); line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(160deg, #FFFFFF 8%, var(--gold) 92%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat small {
  display: block; margin-top: .6rem; font-size: .73rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* =========================================================
   products
   ========================================================= */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.product { padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.product.hot {
  border-color: rgba(255,201,74,.32);
  box-shadow: 0 0 0 1px rgba(255,201,74,.14), 0 24px 60px -26px rgba(255,201,74,.35), var(--shadow);
  transform: translateY(-10px);
}
.product.hot:hover { transform: translateY(-14px); }
.tag-hot {
  position: absolute; top: 1.9rem; right: 1.8rem;
  font-family: var(--display); font-weight: 700; font-size: .58rem;
  letter-spacing: .13em; color: #17110A;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
  padding: .3rem .65rem; border-radius: 999px;
  box-shadow: 0 6px 20px -6px rgba(255,201,74,.9);
}

.stock { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--display); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--emerald); margin-bottom: 1rem; }
.stock i { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px 1px var(--emerald); animation: blink 2s infinite; }
.stock.low { color: var(--ember); }
.stock.low i { background: var(--ember); box-shadow: 0 0 10px 1px var(--ember); }

.product-name { font-family: var(--display); font-weight: 600; font-size: 1.12rem; letter-spacing: -.025em; margin-bottom: .4rem; }
.product-desc { font-size: .86rem; color: var(--muted); min-height: 2.8em; margin-bottom: 1.35rem; line-height: 1.55; }
.price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .3rem; }
.price b { font-family: var(--display); font-size: 3rem; font-weight: 700; letter-spacing: -.05em; }
.price span { font-size: .8rem; color: var(--muted); }
.price-note { font-size: .75rem; color: var(--muted); margin-bottom: 1.6rem; }

.product ul { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .68rem; flex-grow: 1; }
.product li { display: flex; gap: .6rem; font-size: .875rem; color: var(--text-2); line-height: 1.45; }
.product li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .2rem; color: var(--gold); }
.product li strong { color: var(--text); font-weight: 600; }

/* =========================================================
   bento feature grid — varied sizes so it doesn't read as a template
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}
.bento > * { padding: 1.9rem 1.7rem; }
.b-wide { grid-column: span 4; }
.b-tall { grid-column: span 2; grid-row: span 2; }
.b-half { grid-column: span 3; }
.b-third { grid-column: span 2; }

.b-ico {
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 1.1rem;
  display: grid; place-items: center; color: var(--gold);
  background: linear-gradient(148deg, rgba(255,201,74,.2), rgba(139,92,246,.12));
  border: 1px solid var(--border-2);
}
.b-ico svg { width: 20px; height: 20px; }
.bento h3 { margin-bottom: .5rem; }
.bento p { font-size: .89rem; margin: 0; }

/* the tall cell gets a mini order feed */
.feed { display: grid; gap: .55rem; margin-top: 1.25rem; }
.feed-row {
  display: flex; align-items: center; gap: .6rem;
  font-size: .78rem; padding: .55rem .7rem;
  border: 1px solid var(--border); border-radius: var(--r-xs);
  background: rgba(255,255,255,.025);
}
.feed-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); flex-shrink: 0; }
.feed-row .who { color: var(--text-2); }
.feed-row .when { margin-left: auto; color: var(--faint); font-size: .72rem; white-space: nowrap; }

/* =========================================================
   steps
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; counter-reset: s; }
.step { padding: 2.1rem 1.7rem; counter-increment: s; }
.step::before {
  content: "0" counter(s);
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 2.6rem; line-height: 1; margin-bottom: .85rem; letter-spacing: -.05em;
  background: linear-gradient(165deg, var(--gold) 5%, rgba(255,201,74,.12) 95%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h3 { margin-bottom: .45rem; }
.step p { font-size: .88rem; margin: 0; }

/* =========================================================
   payments
   ========================================================= */
.pays { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pays.five { grid-template-columns: repeat(5, 1fr); }
.pay { padding: 1.5rem 1.1rem; text-align: center; }
.pay-ico {
  width: 46px; height: 46px; margin: 0 auto .8rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.35rem; font-weight: 700;
  border: 1px solid var(--border-2); background: rgba(255,255,255,.035);
}
.pay b { display: block; font-family: var(--display); font-size: .93rem; letter-spacing: -.01em; }
.pay small { color: var(--muted); font-size: .74rem; }

/* =========================================================
   reviews
   ========================================================= */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.review { padding: 1.65rem; }
.stars { color: var(--gold); font-size: .88rem; letter-spacing: .18em; margin-bottom: .75rem; }
.review p { font-size: .92rem; color: var(--text); margin-bottom: 1.1rem; }
.who { display: flex; align-items: center; gap: .65rem; }
.who-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--display);
  font-size: .78rem; font-weight: 700; color: #17110A;
  background: linear-gradient(140deg, var(--gold), var(--violet));
}
.who b { display: block; font-family: var(--display); font-size: .85rem; letter-spacing: -.01em; }
.who small { font-size: .73rem; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: .7rem; max-width: 840px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: linear-gradient(158deg, rgba(255,255,255,.05), rgba(255,255,255,.015)), var(--panel);
  transition: border-color .4s var(--ease), background .4s;
  overflow: hidden;
}
.faq details[open] {
  border-color: rgba(255,201,74,.3);
  background: linear-gradient(158deg, rgba(255,201,74,.085), rgba(255,201,74,.015)), var(--panel-2);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.45rem;
  font-family: var(--display); font-weight: 600; font-size: .98rem; letter-spacing: -.015em;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--gold);
  line-height: 1; flex-shrink: 0; transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.45rem 1.35rem; }
.faq-body p { font-size: .92rem; margin: 0; }
.faq-body p + p { margin-top: .75rem; }

/* =========================================================
   CTA band
   ========================================================= */
.cta {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,201,74,.22);
  background:
    radial-gradient(760px circle at 12% 0%, rgba(255,201,74,.16), transparent 60%),
    radial-gradient(760px circle at 88% 100%, rgba(139,92,246,.22), transparent 60%),
    linear-gradient(158deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  box-shadow: var(--shadow);
}
.cta h2 { margin-bottom: .75rem; }
.cta p { max-width: 54ch; margin: 0 auto 2rem; }

/* =========================================================
   checkout
   ========================================================= */
.co-grid { display: grid; grid-template-columns: 1.25fr .95fr; gap: 1.75rem; align-items: start; }
.co-panel { padding: 1.9rem 1.75rem; }
.co-panel h1, .co-panel h2 { font-size: 1.3rem; margin-bottom: .35rem; }
.co-lead { font-size: .88rem; color: var(--muted); margin-bottom: 1.6rem; }

.steps-bar { display: flex; align-items: center; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.step-dot {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-size: .78rem; font-weight: 600; color: var(--muted);
}
.step-dot i {
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  font-size: .72rem; font-style: normal;
  border: 1px solid var(--border-2); background: rgba(255,255,255,.04);
}
.step-dot.on { color: var(--gold); }
.step-dot.on i {
  background: linear-gradient(140deg, var(--gold-hi), var(--gold-lo));
  border-color: transparent; color: #17110A;
  box-shadow: 0 0 16px -2px rgba(255,201,74,.8);
}
.step-line { flex: 1 1 20px; height: 1px; background: var(--border-2); min-width: 16px; }

.field { margin-bottom: 1.15rem; }
.field label {
  display: block; font-family: var(--display); font-size: .8rem; font-weight: 600;
  margin-bottom: .45rem; letter-spacing: -.01em;
}
.field .hint { font-family: var(--body); font-weight: 400; color: var(--muted); font-size: .76rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border-2); border-radius: var(--r-sm);
  color: var(--text); font-family: var(--body); font-size: .92rem;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(255,201,74,.5);
  background: rgba(255,255,255,.055);
  box-shadow: 0 0 0 3px rgba(255,201,74,.12);
}
.field-err { color: var(--ember); font-size: .78rem; margin-top: .4rem; display: none; }
.field.invalid input { border-color: rgba(255,138,61,.6); }
.field.invalid .field-err { display: block; }

/* payment method picker.
   Column count lives here rather than in an inline style — an inline
   grid-template-columns outranks the mobile media query and squeezes five
   options into ~41px each on a phone. */
.pay-opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; margin-bottom: 1.5rem; }
.pay-opts.five { grid-template-columns: repeat(5, 1fr); }
.pay-opt { position: relative; }
.pay-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pay-opt span {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .95rem .5rem; cursor: pointer;
  border: 1px solid var(--border-2); border-radius: var(--r-sm);
  background: rgba(255,255,255,.03);
  font-family: var(--display); font-size: .78rem; font-weight: 600;
  transition: all .3s var(--ease);
}
.pay-opt span em { font-style: normal; font-size: 1.25rem; line-height: 1; }
.pay-opt input:checked + span {
  border-color: rgba(255,201,74,.55);
  background: rgba(255,201,74,.1);
  box-shadow: 0 0 0 1px rgba(255,201,74,.3), 0 8px 26px -10px rgba(255,201,74,.5);
}
.pay-opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* order summary */
.sum-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; padding: .6rem 0; }
.sum-row.total {
  border-top: 1px solid var(--border-2); margin-top: .5rem; padding-top: 1rem;
  font-family: var(--display); font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em;
}
.sum-row .k { color: var(--muted); }
.sum-row .v { font-family: var(--display); font-weight: 600; text-align: right; }

.addr-box {
  margin-top: 1.25rem; padding: 1rem;
  border: 1px dashed rgba(255,201,74,.35); border-radius: var(--r-sm);
  background: rgba(255,201,74,.05);
}
.addr-box .k { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.addr {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .82rem; word-break: break-all;
  color: var(--gold-hi);
}
.copy-btn {
  margin-left: auto; flex-shrink: 0; cursor: pointer;
  background: rgba(255,255,255,.06); border: 1px solid var(--border-2);
  border-radius: var(--r-xs); padding: .35rem .6rem; font-size: .74rem;
  font-family: var(--display); font-weight: 600;
  transition: all .3s;
}
.copy-btn:hover { border-color: rgba(255,201,74,.5); background: rgba(255,201,74,.12); }

.co-note {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .8rem; color: var(--muted); line-height: 1.55;
  padding: .9rem 1rem; margin-top: 1.25rem;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: rgba(255,255,255,.022);
}
.co-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .15rem; color: var(--gold); }

.trust-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; color: var(--text-2);
  padding: .4rem .75rem; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255,255,255,.025);
}
.trust-chip svg { width: 13px; height: 13px; color: var(--emerald); }

/* ---------- checkout: the chosen product, carried in from the product page ---------- */
.chosen {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  padding: 1rem 1.1rem; margin-bottom: 2rem;
  border: 1px solid rgba(255,201,74,.28); border-radius: var(--r-md);
  background: linear-gradient(120deg, rgba(255,201,74,.09), rgba(255,201,74,.02));
}
.chosen-mark {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.chosen-mark img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.chosen-txt { min-width: 0; flex: 1 1 12rem; }
.chosen-txt b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 1rem; letter-spacing: -.02em;
}
.chosen-txt small { display: block; font-size: .78rem; color: var(--muted); }
.chosen-price {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: -.03em; color: var(--gold-hi); margin-left: auto;
}
.chosen-change {
  font-family: var(--display); font-size: .78rem; font-weight: 600; color: var(--text-2);
  padding: .4rem .8rem; border: 1px solid var(--border-2); border-radius: 999px;
  transition: all .3s var(--ease); white-space: nowrap;
}
.chosen-change:hover { color: var(--gold); border-color: rgba(255,201,74,.45); }
@media (max-width: 520px) {
  .chosen-price { margin-left: 0; }
}

/* ---------- checkout: numbered steps ---------- */
.co-step { position: relative; padding-left: 3.1rem; margin-bottom: 2.1rem; }
.co-step:last-child { margin-bottom: 0; }
.co-step > .num {
  position: absolute; left: 0; top: -2px;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: .86rem; color: #17110A;
  background: linear-gradient(140deg, var(--gold-hi), var(--gold-lo));
  box-shadow: 0 0 18px -4px rgba(255,201,74,.8);
}
/* connector rail down the left */
.co-step::before {
  content: ""; position: absolute; left: 15.5px; top: 36px; bottom: -2.1rem;
  width: 1px; background: linear-gradient(180deg, rgba(255,201,74,.35), transparent);
}
.co-step:last-child::before { display: none; }
.co-step h2 {
  font-family: var(--display); font-size: 1.02rem; font-weight: 600;
  letter-spacing: -.02em; margin: .3rem 0 .25rem;
}
.co-step .sub { font-size: .84rem; color: var(--muted); margin-bottom: 1.1rem; }

/* Wrong chain means the funds are gone, so this gets real visual weight. */
.net-warn {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .82rem; line-height: 1.5; color: #FFD9A8;
  padding: .8rem .95rem; margin-top: .9rem;
  border: 1px solid rgba(255,138,61,.4);
  border-radius: var(--r-sm);
  background: rgba(255,138,61,.09);
}
.net-warn svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .15rem; color: var(--ember); }
.net-warn strong { color: #FFF0DC; }

.amount-line {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: .9rem 1rem; border-radius: var(--r-sm);
  background: rgba(255,201,74,.08); border: 1px solid rgba(255,201,74,.25);
}
.amount-line .k { font-size: .82rem; color: var(--text-2); }
.amount-line .v {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: -.03em; color: var(--gold-hi);
}

.wallet-open {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: .85rem; font-size: .82rem;
  font-family: var(--display); font-weight: 600; color: var(--gold);
  border-bottom: 1px solid rgba(255,201,74,.35); padding-bottom: 1px;
}
.wallet-open:hover { color: var(--gold-hi); }
.wallet-open svg { width: 14px; height: 14px; }

.co-status {
  display: none; margin-top: 1rem; font-size: .85rem; line-height: 1.55;
  padding: .85rem 1rem; border-radius: var(--r-sm);
}
.co-status.show { display: block; }
.co-status.err { color: #FFD2BC; background: rgba(255,138,61,.1); border: 1px solid rgba(255,138,61,.4); }
.co-status.busy { color: var(--text-2); background: rgba(255,255,255,.04); border: 1px solid var(--border-2); }

.co-success { display: none; text-align: center; padding: 1rem 0 .5rem; }
.co-success.show { display: block; }
.co-success .tick {
  width: 62px; height: 62px; margin: 0 auto 1.25rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--emerald);
  background: rgba(45,212,167,.12); border: 1px solid rgba(45,212,167,.4);
}
.co-success .tick svg { width: 28px; height: 28px; }
.co-success h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.co-success p { font-size: .92rem; max-width: 46ch; margin-inline: auto; }
.order-ref {
  display: inline-block; margin: 1.15rem 0;
  font-family: var(--mono); font-size: 1.15rem; letter-spacing: .08em; color: var(--gold-hi);
  padding: .7rem 1.2rem; border-radius: var(--r-sm);
  background: rgba(255,201,74,.09); border: 1px dashed rgba(255,201,74,.4);
}

@media (min-width: 1021px) { .co-side { position: sticky; top: 96px; } }
@media (max-width: 520px) {
  .co-step { padding-left: 2.5rem; }
  .co-step > .num { width: 28px; height: 28px; font-size: .78rem; }
  .co-step::before { left: 13.5px; }
}

/* =========================================================
   prose (guide pages)
   ========================================================= */
.prose { max-width: 780px; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.45rem, 2.7vw, 2rem); }
.prose h3 { margin-top: 2.1rem; font-size: 1.14rem; }
.prose p, .prose li { font-size: 1.02rem; line-height: 1.8; color: var(--text-2); }
.prose ul, .prose ol { padding-left: 1.35rem; margin-bottom: 1.4rem; }
.prose li { margin-bottom: .6rem; }
.prose li::marker { color: var(--gold); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--gold-hi); }
.prose strong { color: var(--text); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: .92rem; }
.prose th, .prose td { padding: .82rem 1rem; border: 1px solid var(--border); text-align: left; }
.prose th { background: rgba(255,255,255,.04); font-family: var(--display); font-weight: 600; color: var(--text); }
.prose tbody tr:nth-child(even) { background: rgba(255,255,255,.014); }

.callout {
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(255,201,74,.08), rgba(255,201,74,.015));
  padding: 1.2rem 1.4rem; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 1.9rem 0;
}
.callout p:last-child { margin-bottom: 0; }

/* table of contents — helps win featured snippets and jump links */
.toc {
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: rgba(255,255,255,.025); padding: 1.3rem 1.5rem; margin-bottom: 2.5rem;
}
/* Not an <h4>: a table-of-contents label is a widget caption, not a document
   section. Using a heading here put an h1 -> h4 jump in every guide's outline,
   which breaks screen-reader heading navigation. */
.toc .toc-label {
  font-family: var(--display); font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 .85rem;
}
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .45rem; font-size: .9rem; }
.toc a { color: var(--text-2); text-decoration: none; }
.toc a:hover { color: var(--gold); }

.crumbs { font-size: .81rem; color: var(--muted); padding-top: 1.75rem; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 .45rem; opacity: .45; }

/* =========================================================
   footer
   ========================================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 3.75rem 0 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,.045));
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
/* Footer column captions — also not headings, for the same reason. */
.foot-grid .col-label { font-family: var(--display); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text); margin: 0 0 1.1rem; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .58rem; }
.foot-grid a { font-size: .87rem; color: var(--muted); transition: color .3s; }
.foot-grid a:hover { color: var(--gold); }
.foot-about p { font-size: .86rem; margin-top: 1rem; max-width: 36ch; }
.foot-bottom {
  border-top: 1px solid var(--border); padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .79rem; color: var(--muted);
}
.disclaimer { font-size: .75rem; color: #62627A; line-height: 1.65; margin-top: 1.3rem; max-width: 80ch; }
.disclaimer strong { color: #85859C; }

/* keyword cloud — internal linking */
.kw { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.kw a {
  font-size: .76rem; color: var(--muted);
  padding: .35rem .78rem; border: 1px solid var(--border); border-radius: 999px;
  transition: all .3s var(--ease);
}
.kw a:hover { color: var(--gold); border-color: rgba(255,201,74,.35); background: rgba(255,201,74,.06); }

/* Marker class, deliberately styleless. The page JSON-LD points a
   SpeakableSpecification at it, which tells voice assistants and answer engines
   which sentences are the summary worth reading aloud. Do not repurpose it for
   layout — moving it would silently change what gets quoted. */
.speakable { /* schema hook only */ }

/* build-time notice — delete before launch */
.edit-warning {
  max-width: 64ch; margin: 1.6rem auto 0; text-align: center;
  font-size: .8rem; line-height: 1.6; color: #F5D488;
  background: rgba(255,201,74,.07);
  border: 1px dashed rgba(255,201,74,.35);
  border-radius: var(--r-md); padding: .95rem 1.25rem;
}
.edit-warning code { font-family: var(--mono); font-size: .9em; background: rgba(255,255,255,.07); padding: .1em .35em; border-radius: 4px; }

/* =========================================================
   reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* =========================================================
   responsive
   ========================================================= */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card-wrap { max-width: 470px; }
  .products, .steps, .reviews { grid-template-columns: 1fr 1fr; }
  .product.hot { transform: none; }
  .product.hot:hover { transform: translateY(-4px); }
  /* stats has 4 tiles, so 2x2 stays balanced; the 5-tile payment row reads
     better as 3+2 than as 2+2+1 */
  .stats, .pays { grid-template-columns: 1fr 1fr; }
  .pays.five { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .co-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .b-wide, .b-half { grid-column: span 4; }
  .b-tall { grid-column: span 4; grid-row: span 1; }
  .b-third { grid-column: span 2; }
}

/* collapse the nav before the links wrap, not at phone width */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: grid; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,6,12,.98); backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
    padding: 1.3rem 1.25rem 1.8rem; gap: 1.1rem; margin: 0;
  }
  .nav-links.open a { font-size: 1rem; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 2rem, var(--maxw)); }
  .products, .steps, .reviews { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .b-wide, .b-half, .b-tall, .b-third { grid-column: span 1; }
  .chip { display: none; }
  .topbar { font-size: .71rem; padding: .5rem .75rem; }
  .topbar .topbar-extra { display: none; }
  .logo-mark { width: 34px; height: 34px; }
  .logo-text { font-size: 1rem; }
  .stat { padding: 1.4rem 1rem; }
  .product { padding: 1.75rem 1.4rem; }
  .cta { border-radius: var(--r-lg); }
  .pay-opts { grid-template-columns: 1fr 1fr; }
  .pay-opts.five { grid-template-columns: repeat(3, 1fr); }
  .prose table { display: block; overflow-x: auto; white-space: nowrap; }
  .for-strip { gap: .8rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  /* show only the first tagline; the rest would stack on top of it */
  .rotator span { opacity: 0; }
  .rotator span:nth-child(1) { opacity: 1; }
}
