:root {
  --black: #030303;
  --black-soft: #08090b;
  --panel: #0d0f12;
  --panel-2: #121419;
  --white: #f5f7fa;
  --muted: #9399a4;
  --line: rgba(255,255,255,.10);
  --red: #ff1726;
  --red-dark: #a9000d;
  --red-glow: rgba(255, 23, 38, .35);
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255,23,38,.10), transparent 34%),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.top-line {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 18px var(--red);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(3,3,3,.82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255,23,38,.25);
}

.brand strong {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #cfd2d8;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  border: 1px solid rgba(255,23,38,.65);
  padding: 10px 15px;
  color: var(--white);
  background: rgba(255,23,38,.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 10px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 110px;
  right: -210px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(255,23,38,.10);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255,23,38,.018),
    0 0 0 180px rgba(255,23,38,.012);
}

.hero-grid,
.community-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  width: 880px;
  height: 540px;
  right: -260px;
  top: 110px;
  background: radial-gradient(circle, rgba(255,23,38,.20), transparent 64%);
  filter: blur(30px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  gap: 72px;
}

.eyebrow,
.section-number,
.label,
.timeline-days {
  color: var(--red);
  font-size: .72rem;
  letter-spacing: .20em;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255,23,38,.30);
  background: rgba(255,23,38,.05);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,23,38,.55); }
  70% { box-shadow: 0 0 0 9px rgba(255,23,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,23,38,0); }
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--red);
  text-shadow: 0 0 40px rgba(255,23,38,.18);
}

.hero-intro {
  max-width: 640px;
  margin: 30px 0 0;
  color: #c8cbd1;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--red), #c40010);
  box-shadow: 0 12px 36px rgba(255,23,38,.22);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(255,23,38,.34);
}

.button-secondary {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.06);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: #868c96;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-row span {
  position: relative;
  padding-left: 14px;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--red);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.orbital-card {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,23,38,.08), transparent 55%),
    rgba(4,4,5,.55);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 80px rgba(255,23,38,.04), 0 0 80px rgba(0,0,0,.55);
}

.orbital-card::before,
.orbital-card::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.10);
}

.orbital-card::after {
  inset: 22%;
  border-color: rgba(255,23,38,.18);
}

.orbital-card img {
  width: 61%;
  border-radius: 50%;
  filter: drop-shadow(0 0 32px rgba(255,23,38,.28));
  z-index: 3;
}

.orbit {
  position: absolute;
  inset: 3%;
  border: 2px solid transparent;
  border-top-color: var(--red);
  border-right-color: rgba(255,23,38,.22);
  border-radius: 50%;
  animation: rotate 12s linear infinite;
  box-shadow: 0 -10px 32px rgba(255,23,38,.12);
}

.orbit-two {
  inset: 17%;
  animation-duration: 7s;
  animation-direction: reverse;
  border-top-color: rgba(255,255,255,.4);
  border-right-color: transparent;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.radar-line {
  position: absolute;
  z-index: 2;
  width: 50%;
  height: 1px;
  left: 50%;
  top: 50%;
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), transparent);
  animation: rotate 5.5s linear infinite;
  opacity: .55;
}

.status-chip {
  position: absolute;
  z-index: 4;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255,23,38,.28);
  background: rgba(3,3,3,.86);
  color: #dfe2e7;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
}

.status-chip span {
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.status-panel {
  position: relative;
  z-index: 4;
  margin-top: 76px;
  display: grid;
  grid-template-columns: 1.25fr .78fr 1fr;
  gap: 0;
  background: rgba(10,11,14,.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.status-panel > div {
  min-height: 132px;
  padding: 27px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-panel > div + div {
  border-left: 1px solid var(--line);
}

.status-main .label {
  margin: 0 0 6px;
}

.status-main h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: .12em;
}

.status-main p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.countdown {
  text-align: center;
}

.countdown-value {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: .08em;
}

.countdown-label {
  margin-top: 10px;
  color: var(--red);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .20em;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.progress-header strong {
  color: var(--white);
}

.progress-track {
  position: relative;
  height: 8px;
  margin-top: 17px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #a9000d, var(--red));
  box-shadow: 0 0 18px var(--red-glow);
  transition: width 1s ease;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 58px;
}

.section-heading.compact {
  max-width: 690px;
}

.section-heading h2 {
  margin: 12px 0 20px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.section-heading h2 span {
  color: var(--red);
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-mission {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,23,38,.025), transparent 30%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 60%);
  transition: background .25s ease, transform .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, rgba(255,23,38,.07), transparent 65%);
}

.card-index {
  display: inline-block;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.feature-card h3 {
  margin: 105px 0 12px;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: -.015em;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.section-protocol {
  background: var(--black-soft);
  border-block: 1px solid var(--line);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  min-height: 236px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}

.timeline-marker {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,23,38,.42);
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: inset 0 0 22px rgba(255,23,38,.05);
}

.timeline-days {
  margin: 2px 0 7px;
}

.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.timeline-item p:last-child {
  color: var(--muted);
  margin: 0;
}

.token-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.token-terminal {
  overflow: hidden;
  border: 1px solid rgba(255,23,38,.25);
  background: #07080a;
  box-shadow: 0 35px 80px rgba(0,0,0,.38), 0 0 70px rgba(255,23,38,.04);
}

.terminal-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #101116;
}

.terminal-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41444d;
}

.terminal-bar span:first-child {
  background: var(--red);
}

.terminal-bar p {
  margin: 0 0 0 8px;
  color: #9b9fa8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .68rem;
  letter-spacing: .14em;
}

.token-terminal dl {
  margin: 0;
  padding: 16px 30px 18px;
}

.token-terminal dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.token-terminal dt,
.token-terminal dd {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .76rem;
}

.token-terminal dt {
  color: #686e78;
}

.token-terminal dd {
  text-align: right;
  color: #dfe2e7;
}

.token-terminal .danger {
  color: var(--red);
}

.terminal-warning {
  margin: 4px 30px 30px;
  padding: 18px;
  border-left: 2px solid var(--red);
  background: rgba(255,23,38,.055);
}

.terminal-warning strong {
  color: var(--red);
  font-size: .68rem;
  letter-spacing: .16em;
}

.terminal-warning p {
  margin: 6px 0 0;
  color: #a7abb4;
  font-size: .82rem;
}

.section-principles {
  padding-top: 40px;
}

.principle-banner {
  padding: 70px 0;
  border-block: 1px solid var(--line);
  text-align: center;
}

.principle-banner p {
  color: var(--red);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.principle-banner h2 {
  max-width: 940px;
  margin: 16px auto 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.principle {
  padding: 50px 32px;
  border-right: 1px solid var(--line);
}

.principle:first-child {
  border-left: 1px solid var(--line);
}

.principle > span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.principle h3 {
  margin: 54px 0 12px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.principle p {
  color: var(--muted);
  margin: 0;
}

.section-faq {
  background: var(--black-soft);
  border-block: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 20px;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: -4px 52px 24px 0;
  color: var(--muted);
}

.section-community {
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,23,38,.11), transparent 40%),
    #030303;
}

.community-grid {
  opacity: .11;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.community-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.community-logo {
  width: 122px;
  height: 122px;
  margin: 0 auto 22px;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(255,23,38,.28));
}

.community-content h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.community-content > p:not(.section-number):not(.link-status) {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions.centered {
  justify-content: center;
}

.link-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: #7f858f;
  font-size: .75rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  background: #020202;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr;
  gap: 50px;
  align-items: start;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-grid > div:first-child > p {
  margin: 12px 0 0;
  color: #6f747e;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: #b0b4bc;
  text-decoration: none;
  font-size: .82rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  color: #656a74;
  font-size: .72rem;
  text-align: right;
}

.footer-legal p {
  margin: 0 0 7px;
}

.toast {
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  max-width: min(92vw, 520px);
  padding: 13px 18px;
  border: 1px solid rgba(255,23,38,.35);
  background: rgba(9,10,12,.96);
  color: var(--white);
  font-size: .8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-layout,
  .token-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 138px;
  }

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

  .orbital-card {
    max-width: 390px;
  }

  .status-panel {
    grid-template-columns: 1fr 1fr;
  }

  .member-progress {
    grid-column: 1 / -1;
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }

  .mission-grid,
  .principle-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .principle {
    min-height: auto;
  }

  .feature-card h3,
  .principle h3 {
    margin-top: 55px;
  }

  .principle {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .faq-layout {
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(6,7,9,.98);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 70px rgba(0,0,0,.5);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-layout {
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 19vw, 5.6rem);
  }

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

  .orbital-card {
    max-width: 310px;
  }

  .status-panel {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .status-panel > div + div,
  .member-progress {
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }

  .member-progress {
    grid-column: auto;
  }

  .section {
    padding: 84px 0;
  }

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

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    min-height: auto;
    padding: 26px 20px;
    grid-template-columns: 50px 1fr;
  }

  .timeline-marker {
    width: 42px;
    height: 42px;
  }

  .token-terminal dl {
    padding-inline: 20px;
  }

  .token-terminal dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .token-terminal dd {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .terminal-warning {
    margin-inline: 20px;
  }

  .principle-banner {
    padding: 48px 10px;
  }

  .section-community {
    min-height: 580px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-legal {
    grid-column: auto;
  }
}

@media (max-width: 450px) {
  .brand span {
    font-size: .76rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .status-panel > div {
    padding: 24px 20px;
  }

  .feature-card {
    padding: 28px 24px;
  }
}


.member-counter-status {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: right;
}

.member-counter-status[data-state="live"] {
  color: rgba(255, 255, 255, 0.68);
}

.member-counter-status[data-state="cached"] {
  color: #d6b56f;
}

.member-counter-status[data-state="error"] {
  color: #ff6b6b;
}

@media (max-width: 640px) {
  .member-counter-status {
    text-align: left;
  }
}
