:root {
  --bg: #050806;
  --panel: #0a100c;
  --panel-2: #0d1710;
  --line: rgba(125, 255, 38, 0.18);
  --green: #78ff27;
  --green-2: #a5ff68;
  --red: #ff2a22;
  --silver: #edf2ef;
  --muted: #9aaba0;
  --text: #f6faf7;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 12%, rgba(255,42,34,.09), transparent 28rem),
    radial-gradient(circle at 10% 28%, rgba(120,255,39,.08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  min-height: 76px; padding: 14px clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(to bottom, rgba(5,8,6,.96), rgba(5,8,6,.72), transparent);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: .06em; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(120,255,39,.35); }
.site-header nav { display: flex; gap: clamp(16px, 2.5vw, 34px); color: #c9d4cd; font-size: .92rem; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: var(--green); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13); font-weight: 850; letter-spacing: .03em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 20px; font-size: .88rem; }
.button-primary {
  color: #061006; border-color: var(--green);
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 0 28px rgba(120,255,39,.25);
}
.button-primary:hover { box-shadow: 0 0 42px rgba(120,255,39,.36); }
.button-ghost { background: rgba(8,14,10,.7); }
.button-ghost:hover { border-color: rgba(120,255,39,.55); }
.is-disabled { opacity: .45; pointer-events: none; }

.hero {
  min-height: min(100vh, 900px); position: relative; display: flex; align-items: flex-end;
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(2,4,3,.94) 0%, rgba(2,4,3,.45) 43%, rgba(2,4,3,.12) 72%),
    linear-gradient(0deg, rgba(5,8,6,.96) 0%, transparent 38%, rgba(5,8,6,.22) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: min(720px, 92vw);
  margin: 0 0 clamp(68px, 9vh, 110px) max(5vw, calc((100vw - var(--max))/2));
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 10px currentColor; }
.hero h1, h2 {
  margin: 18px 0; line-height: .96; letter-spacing: -.055em; text-transform: uppercase;
}
.hero h1 { font-size: clamp(3.3rem, 7vw, 7.2rem); max-width: 780px; }
.hero h1 span, h2 span { color: var(--green); text-shadow: 0 0 28px rgba(120,255,39,.22); }
.hero p { max-width: 640px; color: #c8d2cc; font-size: clamp(1rem, 1.35vw, 1.2rem); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.scroll-cue {
  position: absolute; z-index: 3; right: 30px; bottom: 28px;
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: rgba(5,8,6,.65); color: var(--green);
  animation: float 2.4s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(6px); } }

.ticker-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max); margin: 0 auto; border-inline: 1px solid var(--line);
}
.ticker-strip div { padding: 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.ticker-strip div:last-child { border-right: 0; }
.ticker-strip b { font-size: 1.15rem; letter-spacing: .05em; }
.ticker-strip span { color: var(--muted); font-size: .67rem; letter-spacing: .13em; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(86px, 10vw, 150px) 24px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 8vw, 100px); }
.section h2 { font-size: clamp(2.4rem, 5vw, 5.3rem); }
.section-copy p { color: var(--muted); font-size: 1.03rem; }
.section-copy .lead { color: #e6eee9; font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
.source-actions { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.source-actions a, .text-link { color: var(--green); font-weight: 800; }
.source-actions a:hover, .text-link:hover { text-decoration: underline; }

.art-card {
  position: relative; padding: 6%; border: 1px solid var(--line); border-radius: var(--radius);
  background: radial-gradient(circle, rgba(120,255,39,.12), transparent 66%), rgba(7,12,9,.85);
  box-shadow: var(--shadow); overflow: hidden;
}
.art-card img { position: relative; z-index: 2; border-radius: 18px; }
.art-glow { position: absolute; width: 55%; aspect-ratio: 1; border-radius: 50%; background: rgba(120,255,39,.22); filter: blur(80px); inset: 22% 22%; }

.receipts-section { max-width: none; background: linear-gradient(180deg, transparent, rgba(120,255,39,.035), transparent); }
.receipts-section > * { max-width: var(--max); margin-inline: auto; }
.section-heading { text-align: center; max-width: 760px !important; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading p { color: var(--muted); }
.receipt-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.receipt-card {
  position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 18px;
  padding: 30px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px;
  background: linear-gradient(145deg, rgba(16,25,18,.88), rgba(6,10,7,.92));
  overflow: hidden; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.receipt-card::after { content: ""; position: absolute; inset: auto -20% -80% 20%; height: 160px; background: var(--green); filter: blur(80px); opacity: 0; transition: opacity .22s ease; }
.receipt-card:hover { transform: translateY(-5px); border-color: rgba(120,255,39,.38); box-shadow: 0 24px 65px rgba(0,0,0,.35); }
.receipt-card:hover::after { opacity: .12; }
.receipt-number { color: var(--green); font-weight: 900; }
.receipt-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.receipt-card p { color: var(--muted); margin: 0 0 18px; }
.receipt-card strong { color: var(--green); }

.pairing-panel {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center;
  padding: clamp(32px, 5vw, 68px); border: 1px solid var(--line); border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(120,255,39,.055), transparent 34%),
    linear-gradient(315deg, rgba(255,42,34,.055), transparent 35%),
    var(--panel);
  box-shadow: var(--shadow);
}
.pairing-copy p { color: var(--muted); }
.pairing-visual { display: grid; gap: 20px; }
.pairing-visual article {
  display: flex; align-items: center; gap: 20px; padding: 20px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(0,0,0,.28);
}
.pairing-visual article div { display: flex; flex-direction: column; }
.pairing-visual small { color: var(--muted); letter-spacing: .11em; }
.pairing-visual b { font-size: 1.8rem; letter-spacing: .04em; }
.token-dot {
  width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 950; font-size: 1.25rem; border: 1px solid rgba(255,255,255,.23);
}
.meme-dot { color: #081007; background: var(--green); box-shadow: 0 0 28px rgba(120,255,39,.28); }
.stock-dot { color: white; background: linear-gradient(135deg, #2c2e2d, #050505); border-color: rgba(255,42,34,.65); box-shadow: 0 0 28px rgba(255,42,34,.15); }
.energy-link { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; color: var(--muted); font-size: .68rem; letter-spacing: .12em; }
.energy-link i { height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); }

.launch-card {
  padding: clamp(34px, 6vw, 70px); border-radius: 30px; text-align: center;
  background:
    radial-gradient(circle at 50% -30%, rgba(120,255,39,.24), transparent 52%),
    linear-gradient(180deg, rgba(13,25,16,.98), rgba(5,8,6,.98));
  border: 1px solid rgba(120,255,39,.25); box-shadow: var(--shadow);
}
.launch-card > div:first-child { max-width: 650px; margin: auto; }
.launch-card p { color: var(--muted); }
.contract-box {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  max-width: 860px; margin: 38px auto 24px; padding: 18px 20px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.34); text-align: left;
}
.contract-box span { color: var(--muted); font-size: .7rem; letter-spacing: .11em; }
.contract-box code { overflow: hidden; text-overflow: ellipsis; color: var(--green); font-size: .92rem; }
.contract-box button {
  border: 0; border-radius: 999px; padding: 9px 16px; font-weight: 800;
  background: var(--green); color: #061006; cursor: pointer;
}
.contract-box button:disabled { opacity: .35; cursor: not-allowed; }
.launch-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.faq-list { margin-top: 45px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative; list-style: none; cursor: pointer; padding: 27px 56px 27px 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem); font-weight: 800;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 10px; top: 21px; color: var(--green); font-size: 1.7rem; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 850px; margin: -4px 0 28px; color: var(--muted); }

footer {
  padding: 60px max(24px, calc((100vw - var(--max))/2)); border-top: 1px solid var(--line);
  background: #030504;
}
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand b { font-size: 1.15rem; }
.footer-brand span { color: var(--green); }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; margin: 30px 0; color: #cbd5cf; font-size: .9rem; }
.footer-links a:hover { color: var(--green); }
.legal { max-width: 980px; color: #718078; font-size: .78rem; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { min-height: 780px; align-items: flex-end; }
  .hero-art { object-position: 31% center; opacity: .75; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,8,6,.98) 0%, rgba(5,8,6,.6) 56%, rgba(5,8,6,.18) 100%); }
  .hero-content { margin: 0 22px 72px; }
  .ticker-strip { grid-template-columns: repeat(2, 1fr); }
  .ticker-strip div:nth-child(2) { border-right: 0; }
  .ticker-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .pairing-panel { grid-template-columns: 1fr; }
  .receipt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { min-height: 64px; padding: 10px 14px; }
  .brand span { display: none; }
  .brand img { width: 40px; height: 40px; }
  .button-small { min-height: 40px; }
  .hero { min-height: 710px; }
  .hero h1 { font-size: 3.25rem; }
  .hero-actions .button { width: 100%; }
  .ticker-strip div { padding: 18px 15px; }
  .section { padding-inline: 18px; }
  .receipt-card { padding: 24px 20px; grid-template-columns: 36px 1fr; }
  .pairing-panel { padding: 28px 20px; }
  .contract-box { grid-template-columns: 1fr auto; }
  .contract-box span { grid-column: 1 / -1; }
  .contract-box code { font-size: .76rem; }
}

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