/* Vicinity — dark, motion-rich, zero external requests. */
@font-face { font-family: "Space Grotesk"; src: url("/fonts/space-grotesk.woff2") format("woff2"); font-weight: 300 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --bg: #070E19; --bg-2: #0B1626; --bg-3: #0F1D33;
  --card: rgba(255,255,255,.045); --card-2: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.09); --line-2: rgba(255,255,255,.16);
  --text: #EEF2F8; --muted: #95A2B8;
  --pin: #FF5A36; --pin-2: #FF8A5B; --moss: #37C29A; --gold: #FFC857; --warn: #FFD58A;
  --radius: 20px;
  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mx: 50%; --my: 40%;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.65 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--pin-2); text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--display); line-height: 1.06; letter-spacing: -0.025em; margin: 0 0 .5em; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); font-weight: 650; max-width: 20ch; }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; background: var(--card-2); padding: 2px 6px; border-radius: 6px; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .wrap { padding: 0 16px; } }
.muted { color: var(--muted); } .small { font-size: .9rem; } .tiny { font-size: .8rem; margin-top: 10px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--pin); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--pin-2); outline-offset: 3px; border-radius: 8px; }
[hidden] { display: none !important; }

/* page progress */
.progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 60; }
.progress span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--pin), var(--gold)); }

/* notice */
.notice { background: linear-gradient(90deg, rgba(255,90,54,.16), rgba(255,200,87,.08)); border-bottom: 1px solid var(--line); font-size: .88rem; }
.notice__inner { display: flex; gap: 10px; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.notice p { margin: 0; color: #F4D9CF; }
.notice a { color: #fff; font-weight: 600; }
.notice__dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--pin); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { box-shadow: 0 0 0 6px rgba(255,90,54,.0); opacity: .5; } 0%,100% { box-shadow: 0 0 0 3px rgba(255,90,54,.3); } }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(7,14,25,.72); backdrop-filter: saturate(1.5) blur(14px); -webkit-backdrop-filter: saturate(1.5) blur(14px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.nav { display: flex; gap: 26px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--pin); transform: scaleX(0); transition: transform .25s ease; }
.nav a:hover { color: var(--text); } .nav a:hover::after { transform: scaleX(1); }
@media (max-width: 880px) { .nav { display: none; } }

/* buttons */
.btn { --tx: 0px; --ty: 0px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 999px; font: 600 1rem var(--body); text-decoration: none; border: 1px solid transparent; cursor: pointer; transform: translate(var(--tx), var(--ty)); transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s; color: var(--text); white-space: nowrap; }
.btn--primary { background: linear-gradient(135deg, var(--pin), #FF7A45); color: #fff; box-shadow: 0 10px 30px -10px rgba(255,90,54,.7), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary:hover { box-shadow: 0 14px 40px -10px rgba(255,90,54,.9), inset 0 1px 0 rgba(255,255,255,.3); }
.btn--glass { background: var(--card-2); border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn--glass:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: .92rem; }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.7); }
.btn.is-verified .btn__dot { background: #7CF0C5; box-shadow: 0 0 0 3px rgba(55,194,154,.35); }
.link-btn { background: none; border: 0; color: var(--muted); font: 500 .9rem var(--body); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 6px 0; }
.link-btn:hover { color: var(--text); }

/* HERO */
.hero { position: relative; min-height: calc(100svh - 110px); display: grid; align-items: center; padding: 48px 0 96px; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.orb--a { width: 520px; height: 520px; background: #FF5A36; top: -160px; right: -120px; animation: drift 18s ease-in-out infinite; opacity: .35; }
.orb--b { width: 420px; height: 420px; background: #2B5BFF; bottom: -180px; left: -120px; animation: drift 22s ease-in-out infinite reverse; opacity: .28; }
.orb--c { width: 300px; height: 300px; background: #37C29A; top: 40%; left: 45%; animation: drift 26s ease-in-out infinite; opacity: .16; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.08); } 66% { transform: translate(-30px,40px) scale(.95); } }
.grid-floor { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%); }
.spotlight { position: absolute; inset: 0; background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255,138,91,.14), transparent 60%); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } .hero { min-height: auto; padding-top: 32px; } }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; font-weight: 500; flex-wrap: wrap; }
.pill { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(255,213,138,.12); border: 1px solid rgba(255,213,138,.3); color: var(--warn); font-weight: 600; font-size: .78rem; }
.hero__title { font-size: clamp(3.2rem, 10.5vw, 7.4rem); font-weight: 700; letter-spacing: -0.045em; line-height: .95; margin: 18px 0 26px; }
.word { display: inline-block; opacity: 0; transform: translateY(.5em) rotate(4deg); filter: blur(10px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1), filter .9s; margin-right: .18em; }
.word:nth-child(2) { transition-delay: .12s; } .word:nth-child(3) { transition-delay: .24s; }
.is-loaded .word { opacity: 1; transform: none; filter: none; }
.word--accent { background: linear-gradient(100deg, var(--pin) 10%, var(--gold) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 50ch; }
.lead em { color: var(--text); font-style: normal; font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 38px; }
.hero__facts { list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hero__facts li { display: flex; flex-direction: column; font-size: .9rem; }
.hero__facts strong { font-family: var(--display); font-size: 1rem; }
.hero__facts span { color: var(--muted); }
@media (max-width: 520px) { .hero__facts { grid-template-columns: 1fr; gap: 10px; } }

/* radar */
.radar { position: relative; aspect-ratio: 1; width: min(100%, 480px); justify-self: center; display: grid; place-items: center; }
.radar__ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,90,54,.35); }
.r1 { inset: 36%; background: rgba(255,90,54,.08); } .r2 { inset: 24%; border-style: dashed; } .r3 { inset: 12%; opacity: .6; } .r4 { inset: 0; opacity: .3; }
.radar__ring { animation: ring 4s ease-out infinite; }
.r2 { animation-delay: .6s; } .r3 { animation-delay: 1.2s; } .r4 { animation-delay: 1.8s; }
@keyframes ring { 0% { transform: scale(.96); } 50% { transform: scale(1.03); } 100% { transform: scale(.96); } }
.radar__sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(255,90,54,.28), transparent 25%); animation: spin 6s linear infinite; mask-image: radial-gradient(circle, #000 60%, transparent 71%); -webkit-mask-image: radial-gradient(circle, #000 60%, transparent 71%); }
@keyframes spin { to { transform: rotate(360deg); } }
.radar__pin { position: relative; width: 26%; filter: drop-shadow(0 18px 30px rgba(255,90,54,.55)); animation: bob 3.2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-10px); } }
.chip { position: absolute; padding: 8px 14px; border-radius: 999px; background: rgba(15,29,51,.8); border: 1px solid var(--line-2); backdrop-filter: blur(8px); font-size: .88rem; font-weight: 600; white-space: nowrap; animation: float 6s ease-in-out infinite; box-shadow: 0 10px 30px -12px rgba(0,0,0,.6); }
.chip--1 { top: 10%; left: 4%; } .chip--2 { top: 22%; right: -2%; animation-delay: -1.5s; } .chip--3 { bottom: 16%; left: -2%; animation-delay: -3s; } .chip--4 { bottom: 6%; right: 8%; animation-delay: -4.5s; }
@keyframes float { 50% { transform: translateY(-12px); } }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; width: 26px; height: 42px; border: 2px solid var(--line-2); border-radius: 14px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--pin); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* marquee */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: var(--bg-2); }
.marquee__label { text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee__row { display: flex; gap: 48px; padding-right: 48px; }
.marquee__row span { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; color: rgba(238,242,248,.28); white-space: nowrap; transition: color .2s; }
.marquee__row span:nth-child(3n+1) { color: rgba(255,138,91,.6); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* SCROLL STORY */
.story { position: relative; height: 520vh; background: radial-gradient(ellipse at 70% 40%, rgba(255,90,54,.08), transparent 60%), var(--bg); }
.story__sticky { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; overflow: hidden; }
.story__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.story__captions { list-style: none; margin: 0; padding: 0; position: relative; min-height: 300px; }
.caption { position: absolute; inset: 0 0 auto 0; opacity: 0; transform: translateY(30px); filter: blur(6px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1), filter .6s; pointer-events: none; }
.caption.is-active { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.caption h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
.caption p { color: var(--muted); font-size: 1.08rem; max-width: 42ch; }
.caption__num { display: inline-block; font-family: var(--display); font-weight: 700; color: var(--pin); margin-bottom: 14px; letter-spacing: .1em; }
.stage { width: 100%; height: auto; border-radius: 28px; border: 1px solid var(--line); box-shadow: 0 40px 100px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.02); }
.stage__note { text-align: center; font-size: .78rem; color: var(--muted); margin: 10px 0 0; }
.stage__bg { fill: #0A1424; }
.world-dot { fill: rgba(255,255,255,.18); }
.world-dot.hot { fill: var(--pin); }
.city__ground { fill: #0E1C31; }
.city__river { stroke: #1D4F77; stroke-width: 34; fill: none; stroke-linecap: round; }
.city__road { stroke: #1F3558; stroke-width: 16; fill: none; stroke-linecap: round; }
.city__road--minor { stroke-width: 8; }
.city__blocks rect { fill: #152743; }
.ring { fill: rgba(255,90,54,.08); stroke: var(--pin); stroke-width: 2; }
.ring--dash { fill: none; stroke-dasharray: 6 8; opacity: .8; }
.ring--faint { fill: none; opacity: .35; }
.pin__body { fill: var(--pin); filter: drop-shadow(0 12px 18px rgba(255,90,54,.5)); }
.pin__hole { fill: #FFF3EA; }
.meme { opacity: 0; }
.meme rect { fill: rgba(17,32,56,.92); stroke: rgba(255,255,255,.14); }
.meme__t { font: 600 15px var(--display); fill: #EEF2F8; }
.meme__s { font: 600 12px var(--body); fill: var(--pin-2); }
.board__bg { fill: rgba(17,32,56,.94); stroke: rgba(255,255,255,.14); }
.board__title { font: 700 14px var(--display); fill: #EEF2F8; }
.board__label { font: 500 13px var(--body); fill: #95A2B8; }
.bar--1 { fill: var(--pin); } .bar--2 { fill: var(--pin-2); } .bar--3 { fill: var(--moss); }
.coin__halo { fill: rgba(255,200,87,.1); stroke: rgba(255,200,87,.35); stroke-dasharray: 5 7; }
.coin__inner { fill: none; stroke: rgba(122,72,0,.35); stroke-width: 3; }
.coin__pin { fill: #B8431F; } .coin__hole { fill: #FFE3A3; }
.coin__label { font: 700 15px var(--display); fill: #7A4300; letter-spacing: .04em; }
.coin__tag { fill: rgba(255,213,138,.14); stroke: rgba(255,213,138,.5); }
.coin__tagtext { font: 700 13px var(--body); fill: var(--warn); letter-spacing: .12em; }
.story__dots { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); display: grid; gap: 10px; }
.story__dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: background .3s, transform .3s; }
.story__dots span.is-on { background: var(--pin); transform: scale(1.4); }
@media (max-width: 900px) {
  .story { height: 560vh; }
  .story__grid { grid-template-columns: 1fr; gap: 18px; }
  .story__stage { order: -1; }
  .story__captions { min-height: 230px; }
  .caption p { font-size: 1rem; }
  .story__dots { display: none; }
}

/* reduced motion: turn the story into a simple list */
.reduced .story { height: auto; }
.reduced .story__sticky { position: static; height: auto; padding: 80px 0; }
.reduced .story__captions { min-height: 0; }
.reduced .caption { position: static; opacity: 1; transform: none; filter: none; margin-bottom: 32px; }

/* sections */
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 40px 0 100px; }
.section--panel { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--glow { background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,90,54,.12), transparent 70%), var(--bg); }
@media (max-width: 600px) { .section { padding: 76px 0; } }
.section-head { margin-bottom: 40px; }
.section-head p.muted { max-width: 60ch; font-size: 1.05rem; }
.kicker { font-family: var(--display); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; color: var(--pin-2); margin-bottom: 14px; }
.card-glass { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(10px); box-shadow: 0 20px 60px -30px rgba(0,0,0,.7); }
.tag { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .04em; background: var(--card-2); border: 1px solid var(--line-2); color: var(--muted); }
.tag--ok { background: rgba(55,194,154,.14); border-color: rgba(55,194,154,.4); color: #7CF0C5; }
.tag--no { background: rgba(255,90,54,.12); border-color: rgba(255,90,54,.4); color: #FF9D80; }
.tag--warn { background: rgba(255,213,138,.12); border-color: rgba(255,213,138,.4); color: var(--warn); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* demo */
.demo { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .demo { grid-template-columns: 1fr; } }
.demo__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 640px) { .demo__cards { grid-template-columns: 1fr; } }
.vote-card { --rx: 0deg; --ry: 0deg; text-align: left; display: flex; flex-direction: column; gap: 10px; padding: 22px; min-height: 230px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid var(--line); color: var(--text); font: inherit; cursor: pointer; transform: perspective(700px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .15s ease, border-color .2s, box-shadow .2s; }
.vote-card:hover { border-color: rgba(255,90,54,.5); box-shadow: 0 20px 50px -20px rgba(255,90,54,.45); }
.vote-card__emoji { font-size: 2rem; }
.vote-card__meme { font-family: var(--display); font-weight: 600; font-size: 1.08rem; line-height: 1.3; flex: 1; }
.vote-card__city { color: var(--muted); font-size: .88rem; }
.vote-card__cta { align-self: flex-start; padding: 6px 14px; border-radius: 999px; background: rgba(255,90,54,.14); color: #FF9D80; font-weight: 700; font-size: .85rem; }
.vote-card.is-voted .vote-card__cta { background: rgba(55,194,154,.18); color: #7CF0C5; }
.demo__board { padding: 24px; border-radius: var(--radius); background: var(--bg-3); border: 1px solid var(--line); }
.demo__board-title { font-family: var(--display); font-weight: 700; display: flex; gap: 10px; align-items: center; }
#demo-board { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 14px; }
#demo-board li { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: center; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
#demo-board .bar-track { grid-column: 1 / -1; height: 10px; border-radius: 6px; background: rgba(255,255,255,.06); overflow: hidden; }
#demo-board .bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--pin), var(--gold)); transform-origin: 0 50%; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
#demo-board .votes { font-variant-numeric: tabular-nums; color: var(--muted); font-size: .9rem; }
.burst { position: fixed; pointer-events: none; z-index: 80; font-size: 20px; animation: burst .9s ease-out forwards; }
@keyframes burst { to { transform: translate(var(--bx), var(--by)) scale(.4); opacity: 0; } }

/* wallet */
.wallet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .wallet-grid { grid-template-columns: 1fr; gap: 32px; } }
.safety { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.safety li { position: relative; padding-left: 30px; color: #C9D2E0; }
.safety li::before { content: "🛡"; position: absolute; left: 0; top: 0; }
.wallet { min-height: 360px; display: grid; align-content: center; text-align: center; position: relative; overflow: hidden; }
.wallet::before { content: ""; position: absolute; inset: -40%; background: conic-gradient(from 0deg, transparent, rgba(255,90,54,.18), transparent 30%); animation: spin 8s linear infinite; z-index: -1; }
.wallet__state { display: grid; gap: 14px; justify-items: center; }
.wallet__icon { width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; background: var(--card-2); border: 1px solid var(--line-2); }
.wallet__list { display: grid; gap: 10px; width: 100%; max-width: 340px; }
.wallet-option { display: flex; align-items: center; gap: 12px; width: 100%; padding: 12px 16px; border-radius: 14px; background: var(--card); border: 1px solid var(--line-2); color: var(--text); font: 600 1rem var(--body); cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.wallet-option:hover { border-color: rgba(255,90,54,.6); background: var(--card-2); transform: translateY(-1px); }
.wallet-option img { width: 28px; height: 28px; border-radius: 8px; }
.wallet-option .detected { margin-left: auto; font-size: .75rem; color: #7CF0C5; }
.wallet__links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.addr { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; background: var(--card-2); border: 1px solid var(--line-2); font-family: ui-monospace, Menlo, monospace; font-size: .95rem; }
.addr--center { justify-content: center; }
.addr__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.msg-preview { width: 100%; text-align: left; }
.msg-preview summary { cursor: pointer; color: var(--muted); font-size: .88rem; }
.msg-preview pre { white-space: pre-wrap; word-break: break-all; font-size: .78rem; background: rgba(0,0,0,.35); border: 1px solid var(--line); border-radius: 12px; padding: 14px; color: #C9D2E0; max-height: 220px; overflow: auto; }
.verified-badge { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; font-size: 2.4rem; font-weight: 800; color: #062017; background: radial-gradient(circle at 30% 30%, #9BF5D3, #37C29A); box-shadow: 0 0 0 10px rgba(55,194,154,.15), 0 20px 50px -10px rgba(55,194,154,.6); animation: pop .6s cubic-bezier(.2,1.6,.4,1); }
@keyframes pop { from { transform: scale(.3); opacity: 0; } }
.wallet__error { color: #FF9D80; font-size: .92rem; margin: 14px 0 0; }

/* checker */
.checker { display: flex; gap: 12px; padding: 10px; max-width: 760px; }
.checker input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--text); font: 500 1.05rem var(--body); padding: 12px 14px; outline: none; }
.checker input::placeholder { color: #6E7B92; }
.checker:focus-within { border-color: rgba(255,90,54,.55); }
@media (max-width: 520px) { .checker { flex-direction: column; } }
.check-result { max-width: 760px; margin-top: 16px; padding: 18px 20px; border-radius: 16px; display: flex; gap: 14px; align-items: flex-start; border: 1px solid; animation: pop .35s ease; }
.check-result__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.check-result p { margin: 0; }
.check-result--official { background: rgba(55,194,154,.1); border-color: rgba(55,194,154,.45); }
.check-result--official .check-result__icon { background: var(--moss); color: #062017; }
.check-result--not_official { background: rgba(255,90,54,.1); border-color: rgba(255,90,54,.5); }
.check-result--not_official .check-result__icon { background: var(--pin); color: #fff; }
.check-result--warning, .check-result--unknown, .check-result--empty { background: rgba(255,213,138,.08); border-color: rgba(255,213,138,.4); }
.check-result--warning .check-result__icon, .check-result--unknown .check-result__icon, .check-result--empty .check-result__icon { background: var(--gold); color: #3A2A0A; }
.official { margin-top: 36px; max-width: 760px; }
.official__title { font-family: var(--display); font-weight: 600; }
.official ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.official li { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; color: #C9D2E0; word-break: break-word; }

/* token */
.token-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .token-grid { grid-template-columns: 1fr; } }
.specs { margin: 0; }
.specs div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.specs div:last-child { border-bottom: 0; }
.specs dt { color: var(--muted); font-size: .9rem; }
.specs dd { margin: 0; font-weight: 500; }
@media (max-width: 480px) { .specs div { grid-template-columns: 1fr; gap: 2px; } }
.checklist { list-style: none; padding: 0; margin: 12px 0 0; }
.checklist li { position: relative; padding: 8px 0 8px 32px; color: #D5DCE8; }
.checklist li::before { position: absolute; left: 0; top: 9px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; font-weight: 700; }
.checklist .yes::before { content: "✓"; background: rgba(55,194,154,.2); color: #7CF0C5; }
.checklist .no::before { content: "✕"; background: rgba(255,90,54,.18); color: #FF9D80; }

/* timeline */
.timeline { --fill: 0; list-style: none; margin: 0 0 24px; padding: 0 0 0 34px; position: relative; }
.timeline::before, .timeline::after { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; border-radius: 2px; }
.timeline::before { background: var(--line-2); }
.timeline::after { background: linear-gradient(var(--moss), var(--pin)); transform-origin: top; transform: scaleY(var(--fill)); }
.timeline__item { position: relative; padding: 0 0 34px 10px; }
.timeline__item::before { content: ""; position: absolute; left: -34px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 2px solid var(--line-2); z-index: 1; }
.timeline__item.is-done::before { background: var(--moss); border-color: var(--moss); box-shadow: 0 0 0 5px rgba(55,194,154,.18); }
.timeline__item.is-next::before { background: var(--pin); border-color: var(--pin); animation: blink 1.8s infinite; }
.timeline__status { display: inline-block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.is-done .timeline__status { color: #7CF0C5; } .is-next .timeline__status { color: var(--pin-2); }
.timeline p { color: var(--muted); margin: 0; }
.note { font-size: .95rem; color: var(--muted); max-width: 70ch; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.big { font-family: var(--display); font-size: 3.4rem; font-weight: 700; line-height: 1; margin: 10px 0 14px; background: linear-gradient(100deg, var(--text), var(--pin-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plain { margin: 0; padding-left: 18px; color: var(--muted); } .plain li { margin-bottom: 6px; }

/* faq */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 1.12rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pin); font-size: 1.5rem; line-height: 1; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 12px 0 0; }

.risk { border: 1px solid rgba(255,213,138,.45); background: rgba(255,213,138,.07); border-radius: var(--radius); padding: 28px; }
.risk h2 { font-size: 1.4rem; color: var(--warn); }
.risk p { margin: 0; color: #D5DCE8; }

.site-footer { border-top: 1px solid var(--line); padding: 40px 0 56px; font-size: .92rem; background: var(--bg-2); }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: center; justify-content: space-between; }
.site-footer p { margin: 0; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 90; padding: 12px 18px; border-radius: 12px; background: #13243F; border: 1px solid var(--line-2); box-shadow: 0 20px 50px -20px rgba(0,0,0,.8); font-weight: 500; animation: pop .3s ease; max-width: calc(100vw - 32px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .word { opacity: 1; transform: none; filter: none; }
}
