
:root {
  --bg: #181A1B;
  --acid: #39FF14;
  --steel: #2D3135;
  --text: #F3F4F6;
  --cyan: #00F0FF;
  --muted: rgba(243,244,246,.72);
  --line: rgba(243,244,246,.12);
  --panel: rgba(45,49,53,.72);
  --shadow: 0 24px 90px rgba(0,0,0,.48);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(57,255,20,.12), transparent 31rem),
    radial-gradient(circle at 80% 16%, rgba(0,240,255,.13), transparent 28rem),
    linear-gradient(180deg, #0c0d0e 0%, var(--bg) 38%, #101112 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: #fff; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(24,26,27,.68);
  border-bottom: 1px solid rgba(57,255,20,.14);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.topbar.is-scrolled { box-shadow: 0 10px 40px rgba(0,0,0,.42); background: rgba(24,26,27,.9); }
.brand img, .footer-logo img { width: 178px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 9px 12px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.nav-links a:hover { color: var(--acid); border-color: rgba(57,255,20,.28); background: rgba(57,255,20,.06); }
.menu-toggle { display: none; width: 46px; height: 42px; border: 1px solid var(--line); background: var(--steel); border-radius: 14px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; width: 21px; margin: 5px auto; background: var(--text); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
main { isolation: isolate; }
.hero-matrix {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 8vw, 108px) clamp(18px, 4vw, 28px) 50px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(57,255,20,.3);
  border-radius: 999px;
  color: var(--acid);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(57,255,20,.055);
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(44px, 7vw, 82px); }
h2 { font-size: clamp(30px, 4.2vw, 54px); margin-bottom: 24px; }
h3 { font-size: clamp(20px, 2.2vw, 28px); margin: 28px 0 14px; }
p { color: var(--muted); margin: 0 0 18px; }
.lead-copy p { font-size: clamp(18px, 2vw, 22px); color: rgba(243,244,246,.86); margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-action, .ghost-action, .cookie-card button, .tab-trigger, .faq-question {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.primary-action, .ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.primary-action { color: #09100a; background: var(--acid); font-weight: 800; box-shadow: 0 0 30px rgba(57,255,20,.2); }
.ghost-action { color: var(--text); border: 1px solid rgba(0,240,255,.28); background: rgba(0,240,255,.05); }
.primary-action:hover, .ghost-action:hover { transform: translateY(-3px); }
.hero-visual, .content-slice figure {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(57,255,20,.2);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(45,49,53,.8), rgba(24,26,27,.42));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
}
.hero-visual::before, .hero-visual::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
}
.hero-visual::before { border: 1px solid rgba(0,240,255,.28); transform: translate(12px, -12px); z-index: -1; }
.hero-visual::after { background: radial-gradient(circle at 30% 0%, rgba(57,255,20,.24), transparent 18rem); mix-blend-mode: screen; }
.hero-visual img, .content-slice figure img { border-radius: 26px; object-fit: cover; width: 100%; }
.hero-visual figcaption, .content-slice figcaption {
  padding: 14px 10px 4px;
  color: rgba(243,244,246,.66);
  font-size: 14px;
}
.intro-stack, .content-slice, .ledger-tabs, .faq-zone, .final-cta {
  max-width: var(--max);
  margin: 22px auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(24,26,27,.62);
  box-shadow: 0 18px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}
.intro-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  border-color: rgba(0,240,255,.17);
}
.intro-stack p { margin: 0; }
.slice-body { display: grid; gap: 18px; }
.content-slice:nth-of-type(even) { border-color: rgba(57,255,20,.15); }
.content-slice:nth-of-type(odd) { border-color: rgba(0,240,255,.16); }
.slice-1 .slice-body, .slice-3 .slice-body { grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr); align-items: start; }
.slice-1 .slice-body > figure, .slice-3 .slice-body > figure { grid-column: 2; grid-row: 1 / span 9; }
.slice-2 { background: linear-gradient(135deg, rgba(45,49,53,.78), rgba(24,26,27,.56)); }
.slice-4 { border-style: dashed; }
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(45,49,53,.52);
  border: 1px solid rgba(57,255,20,.13);
}
th, td { padding: 16px; text-align: left; border-bottom: 1px solid rgba(243,244,246,.08); vertical-align: top; }
th { color: var(--acid); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; background: rgba(57,255,20,.065); }
td { color: rgba(243,244,246,.78); }
ul, ol { margin: 0 0 18px; padding-left: 22px; color: rgba(243,244,246,.78); }
li + li { margin-top: 8px; }
.inline-note {
  margin: 8px 0 0;
  padding: 18px;
  border: 1px solid rgba(57,255,20,.24);
  border-radius: 18px;
  color: rgba(243,244,246,.78);
  background: linear-gradient(135deg, rgba(57,255,20,.075), rgba(0,240,255,.035));
}
.tabs-shell { display: grid; grid-template-columns: 260px 1fr; gap: 18px; }
.tab-list { display: grid; align-content: start; gap: 10px; }
.tab-trigger {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(45,49,53,.72);
  border: 1px solid rgba(243,244,246,.1);
  text-align: left;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.tab-trigger.active { color: #071207; background: var(--acid); border-color: var(--acid); font-weight: 800; }
.tab-panel { display: none; padding: 4px 4px 4px 0; }
.tab-panel.active { display: block; animation: panelIn .28s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.faq-zone { background: linear-gradient(180deg, rgba(45,49,53,.72), rgba(24,26,27,.72)); }
.faq-grid { display: grid; gap: 12px; }
.faq-unit { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: rgba(24,26,27,.58); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--text);
  background: transparent;
  text-align: left;
}
.faq-mark { color: var(--acid); font-size: 24px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-mark { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 20px 18px; margin: 0; }
.final-cta { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-color: rgba(57,255,20,.24); }
.final-cta img { width: 220px; }
.footer-shell {
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 34px clamp(18px,4vw,42px) 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: #081108;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(57,255,20,.28);
}
.cookie-card {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  max-width: 330px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(57,255,20,.24);
  border-radius: 20px;
  background: rgba(24,26,27,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.cookie-card.hide { display: none; }
.cookie-card p { margin: 0; font-size: 13px; }
.cookie-card button { padding: 9px 12px; border-radius: 12px; color: #071207; background: var(--acid); font-weight: 800; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .hero-matrix { grid-template-columns: 1fr; }
  .slice-1 .slice-body, .slice-3 .slice-body { grid-template-columns: 1fr; }
  .slice-1 .slice-body > figure, .slice-3 .slice-body > figure { grid-column: auto; grid-row: auto; }
  .tabs-shell { grid-template-columns: 1fr; }
  .tab-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(24,26,27,.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .intro-stack { grid-template-columns: 1fr; }
  .footer-shell, .final-cta { flex-direction: column; align-items: flex-start; }
  .tab-list { grid-template-columns: 1fr; }
  th, td { padding: 12px; font-size: 14px; }
  .cookie-card { right: 18px; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
