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

:root{
  --bg:#050506;
  --panel:#0c0c10;
  --line:rgba(255,255,255,.11);
  --ink:#f7f7fb;
  --muted:#a1a1ae;
  --lime:#baff32;
  --pink:#ff63cb;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,sans-serif;
}
a{color:inherit}
button,a{font:inherit}

.topbar{
  width:min(1220px,calc(100% - 30px));
  margin:14px auto 0;
  padding:18px 0 14px;
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.brand{
  text-decoration:none;
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
  letter-spacing:-.03em;
  font-size:1.15rem;
}
.brand span,.hero h1 span,.footer-cta h2 span,.foot-left span{color:var(--lime)}
nav{display:flex;gap:24px}
nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
}
.trade-pill{
  text-decoration:none;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  font-size:.78rem;
}

main{width:min(1220px,calc(100% - 30px));margin:auto}
.hero{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:34px;
  align-items:center;
  padding:44px 0 72px;
  min-height:760px;
}
.eyebrow{
  color:var(--muted);
  letter-spacing:.16em;
  font-weight:800;
  font-size:.72rem;
  margin:0 0 18px;
}
.hero h1,.section h2,.footer-cta h2{
  font-family:"Space Grotesk",sans-serif;
  line-height:.92;
  letter-spacing:-.07em;
  margin:0;
}
.hero h1{font-size:clamp(4.5rem,9vw,8rem)}
.brand-stack{
  margin:28px 0 18px;
}
.line-strong{
  font-size:clamp(1.45rem,2.2vw,1.95rem);
  line-height:1.25;
  margin:0 0 10px;
  font-weight:800;
}
.line-soft{
  color:var(--muted);
  max-width:520px;
  font-size:1.03rem;
  line-height:1.72;
  margin:14px 0 0;
}
.hero-actions{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 18px;
  border-radius:999px;
  background:var(--lime);
  color:#111118;
  text-decoration:none;
  font-weight:800;
  border:none;
}
.primary-btn.disabled{opacity:.45;pointer-events:none}
.text-link{
  text-decoration:none;
  color:var(--muted);
  font-weight:700;
}
.source-note{
  color:#7f7f8b;
  font-size:.86rem;
  line-height:1.6;
  max-width:560px;
  margin-top:26px;
}
.hero-art{
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-art img{
  width:100%;
  display:block;
  object-fit:contain;
  max-height:720px;
  background:#050506;
}
.thesis-strip{
  border-block:1px solid var(--line);
  padding:18px 0;
}
.thesis-line{
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(1.05rem,2.1vw,1.5rem);
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.thesis-line i{color:var(--lime);font-style:normal}

.section{
  padding:90px 0;
  border-bottom:1px solid var(--line);
}
.section-head{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-bottom:34px;
}
.section h2{font-size:clamp(3.3rem,7vw,5.9rem)}

.story-grid,.launch-grid{
  display:grid;
  gap:14px;
}
.story-grid{
  grid-template-columns:repeat(3,1fr);
}
.story-grid article,.launch-grid article{
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  background:var(--panel);
}
.story-grid article span,.launch-grid article span{
  display:block;
  color:var(--muted);
  font-size:.72rem;
  letter-spacing:.12em;
  font-weight:800;
  margin-bottom:18px;
}
.story-grid h3{
  margin:0 0 12px;
  font-family:"Space Grotesk",sans-serif;
  font-size:1.45rem;
  line-height:1.08;
}
.story-grid p{
  margin:0;
  color:#c9c9d3;
  line-height:1.68;
}

.launch-grid{
  grid-template-columns:repeat(3,1fr);
}
.launch-grid strong{
  font-family:"Space Grotesk",sans-serif;
  font-size:2rem;
  display:block;
  margin-bottom:8px;
}
.launch-grid small{
  color:var(--muted);
}
.launch-copy{
  margin-top:18px;
  display:grid;
  gap:10px;
  color:#d1d1d8;
}
.launch-copy p{
  margin:0;
  line-height:1.65;
}
.launch-copy code,.launch-copy span{
  color:var(--lime);
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
.launch-box{
  margin-top:24px;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  background:var(--panel);
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  align-items:center;
  justify-content:space-between;
}
.status{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.14em;
}
.dot{
  width:8px;height:8px;border-radius:50%;background:var(--lime);display:inline-block;
}
.launch-box p{
  margin:0;
  color:var(--muted);
  flex:1 1 280px;
}
.copy-btn{
  min-height:46px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  font-weight:700;
}
.copy-btn:disabled{opacity:.35}

.faq-list{border-top:1px solid var(--line)}
details{border-bottom:1px solid var(--line);padding:8px 0}
summary{
  cursor:pointer;
  list-style:none;
  padding:22px 0;
  font-family:"Space Grotesk",sans-serif;
  font-size:1.12rem;
  font-weight:700;
}
summary::-webkit-details-marker{display:none}
details p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.72;
  max-width:760px;
}

.footer-cta{
  padding:110px 0 90px;
  text-align:center;
}
.footer-cta h2{font-size:clamp(3.8rem,8vw,7rem);margin:0 0 18px}
.footer-cta p:last-of-type{
  font-size:1.15rem;
  color:var(--muted);
  margin:0 0 28px;
}

footer{
  width:min(1220px,calc(100% - 30px));
  margin:auto;
  padding:28px 0 44px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:start;
  color:#7e7e89;
  font-size:.74rem;
}
.foot-left{
  font-family:"Space Grotesk",sans-serif;
  color:var(--ink);
}
.foot-mid{line-height:1.55;max-width:760px}
.foot-right{white-space:nowrap}

@media(max-width:920px){
  nav{display:none}
  .hero{grid-template-columns:1fr;min-height:auto;padding-top:34px}
  .story-grid,.launch-grid,footer{grid-template-columns:1fr}
}
@media(max-width:560px){
  .topbar{padding-top:14px}
  .brand{font-size:1rem}
  .trade-pill{font-size:.68rem;padding:9px 12px}
  .hero h1{font-size:18vw}
  .line-strong{font-size:1.3rem}
  .hero-actions{display:grid}
  .primary-btn,.text-link,.copy-btn{width:100%}
  .footer-cta h2{font-size:14vw}
}

.inline-live-link{color:var(--lime);text-decoration:none;font-weight:700}.inline-live-link:hover{text-decoration:underline}
