:root {
  --bg: #050807;
  --bg-2: #0d1110;
  --ink: #f3fff8;
  --muted: #a9beb1;
  --soft: rgba(243, 255, 248, 0.72);
  --line: rgba(199, 255, 219, 0.2);
  --green: #00c805;
  --green-2: #39ff74;
  --green-3: #7cff9e;
  --red: #ff476f;
  --cyan: #7ef9ff;
  --gold: #f4c85f;
  --panel: rgba(8, 22, 15, 0.78);
  --panel-strong: rgba(11, 35, 22, 0.92);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(0, 200, 5, 0.16), transparent 22rem),
    radial-gradient(circle at 16% 64%, rgba(126, 249, 255, 0.08), transparent 18rem),
    linear-gradient(180deg, #000 0%, #030604 38%, #090d0b 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 9px;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(0, 200, 5, 0.1) 44.2% 44.6%, transparent 44.8% 100%),
    linear-gradient(transparent 0 50%, rgba(0, 0, 0, 0.2) 50% 100%);
  background-size: auto, 100% 4px;
}

.void-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.86);
  border-color: var(--line);
}

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

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(124, 255, 158, 0.5);
  border-radius: 50%;
  background: #020604;
  object-fit: cover;
  box-shadow:
    0 0 0 3px rgba(0, 200, 5, 0.12),
    0 0 24px rgba(0, 200, 5, 0.42);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--green-3);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(124, 255, 158, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(2, 12, 6, 0.86);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 0 26px rgba(0, 200, 5, 0.18);
}

@media (min-width: 981px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-3);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.header-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.header-action,
.primary-btn {
  background: var(--green);
  color: #021006;
  box-shadow: 0 16px 42px rgba(0, 200, 5, 0.24);
}

.primary-btn,
.header-action {
  position: relative;
  overflow: hidden;
}

.primary-btn::after,
.header-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%);
  animation: buttonSweep 3s ease-in-out infinite;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 116px clamp(18px, 5vw, 72px) 64px;
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.market-rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.market-rain span {
  position: absolute;
  left: var(--x, 10%);
  top: -48px;
  color: rgba(124, 255, 158, 0.34);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 1.1rem);
  font-weight: 900;
  text-shadow: 0 0 18px rgba(57, 255, 116, 0.4);
  animation: rainDrop var(--speed, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.market-rain span:nth-child(1) {
  --x: 8%;
  --speed: 13s;
}

.market-rain span:nth-child(2) {
  --x: 28%;
  --speed: 15s;
  --delay: -5s;
}

.market-rain span:nth-child(3) {
  --x: 54%;
  --speed: 11s;
  --delay: -2s;
}

.market-rain span:nth-child(4) {
  --x: 73%;
  --speed: 16s;
  --delay: -8s;
}

.market-rain span:nth-child(5) {
  --x: 90%;
  --speed: 12s;
  --delay: -4s;
}

.hero-bg {
  background-image: url("assets/gigarobinlogo.png");
  background-repeat: no-repeat;
  background-size: min(58vw, 780px) auto;
  background-position: right 6vw center;
  transform: scale(1.015);
  filter: saturate(1.15) contrast(1.08);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.22) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(1, 3, 2, 0.48) 72%, #030604 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 710px);
  align-items: center;
  justify-content: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -28px -30px;
  border-left: 1px solid rgba(124, 255, 158, 0.28);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 82%),
    radial-gradient(circle at 0% 50%, rgba(0, 200, 5, 0.18), transparent 55%);
  filter: blur(0.2px);
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-width: 74px;
  min-height: 44px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(243, 255, 248, 0.16);
  border-radius: 12px 12px 4px 4px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--green-2);
}

.browser-bar strong {
  min-width: 0;
  margin-left: 8px;
  overflow: hidden;
  color: rgba(243, 255, 248, 0.62);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(124, 255, 158, 0.3);
  border-radius: 8px;
  background: rgba(2, 17, 8, 0.68);
  color: var(--green-3);
  font-size: 0.88rem;
  font-weight: 900;
}

.chain-pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 20px var(--green-2);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(4.1rem, 9vw, 8.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(57, 255, 116, 0.18);
}

.hero-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 22px;
}

.hero-stamps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(57, 255, 116, 0.34);
  border-radius: 8px;
  background: rgba(4, 23, 11, 0.74);
  color: var(--green-3);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(var(--tilt, -1.5deg));
}

.hero-stamps span:nth-child(2) {
  --tilt: 1.2deg;
  color: var(--gold);
}

.hero-stamps span:nth-child(3) {
  --tilt: -0.5deg;
}

.hero-copy > p {
  width: min(620px, 100%);
  margin-bottom: 30px;
  color: var(--soft);
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.contract-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 540px);
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.contract-card > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contract-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 200, 5, 0.14);
  color: var(--ink);
  cursor: pointer;
}

.contract-value strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-value small {
  color: var(--green-3);
  font-weight: 900;
  white-space: nowrap;
}

.token-stack article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.meme-tape {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid rgba(124, 255, 158, 0.2);
  background: #00c805;
  color: #021006;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
}

.meme-tape div {
  display: flex;
  width: max-content;
  animation: tapeMove 22s linear infinite;
}

.meme-tape span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  white-space: nowrap;
}

.meme-tape span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 16px;
  border-radius: 50%;
  background: #021006;
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -12px auto 0;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 158, 0.2);
  border-radius: 0;
  background: #000;
  box-shadow: var(--shadow);
  transform: skewY(-1.4deg);
}

.stats-band article {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.14), transparent 40%),
    rgba(0, 0, 0, 0.9);
  transform: skewY(1.4deg);
}

.stats-band article::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.stats-band span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-3);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 900;
}

.stats-band p {
  margin-bottom: 0;
  color: var(--soft);
  font-weight: 800;
}

.section,
.proof-grid,
.buy-section,
.culture-section,
.roadmap-section,
.faq-section,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--green-3);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split,
.tokenomics,
.culture-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.manifesto-copy {
  padding: clamp(18px, 3vw, 28px);
  border-left: 4px solid var(--green);
  background:
    linear-gradient(90deg, rgba(0, 200, 5, 0.16), transparent),
    rgba(255, 255, 255, 0.035);
}

.manifesto-copy p:last-child {
  margin-bottom: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.split p,
.tokenomics p,
.culture-copy p,
.faq-list p {
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 34px;
}

.proof-card,
.steps article,
.roadmap article {
  border: 1px solid var(--line);
  border-radius: 4px 22px 4px 22px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), transparent 30%),
    var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.proof-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(124, 255, 158, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 116, 0.18), transparent 62%);
}

.proof-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 1px solid rgba(57, 255, 116, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.34), rgba(124, 255, 158, 0.08)),
    rgba(0, 200, 5, 0.15);
  color: var(--green-2);
  font-weight: 900;
  box-shadow: 0 0 32px rgba(0, 200, 5, 0.18);
}

.proof-icon::before,
.proof-icon::after {
  content: "";
  position: absolute;
}

.lock-icon::before {
  width: 22px;
  height: 18px;
  bottom: 15px;
  border-radius: 5px;
  background: var(--green-3);
}

.lock-icon::after {
  width: 20px;
  height: 18px;
  top: 13px;
  border: 4px solid var(--green-3);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.flame-icon::before {
  width: 26px;
  height: 34px;
  border-radius: 70% 30% 60% 40%;
  background: linear-gradient(180deg, var(--gold), var(--green-2));
  transform: rotate(12deg);
}

.fist-icon::before {
  width: 30px;
  height: 22px;
  border-radius: 9px 9px 12px 12px;
  background: var(--green-3);
  box-shadow: 0 -12px 0 -6px var(--green-3), 10px -12px 0 -6px var(--green-3), -10px -12px 0 -6px var(--green-3);
}

.fist-icon::after {
  width: 15px;
  height: 22px;
  right: 13px;
  bottom: 11px;
  border-radius: 8px;
  background: var(--green-3);
  transform: rotate(-18deg);
}

.proof-card p,
.steps p,
.roadmap p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.tokenomics {
  align-items: center;
  padding-bottom: 80px;
}

.signal-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 52px auto 0;
  padding: 64px clamp(18px, 4vw, 42px);
  border: 1px solid rgba(124, 255, 158, 0.22);
  border-radius: 6px 34px 6px 34px;
  background:
    linear-gradient(120deg, rgba(0, 200, 5, 0.16), transparent 42%),
    rgba(3, 12, 7, 0.84);
  box-shadow: var(--shadow);
}

.signal-terminal {
  overflow: hidden;
  border: 1px solid rgba(124, 255, 158, 0.26);
  border-radius: 14px 14px 4px 4px;
  background: #020604;
  box-shadow: 0 0 44px rgba(0, 200, 5, 0.14);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(124, 255, 158, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.terminal-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.terminal-head span:nth-child(2) {
  background: var(--gold);
}

.terminal-head span:nth-child(3) {
  background: var(--green-2);
}

.terminal-head strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.terminal-body {
  padding: 22px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.terminal-body p {
  margin-bottom: 13px;
  color: var(--soft);
  font-weight: 800;
}

.terminal-body p:last-child {
  margin-bottom: 0;
}

.terminal-body span,
.terminal-green {
  color: var(--green-3);
}

.token-stack {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.05);
}

.token-stack article {
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(3, 10, 6, 0.74);
}

.token-stack span {
  color: var(--muted);
  font-weight: 800;
}

.token-stack strong {
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.buy-section,
.roadmap-section,
.faq-section {
  padding: 92px 0;
}

.buy-section {
  border-top: 1px solid var(--line);
}

.steps,
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.steps article,
.roadmap article {
  padding: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #021006;
  font-weight: 900;
}

.culture-section {
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.65fr) minmax(0, 0.9fr);
  padding: 72px clamp(20px, 4vw, 44px);
  border: 1px solid rgba(124, 255, 158, 0.22);
  border-radius: 34px 4px 34px 4px;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(10, 40, 22, 0.86), rgba(3, 11, 7, 0.92));
}

.chad-poster {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 158, 0.28);
  border-radius: 6px 28px 6px 28px;
  background:
    radial-gradient(circle at 50% 24%, rgba(244, 200, 95, 0.2), transparent 28%),
    linear-gradient(160deg, rgba(0, 200, 5, 0.46), rgba(2, 9, 5, 0.92) 58%),
    #031007;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.42), 0 22px 60px rgba(0, 0, 0, 0.28);
}

.poster-coin {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-2), var(--green));
  color: #021006;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(57, 255, 116, 0.4);
}

.poster-title {
  position: absolute;
  left: 22px;
  bottom: 24px;
  z-index: 2;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.78;
  text-shadow: 0 0 26px rgba(0, 200, 5, 0.42);
}

.poster-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  opacity: 0.55;
}

.poster-grid span {
  border: 1px solid rgba(124, 255, 158, 0.14);
}

.culture-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.culture-board span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px 16px 4px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--green-3);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.culture-board span:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: rgba(124, 255, 158, 0.48);
  background: rgba(0, 200, 5, 0.14);
}

.roadmap {
  grid-template-columns: repeat(3, 1fr);
}

.roadmap article span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green-3);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 4px 18px 4px 18px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 38px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--soft);
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  transform: translate(-50%, 18px);
  padding: 12px 16px;
  border: 1px solid rgba(124, 255, 158, 0.28);
  border-radius: 999px;
  background: rgba(4, 15, 9, 0.95);
  color: var(--green-3);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes rainDrop {
  to {
    transform: translateY(calc(100svh + 90px));
  }
}

@keyframes scan {
  0%,
  46% {
    transform: translateX(-120%) rotate(-8deg);
  }

  100% {
    transform: translateX(160%) rotate(-8deg);
  }
}

@keyframes barPulse {
  0%,
  100% {
    opacity: 0.56;
  }

  50% {
    opacity: 1;
  }
}

@keyframes chartPop {
  0%,
  100% {
    filter: brightness(0.86);
  }

  50% {
    filter: brightness(1.35);
  }
}

@keyframes tapeMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes buttonSweep {
  0%,
  42% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(124, 255, 158, 0.26);
    border-radius: 18px 6px 18px 6px;
    background:
      linear-gradient(135deg, rgba(0, 200, 5, 0.16), transparent 44%),
      rgba(0, 0, 0, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), 0 0 36px rgba(0, 200, 5, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(124, 255, 158, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-links a:hover {
    border-color: rgba(124, 255, 158, 0.34);
    background: rgba(0, 200, 5, 0.14);
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    grid-column: 3;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 25;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-grid,
  .split,
  .tokenomics,
  .culture-section,
  .signal-section {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .proof-grid,
  .steps,
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .header-action {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    display: block;
    padding: 0 18px 42px;
  }

  .hero-grid,
  .hero-copy {
    width: min(32rem, calc(100vw - 72px));
    max-width: 100%;
    min-width: 0;
  }

  .hero-grid {
    padding-top: min(118vw, 430px);
    justify-content: center;
  }

  .hero-copy > p,
  .contract-card,
  .browser-bar,
  .chain-pill {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy > p {
    width: min(100%, 31ch);
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .chain-pill {
    align-items: flex-start;
    line-height: 1.3;
  }

  .hero-bg {
    inset: 76px 0 auto;
    height: min(110vw, 400px);
    background-size: min(108vw, 410px) auto;
    background-position: center top;
    transform: none;
    filter: saturate(1.22) contrast(1.08) drop-shadow(0 0 34px rgba(0, 200, 5, 0.26));
  }

  .hero-scrim {
    inset: 76px 0 auto;
    height: min(110vw, 400px);
    background:
      radial-gradient(circle at 50% 34%, transparent 0 36%, rgba(0, 0, 0, 0.24) 62%, rgba(0, 0, 0, 0.68) 100%),
      linear-gradient(180deg, transparent 0 58%, #030604 100%);
  }

  .hero-copy::before {
    inset: -20px -14px -24px;
    border-left-color: rgba(124, 255, 158, 0.2);
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36)),
      radial-gradient(circle at 0% 0%, rgba(0, 200, 5, 0.16), transparent 60%);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 13.2vw, 3.25rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

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

  .browser-bar {
    min-height: 38px;
  }

  .browser-bar strong {
    font-size: 0.78rem;
  }

  .hero-stamps span {
    min-height: 30px;
    font-size: 0.7rem;
  }

  .meme-tape span {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.86rem;
  }

  .contract-value {
    width: 100%;
    justify-content: center;
  }

  .contract-value small {
    display: none;
  }

  .stats-band,
  .proof-grid,
  .steps,
  .roadmap,
  .culture-board {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-top: 0;
    transform: none;
  }

  .stats-band article {
    transform: none;
  }

  .section,
  .buy-section,
  .roadmap-section,
  .faq-section {
    padding: 68px 0;
  }

  .signal-section {
    margin-top: 34px;
    padding: 36px 18px;
    border-radius: 24px;
  }

  .terminal-body {
    padding: 18px;
  }

  .culture-section {
    padding: 54px 20px;
    border-radius: 24px;
  }

  .chad-poster {
    min-height: 260px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
