/* Typography.
   Inter / Roboto / system-ui defaults are the single most-cited "this was
   generated" tell, so they are deliberately not first here. Prices, codes,
   counts and IDs are set in mono - this is a shop selling redemption codes,
   so the monospace reads as domain-appropriate rather than decorative.

   To go further, self-host a real display face and point --font-display at it:
     @font-face { font-family: "YourFace"; src: url("assets/yourface.woff2") format("woff2"); font-display: swap; }
   That is the one change that most cleanly breaks the default look. */
:root {
  --font-body: ui-sans-serif, "Segoe UI Variable Text", "Segoe UI", Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --font-display: ui-sans-serif, "Segoe UI Variable Display", "Segoe UI Semibold", Ubuntu, Cantarell, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "Cascadia Mono", "Liberation Mono", Menlo, monospace;

  /* Monochrome. The only colour on the site is the payment marks, which is
     the point: nothing competes with them. Depth comes from layered greys and
     a faint white glow, not hue. */
  --bg: #000000;
  --bg-alt: #070707;
  --panel: #0c0c0c;
  --panel-solid: #0c0c0c;
  --panel-2: #161616;
  --line: #1e1e1e;
  --line-strong: #333333;
  --text: #f4f4f4;
  --muted: #a3a3a3;
  --dim: #6b6b6b;
  --accent: #ffffff;
  --accent-hover: #e4e4e4;
  --accent-soft: rgba(255, 255, 255, 0.08);
  --moon: #ffffff;
  --green: #d8d8d8;
  --star: #ffffff;
  --danger: #ff6b6b;
  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1160px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  --glow: 0 0 24px -6px rgba(255, 255, 255, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* No page-wide radial "atmosphere" glow. A flat ground with real contrast
   reads as a shop; layered coloured haze reads as a generated landing page. */
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(255,255,255,.3); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- announcement ---------- */
.announce {
  background: #101010;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
}
.announce .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.announce span:last-child { color: rgba(255, 255, 255, .82); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; height: 64px; }

.brand {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-right: auto;
}
.brand .mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #f4f4f4;
  box-shadow: var(--glow);
  display: grid;
  place-items: center;
}

.nav { display: flex; gap: 4px; font-size: 14px; }
.nav a {
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: var(--panel-2); }
.nav a.active { color: var(--text); background: var(--panel-2); box-shadow: inset 0 0 0 1px var(--line-strong); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 35px; height: 35px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--panel-2); color: var(--text); }
.btn-login {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 14px;
  transition: background .15s, border-color .15s;
}
.btn-login:hover { background: var(--panel-2); }
.btn-login.is-active { border-color: rgba(255,255,255,.45); background: var(--accent-soft); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -1px; right: -1px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px var(--bg);
}
.cart-count[hidden] { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background .16s, border-color .16s, transform .16s, box-shadow .16s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #000; box-shadow: var(--glow); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 0 30px -4px rgba(255,255,255,.4); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); background: var(--panel); }
.btn-ghost:hover { background: var(--panel-2); border-color: rgba(255,255,255,.24); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ---------- hero ---------- */


.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.pill b { color: var(--text); font-weight: 600; }
.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(255,255,255,.16);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero p.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stats div {
  padding: 0 34px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.hero-stats div:last-child { border-right: 0; }
.hero-stats b { display: block; font-size: 24px; letter-spacing: -0.03em; }
.hero-stats span { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--dim); }

.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 34px 0 0;
  font-size: 12.5px;
  color: var(--dim);
}
.pay-chip {
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #0b1120;
}

/* ---------- sections ---------- */
section { padding: 74px 0; }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h2 {
  font-size: clamp(27px, 3.6vw, 38px);
  letter-spacing: -0.035em;
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.15;
}
.section-head p { color: var(--muted); margin: 0; }
.kicker {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-hover);
  font-weight: 600;
  margin-bottom: 12px;
}

.surface {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ---------- product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.card:hover { border-color: var(--accent); }
.card-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 22px;
  position: relative;
  background:
    #0f0f0f;
}
.card-media img { transition: transform .25s ease; filter: drop-shadow(0 14px 26px rgba(0,0,0,.5)); }
.card:hover .card-media img { transform: translateY(-4px) scale(1.03); }
.badge {
  position: absolute;
  top: 11px; left: 11px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 4px 9px;
  border-radius: 6px;
}
.card-body { padding: 15px 16px 17px; }
.card-title { font-size: 15px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
.stock-pill {
  font-size: 11.5px;
  color: var(--green);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  padding: 2px 9px;
  border-radius: 999px;
}
.price { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.price .was { font-size: 12.5px; color: var(--dim); text-decoration: line-through; margin-left: 7px; font-weight: 500; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color .18s, transform .18s;
}
.feature:hover { border-color: var(--line-strong); }
.feature .ico {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: var(--accent-soft);
  border: 1px solid rgba(255,255,255,.26);
  color: #9dc2ff;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature h3 { margin: 0 0 7px; font-size: 15px; font-weight: 600; }
.feature p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ---------- stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}
.stat { padding: 30px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: 32px; letter-spacing: -0.035em; line-height: 1.1; }
.stat span { color: var(--muted); font-size: 13px; }

/* ---------- reviews ---------- */
.review-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.review-head h2 { margin: 0; font-size: clamp(25px, 3.2vw, 32px); letter-spacing: -0.035em; }
.rating-line { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.stars { color: var(--star); letter-spacing: 1.5px; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 17px;
  transition: border-color .18s;
}
.review:hover { border-color: var(--line-strong); }
.review .top { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; font-size: 11.5px; color: var(--dim); }
.verified { color: var(--green); }
.review p { margin: 0 0 14px; font-size: 13.5px; }
.review .who { display: flex; align-items: center; gap: 9px; font-size: 11.5px; color: var(--dim); }
.avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #2a2a2a;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #061024;
  flex: none;
}

/* ---------- faq ---------- */
.faq { max-width: 730px; margin: 0 auto; display: grid; gap: 11px; }
details.q {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 19px;
  transition: border-color .18s, background .18s;
}
details.q:hover { border-color: var(--line-strong); }
details.q[open] { background: var(--panel-2); border-color: rgba(255,255,255,.28); }
details.q summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after { content: "+"; color: var(--muted); font-size: 19px; line-height: 1; }
details.q[open] summary::after { content: "\2013"; color: var(--accent-hover); }
details.q p { margin: 11px 0 2px; color: var(--muted); font-size: 13.5px; }

/* ---------- about / join ---------- */
.about {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
}
.about h2 { margin: 0 0 12px; font-size: 28px; letter-spacing: -0.035em; }
.about p { color: var(--muted); margin: 0 0 22px; }
.about .row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.join {
  position: relative;
  overflow: hidden;
  background: #101010;
  border-radius: var(--radius);
  padding: 32px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.join > * { position: relative; }
.join h3 { margin: 0 0 6px; font-size: 21px; letter-spacing: -0.025em; }
.join p { margin: 0; color: rgba(255,255,255,.86); font-size: 13.5px; max-width: 450px; }
.join .btn { background: #fff; color: #12244d; }
.join .btn:hover { background: #e9efff; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  margin-top: 56px;
  padding: 44px 0 22px;
}
.foot-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding-bottom: 32px;
}
.foot-brand { max-width: 330px; }
.foot-brand .brand { font-size: 16px; margin-bottom: 12px; }
.foot-brand p { color: var(--muted); font-size: 13.5px; margin: 0; }

.foot-links { display: flex; gap: 56px; }
.foot-links h4 {
  margin: 0 0 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dim);
}
.foot-links a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13.5px;
  transition: color .15s;
}
.foot-links a:hover { color: var(--text); }

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.foot-pay { display: flex; align-items: center; gap: 9px; }
.foot-pay > span:first-child {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-right: 3px;
}
.coin-mark { width: 24px; height: 24px; display: block; opacity: .92; transition: opacity .15s, transform .15s; }
.coin-mark:hover { opacity: 1; transform: translateY(-1px); }
.coin-mark svg { width: 100%; height: 100%; display: block; }

.foot-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--dim);
  font-size: 12px;
  margin-left: auto;
}

/* ---------- product page ---------- */
.crumbs { display: flex; align-items: center; gap: 9px; color: var(--dim); font-size: 13px; padding: 28px 0 6px; }
.crumbs a:hover { color: var(--text); }
.crumbs .sep { opacity: .45; }
.crumbs .now { color: var(--text); }

.product-title { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -0.04em; margin: 14px 0 8px; font-weight: 700; }
.product-sub { color: var(--muted); margin: 0 0 30px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }
.product { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 36px; align-items: start; }

.gallery { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gallery .main {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 30px;
  background: #0f0f0f;
}
.gallery .main img { filter: drop-shadow(0 26px 44px rgba(0,0,0,.55)); }
.thumbs { display: flex; gap: 10px; padding: 12px; border-top: 1px solid var(--line); background: var(--panel); }
.thumb {
  width: 64px; height: 64px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0f0f0f;
  display: grid; place-items: center;
  padding: 8px;
  transition: border-color .15s;
}
.thumb:hover { border-color: var(--line-strong); }
.thumb.is-active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }

/* same reasoning as the checkout summary: stick the column, not the box */
.product > div:last-child { position: sticky; top: 84px; }
.buybox {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.buybox .price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.buybox .amount { font-family: var(--font-mono); font-size: 32px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.buybox .was { font-size: 14px; color: var(--dim); text-decoration: line-through; margin-left: 9px; font-weight: 500; }
.save {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  padding: 3px 10px;
  border-radius: 999px;
}
.stock-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 14px 0 18px; border-bottom: 1px solid var(--line); }
.stock-line .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(255,255,255,.14); }
.stock-line b { color: var(--text); }

.qty-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); overflow: hidden; }
.stepper button { width: 36px; height: 36px; background: transparent; border: 0; color: var(--muted); font-size: 16px; }
.stepper button:hover { background: var(--panel-2); color: var(--text); }
.stepper input {
  width: 48px; height: 36px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  color: var(--text);
  text-align: center;
  font: inherit;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy-actions { display: grid; gap: 10px; }
.perks { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.perks li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.perks svg { flex: none; margin-top: 3px; color: var(--green); }

.purchases {
  margin-top: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 18px;
  color: var(--muted);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.purchases b { color: var(--text); }

.tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); margin: 44px 0 24px; }
.tab {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 0 13px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}
.tab:hover { color: var(--text); }
.tab.is-active { color: var(--text); border-bottom-color: var(--accent); }
.tab-panel { display: none; max-width: 740px; }
.tab-panel.is-active { display: block; }
.tab-panel p { color: var(--muted); }
.tos {
  border-left: 2px solid rgba(255,255,255,.45);
  background: var(--panel);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 13.5px;
}

/* ---------- cart drawer ---------- */
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 14, .68);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 50;
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(390px, 100%);
  background: #080f1e;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .24s cubic-bezier(.32,.72,0,1);
  z-index: 60;
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.drawer .items { flex: 1; overflow-y: auto; padding: 16px 20px; display: grid; gap: 12px; align-content: start; }
.drawer .empty { color: var(--dim); font-size: 13.5px; text-align: center; padding: 48px 0; }
.line-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px;
}
.line-item .li-img {
  width: 50px; height: 50px;
  border-radius: 9px;
  background: #0f0f0f;
  display: grid; place-items: center;
  padding: 6px;
}
.line-item .li-name { font-size: 13.5px; font-weight: 600; }
.line-item .li-sub { font-size: 12px; color: var(--dim); }
.line-item .li-price { font-size: 13.5px; font-weight: 600; }
.li-remove { background: none; border: 0; padding: 2px 0 0; color: var(--dim); font-size: 12px; }
.li-remove:hover { color: var(--danger); }
.drawer > footer { border-top: 1px solid var(--line); padding: 18px 20px; display: grid; gap: 12px; }
.total-row { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; }
.drawer .fine { font-size: 11.5px; color: var(--dim); text-align: center; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  background: #121c31;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 13.5px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 70;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- inner page shell ---------- */
.page-head { padding: 46px 0 34px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.page-head h1 { font-size: clamp(30px, 4.4vw, 44px); margin: 0 0 10px; }
.page-head p { color: var(--muted); margin: 0; max-width: 620px; font-size: 15.5px; }
.page-head .crumbs { padding: 0 0 14px; }
main.page { padding-bottom: 60px; }

.subnav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.subnav a {
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: 13.5px;
  transition: color .15s, border-color .15s, background .15s;
}
.subnav a:hover { color: var(--text); border-color: var(--line-strong); }
.subnav a.is-active { color: #000; background: var(--accent); border-color: transparent; }

.empty-state {
  text-align: center;
  color: var(--dim);
  padding: 44px 0;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  grid-column: 1 / -1;
}

/* ---------- state pills (shared: status, orders, tickets) ---------- */
.state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.state .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.state-operational { color: var(--green); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2); }
.state-degraded { color: var(--star); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22); }
.state-down { color: var(--danger); background: rgba(248, 113, 113, .1); border: 1px solid rgba(248, 113, 113, .26); }
.state-muted { color: var(--dim); background: var(--panel-2); border: 1px solid var(--line); }

/* ---------- reviews page ---------- */
.rv-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 40px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.rv-head h1 { margin: 0; font-size: clamp(26px, 3.4vw, 34px); }
.rv-score { display: flex; align-items: baseline; gap: 10px; font-size: 13px; color: var(--muted); }
.rv-score b { font-family: var(--font-mono); font-size: 26px; color: var(--text); }
.rv-empty-note { margin: 0; color: var(--dim); font-size: 13px; max-width: 340px; }

.rv-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.rv-filters .chip { padding: 5px 12px; font-size: 12.5px; }
.rv-filters .chip span { color: var(--dim); }
.rv-filters .chip.is-active span { color: #000; }

.rv-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
  padding-bottom: 50px;
}
.rv-list { display: grid; gap: 12px; align-content: start; }
.rv-list:empty { display: none; }

.rv-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
  position: sticky;
  top: 88px;
}
.rv-form h2 { margin: 0 0 8px; font-size: 17px; letter-spacing: -0.02em; }
.rv-note { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.rv-fine { margin: 0; color: var(--dim); font-size: 11.5px; }

@media (max-width: 880px) {
  .rv-body { grid-template-columns: 1fr; gap: 26px; }
  .rv-form { position: static; }
}

/* ---------- status page ---------- */
.status-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 30px;
}
.status-banner h2 { margin: 0 0 4px; font-size: 20px; letter-spacing: -0.025em; }
.status-banner p { margin: 0; color: var(--muted); font-size: 13.5px; }
.status-banner .banner-time { margin-left: auto; color: var(--dim); font-size: 12.5px; white-space: nowrap; }
.banner-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.banner-operational { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.24); }
.banner-operational .banner-dot { background: var(--green); box-shadow: 0 0 0 5px rgba(52, 211, 153, .16); }
.banner-degraded { background: rgba(251, 191, 36, .07); border-color: rgba(251, 191, 36, .3); }
.banner-degraded .banner-dot { background: var(--star); box-shadow: 0 0 0 5px rgba(251, 191, 36, .16); }
.banner-down { background: rgba(248, 113, 113, .07); border-color: rgba(248, 113, 113, .3); }
.banner-down .banner-dot { background: var(--danger); box-shadow: 0 0 0 5px rgba(248, 113, 113, .16); }

.panel-block { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; margin-bottom: 26px; }
.panel-block > h3 { margin: 0; padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.component { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 20px; border-bottom: 1px solid var(--line); }
.component:last-child { border-bottom: 0; }
.c-name { font-size: 14.5px; font-weight: 500; }
.c-note { font-size: 12.5px; color: var(--dim); }

.uptime { display: flex; gap: 2px; padding: 18px 20px; }
.uptime .tick { flex: 1; height: 30px; border-radius: 2px; min-width: 2px; }
.tick-operational { background: rgba(52, 211, 153, .55); }
.tick-degraded { background: rgba(251, 191, 36, .75); }
.tick-down { background: rgba(248, 113, 113, .8); }
.uptime-legend { display: flex; justify-content: space-between; padding: 0 20px 16px; font-size: 12px; color: var(--dim); }

.incident { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 20px 22px; margin-bottom: 14px; }
.i-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.i-date { color: var(--dim); font-size: 12.5px; }
.incident h3 { margin: 0 0 7px; font-size: 16px; letter-spacing: -0.02em; }
.incident p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ---------- account pages ---------- */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 34px; }
.stat-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 20px 22px; }
.stat-card span { color: var(--dim); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.stat-card b { display: block; font-size: 30px; letter-spacing: -0.035em; margin-top: 8px; line-height: 1.1; }

.table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; background: var(--panel); }
table.data { width: 100%; border-collapse: collapse; min-width: 640px; }
table.data th {
  text-align: left;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.data td { padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 13.5px; vertical-align: middle; }
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--panel-2); }
table.data .right { text-align: right; }
.muted-text { color: var(--dim); }
.btn-link { background: none; border: 0; padding: 0; color: var(--accent-hover); font-size: 13.5px; font-weight: 500; }
.btn-link:hover { text-decoration: underline; }
.btn-link.is-code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  padding: 4px 9px;
}
.btn-link.is-code:hover { text-decoration: none; border-color: var(--accent); }

.account-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 26px; align-items: start; }
.account-grid > * { min-width: 0; }
.buy-again { display: flex; align-items: center; gap: 18px; padding: 20px; flex-wrap: wrap; }
.buy-again .li-img {
  width: 64px; height: 64px;
  flex: none;
  border-radius: 12px;
  background: #0f0f0f;
  display: grid; place-items: center;
  padding: 8px;
}
.buy-again .li-img img { max-width: 100%; max-height: 100%; }
.buy-again .ba-main { flex: 1; min-width: 180px; }
.buy-again .ba-name { font-weight: 600; }
.buy-again .ba-sub { color: var(--dim); font-size: 13px; }

.side-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 22px; }
.side-card h3 { margin: 0 0 14px; font-size: 14px; font-weight: 600; }
.side-card p { margin: 0 0 16px; color: var(--muted); font-size: 13.5px; }
.side-links { display: grid; gap: 2px; }
.side-links a {
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13.5px;
  transition: background .15s, color .15s;
}
.side-links a:hover { background: var(--panel-2); color: var(--text); }
.identity { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.identity .avatar { width: 42px; height: 42px; font-size: 16px; }
.identity b { display: block; font-size: 14.5px; }
.identity span { color: var(--dim); font-size: 12.5px; }

.section-title { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 16px; }
.section-title h2 { margin: 0; font-size: 19px; letter-spacing: -0.025em; }

/* ---------- tickets ---------- */
.ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color .15s;
}
.ticket:hover { border-color: var(--line-strong); }
/* min-width:0 so a long subject wraps instead of pushing the View button out
   of the card */
.t-main { min-width: 0; }
.t-top { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; flex-wrap: wrap; }
.t-id { font-family: var(--font-mono); font-size: 12px; color: var(--dim); }
.ticket h3 { margin: 0 0 6px; font-size: 15.5px; letter-spacing: -0.015em; }
.t-meta { margin: 0; color: var(--dim); font-size: 12.5px; }

.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 11px 13px;
  font: inherit;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .hint { font-size: 12px; color: var(--dim); }

/* ============================================================
   Intro loader

   Plays once per tab (index.html gates it on sessionStorage). Entirely CSS:
   the bar fills for 1.5s, then the wordmark scales up and fades while the
   backdrop dissolves underneath it, so the page is revealed by a crossfade
   rather than a hard cut. Because nothing here depends on JS, a script error
   can never leave a visitor stuck behind a black screen.
   ============================================================ */
@keyframes loaderBar   { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loaderPulse { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes loaderZoom  { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.45); opacity: 0; } }
@keyframes loaderFade  { to { opacity: 0; } }
@keyframes loaderClear { to { background-color: transparent; visibility: hidden; pointer-events: none; } }

.page-loader {
  position: fixed;
  inset: 0;
  /* above the sticky header and the cart drawer scrim */
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--bg);
  animation: loaderClear .55s ease 1.52s forwards;
}
.page-loader__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
  will-change: transform, opacity;
  /* loaderZoom is listed last so it takes over transform/opacity from the
     idle pulse once it starts, and keeps them via forwards. */
  animation:
    loaderPulse 1.1s ease-in-out infinite,
    loaderZoom .6s cubic-bezier(.22, 1, .36, 1) 1.5s forwards;
}
.page-loader__fade {
  width: 176px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
  animation: loaderFade .22s ease 1.42s forwards;
}
.page-loader__bar {
  height: 100%;
  width: 100%;
  transform-origin: left;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: var(--glow);
  animation: loaderBar 1.5s cubic-bezier(.45, 0, .2, 1) forwards;
}
/* Second and later page loads in the same tab: never rendered at all. */
.loader-seen .page-loader { display: none; }

@media (prefers-reduced-motion: reduce) {
  /* Show the brand for a beat, then get out of the way without any motion. */
  .page-loader { animation: loaderClear .01s linear .35s forwards; }
  .page-loader__mark { animation: none; }
  .page-loader__fade { animation: none; }
  .page-loader__bar { animation: none; }
}
/* ============================================================
   Home page - hero, sections, steps
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 68vh, 640px);
  border-bottom: 1px solid var(--line);
  /* Built from the palette variables rather than fixed hex, so retuning the
     greys in :root retunes the hero with everything else. */
  background:
    radial-gradient(ellipse at 20% 0%, var(--panel-2) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, var(--panel) 0%, transparent 50%),
    var(--bg);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Greyscale on purpose: a colourful banner would break the one rule this
     palette follows, which is that the payment marks are the only colour. */
  filter: grayscale(1) contrast(1.05);
  opacity: .45;
  pointer-events: none;
}
/* Drifting starfield. Pure background-image, no DOM nodes, no JS. */
.hero-stars {
  position: absolute;
  inset: -50% -10% -10%;
  pointer-events: none;
  opacity: .5;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,.55) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 68% 12%, rgba(255,255,255,.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 42% 62%, rgba(255,255,255,.5) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 88% 48%, rgba(255,255,255,.45) 50%, transparent 50%),
    radial-gradient(1px 1px at 26% 78%, rgba(255,255,255,.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 78% 82%, rgba(255,255,255,.35) 50%, transparent 50%);
  background-size: 340px 340px;
  animation: starDrift 90s linear infinite;
}
@keyframes starDrift { to { transform: translate3d(0, 340px, 0); } }
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 45%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; padding: 64px 24px; }
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 20px auto 0;
  max-width: 15ch;
}
.hero-sub {
  margin: 18px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color .15s, color .15s;
}
.hero-link:hover { border-color: var(--accent); }

.hero-trust {
  margin: 38px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 46px;
  max-width: 640px;
}
.trust-big { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.trust-small { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); margin-top: 2px; }

/* ---------- home sections ---------- */
.home-section { padding: 62px 24px; }
.eyebrow {
  margin: 0;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: "\25CF"; margin-right: 7px; font-size: 8px; vertical-align: middle; color: var(--dim); }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.sec-head h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.03em; margin: 8px 0 0; }
.sec-head .sec-sub { margin: 10px auto 0; color: var(--muted); font-size: 14.5px; max-width: 56ch; }
.sec-head.is-center { justify-content: center; text-align: center; }

/* ---------- closing contact panel ---------- */
.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px;
}
.contact-banner h2 { font-family: var(--font-display); font-size: 21px; letter-spacing: -0.03em; margin: 0 0 8px; }
.contact-banner .cb-copy > p { margin: 0 0 14px; color: var(--muted); font-size: 14px; max-width: 54ch; }
.contact-banner .contacts { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

@media (max-width: 560px) {
  .home-section { padding: 46px 20px; }
  .hero-inner { padding: 52px 20px; }
  .hero-trust { gap: 14px 28px; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- catalog front page ---------- */
.finder {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin: 30px 0 18px;
}
.search-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--dim);
  transition: border-color .15s, box-shadow .15s;
}
.search-row:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search-row input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  color: var(--text);
  font: inherit;
  font-size: 14.5px;
}
.search-row input::-webkit-search-cancel-button { filter: invert(.6); }
.finder .chips { margin: 14px 0 0; }

.result-count { color: var(--dim); font-size: 12.5px; margin: 0 0 26px; }

.cat { margin-bottom: 42px; }
.cat-head {
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.cat-icon { font-size: 18px; }
.cat-group {
  font-size: 12px;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: .02em;
  margin: 22px 0 12px;
}

.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px; }

.pcard {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform .16s, border-color .16s, box-shadow .16s;
}
.pcard:hover { border-color: var(--accent); }
.pcard-media {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #0f0f0f;
}
.pcard-media img { max-height: 100%; width: auto; filter: drop-shadow(0 10px 18px rgba(0,0,0,.5)); }
.pcard-out {
  position: absolute;
  inset: auto 0 0;
  background: rgba(8, 12, 22, .86);
  color: var(--danger);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0;
}
.pcard.is-out .pcard-media img { opacity: .45; }
.pcard-body { display: grid; gap: 8px; padding: 12px 12px 13px; }
.pcard-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.pcard-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.ptag {
  font-size: 10px;
  color: var(--dim);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2px 6px;
  white-space: nowrap;
}
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 2px; }
.pcard-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 3px 9px;
}
.pcard-price .was { font-size: 10.5px; font-weight: 500; color: var(--dim); text-decoration: line-through; margin-left: 5px; }
.pcard-stock { font-size: 10.5px; color: var(--dim); white-space: nowrap; }


.pay-methods { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }

/* ---------- single-product front page ---------- */
.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 34px;
  align-items: start;
  padding: 32px 0 12px;
}
.spot-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f0f0f;
  padding: 22px;
  display: grid;
  place-items: center;
  min-height: 340px;
}
.spot-media img { max-height: 460px; width: auto; border-radius: 4px; }
.spot-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
}
.spot-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 10px;
}
.spot-rating { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; font-size: 13px; color: var(--muted); }
.spot-buy .buybox { padding: 20px; }

.spot-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  padding: 40px 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.spot-about h2 { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; margin: 0 0 12px; }
.spot-about p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }
.how-list { margin: 0 0 14px; padding-left: 18px; display: grid; gap: 9px; }
.how-list li { color: var(--muted); font-size: 14px; }
.how-list b { color: var(--text); font-weight: 600; }
.how-note { color: var(--dim) !important; font-size: 13px !important; }
.how-note a { color: var(--accent-hover); }

.spot-reviews { padding: 8px 0 40px; border-top: 1px solid var(--line); }
.spot-reviews .section-title { margin: 28px 0 16px; }
.spot-reviews .empty-state a { color: var(--accent-hover); }

@media (max-width: 860px) {
  .spotlight { grid-template-columns: 1fr; gap: 22px; padding-top: 20px; }
  .spot-media { min-height: 0; }
  .spot-media img { max-height: 320px; }
}

/* ---------- review extras ---------- */
.who-product { color: var(--dim); }
.src-chip {
  font-size: 10.5px;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  padding: 1px 8px;
}

/* ---------- admin ---------- */
.warn-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(251, 191, 36, .07);
  color: var(--star);
  margin-bottom: 26px;
}
.warn-banner svg { flex: none; margin-top: 2px; }
.warn-banner b { font-size: 14px; }
.warn-banner p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.warn-banner code, .prose code, .side-card code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--panel-2);
  border-radius: 4px;
  padding: 1px 5px;
}

.pending-count {
  display: inline-grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  margin-left: 5px;
}
.pending-count[hidden] { display: none; }

.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: 10px; }
.field input[type="color"] { height: 38px; padding: 3px; cursor: pointer; }
.check-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); cursor: pointer; }
.check-row input { width: 15px; height: 15px; accent-color: var(--accent); }
.preview-row { display: flex; align-items: center; gap: 12px; }
.preview-row img { border-radius: 7px; background: #0f0f0f; padding: 4px; }

.admin-prod { display: flex; align-items: center; gap: 10px; }
.admin-prod img { border-radius: 6px; background: #0f0f0f; padding: 3px; flex: none; }
.admin-prod span span { display: block; font-size: 11.5px; }
.btn-link.danger { color: var(--danger); margin-left: 12px; }

.admin-review {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 15px 17px;
  margin-bottom: 11px;
}
.ar-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; font-size: 12.5px; }
.admin-review p { margin: 0 0 8px; font-size: 13.5px; }
.ar-actions { display: flex; gap: 9px; margin-top: 12px; flex-wrap: wrap; }
.ar-actions .btn { padding: 8px 16px; font-size: 13px; }

.code-area {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 13px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
}
.code-area:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.contacts { display: grid; gap: 8px; margin-top: 14px; }
.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted) !important;
  font-size: 13.5px;
  margin: 0 !important;
}
.contact-row:hover { color: var(--text) !important; }
.contact-note { color: var(--dim); font-size: 12px; }
.contact-todo {
  margin: 14px 0 0;
  padding: 11px 13px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: var(--radius-sm);
  color: var(--star) !important;
  font-size: 12.5px;
}
.table-empty { text-align: center; color: var(--dim); padding: 34px 18px !important; }

/* ---------- checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; align-items: start; }
.checkout-grid > * { min-width: 0; }
.checkout-grid > aside { position: sticky; top: 88px; }

.co-pad { padding: 22px; display: grid; gap: 20px; }
.co-empty { padding: 48px 24px; text-align: center; }
.co-empty p { color: var(--muted); margin: 0 0 18px; }
.co-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
}
.co-fine { margin: 0; text-align: center; color: var(--dim); font-size: 12px; }
.co-foot { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

.co-coins { min-width: 0; }
.coin-grid { display: grid; gap: 8px; }
.coin {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--text);
  transition: border-color .15s, background .15s;
}
.coin:hover { border-color: var(--line-strong); }
.coin.is-active { border-color: var(--accent); background: var(--panel-2); }
.coin-ico { width: 26px; height: 26px; }
.coin-ico svg { width: 100%; height: 100%; display: block; }
.coin-main { min-width: 0; display: grid; }
.coin-main b { font-size: 14px; font-weight: 600; display: flex; align-items: baseline; gap: 6px; }
.coin-main em { font-style: normal; font-size: 10.5px; letter-spacing: .06em; color: var(--dim); }
.coin-main span { font-size: 11.5px; color: var(--dim); }
.coin-amt { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); white-space: nowrap; }

.pay-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.pay-head h3 { margin: 0; font-size: 16px; font-weight: 600; }
.pay-timer { font-size: 12px; color: var(--dim); }
.pay-timer b { font-family: var(--font-mono); color: var(--text); font-size: 13px; }
.pay-timer b.is-low { opacity: .65; }

.copy-field { display: grid; gap: 7px; }
.copy-field label { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.net-chip {
  font-size: 10.5px;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 999px;
}
.copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  padding: 10px 10px 10px 13px;
}
.copy-row code { flex: 1; min-width: 0; font-family: var(--font-mono); font-size: 12.5px; overflow-wrap: anywhere; }
.copy-btn {
  flex: none;
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--text);
  font-size: 11.5px;
  padding: 5px 11px;
  transition: border-color .15s;
}
.copy-btn:hover { border-color: var(--accent); }

.pay-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel-2);
  flex-wrap: wrap;
}
.pay-status b { font-size: 13.5px; }
.pay-status p { margin: 3px 0 0; color: var(--muted); font-size: 12.5px; }
.pay-status.is-expired { border-color: rgba(255,107,107,.35); }
/* payment seen on-chain but not yet confirmed - visibly different from both
   "waiting" and "expired" */
.pay-status.is-seen { border-color: var(--line-strong); background: var(--panel); }
.spinner {
  width: 15px; height: 15px;
  flex: none;
  margin-top: 3px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  border-top-color: var(--text);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 3s; } }

.done-head { display: flex; align-items: center; gap: 14px; }
.done-check {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
}
.done-head h2 { margin: 0 0 3px; font-size: 19px; letter-spacing: -0.02em; }
.done-head p { margin: 0; color: var(--muted); font-size: 13px; }
.codes { display: grid; gap: 9px; }
.code-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 12px 12px 12px 15px;
  border: 1px solid var(--line-strong);
  background: var(--panel-2);
  border-radius: var(--radius-sm);
}
.code-row .code-for { font-size: 11.5px; color: var(--muted); flex: 0 0 100%; }
.code-row code { flex: 1; font-family: var(--font-mono); font-size: 14px; letter-spacing: .05em; overflow-wrap: anywhere; }
.code-note { margin: 0; color: var(--dim); font-size: 12px; }
.done-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.summary-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 11px;
  align-items: center;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.summary-item .li-img { width: 40px; height: 40px; border-radius: 6px; background: #0f0f0f; display: grid; place-items: center; padding: 4px; }
.summary-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; }
.summary-crypto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  font-size: 12.5px;
  color: var(--muted);
}
.summary-crypto b { font-family: var(--font-mono); color: var(--text); font-size: 12px; }
.summary-help { margin: 14px 0 0; color: var(--dim); font-size: 12px; }
/* long product names and crypto amounts must wrap inside the sticky card
   rather than widening it */
.summary-card { min-width: 0; overflow-wrap: anywhere; }
.summary-help a { color: var(--text); text-decoration: underline; }

/* ---------- legal pages ---------- *//* ---------- legal pages ---------- */
.legal { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 46px; align-items: start; }
.legal > nav { min-width: 0; }
.toc { position: sticky; top: 88px; display: grid; gap: 2px; }
.toc-title { font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 10px; }
.toc a {
  padding: 7px 12px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
  transition: color .15s, border-color .15s;
}
.toc a:hover { color: var(--text); }
.toc a.is-active { color: var(--text); border-left-color: var(--accent); }

.prose { max-width: 720px; }
.prose h2 {
  font-size: 21px;
  letter-spacing: -0.025em;
  margin: 40px 0 12px;
  scroll-margin-top: 90px;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: 14.5px; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 16px; padding-left: 20px; display: grid; gap: 8px; }
.prose b { color: var(--text); }
.prose a { color: var(--accent-hover); }
.prose a:hover { text-decoration: underline; }
.callout {
  border: 1px solid rgba(255,255,255,.28);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 0 0 20px;
}
.callout p { margin: 0; color: var(--text); font-size: 13.5px; }
.updated { color: var(--dim); font-size: 13px; margin-bottom: 26px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-grid > aside { position: static; }
  .legal { grid-template-columns: 1fr; gap: 26px; }
  .toc { position: static; display: flex; flex-wrap: nowrap; max-width: 100%; overflow-x: auto; padding-bottom: 6px; }
  .toc a { border-left: 0; border-bottom: 2px solid var(--line); white-space: nowrap; }
  .toc a.is-active { border-bottom-color: var(--accent); }
  .product > div:last-child { position: static; }
  .nav { display: none; }

  /* Footer. .foot-top is "1fr auto", and the auto column (three link lists in
     a 56px-gapped flex row) claims its max-content width - which on a phone is
     the whole viewport, starving the brand column down to a few pixels and
     wrapping the contact text one word per line. Stack them instead. */
  .foot-top { grid-template-columns: 1fr; gap: 30px; }
  .foot-brand { max-width: none; }
  .foot-links { flex-wrap: wrap; gap: 26px 44px; }
}
@media (max-width: 560px) {
  .btn-login { display: none; }
  /* Three link lists side by side no longer fit; two columns read better than
     a squeezed three. */
  .foot-links > div { min-width: 40%; }
  .status-banner { flex-wrap: wrap; }
  .status-banner .banner-time { margin-left: 0; width: 100%; }
  .ticket { flex-direction: column; align-items: stretch; }
  .ticket .btn { width: 100%; }
}
