:root {
  --bg: #030505;
  --ink: #f3fff8;
  --muted: #99b4a9;
  --panel: rgba(7, 13, 13, 0.78);
  --panel-strong: #0a1010;
  --line: rgba(126, 255, 166, 0.18);
  --green: #62ff8c;
  --green-2: #12b65a;
  --cyan: #72e7ff;
  --red: #ff4864;
  --yellow: #ffd166;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(98, 255, 140, 0.12), transparent 26rem),
    radial-gradient(circle at 85% 24%, rgba(114, 231, 255, 0.09), transparent 24rem),
    radial-gradient(circle at 54% 100%, rgba(255, 72, 100, 0.1), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.signal-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(98, 255, 140, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 255, 140, 0.035) 1px, transparent 1px),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  background-size: 48px 48px, 48px 48px, auto;
  mask-image: linear-gradient(to bottom, black 0%, black 54%, transparent 100%);
  opacity: 0.55;
}

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(1, 5, 5, 0.68);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(98, 255, 140, 0.38);
  border-radius: 14px;
  background: linear-gradient(145deg, #173720, #07100b 54%, #000);
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  box-shadow:
    0 11px 0 #031a0c,
    0 18px 26px rgba(0, 0, 0, 0.42),
    inset 0 2px 0 rgba(255, 255, 255, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1;
}

.brand small {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 850;
}

.nav a:hover {
  background: rgba(98, 255, 140, 0.12);
  color: var(--ink);
}

.nav-cta,
.btn {
  border: 0;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 170ms ease, filter 170ms ease, box-shadow 170ms ease;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 15px;
  background: linear-gradient(145deg, #79ffa0 0%, #27d969 48%, #0d7c3a 100%);
  color: #021006;
  font-weight: 950;
  box-shadow:
    0 12px 0 #063719,
    0 20px 34px rgba(0, 0, 0, 0.38),
    inset 0 2px 0 rgba(255, 255, 255, 0.48);
}

.nav-cta span,
.btn span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  font-weight: 950;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-4px);
  filter: saturate(1.15);
}

.nav-cta:active,
.btn:active {
  transform: translateY(4px);
}

.hero-panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.98) 0%, rgba(3, 5, 5, 0.72) 42%, rgba(3, 5, 5, 0.18) 78%),
    linear-gradient(0deg, #030505 0%, transparent 34%, transparent 68%, rgba(3, 5, 5, 0.52) 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 78px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

h1 {
  max-width: 8.2ch;
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.82;
  text-shadow:
    0 0 30px rgba(98, 255, 140, 0.42),
    0 14px 0 rgba(0, 0, 0, 0.52);
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 4.2rem);
  font-weight: 950;
  line-height: 0.98;
}

.hero-actions,
.terminal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 24px;
  border-radius: 18px;
  color: var(--ink);
  font-weight: 950;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(145deg, #7cff9f 0%, #24d667 46%, #0a7434 100%);
  color: #031006;
  box-shadow:
    0 16px 0 #053618,
    0 30px 44px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(98, 255, 140, 0.24),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(114, 231, 255, 0.4);
  background: linear-gradient(145deg, #1d343c, #091418 52%, #010405);
  box-shadow:
    0 16px 0 #02090b,
    0 30px 44px rgba(0, 0, 0, 0.48),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.btn-red {
  background: linear-gradient(145deg, #ff667c, #cf2443 48%, #6b0d1d);
  box-shadow:
    0 16px 0 #37020d,
    0 30px 44px rgba(0, 0, 0, 0.48),
    inset 0 2px 0 rgba(255, 255, 255, 0.28);
}

.transmission-card {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 54px;
  width: min(390px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(3, 9, 9, 0.74);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.card-label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.transmission-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 0;
}

dl div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

dt,
dd {
  margin: 0;
}

dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

dd {
  color: var(--green);
  font-weight: 950;
}

.ticker-marquee {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.ticker-marquee span {
  flex: 0 0 auto;
  min-width: 220px;
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 18px rgba(98, 255, 140, 0.32);
}

.terminal-layout,
.route-section,
.proof-section,
.tweet-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.terminal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  padding: 104px 0 84px;
}

.token-stage {
  position: relative;
  border-radius: 28px;
  transform: perspective(1000px) rotateY(7deg) rotateX(2deg);
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.58));
}

.token-stage::before {
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid rgba(98, 255, 140, 0.32);
  border-radius: 36px;
  content: "";
  background: linear-gradient(145deg, rgba(98, 255, 140, 0.2), rgba(114, 231, 255, 0.08), rgba(255, 72, 100, 0.18));
}

.token-stage img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.terminal-copy h2,
.route-heading h2,
.proof-copy h2,
.tweet-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
}

.terminal-copy p:not(.eyebrow),
.proof-copy p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 650;
  line-height: 1.58;
}

.route-section {
  padding: 80px 0;
}

.route-heading {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.route-grid article {
  min-height: 300px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), transparent 42%),
    rgba(6, 12, 12, 0.92);
}

.route-grid span {
  display: grid;
  width: 48px;
  height: 38px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 13px;
  background: rgba(98, 255, 140, 0.12);
  color: var(--green);
  font-weight: 950;
}

.route-grid h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.route-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.48;
}

.proof-section {
  display: block;
  padding: 86px 0 118px;
}

.proof-copy {
  max-width: 820px;
}

.signal-line {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 22px;
  border-left: 4px solid var(--green);
  border-radius: 0 20px 20px 0;
  background: rgba(98, 255, 140, 0.08);
}

.signal-line span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.signal-line strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 0.92;
}

.tweet-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 560px);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: 10px 0 120px;
}

.tweet-copy h2 {
  max-width: 720px;
}

.tweet-frame {
  min-height: 240px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(98, 255, 140, 0.1), rgba(114, 231, 255, 0.05), rgba(255, 72, 100, 0.08)),
    rgba(3, 9, 9, 0.76);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.tweet-frame .twitter-tweet,
.tweet-frame iframe {
  margin: 0 auto !important;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  padding: 14px 18px;
  border: 1px solid rgba(98, 255, 140, 0.38);
  border-radius: 16px;
  background: rgba(5, 10, 7, 0.92);
  color: var(--green);
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 5, 0.98) 0%, rgba(3, 5, 5, 0.76) 58%, rgba(3, 5, 5, 0.28) 100%),
      linear-gradient(0deg, #030505 0%, transparent 36%, transparent 68%, rgba(3, 5, 5, 0.55) 100%);
  }

  .transmission-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(560px, calc(100% - 32px));
    margin: -88px auto 42px;
  }

  .terminal-layout,
  .proof-section,
  .tweet-section,
  .route-heading {
    grid-template-columns: 1fr;
  }

  .token-stage {
    transform: none;
  }

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

@media (max-width: 640px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow:
      0 8px 0 #031a0c,
      0 14px 22px rgba(0, 0, 0, 0.42),
      inset 0 2px 0 rgba(255, 255, 255, 0.18);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    box-shadow:
      0 9px 0 #063719,
      0 16px 26px rgba(0, 0, 0, 0.38),
      inset 0 2px 0 rgba(255, 255, 255, 0.48);
  }

  .nav-cta span {
    width: 28px;
    height: 28px;
  }

  .hero-content {
    width: min(100% - 22px, 1180px);
    padding-top: 116px;
    padding-bottom: 140px;
  }

  h1 {
    font-size: clamp(3.5rem, 23vw, 6.2rem);
  }

  .lead {
    font-size: clamp(1.75rem, 12vw, 3.45rem);
  }

  .btn {
    width: 100%;
    min-height: 60px;
  }

  dl,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .terminal-layout,
  .route-section,
  .proof-section,
  .tweet-section {
    width: min(100% - 22px, 1180px);
  }

  .terminal-layout,
  .route-section {
    padding: 58px 0;
  }

  .proof-section,
  .tweet-section {
    padding: 58px 0 84px;
  }

  .route-grid article {
    min-height: 230px;
  }

  .route-grid span {
    margin-bottom: 34px;
  }

}
