/* Rarity marketing + policy site. No build step. */
:root {
  --purple: #a54bff;
  --purple-deep: #2a0b6b;
  --purple-mid: #7a2cff;
  --purple-soft: #f0e9ff;
  --yellow: #ffe74b;
  --ink: #0d0d0f;
  --ink-2: #2b2b31;
  --muted: #6b6b75;
  --line: #e8e6ee;
  --paper: #f6f5fa;
  --white: #ffffff;
  --radius: 22px;
  --sans: "Inter Tight", "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--sans); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
p { margin: 0; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 12px/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-mid);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--purple); }
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 52px); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 19px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 0;
  font: 700 16px/1 var(--sans); text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: #222; }
.btn-purple { background: var(--purple); color: var(--white); box-shadow: 0 10px 30px rgba(165, 75, 255, .35); }
.btn-purple:hover { background: var(--purple-mid); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; }
.btn-light { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); }
.btn-light:hover { border-color: var(--ink); }
.btn svg { width: 18px; height: 18px; }
.btn .shopify-mark { width: 18px; height: 18px; margin-right: -2px; object-fit: contain; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font: 600 15px/1 var(--sans); text-decoration: none; color: var(--ink-2); }
.nav a:hover { color: var(--purple-mid); }
.nav .btn { padding: 11px 18px; font-size: 14px; }
.nav a.btn-primary { color: var(--white); }
.nav a.btn-primary:hover { color: var(--white); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(120% 90% at 85% 10%, #c48bff 0%, var(--purple) 32%, #5a17c7 68%, var(--purple-deep) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255,255,255,.14) 50%, transparent 60%),
    linear-gradient(75deg, transparent 55%, rgba(255,255,255,.08) 62%, transparent 70%);
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 96px 0 110px; }
.hero h1 { font-size: clamp(46px, 7vw, 92px); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero .lede { font-size: clamp(18px, 1.7vw, 21px); color: rgba(255,255,255,.86); margin: 22px 0 32px; max-width: 520px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .fine { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.7); }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px 8px 10px; border-radius: 999px; font: 600 13px/1 var(--sans);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,231,75,.25); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(255,231,75,.25); } 50% { box-shadow: 0 0 0 7px rgba(255,231,75,.08); } }

/* Hero mock: a bidding card */
.mock-stack { position: relative; min-height: 590px; }
.mock {
  background: var(--white); color: var(--ink); border-radius: 20px;
  box-shadow: 0 30px 70px rgba(20, 0, 60, .45);
  padding: 22px; width: 380px;
}
.mock-main { position: absolute; right: 0; top: 0; transform: rotate(-2deg); width: 350px; }
.mock-offer { position: absolute; left: -44px; top: 290px; width: 230px; transform: rotate(3deg); padding: 14px; }
.mock-thumb { height: 150px; border-radius: 14px; background: linear-gradient(135deg, #ffe74b, #ffb703 60%, #ff7a00); position: relative; overflow: hidden; }
.mock-thumb::after { content: ""; position: absolute; inset: auto -20% -40% auto; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(0,0,0,.18); }
.mock-thumb .badge {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff;
  font: 700 11px/1 var(--sans); letter-spacing: .08em; padding: 7px 10px; border-radius: 999px; text-transform: uppercase;
}
.mock-title { font: 700 17px/1.2 var(--sans); margin-top: 16px; }
.mock-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; }
.mock-price { font: 800 28px/1 var(--sans); letter-spacing: -0.03em; }
.mock-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.mock-clock { display: flex; gap: 6px; }
.mock-clock span { background: var(--paper); border-radius: 8px; padding: 6px 8px; font: 700 14px/1 var(--sans); min-width: 40px; text-align: center; }
.mock-clock small { display: block; font-size: 9px; color: var(--muted); margin-top: 3px; letter-spacing: .06em; }
.mock-row { display: flex; gap: 8px; margin-top: 14px; }
.mock-row .chip { flex: 1; text-align: center; border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 0; font: 700 13px/1 var(--sans); }
.mock-row .chip.on { background: var(--purple-soft); border-color: var(--purple); color: var(--purple-mid); }
.mock-cta { margin-top: 12px; background: var(--ink); color: #fff; border-radius: 999px; text-align: center; padding: 13px; font: 700 15px/1 var(--sans); }
.mock-live { display: inline-flex; align-items: center; gap: 6px; font: 700 11px/1 var(--sans); color: #d1000f; text-transform: uppercase; letter-spacing: .08em; }
.mock-live i { width: 7px; height: 7px; border-radius: 50%; background: #ff2d3b; animation: pulse 1.4s infinite; box-shadow: 0 0 0 3px rgba(255,45,59,.2); }
.bubble { background: #ecf3ff; color: #0b5bd3; border-radius: 16px 16px 16px 4px; padding: 12px 14px; font: 600 14px/1.35 var(--sans); }
.bubble.me { background: var(--purple); color: #fff; border-radius: 16px 16px 4px 16px; margin: 10px 0 0 40px; }
.offer-box { margin-top: 12px; border: 1.5px solid var(--line); border-radius: 14px; padding: 12px; }
.offer-box b { font: 800 18px/1 var(--sans); }
.offer-box small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
.offer-actions { display: flex; gap: 8px; margin-top: 10px; }
.offer-actions span { flex: 1; text-align: center; border-radius: 999px; padding: 9px 0; font: 700 13px/1 var(--sans); border: 1.5px solid var(--ink); }
.offer-actions span:first-child { background: var(--ink); color: #fff; }

/* Logos strip */
.strip { padding: 34px 0; border-bottom: 1px solid var(--line); }
.strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center; font: 600 14px/1 var(--sans); color: var(--muted); }
.strip span { display: inline-flex; align-items: center; gap: 8px; }
.strip svg { width: 18px; height: 18px; }

/* Bento: 2 up, 3 down */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento .tile { grid-column: span 3; }
.bento .tile-wide { grid-column: span 6; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line);
  padding: 26px; display: flex; flex-direction: column; min-height: 460px;
}
.tile .tag { font: 700 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--purple-mid); }
.tile h3 { font-size: 24px; margin-top: 22px; }
.tile p { color: var(--muted); font-size: 15px; margin-top: 8px; max-width: 40ch; }
.tile .ui { flex: 1; display: flex; align-items: center; justify-content: center; padding: 22px 0 6px; }
.tile-purple { background: linear-gradient(140deg, #b566ff 0%, var(--purple) 40%, #5d1bd0 100%); color: #fff; border: 0; }
.tile-purple p, .tile-purple .tag { color: rgba(255,255,255,.82); }
.tile-purple::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 45%, rgba(255,255,255,.12) 52%, transparent 60%); pointer-events: none; }
.tile-black { background: var(--ink); color: #fff; border: 0; }
.tile-black p { color: rgba(255,255,255,.7); }
.tile-black .tag { color: var(--yellow); }
.tile-yellow { background: var(--yellow); border: 0; }
.tile-yellow .tag { color: var(--ink); }
.tile-yellow p { color: #3d3a1c; }
.tile-soft { background: var(--purple-soft); border: 0; }
.tile-white { background: var(--paper); }

/* UI mocks inside tiles */
.ui-card { background: #fff; color: var(--ink); border-radius: 18px; padding: 18px; width: 100%; max-width: 420px; box-shadow: 0 22px 50px rgba(20, 0, 60, .22); position: relative; z-index: 1; }
.ui-label { font: 700 11px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ui-label.light { color: rgba(255,255,255,.65); }
.ui-sub { font: 600 12px/1 var(--sans); color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.ui-sub.light { color: rgba(255,255,255,.65); }
.ui-live { width: 7px; height: 7px; border-radius: 50%; background: #ff2d3b; box-shadow: 0 0 0 3px rgba(255,45,59,.2); animation: pulse 1.4s infinite; }
.ui-price { font: 800 38px/1 var(--sans); letter-spacing: -0.04em; margin-top: 6px; }
.ui-bid-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.ui-clock { display: flex; gap: 6px; }
.ui-clock span { background: var(--paper); border-radius: 10px; padding: 8px 6px 6px; font: 800 18px/1 var(--sans); min-width: 48px; text-align: center; }
.ui-clock small { display: block; font: 700 9px/1 var(--sans); color: var(--muted); margin-top: 4px; letter-spacing: .08em; }
.ui-chips { display: flex; gap: 8px; margin-top: 18px; }
.ui-chips span { flex: 1; text-align: center; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 0; font: 700 13px/1 var(--sans); }
.ui-chips span.on { background: var(--purple-soft); border-color: var(--purple); color: var(--purple-mid); }
.ui-custom { display: flex; align-items: center; gap: 10px; margin-top: 10px; border: 1.5px solid var(--line); border-radius: 14px; padding: 10px 14px; background: #fff; }
.ui-custom.on { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(165,75,255,.15); }
.ui-custom-label { font: 700 10px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ui-custom-val { flex: 1; font: 800 17px/1 var(--sans); letter-spacing: -0.02em; display: flex; align-items: center; }
.ui-custom-val .caret { display: inline-block; width: 2px; height: 16px; margin-left: 2px; background: var(--purple); animation: caret 1.1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.ui-custom-max { font: 700 11px/1 var(--sans); color: var(--purple-mid); background: var(--purple-soft); padding: 6px 9px; border-radius: 999px; white-space: nowrap; }
.mock .ui-custom { padding: 9px 12px; }
.mock .ui-custom-val { font-size: 15px; }
.ui-btn { margin-top: 12px; background: var(--ink); color: #fff; border-radius: 999px; text-align: center; padding: 14px; font: 700 15px/1 var(--sans); }
.ui-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

.ui-thread { width: 100%; max-width: 420px; }
.ui-msg { display: inline-block; max-width: 78%; background: #fff; border: 1px solid var(--line); color: var(--ink); border-radius: 18px 18px 18px 4px; padding: 11px 14px; font: 600 14px/1.35 var(--sans); }
.ui-msg.me { display: block; margin: 10px 0 0 auto; width: fit-content; max-width: 78%; background: var(--purple); color: #fff; border: 0; border-radius: 18px 18px 4px 18px; }
.ui-offer { margin-top: 12px; padding: 16px; }
.ui-offer-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.ui-offer b { font: 800 26px/1 var(--sans); letter-spacing: -0.03em; }
.ui-offer small { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }
.ui-rule { font: 700 11px/1 var(--sans); letter-spacing: .04em; background: #e3f6ea; color: #1b7f45; padding: 7px 10px; border-radius: 999px; white-space: nowrap; }
.ui-actions { display: flex; gap: 8px; margin-top: 14px; }
.ui-actions span { flex: 1; text-align: center; border-radius: 999px; padding: 10px 0; font: 700 13px/1 var(--sans); border: 1.5px solid var(--ink); }
.ui-actions span.dark { background: var(--ink); color: #fff; }

.ui-drop { width: 100%; text-align: left; }
.ui-big-clock { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 18px; }
.ui-big-clock span { font: 800 44px/1 var(--sans); letter-spacing: -0.04em; text-align: center; }
.ui-big-clock small { display: block; font: 700 10px/1 var(--sans); letter-spacing: .12em; color: var(--yellow); margin-top: 8px; }
.ui-big-clock i { font: 800 36px/1.2 var(--sans); color: rgba(255,255,255,.35); font-style: normal; }
.ui-notify { display: flex; background: #fff; border-radius: 999px; padding: 6px 6px 6px 16px; align-items: center; justify-content: space-between; color: var(--muted); font-size: 14px; }
.ui-notify b { background: var(--yellow); color: var(--ink); border-radius: 999px; padding: 10px 16px; font: 700 13px/1 var(--sans); }

.ui-product { max-width: 260px; padding: 12px; }
.ui-thumb { height: 120px; border-radius: 12px; background: linear-gradient(135deg, #ffe74b, #ffb703 60%, #ff7a00); position: relative; overflow: hidden; }
.ui-thumb::after { content: ""; position: absolute; right: -20%; bottom: -40%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(0,0,0,.18); }
.ui-badge { position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--yellow); font: 800 11px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px; }
.ui-product-title { font: 700 15px/1.2 var(--sans); margin-top: 12px; }
.ui-stock { margin-top: 10px; }
.ui-stock-bar { height: 8px; border-radius: 999px; background: var(--paper); overflow: hidden; }
.ui-stock-bar i { display: block; height: 100%; background: var(--purple); border-radius: 999px; }
.ui-stock small { display: block; font: 600 12px/1 var(--sans); color: var(--muted); margin-top: 8px; }

.ui-collectors { padding: 8px; max-width: 360px; }
.ui-row { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; }
.ui-row.warn { background: #fff4f4; }
.ui-row > div { flex: 1; min-width: 0; }
.ui-row b { display: block; font: 700 13px/1.2 var(--sans); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui-row small { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }
.ui-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--purple-soft); color: var(--purple-mid); display: grid; place-items: center; font: 800 12px/1 var(--sans); flex: none; }
.ui-score { font: 800 12px/1 var(--sans); padding: 6px 9px; border-radius: 999px; }
.ui-score.ok { background: #e3f6ea; color: #1b7f45; }
.ui-score.bad { background: #ffe0e0; color: #b3261e; }
.ui-block { font: 700 11px/1 var(--sans); background: var(--ink); color: #fff; padding: 7px 10px; border-radius: 999px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--paper); border-radius: var(--radius); padding: 28px; }
.step .n { width: 40px; height: 40px; border-radius: 12px; background: var(--ink); color: var(--yellow); display: grid; place-items: center; font: 800 16px/1 var(--sans); margin-bottom: 20px; }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Pricing */
.pricing { background: var(--ink); color: #fff; }
.pricing .section-head p { color: rgba(255,255,255,.7); }
.pricing .eyebrow { color: var(--yellow); } .pricing .eyebrow::before { background: var(--yellow); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan { border-radius: var(--radius); padding: 30px; background: #17171b; border: 1.5px solid rgba(165,75,255,.55); box-shadow: 0 0 0 1px rgba(165,75,255,.08), 0 0 34px rgba(165,75,255,.22), inset 0 0 40px rgba(165,75,255,.06); display: flex; flex-direction: column; }
.plan.featured { background: radial-gradient(120% 80% at 50% 0%, rgba(165,75,255,.34) 0%, rgba(165,75,255,.10) 45%, #17171b 100%), #17171b; border-color: rgba(190,130,255,.9); box-shadow: 0 0 0 1px rgba(165,75,255,.2), 0 0 60px rgba(165,75,255,.5), inset 0 0 70px rgba(165,75,255,.22); }
.plan h3 { font-size: 22px; }
.plan { position: relative; overflow: visible; }
.plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font: 800 11px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; background: var(--purple); color: #fff; padding: 8px 12px; border-radius: 999px; white-space: nowrap; box-shadow: 0 0 0 3px #0d0d0f, 0 0 22px rgba(165,75,255,.7); }
.plan .price { font: 800 48px/1 var(--sans); letter-spacing: -0.04em; margin: 16px 0 4px; }
.plan .price small { font-size: 16px; font-weight: 600; letter-spacing: 0; opacity: .7; }
.plan .trial { font-size: 13px; opacity: .75; min-height: 20px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; font-size: 15px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3 3 7-7' fill='none' stroke='%230d0d0f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat; }
.plan .btn { margin-top: auto; }
.pricing .fine { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.6); }

/* CTA band */
.cta-band { background: var(--yellow); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 70px 0; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(32px, 4.4vw, 50px); max-width: 620px; }
.cta-band p { color: #3d3a1c; margin-top: 10px; font-size: 18px; }

/* FAQ */
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font: 700 18px/1.3 var(--sans); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--purple); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 10px; font-size: 16px; }

/* Footer */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 56px 0 36px; color: var(--muted); font-size: 14px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.site-footer h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--purple-mid); text-decoration: underline; }
.site-footer .brand img { height: 26px; }
.site-footer .legal { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; }

/* Policy pages */
.page-head { background: var(--paper); border-bottom: 1px solid var(--line); padding: 64px 0 44px; }
.page-head h1 { font-size: clamp(36px, 5vw, 56px); margin-top: 14px; }
.page-head .meta { color: var(--muted); margin-top: 14px; font-size: 15px; }
.doc { display: grid; grid-template-columns: 240px 1fr; gap: 60px; padding: 60px 0 100px; }
.toc { position: sticky; top: 90px; align-self: start; font-size: 14px; }
.toc h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.toc a { text-decoration: none; color: var(--ink-2); }
.toc a:hover { color: var(--purple-mid); }
.prose { max-width: 720px; }
.prose h2 { font-size: 26px; margin: 46px 0 14px; scroll-margin-top: 90px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-2); }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 8px 0 22px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.prose th { font: 700 12px/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.prose .callout { background: var(--purple-soft); border-radius: 16px; padding: 18px 20px; margin: 18px 0 24px; }
.prose .callout p:last-child { margin: 0; }
.todo { background: #fff3a8; color: #5b4a00; padding: 0 5px; border-radius: 5px; font-weight: 600; }

/* Support */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 60px 0 100px; }
.support-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.support-card h3 { font-size: 20px; margin-bottom: 8px; }
.support-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

/* Responsive */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; padding: 70px 0 80px; }
  .mock-stack { min-height: 760px; max-width: 460px; }
  .mock-main { right: 0; }
  .steps, .plans, .support-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .doc { grid-template-columns: 1fr; gap: 30px; }
  .toc { position: static; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 32px); }
  .section { padding: 64px 0; }
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 16px 16px; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; justify-content: center; }
  .nav-toggle { display: block; }
  .mock { width: min(320px, 92%); }
  .mock-main { right: 0; }
  .mock-offer { width: 220px; left: 0; top: 470px; }
  .bento { grid-template-columns: 1fr; }
  .bento .tile { grid-column: auto !important; min-height: 0; }
  .ui-price { font-size: 32px; }
  .ui-big-clock span { font-size: 36px; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .cta-band .wrap { padding: 54px 0; }
}


/* ---------- Product art ---------- */
.mock-thumb img, .ui-thumb img, .ui-art img, .mock-item img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mock-thumb { background: #1c1426; }
.mock-thumb::after, .ui-thumb::after { content: none; }
.mock-thumb img, .ui-thumb img { animation: kenburns 14s ease-in-out infinite alternate; transform-origin: 60% 40%; }
.mock-thumb-tall { height: 210px; }
.mock-thumb-tall img { object-position: 50% 62%; }
.mock-item img, .ui-art img { object-position: 50% 50%; }
.ui-thumb { background: #f4f4f6; }
/* Framed print hung on a wall: whole frame visible, wall behind it */
.ui-thumb-wall { height: 150px; padding: 16px 18px; background: linear-gradient(180deg, #ebe7e0 0%, #ddd8cf 100%); }
.ui-thumb-wall::before { content: ""; position: absolute; inset: auto 0 0 0; height: 14px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.08) 100%); }
.ui-thumb-wall img { object-fit: contain; animation: none; filter: drop-shadow(0 10px 14px rgba(0,0,0,.28)); }
.ui-thumb-wall .ui-badge { top: 10px; left: 10px; }
.mock-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.mock-flag { font: 700 10px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: #8a5a00; background: #fff3c4; padding: 6px 8px; border-radius: 999px; white-space: nowrap; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08) translate(-1.5%, 1%); } }
.mock-item { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.mock-item img { width: 46px; height: 46px; border-radius: 10px; flex: none; }
.mock-item b { display: block; font: 700 16px/1.2 var(--sans); letter-spacing: -0.01em; }
.mock-item small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.ui-item, .ui-listing { display: flex; gap: 12px; align-items: center; }
.ui-item { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.ui-art { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; flex: none; }
.ui-item b, .ui-listing b { display: block; font: 700 14px/1.2 var(--sans); }
.ui-item small, .ui-listing small { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.ui-listing { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px; margin-bottom: 12px; color: var(--ink); }
/* Gallery wall: three framed photo prints hung in a row */
.ui-gallery { display: flex; justify-content: center; align-items: flex-end; gap: 12px; margin: 0 -8px 18px; padding: 18px 14px 16px; border-radius: 14px; background: linear-gradient(180deg, #2a2a2e 0%, #1c1c20 100%); position: relative; }
.ui-gallery::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; border-radius: 0 0 14px 14px; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.35)); }
.ui-gallery figure { margin: 0; flex: 1; max-width: 96px; background: #fff; padding: 7px 7px 0; border: 3px solid #101012; box-shadow: 0 12px 22px rgba(0,0,0,.5); }
.ui-gallery img { width: 100%; aspect-ratio: 3 / 4; height: auto; object-fit: cover; display: block; }
.ui-gallery figcaption { font: 600 8px/1 Georgia, serif; color: #8a8a8a; letter-spacing: .12em; text-align: center; padding: 5px 0 6px; }
.ui-thumb { height: 140px; }

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1) var(--d, 0ms), transform .7s cubic-bezier(.2,.7,.2,1) var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* Hero cards: slide in, then float. `translate` keeps their rotation intact. */
.mock-main { animation: rise .9s cubic-bezier(.2,.7,.2,1) .15s both, float 7s ease-in-out 1.2s infinite; }
.mock-offer { animation: rise .9s cubic-bezier(.2,.7,.2,1) .45s both, float 8s ease-in-out 1.6s infinite reverse; }
@keyframes rise { from { opacity: 0; translate: 0 40px; } to { opacity: 1; translate: 0 0; } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* Price bump and clock tick */
.bump { animation: bump .6s cubic-bezier(.2,.9,.3,1.4); }
@keyframes bump { 0% { transform: scale(1); color: inherit; } 35% { transform: scale(1.08); color: var(--purple-mid); } 100% { transform: scale(1); } }
.mock-price, .ui-price { display: inline-block; transform-origin: left center; }
.tick { animation: tick .35s ease-out; }
@keyframes tick { from { transform: translateY(-3px); opacity: .5; } to { transform: none; opacity: 1; } }

/* Sequenced rows */
.js [data-seq] .seq { opacity: 0; transform: translateY(14px) scale(.98); transition: opacity .5s ease calc(var(--i) * 380ms), transform .5s cubic-bezier(.2,.7,.2,1) calc(var(--i) * 380ms); }
.js [data-seq].play .seq { opacity: 1; transform: none; }
.ui-row.warn { transition: background .4s ease 1.4s; }
.js [data-seq]:not(.play) .ui-row.warn { background: transparent; }
.play .ui-block { animation: nudge 2.4s ease-in-out 1.8s infinite; }
.play .ui-actions .dark { animation: nudge 2.4s ease-in-out 2s infinite; }
@keyframes nudge { 0%, 70%, 100% { transform: scale(1); box-shadow: none; } 80% { transform: scale(1.06); box-shadow: 0 0 0 5px rgba(165,75,255,.25); } }

/* Stock bar */
.ui-stock-bar i { transition: width 1.2s cubic-bezier(.2,.7,.2,1); }

/* Drop notify button */
.ui-notify b { animation: nudge 3s ease-in-out 1s infinite; }

/* Hover lift only where hover exists (not on touch) */
@media (hover: hover) {
  .tile, .plan, .step { transition: transform .3s ease, box-shadow .3s ease; }
  .js .reveal.in.tile:hover, .js .reveal.in.step:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,0,60,.14); }
  .js .reveal.in.plan:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px rgba(165,75,255,.2), 0 0 56px rgba(165,75,255,.45); }
  .tile:hover .ui-card { transform: translateY(-4px); }
  .ui-card { transition: transform .35s ease; }
}

@media (max-width: 720px) {
  .mock-main, .mock-offer { animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
  .mock-offer { animation-delay: .3s; }
  .ui-gallery figure { max-width: 30%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal, .js [data-seq] .seq { opacity: 1 !important; transform: none !important; }
}

/* ---------- Drops + editions collection ---------- */
.ui-collection { width: 100%; }
.ui-collection-wall { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 18px 14px; border-radius: 14px; background: linear-gradient(180deg, #f1efea 0%, #dcd8d0 100%); position: relative; overflow: hidden; }
.ui-collection-wall::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 14px; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.1)); }
.ui-collection-wall figure { margin: 0; flex: 1; max-width: 118px; position: relative; filter: drop-shadow(0 12px 16px rgba(0,0,0,.35)); }
.ui-collection-wall figure.lead { max-width: 140px; z-index: 1; }
.ui-collection-wall img { width: 100%; height: auto; display: block; }
.ui-collection-wall .ui-badge { top: -8px; left: -8px; font-size: 9px; padding: 6px 8px; box-shadow: 0 6px 14px rgba(0,0,0,.35); }
.ui-collection-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; }
.ui-drop-when { font: 700 15px/1.2 var(--sans); color: #fff; margin-top: 4px; }
.ui-mini-clock { display: flex; align-items: baseline; gap: 3px; font: 800 22px/1 var(--sans); letter-spacing: -0.03em; white-space: nowrap; }
.ui-mini-clock i { font: 700 11px/1 var(--sans); color: var(--yellow); font-style: normal; margin-right: 5px; }
.ui-stock.light { margin-top: 14px; }
.ui-stock.light .ui-stock-bar { background: rgba(255,255,255,.12); }
.ui-stock.light .ui-stock-bar i { background: var(--yellow); }
.ui-stock.light small { color: rgba(255,255,255,.7); }

/* ---------- Theme customization demo ---------- */
.ui-theme { width: 100%; max-width: 380px; }
.ui-theme-chips { display: flex; gap: 6px; margin-bottom: 12px; }
.ui-theme-chips span { flex: 1; text-align: center; font: 700 12px/1 var(--sans); padding: 8px 0; border-radius: 999px; background: rgba(0,0,0,.06); color: #3d3a1c; transition: background .3s, color .3s; }
.ui-theme-chips span.on { background: var(--ink); color: var(--yellow); }
.ui-theme-widget {
  --w-bg: #fff; --w-ink: #0d0d0f; --w-accent: #0d0d0f; --w-accent-ink: #fff; --w-radius: 14px; --w-btn-radius: 999px; --w-font: var(--sans); --w-border: #e8e6ee; --w-muted: #6b6b75;
  background: var(--w-bg); color: var(--w-ink); border: 1.5px solid var(--w-border); border-radius: var(--w-radius); padding: 16px; font-family: var(--w-font);
  box-shadow: 0 18px 40px rgba(0,0,0,.18); transition: background .45s, color .45s, border-radius .45s, border-color .45s;
}
.ui-theme-widget * { transition: background .45s, color .45s, border-radius .45s, border-color .45s, font-family .2s; }
.ui-theme-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.ui-theme-title { font-weight: 700; font-size: 14px; }
.ui-theme-live { display: inline-flex; align-items: center; gap: 5px; font: 700 10px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: #d1000f; }
.ui-theme-live i { width: 6px; height: 6px; border-radius: 50%; background: #ff2d3b; animation: pulse 1.4s infinite; }
.ui-theme-price { margin-top: 12px; }
.ui-theme-price small { display: block; font: 700 10px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--w-muted); }
.ui-theme-price b { display: block; font-size: 28px; line-height: 1.1; letter-spacing: -0.03em; margin-top: 4px; }
.ui-theme-row { display: flex; gap: 6px; margin-top: 12px; }
.ui-theme-row span { flex: 1; text-align: center; font-weight: 700; font-size: 12px; padding: 8px 0; border: 1.5px solid var(--w-border); border-radius: var(--w-btn-radius); }
.ui-theme-btn { margin-top: 10px; background: var(--w-accent); color: var(--w-accent-ink); text-align: center; font-weight: 700; font-size: 14px; padding: 12px; border-radius: var(--w-btn-radius); }
.ui-theme-widget[data-look="arena"] { --w-bg: #111114; --w-ink: #fff; --w-accent: #ffe74b; --w-accent-ink: #111; --w-radius: 6px; --w-btn-radius: 6px; --w-border: #2c2c32; --w-muted: #9a9aa3; --w-font: "Inter Tight", var(--sans); }
.ui-theme-widget[data-look="gallery"] { --w-bg: #f6f1e7; --w-ink: #2b2118; --w-accent: #2b2118; --w-accent-ink: #f6f1e7; --w-radius: 2px; --w-btn-radius: 2px; --w-border: #d9cdb8; --w-muted: #8a7a63; --w-font: Georgia, "Times New Roman", serif; }
.ui-theme-widget[data-look="marketplace"] { --w-bg: #fff; --w-ink: #0d0d0f; --w-accent: #a54bff; --w-accent-ink: #fff; --w-radius: 18px; --w-btn-radius: 12px; --w-border: #e8e6ee; --w-muted: #6b6b75; --w-font: var(--body); }
.ui-theme-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; font: 700 12px/1 var(--sans); color: #3d3a1c; }
.ui-theme-controls small { display: block; font: 600 9px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; opacity: .7; margin-top: 4px; }
.ui-theme-swatches { display: flex; gap: 6px; }
.ui-theme-swatches i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.ui-theme-font { font-size: 16px; }
.ui-theme-radius i { display: block; width: 26px; height: 16px; border: 2px solid #3d3a1c; border-radius: var(--demo-radius, 8px); transition: border-radius .45s; }

/* ---------- Full-width fraud card ---------- */
.tile-wide { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; align-items: center; min-height: 0; }
.tile-wide .tile-copy h3 { margin-top: 16px; }
.tile-wide .ui { padding: 0; }
.ui-fraud { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; }
.ui-fraud .ui-collectors { max-width: none; }
.ui-risk { padding: 16px; }
.ui-risk-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.ui-risk-head b { display: block; font: 700 14px/1.2 var(--sans); }
.ui-risk-head small { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }
.ui-score.big { font-size: 18px; padding: 10px 14px; }
.ui-flags { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 8px; font: 600 12px/1.2 var(--sans); }
.ui-flags li { display: flex; align-items: center; gap: 8px; }
.ui-flags i { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.ui-flags i.bad { background: #e0362c; } .ui-flags i.warn { background: #f4a300; } .ui-flags i.ok { background: #1b7f45; }
.ui-risk .ui-actions { margin-top: 0; }

@media (max-width: 980px) {
  .tile-wide { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .bento .tile-wide { grid-column: auto; }
  .ui-fraud { grid-template-columns: 1fr; }
  .ui-collection-wall figure { max-width: 30%; }
  .ui-collection-wall figure.lead { max-width: 36%; }
}
