/* =========================================================
   REACHY CORE — stylesheet
   robotics × ai × onchain culture
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  --black:      #050505;
  --obsidian:   #0a0b0c;
  --graphite:   #131517;
  --metal:      #1c1f22;
  --metal-2:    #262a2e;
  --white:      #eef1ef;
  --white-dim:  #9aa39d;
  --lime:       #ccff00;
  --lime-dim:   rgba(204,255,0,0.4);
  --green:      #76b900;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 860px), (hover:none){
  body{ cursor: auto; }
}

::selection{ background: var(--lime); color: #050505; }

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

.mono{ font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ---------- global ambient background ---------- */
#ambient{
  position: fixed; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(118,185,0,0.08), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(204,255,0,0.05), transparent 60%),
    linear-gradient(180deg, #060606 0%, #0a0b0c 40%, #08090a 100%);
}
#ambient::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 75%);
}
#ambient::after{
  content:'';
  position:absolute; inset:0;
  box-shadow: inset 0 0 220px rgba(0,0,0,0.85);
}
#grain{
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:0.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0; z-index: 9999; pointer-events:none;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}
.cursor-dot{
  width:5px; height:5px; background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  transition: opacity .2s;
}
.cursor-ring{
  width:34px; height:34px;
  border: 1px solid rgba(204,255,0,0.5);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s, background .25s, opacity .2s;
}
.cursor-ring.--btn{ width:64px; height:64px; background: rgba(204,255,0,0.06); border-color: var(--lime); }
.cursor-ring.--target{ border-radius: 4px; border-color: var(--lime); transform: translate(-50%,-50%) rotate(45deg); }
.cursor-ring.--hud{ width:90px; height:90px; border-color: rgba(118,185,0,0.5); border-style: dashed; }
@media (max-width: 860px), (hover:none){
  .cursor-dot,.cursor-ring{ display:none; }
}

/* ---------- boot sequence ---------- */
#boot{
  position: fixed; inset:0; z-index: 10000; background:#020202;
  display:flex; align-items:center; justify-content:center; flex-direction:column;
  transition: opacity .7s var(--ease-soft), visibility .7s;
}
#boot.--hidden{ opacity:0; visibility:hidden; pointer-events:none; }
#boot::before{
  content:''; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, transparent 1px, transparent 3px);
  animation: scan 6s linear infinite;
}
@keyframes scan{ from{ background-position-y:0;} to{ background-position-y:200px;} }
.boot-dot{
  width:8px; height:8px; border-radius:50%; background: var(--green);
  box-shadow: 0 0 12px var(--green), 0 0 30px var(--green);
  margin-bottom: 28px;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot{ 0%,100%{ transform:scale(1); opacity:1;} 50%{ transform:scale(1.6); opacity:.6;} }
.boot-title{
  font-family: var(--font-display); font-weight:700; letter-spacing:0.08em;
  font-size: clamp(20px,3vw,30px); color: var(--white); margin:0 0 18px;
}
.boot-log{ font-family: var(--font-mono); font-size:12px; color: var(--green); min-height: 90px; text-align:center; letter-spacing:.04em; }
.boot-log div{ opacity:0; animation: line-in .35s forwards; }
@keyframes line-in{ to{ opacity:.85; } }
#boot-skip{
  position:absolute; bottom:34px; right:34px;
  border:1px solid rgba(255,255,255,0.15); background:transparent; color: var(--white-dim);
  font-family: var(--font-mono); font-size:11px; letter-spacing:.12em; padding:9px 16px; border-radius:2px;
  transition: border-color .2s, color .2s;
}
#boot-skip:hover{ border-color: var(--lime); color: var(--lime); }

/* ---------- navbar ---------- */
header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px clamp(20px,4vw,56px);
  transition: background .35s var(--ease-soft), border-color .35s, box-shadow .35s, padding .35s;
  border-bottom: 1px solid transparent;
}
header.--scrolled{
  background: rgba(8,9,10,0.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(204,255,0,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  padding-top:14px; padding-bottom:14px;
}
.nav-left{ display:flex; align-items:center; gap:12px; }
.nav-left img{ width:32px; height:32px; object-fit:contain; filter: drop-shadow(0 0 8px rgba(204,255,0,0.25)); }
.nav-left span{ font-family: var(--font-display); font-weight:600; letter-spacing:0.03em; font-size:15px; }
.nav-mid{ display:flex; gap:34px; }
.nav-mid a{
  font-family: var(--font-mono); font-size:11px; letter-spacing:.12em; color: var(--white-dim);
  position:relative; padding:4px 0;
}
.nav-mid a::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:0; background: var(--lime);
  transition: width .3s var(--ease);
}
.nav-mid a:hover{ color: var(--white); }
.nav-mid a:hover::after{ width:100%; }
.nav-right{ display:flex; align-items:center; gap:10px; }
.btn{
  font-family: var(--font-mono); font-size:11px; letter-spacing:.1em; padding:10px 18px;
  border-radius:2px; border:1px solid rgba(255,255,255,0.14); color: var(--white);
  background: rgba(255,255,255,0.02); transition: all .25s var(--ease-soft); white-space:nowrap;
}
.btn:hover{ border-color: var(--lime); color: var(--lime); background: rgba(204,255,0,0.05); }
.btn.--primary{
  background: var(--lime); color:#0a0a0a; border-color: var(--lime); font-weight:600;
}
.btn.--primary:hover{ box-shadow: 0 0 26px rgba(204,255,0,0.45); transform: translateY(-1px); }
@media (max-width: 900px){ .nav-mid{ display:none; } }
@media (max-width: 620px){ .nav-right .btn:not(.--icon){ display:none; } }

/* ---------- section shell ---------- */
section{ position:relative; z-index:2; }
.wrap{ max-width:1280px; margin:0 auto; padding:0 clamp(20px,4vw,56px); }
.eyebrow{
  font-family: var(--font-mono); font-size:11px; letter-spacing:.16em; color: var(--green);
}
.eyebrow .dim{ color: var(--white-dim); }
h1,h2,h3{ font-family: var(--font-display); margin:0; line-height:1.02; letter-spacing:-0.01em; }

/* ---------- hero ---------- */
#hero{
  min-height: 100svh; display:flex; align-items:center; justify-content:center;
  position:relative; padding-top: 90px; overflow:hidden;
}
.chamber{
  position:absolute; inset:0; margin:auto; width:min(90vw,900px); height:min(90vw,900px);
  perspective: 1400px; pointer-events:none;
}
.chamber-ring{
  position:absolute; inset:0; border-radius:50%;
  border: 1px solid rgba(118,185,0,0.18);
}
.chamber-ring.r1{ inset:6%; animation: spin 40s linear infinite; border-style:dashed; border-color: rgba(204,255,0,0.14); }
.chamber-ring.r2{ inset:16%; animation: spin 60s linear infinite reverse; }
.chamber-ring.r3{ inset:0%; border-color: rgba(255,255,255,0.05); }
@keyframes spin{ to{ transform: rotate(360deg); } }
.chamber-lines{
  position:absolute; inset:0; border-radius:50%;
  background: repeating-conic-gradient(from 0deg, rgba(255,255,255,0.035) 0deg 0.6deg, transparent 0.6deg 6deg);
  mask-image: radial-gradient(circle, transparent 30%, black 31%, black 60%, transparent 62%);
  opacity:.6;
}
.hero-core{
  position:relative; z-index:3; width:min(46vw,340px); height:min(46vw,340px);
  display:flex; align-items:center; justify-content:center;
  transform-style: preserve-3d;
}
.hero-core-glow{
  position:absolute; inset:-30%; border-radius:50%;
  background: radial-gradient(circle, rgba(204,255,0,0.16), transparent 65%);
  filter: blur(6px);
}
.hero-core img{
  width:58%; position:relative; z-index:2;
  filter: drop-shadow(0 0 30px rgba(204,255,0,0.35)) drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.hero-core .plate{
  position:absolute; inset:0; border-radius:50%;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 40%), var(--graphite);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 20px rgba(255,255,255,0.04), inset 0 -30px 60px rgba(0,0,0,0.6), 0 30px 80px rgba(0,0,0,0.6);
}
.hero-ind{
  position:absolute; width:6px; height:6px; border-radius:50%; background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink{ 0%,100%{ opacity:.3;} 50%{ opacity:1;} }

.hero-copy{ position:relative; z-index:4; text-align:center; margin-top: 44px; }
.hero-copy .eyebrow{ display:inline-block; margin-bottom:18px; }
.hero-copy h1{
  font-size: clamp(38px, 8vw, 92px); font-weight:700;
}
.hero-copy h1.--sub{ color: var(--white-dim); font-size: clamp(22px,4.4vw,44px); font-weight:600; margin-top:6px; }
.hero-copy p{ color: var(--white-dim); font-size: clamp(14px,1.6vw,18px); max-width:520px; margin: 20px auto 0; }
.hero-ticker{ font-family: var(--font-mono); color: var(--lime); font-size:13px; margin-top:14px; letter-spacing:.1em; }
.hero-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:34px; }
.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:4;
  font-family:var(--font-mono); font-size:10px; letter-spacing:.16em; color:var(--white-dim);
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.scroll-cue .line{ width:1px; height:34px; background: linear-gradient(var(--green), transparent); animation: scrolldown 1.8s ease-in-out infinite; }
@keyframes scrolldown{ 0%{ opacity:0; transform: scaleY(0.4); transform-origin:top;} 40%{opacity:1;} 100%{ opacity:0; transform: scaleY(1); transform-origin:top;} }

/* ---------- section heading pattern ---------- */
.sec-head{ text-align:center; margin-bottom: 64px; }
.sec-head h2{ font-size: clamp(30px,5vw,54px); margin-top:14px; font-weight:700; }

.core-section{ padding: 150px 0; }

/* ---------- core interface (radial nodes) ---------- */
.core-ui{
  position:relative; width:min(94vw,700px); height:min(94vw,700px); margin:0 auto;
}
.core-center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:150px; height:150px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-direction:column;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.06), transparent 60%), var(--graphite);
  border:1px solid rgba(204,255,0,0.25);
  box-shadow: 0 0 40px rgba(204,255,0,0.12), inset 0 0 30px rgba(0,0,0,0.6);
  z-index:5; transition: box-shadow .4s;
}
.core-center span{ font-family: var(--font-display); font-weight:700; font-size:16px; letter-spacing:.02em; }
.core-center small{ font-family:var(--font-mono); font-size:9px; color: var(--green); margin-top:5px; letter-spacing:.1em; }
.core-ui.--active .core-center{ box-shadow: 0 0 70px rgba(204,255,0,0.3), inset 0 0 30px rgba(0,0,0,0.6); }

.core-orbit{ position:absolute; inset:0; border-radius:50%; border:1px solid rgba(255,255,255,0.07); }
.core-orbit.dashed{ border-style:dashed; border-color: rgba(118,185,0,0.15); inset:9%; }

.core-node{
  position:absolute; width:96px; height:96px; margin:-48px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; background: rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono); font-size:11px; letter-spacing:.06em; color: var(--white-dim);
  transition: all .3s var(--ease-soft); z-index:4; text-align:center; padding:6px;
}
.core-node:hover, .core-node.--on{
  border-color: var(--lime); color: var(--lime); background: rgba(204,255,0,0.06);
  box-shadow: 0 0 24px rgba(204,255,0,0.2);
  transform: scale(1.08);
}
.core-line{
  position:absolute; top:50%; left:50%; height:1px; background: linear-gradient(90deg, rgba(204,255,0,0.7), transparent);
  transform-origin: left center; opacity:0; transition: opacity .4s;
  pointer-events:none; z-index:3;
}
.core-line.--on{ opacity:1; }

.core-detail{
  margin-top:56px; display:flex; justify-content:center; gap:14px; flex-wrap:wrap; min-height:40px;
}
.core-detail span{
  font-family: var(--font-mono); font-size:11px; letter-spacing:.08em; color: var(--white-dim);
  border:1px solid rgba(255,255,255,0.1); padding:8px 14px; border-radius:2px; opacity:0; transform:translateY(6px);
  animation: chip-in .4s var(--ease-soft) forwards;
}
.core-detail span b{ color:var(--lime); font-weight:500; }
@keyframes chip-in{ to{ opacity:1; transform:none; } }

/* ---------- system status ---------- */
.status-panel{
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.08); border-radius:6px; padding: clamp(24px,4vw,48px);
  display:grid; grid-template-columns: 1fr 1fr; gap: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 40px 80px rgba(0,0,0,0.4);
}
@media (max-width:760px){ .status-panel{ grid-template-columns:1fr; } }
.status-list div{
  display:flex; justify-content:space-between; align-items:center;
  padding: 13px 0; border-bottom:1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono); font-size:13px; color: var(--white-dim);
}
.status-list div:last-child{ border-bottom:none; }
.status-list .val{ display:flex; align-items:center; gap:8px; color: var(--green); letter-spacing:.06em; }
.status-list .dot{ width:6px; height:6px; border-radius:50%; background: var(--green); box-shadow:0 0 8px var(--green); animation: blink 2s infinite; }
.signal-wrap{ display:flex; align-items:center; }
.signal-wrap svg{ width:100%; height:auto; }
.signal-line{ fill:none; stroke: var(--lime); stroke-width:1.6; filter: drop-shadow(0 0 6px rgba(204,255,0,0.5)); }
.signal-grid line{ stroke: rgba(255,255,255,0.05); }

/* ---------- compute core / reactor ---------- */
#reactor{ padding: 150px 0; text-align:center; }
.reactor-stage{
  position:relative; width:min(90vw,620px); height:min(90vw,620px); margin: 0 auto;
}
.reactor-ring{
  position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,0.06);
  transition: border-color .6s, box-shadow .6s, transform 1s;
}
.reactor-ring.a{ inset:0; }
.reactor-ring.b{ inset:9%; border-style:dashed; }
.reactor-ring.c{ inset:20%; }
.reactor-core{
  position:absolute; inset:32%; border-radius:50%;
  background: radial-gradient(circle, rgba(204,255,0,0.08), rgba(10,11,12,0.9) 70%);
  border:1px solid rgba(204,255,0,0.2);
  display:flex; align-items:center; justify-content:center;
  transition: box-shadow .8s, background .8s;
}
.reactor-core span{ font-family: var(--font-display); font-weight:700; font-size: clamp(20px,3vw,30px); }
#reactor.--on .reactor-ring{ border-color: rgba(204,255,0,0.4); box-shadow: 0 0 30px rgba(204,255,0,0.15); }
#reactor.--on .reactor-ring.a{ animation: spin 30s linear infinite; }
#reactor.--on .reactor-ring.b{ animation: spin 22s linear infinite reverse; }
#reactor.--on .reactor-core{ box-shadow: 0 0 80px rgba(204,255,0,0.35); background: radial-gradient(circle, rgba(204,255,0,0.18), rgba(10,11,12,0.9) 70%); }
.reactor-stages{
  display:flex; justify-content:center; gap:clamp(10px,3vw,34px); margin-top:60px; flex-wrap:wrap;
  font-family: var(--font-mono); font-size:12px; letter-spacing:.12em; color: var(--white-dim);
}
.reactor-stages span{ display:flex; align-items:center; gap:clamp(10px,3vw,34px); }
.reactor-stages b{ color:var(--white-dim); font-weight:500; transition: color .5s, text-shadow .5s; }
#reactor.--on .reactor-stages b{ color: var(--lime); text-shadow:0 0 12px rgba(204,255,0,0.4); }
.reactor-particle{
  position:absolute; width:3px; height:3px; border-radius:50%; background: var(--lime);
  box-shadow:0 0 6px var(--lime); opacity:0;
}
#reactor.--on .reactor-particle{ animation: orbit-particle 4s linear infinite; }
@keyframes orbit-particle{
  0%{ opacity:0; transform: rotate(0deg) translateX(280px) rotate(0deg); }
  10%{ opacity:1; }
  90%{ opacity:1; }
  100%{ opacity:0; transform: rotate(360deg) translateX(280px) rotate(-360deg); }
}

/* ---------- cinematic banner ---------- */
#banner{
  position:relative; height: 100svh; overflow:hidden; display:flex; align-items:center; justify-content:center;
}
.banner-img{
  position:absolute; inset:0; width:100%; height:120%; object-fit:cover; top:-10%;
  filter: saturate(1.05) contrast(1.05) brightness(0.75);
  will-change: transform;
}
.banner-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.25) 30%, rgba(5,5,5,0.55) 70%, #050505 100%),
    radial-gradient(120% 70% at 50% 100%, rgba(118,185,0,0.14), transparent 60%);
}
.banner-tag{
  position:absolute; top:34px; left:34px; font-family: var(--font-mono); font-size:11px; letter-spacing:.14em; color: var(--green);
}
.banner-copy{ position:relative; z-index:2; text-align:center; }
.banner-copy h2{
  font-size: clamp(34px,8vw,90px); font-weight:700; line-height:1;
  text-shadow: 0 10px 60px rgba(0,0,0,0.6);
}
.banner-copy p{ margin-top:18px; font-family: var(--font-mono); letter-spacing:.14em; color: var(--white-dim); font-size:13px; }

/* ---------- robot section ---------- */
.robot-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .robot-grid{ grid-template-columns:1fr; } }
.robot-card{
  position:relative; border-radius:8px; padding: 40px 28px; min-height: 340px;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border:1px solid rgba(255,255,255,0.08); overflow:hidden;
  transform-style: preserve-3d; transition: transform .4s var(--ease-soft), border-color .4s, box-shadow .4s;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.robot-card::before{
  content:''; position:absolute; inset:0; opacity:0; transition: opacity .5s;
  background: radial-gradient(circle at 30% 20%, rgba(204,255,0,0.14), transparent 60%);
}
.robot-card:hover{ border-color: rgba(204,255,0,0.35); box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(204,255,0,0.08); }
.robot-card:hover::before{ opacity:1; }
.robot-card .tag{ font-family:var(--font-mono); font-size:11px; letter-spacing:.12em; color: var(--green); margin-bottom:14px; }
.robot-card h3{ font-size: 30px; margin-bottom:10px; }
.robot-card p{ color: var(--white-dim); font-size:14px; line-height:1.6; max-width: 30ch; }
.robot-card .glyph{
  position:absolute; top:24px; right:24px; width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:11px; color: var(--white-dim); transition: all .4s;
}
.robot-card:hover .glyph{ border-color: var(--lime); color: var(--lime); box-shadow:0 0 16px rgba(204,255,0,0.3); }

/* ---------- network visualization ---------- */
.net-wrap{ position:relative; width:min(94vw,760px); height:min(90vw,480px); margin:0 auto; }
.net-node{
  position:absolute; display:flex; flex-direction:column; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size:11px; letter-spacing:.08em; color: var(--white-dim);
}
.net-node .dot{ width:14px; height:14px; border-radius:50%; background: var(--metal-2); border:1px solid rgba(255,255,255,0.2); }
.net-node.--main .dot{ width:26px; height:26px; background: var(--lime); box-shadow: 0 0 30px rgba(204,255,0,0.5); border:none; }
.net-node.--main{ color: var(--white); font-weight:600; }
.net-svg{ position:absolute; inset:0; width:100%; height:100%; }
.net-svg path{ fill:none; stroke: rgba(118,185,0,0.25); stroke-width:1; }
.net-particle{ fill: var(--lime); filter: drop-shadow(0 0 4px var(--lime)); }

/* ---------- token identity ---------- */
.token-panel{
  background: linear-gradient(160deg, #17191b, #0c0d0e);
  border:1px solid rgba(255,255,255,0.08); border-radius:8px;
  padding: clamp(28px,5vw,56px); max-width:720px; margin:0 auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 60px 100px rgba(0,0,0,0.5);
}
.token-row{ display:flex; justify-content:space-between; align-items:baseline; padding:18px 0; border-bottom:1px solid rgba(255,255,255,0.07); gap:16px; flex-wrap:wrap; }
.token-row:last-of-type{ border-bottom:none; }
.token-row .k{ font-family:var(--font-mono); font-size:11px; letter-spacing:.14em; color: var(--white-dim); }
.token-row .v{ font-family:var(--font-mono); font-size: 14px; color: var(--white); word-break:break-all; text-align:right; }
.token-row .v.--contract{ font-size:12.5px; color: var(--lime); }
.token-actions{ margin-top:30px; display:flex; justify-content:center; }
#copy-toast{
  position:fixed; bottom:34px; left:50%; transform:translateX(-50%) translateY(20px); z-index:9000;
  background: var(--lime); color:#080808; font-family:var(--font-mono); font-size:12px; letter-spacing:.1em;
  padding:12px 22px; border-radius:3px; opacity:0; pointer-events:none; transition: all .4s var(--ease-soft);
  box-shadow: 0 0 30px rgba(204,255,0,0.4);
}
#copy-toast.--show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* ---------- community ---------- */
#community{
  min-height:100svh; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; background: #030303;
}
#community h2{ font-size: clamp(40px,10vw,120px); font-weight:700; }
#community p{ font-family:var(--font-mono); color: var(--white-dim); letter-spacing:.1em; margin-top:16px; font-size:13px; }
.community-links{ display:flex; gap:24px; margin-top:56px; flex-wrap:wrap; justify-content:center; }
.machine-btn{
  width: 220px; height:150px; border:1px solid rgba(255,255,255,0.14); border-radius:6px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  background: rgba(255,255,255,0.015); position:relative; overflow:hidden;
  transition: all .35s var(--ease-soft);
}
.machine-btn::before{
  content:''; position:absolute; inset:0; opacity:0; transition:opacity .4s;
  background: radial-gradient(circle at 50% 0%, rgba(204,255,0,0.16), transparent 70%);
}
.machine-btn:hover{ border-color: var(--lime); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(204,255,0,0.1); }
.machine-btn:hover::before{ opacity:1; }
.machine-btn .icon{ font-family:var(--font-mono); font-size:20px; color: var(--lime); }
.machine-btn .label{ font-family:var(--font-display); font-weight:600; font-size:16px; }
.machine-btn .handle{ font-family:var(--font-mono); font-size:11px; color: var(--white-dim); }

/* ---------- final cta ---------- */
#final{ padding: 160px 0 120px; text-align:center; transition: filter 1s; }
#final h2{ font-size: clamp(34px,7vw,72px); font-weight:700; }
#final .tick{ font-family:var(--font-mono); color: var(--lime); margin-top:14px; font-size:15px; letter-spacing:.1em; }
.final-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:38px; }

/* ---------- footer ---------- */
footer{ border-top:1px solid rgba(255,255,255,0.07); padding: 50px clamp(20px,4vw,56px) 40px; }
.foot-top{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:24px; }
.foot-brand{ display:flex; align-items:center; gap:12px; }
.foot-brand img{ width:26px; height:26px; }
.foot-brand div{ font-family:var(--font-display); font-weight:600; font-size:14px; }
.foot-brand small{ display:block; font-family:var(--font-mono); font-size:10px; color: var(--white-dim); letter-spacing:.1em; margin-top:2px; }
.foot-links{ display:flex; gap:26px; flex-wrap:wrap; }
.foot-links a{ font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; color: var(--white-dim); }
.foot-links a:hover{ color: var(--lime); }
.foot-bottom{
  margin-top:34px; padding-top:24px; border-top:1px solid rgba(255,255,255,0.05);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-family:var(--font-mono); font-size:11px; color: var(--white-dim); letter-spacing:.08em;
}
.foot-status{ display:flex; align-items:center; gap:8px; color: var(--green); }
.foot-status .dot{ width:6px; height:6px; border-radius:50%; background: var(--green); box-shadow:0 0 8px var(--green); animation: blink 2s infinite; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.reveal.--in{ opacity:1; transform:none; }

/* magnetic button wrapper helper */
.magnetic{ display:inline-block; }
