:root {
  --ink: #08120c;
  --panel: #0b160e;
  --cream: #f3f0dc;
  --muted: #879189;
  --acid: #b7ff2a;
  --line: rgba(243, 240, 220, 0.16);
  --warn: #ffb06e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(183, 255, 42, .14), transparent 28%),
    var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.ticker {
  height: 34px;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 34px;
  white-space: nowrap;
}
.ticker div {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.ticker i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.nav, main, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}
.brand span {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border: 2px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 22px;
}
.nav nav, footer nav { display: flex; gap: 28px; }
.nav nav a, footer nav a {
  color: #cbd3c8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav nav a:hover, footer nav a:hover { color: var(--acid); }
.appLink {
  background: var(--acid);
  color: var(--ink);
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 5px 5px 0 #3e7e23;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  padding-block: 70px;
}
.eyebrow, .sectionTitle p {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
h1 {
  margin-top: 24px;
  font-size: clamp(82px, 11vw, 160px);
  line-height: .78;
}
h1 em, h2 span {
  color: var(--acid);
  font-style: normal;
  text-shadow: 5px 5px 0 #387d22;
}
.lead {
  max-width: 650px;
  color: #c7cec3;
  font-size: 17px;
  line-height: 1.75;
}
.heroActions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.heroActions a {
  background: var(--acid);
  color: var(--ink);
  padding: 17px 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.statusCard {
  border: 1px solid rgba(183, 255, 42, .34);
  background: rgba(7, 16, 9, .78);
  box-shadow: 12px 12px 0 rgba(183, 255, 42, .12);
  padding: 28px;
  display: grid;
  gap: 10px;
}
.statusCard small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}
.statusCard strong {
  margin-top: 14px;
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.statusCard span {
  color: #aab4ac;
  font-size: 13px;
  line-height: 1.6;
}
.contractAddress {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  overflow-wrap: anywhere;
}

.gridIntro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-bottom: 80px;
}
.gridIntro article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.gridIntro article:last-child { border-right: 0; }
.gridIntro span {
  color: var(--acid);
  opacity: .45;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 42px;
}
.gridIntro h2 {
  margin-top: 26px;
  font-size: 28px;
}
.gridIntro p, .content p, .content li {
  color: #aab4ac;
  font-size: 14px;
  line-height: 1.75;
}

.docSection {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}
.sectionTitle h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .9;
}
.content {
  max-width: 780px;
}
.content a {
  color: var(--acid);
  border-bottom: 1px solid rgba(183, 255, 42, .45);
}
.content pre {
  overflow-x: auto;
  border: 1px solid rgba(183, 255, 42, .28);
  background: #050b07;
  color: var(--acid);
  padding: 18px;
  font-size: 13px;
}
.callout, .warning {
  margin-top: 22px;
  border: 1px solid rgba(183, 255, 42, .28);
  background: rgba(183, 255, 42, .06);
  color: #dbe5d8;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.6;
}
.warning {
  border-color: rgba(255, 176, 110, .35);
  background: rgba(255, 176, 110, .07);
  color: #ffd0a8;
}
.faq details {
  border: 1px solid var(--line);
  background: var(--panel);
  margin-bottom: 10px;
  padding: 16px 18px;
}
.faq summary {
  cursor: pointer;
  color: var(--acid);
  font-weight: 900;
  letter-spacing: .04em;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 34px;
  padding-block: 60px 40px;
  border-top: 1px solid var(--line);
}
footer p {
  margin: 0;
  color: #758077;
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .nav nav { display: none; }
  .hero, .docSection, footer { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .gridIntro { grid-template-columns: 1fr; }
  .gridIntro article { border-right: 0; border-bottom: 1px solid var(--line); }
  .gridIntro article:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  .nav, main, footer { width: min(100% - 26px, 1180px); }
  .nav { height: 74px; }
  .brand { font-size: 11px; }
  .appLink { display: none; }
  h1 { font-size: 78px; }
  .hero { padding-block: 55px; gap: 32px; }
  .docSection { gap: 24px; padding-block: 42px; }
  footer nav { flex-wrap: wrap; }
}
