:root {
  --bg: #060706;
  --bg-soft: #0b0d0b;
  --panel: #101310;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f5ef;
  --muted: #999d96;
  --lime: #9bff00;
  --gold: #efc566;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(6, 7, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.brand b {
  color: var(--lime);
}

nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 13px;
}

nav a,
footer a,
.text-link {
  transition: color 160ms ease;
}

nav a:hover,
footer a:hover,
.text-link:hover {
  color: var(--lime);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 12px;
}

.button-primary {
  background: var(--lime);
  color: #071000;
}

.button-primary:hover {
  background: #b3ff43;
}

.button-light {
  background: var(--text);
  color: #090a09;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: calc(100svh - 76px);
  padding-block: 80px;
}

.hero-copy,
.hero-art {
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(155, 255, 0, 0.1), 0 0 20px var(--lime);
}

h1,
h2,
p {
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 7.7vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(244, 245, 239, 0.65);
}

.hero-lede {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contract-inline {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contract-inline code {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.copy-button {
  padding: 5px 8px;
  border: 0;
  border-radius: 6px;
  background: rgba(155, 255, 0, 0.12);
  color: var(--lime);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  min-height: 620px;
}

.eclipse-stage {
  position: absolute;
  top: 50%;
  left: 55%;
  width: min(48vw, 590px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.eclipse-rays,
.eclipse-ring,
.eclipse-disk,
.lime-orbit {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.eclipse-rays {
  width: 76%;
  height: 76%;
  background: repeating-conic-gradient(from 2deg, rgba(239, 197, 102, 0.5) 0deg 1deg, transparent 1deg 8deg);
  filter: blur(7px);
  animation: rotate 80s linear infinite;
}

.eclipse-ring {
  width: 62%;
  height: 62%;
  background: radial-gradient(circle, transparent 59%, #fff7db 62%, #f2c96e 67%, transparent 74%);
  filter: drop-shadow(0 0 22px rgba(239, 197, 102, 0.72));
}

.eclipse-disk {
  width: 41%;
  height: 41%;
  border: 1px solid rgba(255, 248, 211, 0.55);
  background: #000;
  box-shadow: inset -18px -15px 40px rgba(255, 255, 255, 0.025);
}

.lime-orbit {
  width: 78%;
  height: 78%;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid transparent;
  transform: translate(-50%, -50%) rotate(38deg);
  filter: drop-shadow(0 0 9px rgba(155, 255, 0, 0.55));
  animation: orbit 18s ease-in-out infinite alternate;
}

.lime-orbit i {
  position: absolute;
  right: 7%;
  bottom: 14%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px var(--lime);
}

.orbit-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 7, 6, 0.8);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.label-chain {
  top: 16%;
  left: 1%;
}

.label-status {
  right: 1%;
  bottom: 18%;
  color: var(--lime);
}

.hero-stamp {
  position: absolute;
  right: 0;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 170px;
  padding: 17px;
  border-left: 2px solid var(--lime);
  background: rgba(16, 19, 16, 0.88);
}

.hero-stamp span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stamp strong {
  font-size: 14px;
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(26deg); }
  to { transform: translate(-50%, -50%) rotate(53deg); }
}

.countdown-section {
  border-block: 1px solid #d8e1c9;
  background: var(--lime);
  color: #071000;
}

.countdown-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr auto;
  align-items: center;
  gap: 42px;
  min-height: 230px;
  padding-block: 36px;
}

.dark-eyebrow {
  margin-bottom: 9px;
  color: rgba(7, 16, 0, 0.6);
}

.countdown-wrap h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.045em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.countdown div {
  min-width: 92px;
  padding: 21px 15px;
  border-left: 1px solid rgba(7, 16, 0, 0.22);
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.07em;
}

.countdown span {
  margin-top: 10px;
  color: rgba(7, 16, 0, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.countdown-note {
  max-width: 130px;
  color: rgba(7, 16, 0, 0.65);
  font-size: 11px;
  line-height: 1.5;
}

.proof {
  padding-block: 145px;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2,
.disclosure h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 580px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.stat-card {
  min-height: 270px;
  padding: 27px;
  background: var(--panel);
}

.stat-card.featured {
  background: var(--lime);
  color: #071000;
}

.stat-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card.featured span {
  color: rgba(7, 16, 0, 0.57);
}

.stat-card strong {
  display: block;
  margin-top: 52px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.stat-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.stat-card.featured p {
  color: rgba(7, 16, 0, 0.62);
}

.contract-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent);
}

.contract-label {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contract-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(11px, 1.35vw, 16px);
}

.contract-actions {
  display: flex;
  flex: none;
  gap: 10px;
}

.totality {
  padding-block: 140px;
  border-block: 1px solid var(--line);
  background: #0a0b0a;
}

.totality-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 117px;
  width: 1px;
  background: var(--line);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 54px;
  align-items: center;
  min-height: 140px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 112px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #42463f;
  box-shadow: 0 0 0 8px #0a0b0a;
}

.timeline li.active::before {
  background: var(--lime);
  box-shadow: 0 0 0 8px #0a0b0a, 0 0 22px var(--lime);
}

.timeline time {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.timeline span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.disclosure {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 35px;
  padding-block: 120px;
}

.disclosure-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 32px;
  font-style: italic;
}

.disclosure h2 {
  font-size: clamp(38px, 5vw, 70px);
}

.disclosure p {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 120px 150px;
  text-align: center;
}

.final-cta img {
  width: 132px;
  height: 132px;
  margin-bottom: 34px;
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(239, 197, 102, 0.22);
}

.final-cta .eyebrow {
  margin-bottom: 16px;
}

.final-cta .hero-actions {
  justify-content: center;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
}

.footer-inner div {
  display: flex;
  gap: 24px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 13px 17px;
  border: 1px solid rgba(155, 255, 0, 0.4);
  border-radius: 10px;
  background: #12180d;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-art {
    min-height: 520px;
  }

  .eclipse-stage {
    left: 50%;
    width: min(92vw, 560px);
  }

  .countdown-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 46px;
  }

  .countdown-note {
    max-width: none;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contract-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .totality-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .site-header > .button {
    display: none;
  }

  .brand span {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-block: 58px 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(46px, 15.7vw, 64px);
    letter-spacing: -0.075em;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .contract-inline span:first-child {
    display: none;
  }

  .hero-art {
    min-height: 410px;
  }

  .hero-stamp {
    right: 2%;
    bottom: 5%;
  }

  .countdown {
    gap: 0;
  }

  .countdown div {
    min-width: 0;
    padding: 15px 8px;
  }

  .countdown strong {
    font-size: 34px;
  }

  .proof,
  .totality,
  .disclosure {
    padding-block: 90px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 215px;
  }

  .stat-card strong {
    margin-top: 38px;
  }

  .contract-card code {
    display: block;
    max-width: calc(100vw - 86px);
    overflow-wrap: anywhere;
    line-height: 1.6;
  }

  .contract-actions {
    flex-direction: column;
    width: 100%;
  }

  .contract-actions .button {
    width: 100%;
  }

  .timeline::before {
    left: 82px;
  }

  .timeline li {
    grid-template-columns: 66px 1fr;
    gap: 38px;
  }

  .timeline li::before {
    left: 77px;
  }

  .timeline strong {
    font-size: 22px;
  }

  .disclosure {
    grid-template-columns: 1fr;
  }

  .disclosure-mark {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
}

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