:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --ink: #f4f4f2;
  --muted: #9a9a96;
  --line: rgba(255, 255, 255, 0.12);
  --frost: rgba(255, 255, 255, 0.06);
  --silver: #c8c8c4;
  --glow: rgba(220, 230, 255, 0.18);
  --danger: #e8e8e8;
  --font-display: "Anton", sans-serif;
  --font-dirt: "Rubik Dirt", cursive;
  --font-body: "Barlow Condensed", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(120, 140, 180, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(40, 40, 40, 0.7), transparent 50%),
    linear-gradient(180deg, #030303 0%, #080808 40%, #050505 100%);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  line-height: 1.45;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Atmosphere layers */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.45s steps(2) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
}

#snow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.fog {
  position: fixed;
  inset: auto -20% -10% -20%;
  height: 45vh;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(180, 190, 200, 0.05), rgba(20, 20, 22, 0.55));
  filter: blur(28px);
}

.fog-a {
  animation: fogDrift 28s ease-in-out infinite alternate;
}

.fog-b {
  height: 30vh;
  opacity: 0.55;
  animation: fogDrift 38s ease-in-out infinite alternate-reverse;
}

@keyframes fogDrift {
  from { transform: translateX(-4%); }
  to { transform: translateX(4%); }
}

.moon-glow {
  position: fixed;
  top: -8vmax;
  right: -4vmax;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 45% 45%, rgba(240, 245, 255, 0.22), rgba(240, 245, 255, 0.05) 28%, transparent 62%);
  animation: moonPulse 8s ease-in-out infinite;
}

@keyframes moonPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.forest-sil {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(0, 0, 0, 0.55) 18px 22px,
      transparent 22px 40px,
      rgba(0, 0, 0, 0.75) 40px 48px,
      transparent 48px 70px
    );
  mask-image: linear-gradient(180deg, transparent, #000 40%);
}

.claw-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(118deg, transparent 46%, rgba(255, 255, 255, 0.035) 47%, transparent 48%),
    linear-gradient(122deg, transparent 50%, rgba(255, 255, 255, 0.025) 51%, transparent 52%),
    linear-gradient(126deg, transparent 54%, rgba(255, 255, 255, 0.02) 55%, transparent 56%);
  opacity: 0.5;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 5, 0.88);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
  filter: grayscale(1) contrast(1.15);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.25rem);
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.nav-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.nav-social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero — full-bleed visual plane */
.hero {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 1rem) clamp(1.25rem, 5vw, 5rem) 4.5rem;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(1) contrast(1.18) brightness(0.72);
  transform: scale(1.06);
  animation: kenBurns 22s ease-in-out infinite alternate;
}

.hero-video {
  display: none;
}

.hero.has-video .hero-video {
  display: block;
}

.hero.has-video .hero-logo {
  display: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.55) 42%, rgba(3, 3, 3, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.45) 0%, transparent 28%, rgba(3, 3, 3, 0.78) 100%);
  pointer-events: none;
}

.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 3px,
    rgba(255, 255, 255, 0.015) 3px 4px
  );
  mix-blend-mode: soft-light;
  animation: scanDrift 10s linear infinite;
}

@keyframes kenBurns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

@keyframes scanDrift {
  from { background-position: 0 0; }
  to { background-position: 0 40px; }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.75);
  animation: fadeUp 1s var(--ease) both;
}

.hero-brand::after {
  content: "HIMGAJRIA";
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-dirt);
  font-size: clamp(1.5rem, 3.8vw, 2.7rem);
  letter-spacing: 0.08em;
  color: var(--silver);
  opacity: 0.95;
  animation: slashIn 1.1s 0.2s var(--ease) both;
}

.hero-tag {
  margin-top: 1.4rem;
  max-width: 30ch;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfcfcb;
  animation: fadeUp 1s 0.12s var(--ease) both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  animation: fadeUp 1s 0.22s var(--ease) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-primary {
  background: var(--ink);
  color: #080808;
  border-color: var(--ink);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.btn-icon {
  width: 52px;
  padding: 0;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  max-width: 520px;
  padding: 0.7rem 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  animation: fadeUp 1s 0.3s var(--ease) both;
}

.ca-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  color: var(--silver);
}

.ca-copy {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ca-copy:hover,
.ca-copy.copied {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  opacity: 0.7;
}

.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: var(--ink);
  border-radius: 999px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slashIn {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-18px); }
  to { opacity: 0.92; clip-path: inset(0 0 0 0); transform: translateX(0); }
}

/* Sections */
.section {
  position: relative;
  z-index: 4;
  padding: clamp(5rem, 10vh, 8rem) clamp(1.25rem, 5vw, 5rem);
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-title span {
  font-family: var(--font-dirt);
  font-size: 0.72em;
  letter-spacing: 0.04em;
  color: var(--silver);
}

.claw-rule {
  position: relative;
  width: min(220px, 50%);
  height: 18px;
  margin-top: 1.25rem;
}

.claw-rule::before,
.claw-rule::after,
.claw-rule {
  background:
    linear-gradient(108deg, transparent 10%, rgba(255, 255, 255, 0.75) 12%, transparent 14%),
    linear-gradient(118deg, transparent 28%, rgba(255, 255, 255, 0.55) 30%, transparent 32%),
    linear-gradient(128deg, transparent 46%, rgba(255, 255, 255, 0.4) 48%, transparent 50%);
}

.claw-rule::before,
.claw-rule::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.claw-rule::before { transform: translateY(-4px); }
.claw-rule::after { transform: translateY(4px); }

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.about-story p {
  max-width: 52ch;
  margin-bottom: 1.25rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #d4d4d0;
}

.about-story strong {
  color: var(--ink);
  font-weight: 700;
}

.about-traits {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.about-traits li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

.about-traits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 2px;
  background: var(--ink);
  transform: skewX(-28deg);
}

.about-panel {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.stat {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.stat:last-child {
  border-bottom: none;
}

.stat-k {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-v {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-v img {
  width: 18px;
  height: 18px;
}

/* How to buy */
.buy-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.buy-step {
  position: relative;
  padding: 0.25rem 0 0.5rem;
  min-height: 220px;
  transition: transform 0.35s var(--ease);
}

.buy-step:hover {
  transform: translateY(-4px);
}

.step-num {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.18);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.buy-step h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.buy-step p {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.buy-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Chart */
.chart-frame {
  position: relative;
  height: min(72vh, 720px);
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.45);
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.chart-links {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Join Us — banner only here */
.joinus {
  padding-top: clamp(3rem, 6vh, 5rem);
}

.join-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: clamp(280px, 48vh, 560px);
  background: #000;
}

.join-banner img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.04);
  animation: bannerDrift 18s ease-in-out infinite alternate;
}

.join-banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 45%, rgba(0, 0, 0, 0.35)),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

@keyframes bannerDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.join-copy {
  max-width: 900px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.join-lead {
  margin: 1rem auto 2rem;
  max-width: 36ch;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.join-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
  justify-content: center;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.join-link img {
  width: 18px;
  height: 18px;
}

.join-link:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
  position: relative;
  z-index: 4;
  padding: 2.5rem clamp(1.25rem, 5vw, 5rem) 3rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  filter: grayscale(1);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand span,
.footer-note {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.buy-step.reveal.visible:nth-child(2) { transition-delay: 0.08s; }
.buy-step.reveal.visible:nth-child(3) { transition-delay: 0.16s; }
.buy-step.reveal.visible:nth-child(4) { transition-delay: 0.24s; }

/* Slash cursor flash on buttons */
.btn-primary,
.join-link {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.join-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28) 48%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn-primary:hover::after,
.join-link:hover::after {
  transform: translateX(120%);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    align-items: end;
    text-align: left;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.35) 0%, rgba(3, 3, 3, 0.55) 40%, rgba(3, 3, 3, 0.92) 100%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.55), transparent 70%);
  }

  .about-grid,
  .buy-steps {
    grid-template-columns: 1fr;
  }

  .buy-step {
    min-height: 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav {
    grid-template-columns: auto auto;
  }

  .nav-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .hero-brand {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

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

  .join-link {
    width: 100%;
  }

  .stat {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
