/* ── Woke Doge · Virus + Sketch Aesthetic ── */

:root {
  --ink: #0a0a0a;
  --paper: #f4f0e8;
  --paper-dark: #e8e2d6;
  --charcoal: #141210;
  --smoke: #1c1a18;
  --virus: #ff2da0;
  --virus-bright: #ff5cc4;
  --virus-glow: rgba(255, 45, 160, 0.55);
  --virus-dim: rgba(255, 45, 160, 0.15);
  --doge-tan: #d4a574;
  --doge-orange: #e8a050;
  --text: #f0ece4;
  --text-muted: #a8a098;
  --sketch-line: #2a2824;
  --font-display: "Permanent Marker", cursive;
  --font-body: "Rubik", system-ui, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sketch-shadow: 3px 3px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, var(--virus-dim), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(212, 165, 116, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 45, 160, 0.06), transparent 55%),
    linear-gradient(180deg, #0e0c0a 0%, var(--charcoal) 50%, #0a0908 100%);
}

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

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

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

/* ── Atmospheric layers ── */

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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-shift 0.4s steps(3) infinite;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-1%, 1%); }
  66% { transform: translate(1%, -1%); }
}

.scribble-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.scribble-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--virus);
  opacity: 0;
  filter: blur(1px);
  animation: scribble-drift ease-in-out infinite;
}

@keyframes scribble-drift {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(0.5);
  }
  20% { opacity: 0.35; }
  50% {
    opacity: 0.2;
    transform: translate(20px, -30px) rotate(180deg) scale(1);
  }
  80% { opacity: 0.1; }
}

.glitch-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glitch-float {
  position: absolute;
  bottom: -40px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--virus);
  opacity: 0;
  animation: glitch-rise linear infinite;
}

@keyframes glitch-rise {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(-5deg);
  }
  10% { opacity: 0.15; }
  90% { opacity: 0.05; }
  100% {
    opacity: 0;
    transform: translateY(-110vh) rotate(8deg);
  }
}

/* ── Glitch text ── */

.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-text:hover::before,
.glitch-text:hover::after {
  animation: glitch-clip 0.35s steps(2) infinite;
}

.glitch-text:hover::before {
  color: var(--virus-bright);
  clip-path: inset(20% 0 60% 0);
  transform: translate(-2px, 0);
  opacity: 0.8;
}

.glitch-text:hover::after {
  color: var(--doge-tan);
  clip-path: inset(60% 0 10% 0);
  transform: translate(2px, 0);
  opacity: 0.8;
}

@keyframes glitch-clip {
  0% { clip-path: inset(10% 0 80% 0); }
  25% { clip-path: inset(40% 0 30% 0); }
  50% { clip-path: inset(70% 0 5% 0); }
  75% { clip-path: inset(5% 0 60% 0); }
  100% { clip-path: inset(30% 0 50% 0); }
}

/* ── Sketch border utility ── */

.sketch-border {
  position: relative;
  background: var(--smoke);
  border: 3px solid var(--ink);
  box-shadow: var(--sketch-shadow);
}

.sketch-border::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--virus);
  opacity: 0.25;
  pointer-events: none;
  animation: border-wiggle 4s ease-in-out infinite;
}

@keyframes border-wiggle {
  0%, 100% { transform: rotate(-0.3deg); }
  50% { transform: rotate(0.3deg); }
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s;
}

.site-header.scrolled {
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 40px var(--virus-dim);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
}

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--virus);
  object-fit: cover;
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--virus-glow); }
  50% { box-shadow: 0 0 20px 4px var(--virus-glow); }
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--virus-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

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

.nav-buy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--virus) !important;
  color: var(--ink) !important;
  font-weight: 700;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-buy:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink) !important;
}

.nav-buy-icon {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

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

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--virus {
  background: var(--virus);
  color: var(--ink);
  box-shadow: var(--sketch-shadow);
}

.btn--virus:hover {
  box-shadow: 5px 5px 0 var(--ink);
}

.btn--sketch {
  background: transparent;
  color: var(--text);
  border-color: var(--virus);
  box-shadow: 3px 3px 0 var(--virus-dim);
}

.btn--sketch:hover {
  background: var(--virus-dim);
  box-shadow: 5px 5px 0 var(--virus-dim);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.pulse-virus {
  animation: virus-pulse 2.5s ease-in-out infinite;
}

@keyframes virus-pulse {
  0%, 100% { box-shadow: var(--sketch-shadow); }
  50% { box-shadow: var(--sketch-shadow), 0 0 24px var(--virus-glow); }
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 2rem) 1.25rem 0;
  display: flex;
  flex-direction: column;
}

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

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blob-drift 12s ease-in-out infinite;
}

.hero-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--virus-dim);
  top: -10%;
  left: -10%;
}

.hero-blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(212, 165, 116, 0.1);
  bottom: 20%;
  right: -5%;
  animation-delay: -4s;
}

.hero-blob--3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 45, 160, 0.08);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.virus-strings {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  overflow: hidden;
}

.virus-string {
  position: absolute;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to top, var(--virus), transparent);
  opacity: 0.3;
  animation: string-sway ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes string-sway {
  0%, 100% { transform: rotate(-3deg); opacity: 0.2; }
  50% { transform: rotate(3deg); opacity: 0.45; }
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-frame {
  position: relative;
  width: min(420px, 90vw);
}

.hero-logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--virus-glow) 0%, transparent 65%);
  animation: glow-breathe 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-logo {
  width: 100%;
  border-radius: 12px;
  border: 4px solid var(--ink);
  box-shadow: var(--sketch-shadow), 0 0 40px var(--virus-dim);
  animation: logo-float 5s ease-in-out infinite;
  background: var(--paper);
}

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

.hero-logo-ring {
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--virus);
  border-radius: 16px;
  opacity: 0.4;
  animation: ring-spin 20s linear infinite;
}

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

.virus-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.virus-tag {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--virus-bright);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--virus);
  background: rgba(14, 12, 10, 0.8);
  animation: tag-bob 3s ease-in-out infinite;
}

.virus-tag--1 {
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}

.virus-tag--2 {
  top: 15%;
  right: -8%;
  animation-delay: -1s;
}

.virus-tag--3 {
  bottom: 10%;
  left: 5%;
  animation-delay: -2s;
}

@keyframes tag-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--virus-bright);
}

.hero-heading {
  font-family: var(--font-display);
  line-height: 1.05;
}

.hero-line {
  display: block;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--paper);
  text-shadow: 4px 4px 0 var(--ink);
}

.hero-line--accent {
  color: var(--virus-bright);
  text-shadow: 4px 4px 0 var(--ink), 0 0 40px var(--virus-glow);
}

.hero-bio {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ca-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--sketch-line);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 100%;
}

.ca-strip:hover {
  border-color: var(--virus);
}

.ca-strip.copied-flash {
  border-color: var(--virus-bright);
  box-shadow: 0 0 20px var(--virus-glow);
}

.ca-strip__chain {
  width: 22px;
  height: 22px;
}

.ca-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.ca-strip code {
  font-size: 0.75rem;
  color: var(--virus-bright);
  word-break: break-all;
  flex: 1;
  min-width: 120px;
}

.ca-copy-btn {
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--virus);
  color: var(--ink);
  border: 2px solid var(--ink);
}

.ca-copy-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ca-copy-btn.copied {
  background: var(--doge-tan);
}

.marquee-strip {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--virus);
  color: var(--ink);
  overflow: hidden;
  padding: 0.6rem 0;
}

.marquee-inner {
  display: flex;
  gap: 2rem;
  animation: marquee-scroll 25s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */

.section {
  padding: 5rem 1.25rem;
}

.section-frame {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: var(--virus-dim);
  border: 2px solid var(--virus);
  color: var(--virus-bright);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  transform: rotate(-1deg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── Reveal animation ── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ── About ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.about-frame {
  position: relative;
  border: 3px solid var(--ink);
  box-shadow: var(--sketch-shadow);
  overflow: hidden;
  background: var(--paper);
}

.about-img {
  width: 100%;
  display: block;
}

.about-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 45, 160, 0.15) 50%,
    transparent 100%
  );
  animation: scan-sweep 3s ease-in-out infinite;
  pointer-events: none;
}

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

.symptom-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.symptom-list li {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 45, 160, 0.08);
  border-left: 3px solid var(--virus);
  color: var(--text-muted);
  animation: symptom-flicker 4s ease-in-out infinite;
}

.symptom-list li:nth-child(2) { animation-delay: -1s; }
.symptom-list li:nth-child(3) { animation-delay: -2s; }
.symptom-list li:nth-child(4) { animation-delay: -3s; }

@keyframes symptom-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-stats {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.about-stats li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--sketch-line);
  transition: border-color 0.2s;
}

.about-stats li:hover {
  border-color: var(--virus);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 2px solid var(--ink);
  background: var(--smoke);
  box-shadow: 2px 2px 0 var(--virus-dim);
}

.stat-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.stat-icon-img[src*="logo.png"] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.stat-icon--symbol {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--virus-bright);
  background: var(--paper);
}

.about-stats strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.about-stats span {
  font-weight: 600;
  color: var(--virus-bright);
}

/* ── How to Buy ── */

.step-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--sketch-line);
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: var(--virus);
  transform: translateY(-4px);
}

.step-card--highlight {
  border-color: var(--virus);
  background: rgba(255, 45, 160, 0.06);
  box-shadow: 0 0 30px var(--virus-dim);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--virus);
  opacity: 0.5;
  line-height: 1;
}

.step-icon {
  margin: 0.75rem 0;
  color: var(--virus-bright);
}

.brain-icon {
  width: 48px;
  height: 48px;
}

.brain-icon--pulse {
  animation: brain-pulse 2s ease-in-out infinite;
}

@keyframes brain-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.step-swap-icon {
  width: 40px;
  height: 40px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--paper);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ── Chart ── */

.chart-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.chart-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 400px;
  border: 3px solid var(--ink);
  box-shadow: var(--sketch-shadow);
  background: #0d0b09;
  overflow: hidden;
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(14, 12, 10, 0.95);
}

.chart-placeholder.hidden {
  display: none;
}

.chart-placeholder-icon {
  width: 64px;
  height: 64px;
  opacity: 0.6;
  animation: placeholder-bob 2s ease-in-out infinite;
}

@keyframes placeholder-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.chart-placeholder p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.chart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Join Us ── */

.joinus-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.joinus-banner-wrap {
  position: relative;
  border: 4px solid var(--ink);
  box-shadow: var(--sketch-shadow);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.joinus-banner {
  width: 100%;
  display: block;
  background: var(--paper);
}

.joinus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(14, 12, 10, 0.7) 100%
  );
  pointer-events: none;
}

.joinus-content {
  padding: 2rem;
  text-align: center;
}

.joinus-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--virus-bright);
  margin-bottom: 0.75rem;
}

.joinus-text {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

.joinus-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.social-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--sketch-line);
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(
    0 4px,
    4px 0,
    calc(100% - 4px) 0,
    100% 4px,
    100% calc(100% - 4px),
    calc(100% - 4px) 100%,
    4px 100%,
    0 calc(100% - 4px)
  );
}

.social-chip img {
  width: 32px;
  height: 32px;
}

.social-chip:hover {
  border-color: var(--virus);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--virus-dim);
}

.social-chip--buy {
  background: var(--virus);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.social-chip--buy:hover {
  box-shadow: 4px 4px 0 var(--ink);
}

/* ── Footer ── */

.site-footer {
  padding: 3rem 1.25rem;
  border-top: 3px solid var(--ink);
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--virus);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-top {
  font-size: 0.85rem;
  color: var(--virus-bright);
  margin-top: 0.5rem;
}

.footer-top:hover {
  text-decoration: underline;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-bio {
    max-width: 100%;
  }

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

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

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

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(14, 12, 10, 0.98);
    padding: 1rem;
    border-bottom: 3px solid var(--virus);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem;
    text-align: center;
  }

  .section-frame {
    padding: 1.5rem 1rem;
  }

  .chart-frame {
    min-height: 320px;
  }
}

@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;
  }
}
