:root {
  color-scheme: light;
  --bg: #f6fbff;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-soft: rgba(23, 104, 255, 0.06);
  --line: rgba(23, 104, 255, 0.16);
  --text: #07111f;
  --muted: #58708e;
  --blue: #1768ff;
  --cyan: #43d6ff;
  --violet: #8a5cff;
  --magenta: #b84dff;
  --white: #ffffff;
  --shadow: 0 32px 90px rgba(23, 104, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    repeating-linear-gradient(115deg, rgba(23, 104, 255, 0.045) 0 1px, transparent 1px 96px),
    radial-gradient(circle at 88% 18%, rgba(140, 84, 255, 0.2), transparent 22rem),
    radial-gradient(circle at 6% 72%, rgba(0, 214, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 58% 38%, rgba(255, 92, 178, 0.1), transparent 26rem),
    radial-gradient(circle at 78% 8%, rgba(23, 104, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 14% 20%, rgba(67, 214, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 52% 66%, rgba(138, 198, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #eef8ff 44%, #f8fcff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.data-wave-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.68;
  mix-blend-mode: multiply;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(67, 214, 255, 0.2), rgba(140, 84, 255, 0.16), transparent),
    linear-gradient(90deg, transparent, rgba(255, 92, 178, 0.1), rgba(23, 104, 255, 0.12), transparent);
  background-size: 520px 1px, 740px 1px;
  background-position: 0 18%, 140px 72%;
  background-repeat: repeat-x;
  animation: dataFlow 10s linear infinite;
  opacity: 0.55;
}

.page-shell::after {
  transform: rotate(90deg);
  opacity: 0.2;
  animation-duration: 15s;
}

.page-shell {
  background:
    conic-gradient(from 120deg at 82% 28%, transparent 0 68deg, rgba(140, 84, 255, 0.1) 92deg, transparent 132deg 360deg),
    conic-gradient(from 260deg at 18% 68%, transparent 0 80deg, rgba(0, 214, 255, 0.12) 110deg, transparent 150deg 360deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  transition: background 180ms ease, border 180ms ease, padding 180ms ease;
}

.site-header.is-elevated {
  width: 100%;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.98);
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(23, 104, 255, 0.16);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  animation: logoFloat 4.8s ease-in-out infinite;
  box-shadow:
    0 0 18px rgba(67, 214, 255, 0.42),
    0 0 34px rgba(138, 92, 255, 0.24);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 750;
}

button.primary-button {
  border: 0;
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.header-cta {
  padding: 0 18px;
  background: rgba(23, 104, 255, 0.07);
  border: 1px solid var(--line);
}

.chart-link {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(23, 104, 255, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.chart-link:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 104, 255, 0.36);
  box-shadow: 0 16px 36px rgba(23, 104, 255, 0.16);
}

.chart-link span {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue), var(--violet));
}

.chart-link span:nth-child(1) {
  height: 10px;
}

.chart-link span:nth-child(2) {
  height: 16px;
}

.chart-link span:nth-child(3) {
  height: 23px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 44px;
  width: min(1180px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: 88px 0 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.data-stream {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 214, 255, 0.72), rgba(23, 104, 255, 0.68), transparent);
  filter:
    drop-shadow(0 0 12px rgba(67, 214, 255, 0.85))
    drop-shadow(0 0 18px rgba(138, 92, 255, 0.45));
  opacity: 0.46;
  animation: streamDrift 7s linear infinite;
}

.stream-one {
  top: 18%;
  left: -14%;
  width: 460px;
}

.stream-two {
  top: 56%;
  right: -10%;
  width: 390px;
  animation-delay: -2s;
}

.stream-three {
  bottom: 16%;
  left: 30%;
  width: 320px;
  animation-delay: -4s;
}

.grid-plane {
  position: absolute;
  right: -8%;
  bottom: 8%;
  width: 720px;
  height: 420px;
  background-image:
    linear-gradient(rgba(23, 104, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 104, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent);
  transform: perspective(700px) rotateX(62deg) rotateZ(-10deg);
  opacity: 0.54;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 104, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  right: 4%;
  top: 12%;
  width: 420px;
  height: 420px;
}

.orbit-two {
  right: 14%;
  top: 22%;
  width: 260px;
  height: 260px;
  border-color: rgba(67, 214, 255, 0.22);
}

.hero-copy,
.hero-visual,
.section,
.stats-band,
.launch-panel,
.site-footer {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.glow-card {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(67, 214, 255, 0.2), transparent 7rem),
    radial-gradient(circle at calc(var(--glow-x) + 8%) calc(var(--glow-y) + 6%), rgba(140, 84, 255, 0.18), transparent 10rem),
    radial-gradient(circle at calc(var(--glow-x) - 6%) calc(var(--glow-y) + 10%), rgba(255, 92, 178, 0.11), transparent 9rem);
  opacity: 0;
  transition: opacity 180ms ease;
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  color: #061428;
  font-family: "Orbitron", "Rajdhani", "Arial Black", "Impact", system-ui, sans-serif;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-shadow:
    0 8px 28px rgba(23, 104, 255, 0.18);
  paint-order: stroke fill;
}

h1 span {
  display: inline;
  background: linear-gradient(100deg, #18c8ff 0%, #1768ff 28%, #7d5cff 52%, #b84dff 72%, #18c8ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  paint-order: stroke fill;
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
    drop-shadow(0 10px 26px rgba(23, 104, 255, 0.18));
  animation: titleColorFlow 7s ease-in-out infinite;
}

.hero-text {
  max-width: 600px;
  color: #4c6686;
  font-size: 19px;
  line-height: 1.7;
}

.hero-text span {
  font-weight: 850;
  background: linear-gradient(92deg, #0bbdff 0%, #1768ff 52%, #8a5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions,
.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.ca-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(620px, 100%);
  margin-top: 24px;
  padding: 13px;
  border: 1px solid rgba(67, 214, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)) padding-box,
    linear-gradient(135deg, rgba(67, 214, 255, 0.62), rgba(140, 84, 255, 0.38), rgba(255, 92, 178, 0.22)) border-box,
    linear-gradient(135deg, rgba(23, 104, 255, 0.12), rgba(67, 214, 255, 0.08), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(23, 104, 255, 0.14);
  backdrop-filter: blur(18px);
}

.ca-strip span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border-radius: 6px;
  background: rgba(67, 214, 255, 0.16);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.ca-strip code {
  flex: 1;
  min-width: 0;
  color: #10243d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.primary-button {
  padding: 0 24px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--violet) 78%, #ff5cb2);
  box-shadow:
    0 18px 48px rgba(23, 104, 255, 0.34),
    0 0 38px rgba(138, 92, 255, 0.22);
}

.secondary-button {
  padding: 0 22px;
  color: #12345e;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

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

.token-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.token-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(23, 104, 255, 0.08);
  border-radius: 50%;
}

.token-stage::after {
  content: "";
  position: absolute;
  inset: auto 10% 10% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 214, 255, 0.42), transparent);
}

.token {
  position: relative;
  z-index: 2;
  width: min(72%, 320px);
  border-radius: 50%;
  filter:
    drop-shadow(0 30px 60px rgba(23, 104, 255, 0.38))
    drop-shadow(0 0 46px rgba(138, 92, 255, 0.26));
  animation: tokenDrift 6s ease-in-out infinite;
}

.metric {
  position: absolute;
  z-index: 3;
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.metric-a {
  left: 8%;
  top: 18%;
}

.metric-b {
  right: 9%;
  top: 33%;
}

.metric-c {
  left: 16%;
  bottom: 18%;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 104, 255, 0.14);
  overflow: hidden;
}

.stats-band div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.stats-band span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.stats-band strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
}

.stats-band p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 130px;
}

.two-column,
.network-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.launch-panel h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, #18c8ff 0%, #1768ff 28%, #7d5cff 52%, #b84dff 72%, #18c8ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  paint-order: stroke fill;
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35))
    drop-shadow(0 10px 26px rgba(23, 104, 255, 0.16));
  animation: titleColorFlow 7s ease-in-out infinite;
}

.section-copy p,
.launch-panel p {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.terminal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(230, 245, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-top span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(23, 104, 255, 0.22);
}

.panel-link {
  margin-left: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.market-summary {
  display: grid;
  gap: 8px;
  padding: 26px 26px 0;
}

.market-summary span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-summary strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.code-lines {
  padding: 26px;
}

.code-lines p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 104, 255, 0.1);
  color: #58708e;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.code-lines span {
  color: #12345e;
  font-weight: 850;
}

.market-change-positive {
  color: #07875a !important;
}

.market-change-negative {
  color: #d3386a !important;
}

.code-lines p:last-child {
  border-bottom: 0;
}

.code-lines b {
  color: var(--text);
}

.section-heading {
  margin-bottom: 34px;
}

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

.feature-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: rgba(23, 104, 255, 0.18);
  color: var(--cyan);
  font-weight: 900;
}

.feature-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.network-section {
  grid-template-columns: 1fr 0.9fr;
}

.network-map {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 48%, rgba(67, 214, 255, 0.2), transparent 12rem),
    radial-gradient(circle at 62% 38%, rgba(23, 104, 255, 0.11), transparent 14rem),
    rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  inset: 28%;
  border: 1px solid rgba(23, 104, 255, 0.11);
  border-radius: 50%;
}

.network-map::after {
  inset: 14%;
  border-color: rgba(67, 214, 255, 0.18);
}

.network-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(30%, 170px);
  border-radius: 50%;
  filter:
    drop-shadow(0 24px 42px rgba(23, 104, 255, 0.22))
    drop-shadow(0 0 34px rgba(67, 214, 255, 0.24));
  transform: translate(-50%, -50%);
  animation: networkLogoDrift 6s ease-in-out infinite;
}

.network-map span {
  position: absolute;
  z-index: 3;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 30px rgba(67, 214, 255, 0.9);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.network-map span:nth-child(1) { left: 48%; top: 18%; }
.network-map span:nth-child(2) { left: 22%; top: 43%; }
.network-map span:nth-child(3) { right: 20%; top: 48%; }
.network-map span:nth-child(4) { left: 39%; bottom: 18%; }
.network-map span:nth-child(5) { right: 34%; bottom: 23%; }

.launch-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 90px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(67, 214, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 28% 70%, rgba(23, 104, 255, 0.1), transparent 19rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 255, 0.7));
  box-shadow: var(--shadow);
}

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

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(23, 104, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.contact-email[hidden] {
  display: none;
}

.contact-email span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-email a {
  color: #12345e;
  font-weight: 800;
}

.link-tile {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.link-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 84, 255, 0.38);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 92, 178, 0.08), transparent 9rem),
    rgba(67, 214, 255, 0.08);
}

.link-tile span {
  display: block;
  color: var(--text);
  font-weight: 850;
}

.link-tile strong {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

@keyframes dataFlow {
  from {
    background-position: 0 18%, 140px 72%;
  }
  to {
    background-position: 1260px 18%, 1580px 72%;
  }
}

@keyframes streamDrift {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes titleColorFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  45% {
    transform: translateY(-3px) rotate(4deg) scale(1.04);
  }
}

@keyframes tokenDrift {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes networkLogoDrift {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px) rotate(2deg);
  }
}

@keyframes nodePulse {
  0%, 100% {
    box-shadow:
      0 0 28px rgba(67, 214, 255, 0.85),
      0 0 0 0 rgba(23, 104, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 40px rgba(67, 214, 255, 1),
      0 0 24px 8px rgba(23, 104, 255, 0.14);
  }
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .hero,
  .two-column,
  .network-section,
  .stats-band,
  .feature-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual,
  .token-stage,
  .network-map {
    min-height: 390px;
  }

  .stats-band {
    margin-bottom: 82px;
  }

  .section {
    margin-bottom: 88px;
  }

  .network-section .network-map {
    order: 2;
  }

  .launch-panel {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }

  .brand span {
    font-size: 15px;
  }

  .hero {
    width: min(342px, calc(100% - 48px));
    margin-left: 24px;
    margin-right: auto;
    gap: 30px;
  }

  .stats-band,
  .section,
  .launch-panel {
    width: min(342px, calc(100% - 48px));
    margin-left: 24px;
    margin-right: auto;
  }

  .stats-band div,
  .feature-grid article,
  .terminal-panel,
  .network-map {
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.04;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  h1 span {
    display: block;
  }

  .hero-copy,
  .hero-text,
  .section-copy,
  .section-copy p,
  .stats-band p,
  .feature-grid p {
    max-width: 342px;
    overflow-wrap: anywhere;
  }

  .hero-text,
  .section-copy p,
  .launch-panel p {
    font-size: 16px;
  }

  .token {
    width: 236px;
  }

  .hero-actions,
  .launch-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ca-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .metric {
    min-width: 112px;
    padding: 10px 12px;
  }

  .metric-a { left: 16px; top: 14%; }
  .metric-b { display: none; }
  .metric-c { left: 24px; bottom: 10%; }

  .stats-band div,
  .feature-grid article {
    padding: 22px;
  }

  .launch-panel {
    width: min(100% - 28px, 1180px);
    padding: 28px 22px;
  }
}
