:root {
  --mint: #3ec9b0;
  --mint-bright: #62e0c8;
  --mint-deep: #1d8f7c;
  --mint-ink: #0e3d36;
  --cream: #f3eee4;
  --cream-dim: #c9c2b4;
  --ink: #060b0a;
  --ink-2: #0c1613;
  --ink-3: #132420;
  --panel: rgba(14, 32, 28, 0.72);
  --line: rgba(62, 201, 176, 0.28);
  --glow: rgba(62, 201, 176, 0.35);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", sans-serif;
  --radius: 4px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(62, 201, 176, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(29, 143, 124, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 70%, rgba(62, 201, 176, 0.08), transparent 45%),
    linear-gradient(180deg, #07110f 0%, var(--ink) 40%, #081412 100%);
  overflow-x: hidden;
}

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

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

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

/* Atmosphere layers */
.noise,
.hatch,
#smoke-canvas,
.forest-silhouettes {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.noise {
  z-index: 80;
  opacity: 0.045;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hatch {
  z-index: 1;
  opacity: 0.07;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 7px,
      rgba(62, 201, 176, 0.35) 7px,
      rgba(62, 201, 176, 0.35) 8px
    );
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 85%);
}

#smoke-canvas {
  z-index: 2;
  opacity: 0.55;
}

.forest-silhouettes {
  z-index: 0;
  overflow: hidden;
}

.tree {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 55vh;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 18, 15, 0.85) 35%, #040a09 100%);
  clip-path: polygon(45% 0%, 55% 0%, 58% 18%, 72% 12%, 60% 28%, 85% 40%, 62% 42%, 70% 70%, 55% 68%, 58% 100%, 42% 100%, 45% 68%, 30% 70%, 38% 42%, 15% 40%, 40% 28%, 28% 12%, 42% 18%);
  opacity: 0.35;
  filter: blur(0.5px);
  animation: tree-sway 12s ease-in-out infinite;
}

.tree-a { left: -2%; height: 62vh; animation-delay: 0s; }
.tree-b { left: 18%; height: 48vh; opacity: 0.22; animation-delay: -3s; }
.tree-c { right: 12%; left: auto; height: 58vh; opacity: 0.28; animation-delay: -6s; }
.tree-d { right: -3%; left: auto; height: 70vh; opacity: 0.4; animation-delay: -2s; }

@keyframes tree-sway {
  0%, 100% { transform: translateX(0) skewX(0deg); }
  50% { transform: translateX(8px) skewX(0.6deg); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 11, 10, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--mint-ink), 0 0 18px var(--glow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 0 0 2px var(--mint), 0 0 28px var(--glow);
}

.brand-text,
.brand-footer span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.25s;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--mint-bright);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.icon-link img {
  width: 16px;
  height: 16px;
}

.icon-link:hover {
  border-color: var(--mint);
  background: rgba(62, 201, 176, 0.1);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.95rem 1.4rem;
  font-size: 0.92rem;
}

.btn-xl {
  padding: 1.15rem 1.8rem;
  font-size: 1rem;
}

.btn-mint {
  background: linear-gradient(135deg, var(--mint-bright), var(--mint) 45%, var(--mint-deep));
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 10px 30px rgba(62, 201, 176, 0.25);
}

.btn-mint:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 16px 40px rgba(62, 201, 176, 0.4);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(14, 32, 28, 0.5);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--mint);
  color: var(--mint-bright);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(62, 201, 176, 0.15);
}

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

.btn-mint .btn-ico {
  filter: brightness(0.2) saturate(0);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* Hero */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 201, 176, 0.22) 0%, rgba(62, 201, 176, 0.06) 40%, transparent 70%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-breathe 7s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.hero-stage {
  position: relative;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-logo {
  width: min(420px, 78vw);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: logo-float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.logo-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(62, 201, 176, 0.35);
  box-shadow: 0 0 40px rgba(62, 201, 176, 0.15), inset 0 0 40px rgba(62, 201, 176, 0.08);
  animation: ring-spin 18s linear infinite;
}

.logo-ring::before,
.logo-ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(62, 201, 176, 0.2);
  animation: ring-spin 28s linear infinite reverse;
}

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

.logo-smoke {
  position: absolute;
  left: 8%;
  top: 18%;
  width: 120px;
  height: 160px;
  z-index: 3;
}

.logo-smoke span {
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 238, 228, 0.55), rgba(62, 201, 176, 0.15) 60%, transparent 70%);
  filter: blur(4px);
  animation: puff 4.5s ease-out infinite;
  opacity: 0;
}

.logo-smoke span:nth-child(2) {
  left: 55%;
  animation-delay: 1.2s;
  width: 24px;
  height: 24px;
}

.logo-smoke span:nth-child(3) {
  left: 30%;
  animation-delay: 2.4s;
  width: 14px;
  height: 14px;
}

@keyframes puff {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  15% { opacity: 0.7; }
  100% { transform: translate(-40px, -140px) scale(2.4); opacity: 0; }
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
}

.brand-hero {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.6rem, 9vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 0 40px rgba(62, 201, 176, 0.25);
  background: linear-gradient(180deg, #fff8ee 10%, var(--cream) 45%, var(--mint-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ticker {
  margin: 0.6rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--mint-bright);
  letter-spacing: 0.12em;
}

.lede {
  margin: 0 0 1.8rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--cream-dim);
  max-width: 34ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 42px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.scroll-cue:hover { opacity: 1; }

.scroll-line {
  width: 2px;
  height: 12px;
  background: var(--mint);
  border-radius: 2px;
  animation: scroll-drip 1.8s ease-in-out infinite;
}

@keyframes scroll-drip {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

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

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.section-sub {
  margin: 0.9rem 0 0;
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 46ch;
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(19, 36, 32, 0.55) 20%, rgba(19, 36, 32, 0.55) 80%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.portrait-frame {
  position: relative;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(62, 201, 176, 0.12), transparent 40%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.portrait-frame img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  animation: portrait-drift 8s ease-in-out infinite;
}

@keyframes portrait-drift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.02) rotate(-1deg); }
}

.frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--mint);
  opacity: 0.7;
}

.frame-corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.frame-corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.frame-corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.frame-corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.about-copy .drop {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
  margin: 0 0 1.1rem;
}

.about-copy p {
  margin: 0 0 1.1rem;
  color: var(--cream-dim);
}

.trait-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.trait-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--mint);
  background: linear-gradient(90deg, rgba(62, 201, 176, 0.1), transparent 70%);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.trait-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  flex-shrink: 0;
}

/* How to buy */
.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.buy-step {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  min-height: 220px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(62, 201, 176, 0.08), transparent 50%),
    rgba(8, 18, 16, 0.65);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.buy-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 3px,
    rgba(62, 201, 176, 0.03) 3px,
    rgba(62, 201, 176, 0.03) 4px
  );
  opacity: 0;
  transition: opacity 0.35s;
}

.buy-step:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 201, 176, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(62, 201, 176, 0.1);
}

.buy-step:hover::before { opacity: 1; }

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mint);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.buy-step h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}

.buy-step p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 0.92rem;
  position: relative;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.ca-panel {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px dashed rgba(62, 201, 176, 0.35);
  background: rgba(6, 14, 12, 0.7);
}

.ca-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
}

.ca-value {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--cream-dim);
  word-break: break-all;
}

/* Chart */
.chart-frame {
  border: 1px solid var(--line);
  background: rgba(6, 12, 11, 0.85);
  box-shadow: 0 0 0 1px rgba(62, 201, 176, 0.05), 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(62, 201, 176, 0.08);
  overflow: hidden;
}

.chart-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(62, 201, 176, 0.1), transparent);
}

.chart-bar img {
  width: 20px;
  height: 20px;
}

.chart-bar span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-dim);
}

.chart-bar a {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--mint-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}

.chart-bar a:hover {
  border-bottom-color: var(--mint-bright);
}

.chart-embed {
  position: relative;
  width: 100%;
  height: min(640px, 78vh);
  background: #0b1210;
}

.chart-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Join Us */
.joinus {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(62, 201, 176, 0.12), transparent 60%),
    linear-gradient(180deg, transparent, rgba(10, 22, 19, 0.8));
}

.banner-wrap {
  position: relative;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.join-banner {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
  filter: saturate(1.05) contrast(1.02);
}

.banner-wrap:hover .join-banner {
  transform: scale(1.06);
}

.banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(6, 11, 10, 0.55)),
    linear-gradient(90deg, rgba(6, 11, 10, 0.25), transparent 20%, transparent 80%, rgba(6, 11, 10, 0.25));
  pointer-events: none;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.social-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(10, 20, 18, 0.7);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.social-tile img {
  width: 28px;
  height: 28px;
  margin-bottom: 0.6rem;
  transition: transform 0.35s var(--ease);
}

.social-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.social-handle {
  color: var(--cream-dim);
  font-size: 0.88rem;
}

.social-tile:hover {
  transform: translateY(-5px);
  border-color: var(--mint);
  background: rgba(62, 201, 176, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.social-tile:hover img {
  transform: scale(1.12) rotate(-4deg);
}

.join-cta {
  display: flex;
  justify-content: center;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 3;
  padding: 3.5rem 1.25rem 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 8, 7, 0.9);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer-tag {
  margin: 0;
  color: var(--cream-dim);
  max-width: 40ch;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
  margin: 0.5rem 0;
}

.footer-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.footer-links a img {
  width: 18px;
  height: 18px;
}

.footer-links a:hover {
  border-color: var(--mint);
  background: rgba(62, 201, 176, 0.1);
  transform: translateY(-3px);
}

.footer-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(201, 194, 180, 0.55);
}

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

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

/* Responsive */
@media (max-width: 960px) {
  .hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lede {
    max-width: 38ch;
  }

  .hero-ctas {
    justify-content: center;
  }

  .logo-smoke {
    left: 12%;
  }

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

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

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(6, 11, 10, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(62, 201, 176, 0.12);
  }

  .nav a::after {
    display: none;
  }

  .header-actions .btn-sm {
    display: none;
  }

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

  .buy-step {
    min-height: 0;
  }

  .join-banner {
    aspect-ratio: 16 / 10;
  }

  .chart-embed {
    height: 520px;
  }

  .brand-hero {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }
}

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

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