:root {
  --ink: #05060a;
  --panel: #10131a;
  --paper: #f3efe6;
  --red: #ff344a;
  --blue: #63d5ff;
  --amber: #e0a34a;
  --shadow: rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.12), rgba(5, 6, 10, 0.98) 78%),
    #05060a;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 52, 74, 0.08), transparent 32%, rgba(99, 213, 255, 0.1)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 15px);
  mix-blend-mode: screen;
  opacity: 0.38;
}

.site-shell::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at center, transparent 0 1px, rgba(255, 255, 255, 0.035) 1px 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.52;
}

.web-canvas {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 6, 10, 0.72);
  box-shadow: 0 20px 60px var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 900;
}

.brand-sigil {
  width: 22px;
  height: 22px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, var(--paper) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--paper) 47% 53%, transparent 53%),
    var(--red);
  box-shadow: 0 0 22px rgba(255, 52, 74, 0.8);
}

.nav-links,
.nav-actions,
.hero-actions,
.final-cta,
.console-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(243, 239, 230, 0.78);
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  outline: none;
}

.nav-actions {
  justify-content: flex-end;
  gap: 8px;
}

.mini-action,
.action,
.console-actions button,
.secret-hatch button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mini-action {
  display: inline-grid;
  min-width: 48px;
  place-items: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.mini-action.buy {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 42px;
  align-items: end;
  min-height: 92svh;
  padding: 140px 40px 56px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(5, 6, 10, 0.98) 0%, rgba(5, 6, 10, 0.58) 46%, rgba(5, 6, 10, 0.88) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.02) 0%, rgba(5, 6, 10, 0.88) 100%),
    url("assets/spiderracc-room.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.06);
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(5, 6, 10, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 52, 74, 0.14) 0 2px, transparent 2px 90px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: rgba(243, 239, 230, 0.86);
}

.eyebrow span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

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

h1 {
  margin-bottom: 0;
  font-size: 6.2rem;
  line-height: 0.86;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    2px 0 0 var(--red),
    -2px 0 0 var(--blue),
    0 12px 36px rgba(0, 0, 0, 0.7);
}

.ticker-name {
  width: max-content;
  margin: 12px 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(99, 213, 255, 0.55);
  border-radius: 6px;
  background: rgba(99, 213, 255, 0.12);
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(99, 213, 255, 0.22);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(243, 239, 230, 0.84);
  font-size: 1.2rem;
  line-height: 1.55;
}

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

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 900;
}

.action.primary {
  border-color: rgba(255, 255, 255, 0.36);
  background: var(--red);
  color: white;
  box-shadow: 0 0 36px rgba(255, 52, 74, 0.34);
}

.action.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.action.web-toggle {
  background: rgba(99, 213, 255, 0.14);
  color: var(--blue);
}

.mini-action:hover,
.mini-action:focus-visible,
.action:hover,
.action:focus-visible,
.console-actions button:hover,
.console-actions button:focus-visible,
.secret-hatch button:hover,
.secret-hatch button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}

.hero-metrics span {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 6, 10, 0.62);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.photo-slice {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 100%);
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--panel);
  box-shadow:
    -18px 18px 0 rgba(255, 52, 74, 0.28),
    18px -18px 0 rgba(99, 213, 255, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.6);
  transform: rotate(1.6deg);
}

.photo-slice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  transform: scale(1.04);
}

.scanline {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: 0.32;
  animation: scan 5s linear infinite;
}

.web-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 24px white, 0 0 38px var(--blue);
}

.node-one {
  top: 15%;
  left: 18%;
}

.node-two {
  top: 31%;
  right: 20%;
  box-shadow: 0 0 24px white, 0 0 38px var(--red);
}

.node-three {
  left: 47%;
  bottom: 32%;
}

.ticker-ribbon {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--paper);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.ticker-ribbon div {
  width: max-content;
  padding: 12px 0;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.asset-band,
.webroom-band,
.token-band {
  position: relative;
  z-index: 4;
  padding: 92px 40px;
}

.asset-band {
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.98), rgba(16, 19, 26, 0.98)),
    #10131a;
}

.section-heading,
.webroom-copy,
.token-copy {
  max-width: 820px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.6rem;
  line-height: 0.96;
  font-weight: 1000;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.webroom-copy p:not(.section-kicker),
.token-copy p:not(.section-kicker) {
  color: rgba(243, 239, 230, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.asset-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.asset-card span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.asset-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.asset-card p {
  margin-bottom: 0;
  color: rgba(243, 239, 230, 0.72);
  line-height: 1.55;
}

.webroom-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 52, 74, 0.12), transparent 42%, rgba(99, 213, 255, 0.1)),
    #07080e;
}

.web-console {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.console-screen {
  display: grid;
  grid-template-columns: 14px 14px 14px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 96px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.console-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 52, 74, 0.8);
}

.console-dot.blue {
  background: var(--blue);
  box-shadow: 0 0 16px rgba(99, 213, 255, 0.8);
}

.console-dot.white {
  background: var(--paper);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.8);
}

.console-screen p,
.console-screen strong {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.console-screen p {
  color: rgba(243, 239, 230, 0.7);
  font-weight: 900;
}

.console-screen strong {
  color: var(--blue);
  font-size: 1.35rem;
}

.console-actions {
  gap: 12px;
  padding: 20px 22px;
}

.console-actions button,
.secret-hatch button {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
}

.secret-hatch {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  opacity: 0;
  transition: max-height 220ms ease, padding 220ms ease, opacity 220ms ease;
}

.secret-hatch.open {
  max-height: 180px;
  padding: 0 22px 22px;
  opacity: 1;
}

.secret-hatch p,
.secret-hatch strong {
  margin: 0;
}

.secret-hatch strong {
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.secret-hatch button {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.token-band {
  background:
    linear-gradient(180deg, rgba(16, 19, 26, 0.98), rgba(5, 6, 10, 1)),
    #05060a;
}

.launch-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 28px;
  padding: 0;
  list-style: none;
}

.launch-line li {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(243, 239, 230, 0.82);
  font-weight: 800;
}

.launch-line span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.final-cta {
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 40px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #05060a;
  color: rgba(243, 239, 230, 0.64);
  font-size: 0.95rem;
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 118px 24px 46px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-visual {
    min-height: 440px;
  }

  .photo-slice {
    left: 0;
    right: auto;
    width: min(520px, 100%);
  }

  .asset-grid,
  .webroom-band,
  .launch-line {
    grid-template-columns: 1fr;
  }

  .asset-band,
  .webroom-band,
  .token-band {
    padding: 72px 24px;
  }
}

@media (max-width: 620px) {
  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    gap: 8px;
  }

  .brand-mark {
    padding: 0 8px;
  }

  .brand-sigil {
    width: 18px;
    height: 18px;
  }

  .mini-action {
    min-width: 42px;
    padding: 0 10px;
  }

  .mini-action.buy {
    min-width: 56px;
  }

  .hero {
    padding: 106px 16px 38px;
  }

  .eyebrow {
    gap: 6px;
  }

  .eyebrow span {
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-lede,
  .section-heading p:not(.section-kicker),
  .webroom-copy p:not(.section-kicker),
  .token-copy p:not(.section-kicker) {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta,
  .console-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .action,
  .console-actions button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .asset-band,
  .webroom-band,
  .token-band {
    padding: 58px 16px;
  }

  .console-screen {
    grid-template-columns: 12px 12px 12px 1fr;
  }

  .console-screen strong {
    grid-column: 1 / -1;
  }

  .secret-hatch {
    grid-template-columns: 1fr;
  }

  .secret-hatch button {
    grid-row: auto;
    grid-column: auto;
  }

  .footer {
    flex-direction: column;
    padding: 24px 16px 34px;
  }
}

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