@import url('https://api.fontshare.com/v2/css?f[]=clash-display@600,700&f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ==========================================================
   NOOB COIN ACADEMY — PREMIUM DARK SYSTEM v5
   Pump.fun palette · Satoshi body · Clash Display headlines
   ========================================================== */

:root {
  --color-bg-primary: #111113;
  --color-bg-secondary: #18191b;
  --color-bg-tertiary: #212225;
  --color-bg-muted: #272a2d;
  --color-bg-accent: #86efac;
  --color-bg-interactive: #86efac;
  --color-text-primary: #fafafa;
  --color-text-on-muted: #edeef0;
  --color-border-tertiary: #272a2d;
  --color-border-accent: #22c55e;
  --color-green-200: #bbf7d0;
  --color-green-300: #86efac;

  --bg: var(--color-bg-primary);
  --surface-1: var(--color-bg-secondary);
  --surface-2: var(--color-bg-tertiary);
  --surface-3: var(--color-bg-muted);
  --surface-glass: rgba(24, 25, 27, 0.72);
  --ink: var(--color-text-primary);
  --ink-soft: var(--color-text-on-muted);
  --muted: #a4a8ad;
  --dim: #6f757d;
  --line: rgba(237, 238, 240, 0.08);
  --line-strong: rgba(237, 238, 240, 0.14);
  --accent: var(--color-green-300);
  --accent-hot: #1fd978;
  --accent-deep: #22c55e;
  --accent-soft: rgba(134, 239, 172, 0.09);
  --accent-ring: rgba(134, 239, 172, 0.22);
  --danger: #f87171;
  --danger-soft: rgba(248, 113, 113, 0.08);
  --danger-ring: rgba(248, 113, 113, 0.24);
  --warn: #facc15;
  --warn-soft: rgba(250, 204, 21, 0.08);
  --warn-ring: rgba(250, 204, 21, 0.24);
  --info: #60a5fa;
  --info-soft: rgba(96, 165, 250, 0.08);
  --info-ring: rgba(96, 165, 250, 0.22);

  --sans: 'Satoshi', Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Clash Display', 'Satoshi', Inter, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --max: 1180px;
  --radius-card: 24px;
  --radius-panel: 18px;
  --radius-input: 12px;
  --radius-pill: 9999px;
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.28);
  --shadow-card-soft: 0 10px 34px rgba(0, 0, 0, 0.22);
  --shadow-green: 0 18px 52px rgba(34, 197, 94, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -8%, rgba(134, 239, 172, 0.17), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(31, 217, 120, 0.10), transparent 26rem),
    radial-gradient(circle at 50% 100%, rgba(134, 239, 172, 0.05), transparent 42rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 70%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.055;
  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='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(134, 239, 172, 0.28); color: var(--ink); }
.mono { font-family: var(--mono); }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; z-index: 1; }

/* NAV */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 19, 0.74);
  border-bottom: 1px solid rgba(237, 238, 240, 0.08);
  backdrop-filter: blur(26px) saturate(1.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.18);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { min-width: 0; }
.brand img {
  width: 154px;
  height: auto;
  display: block;
  opacity: 0.94;
  filter: drop-shadow(0 10px 28px rgba(134, 239, 172, 0.12));
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}
.brand:hover img { opacity: 1; transform: translateY(-1px); }
.navlinks { display: flex; align-items: center; gap: 5px; padding: 5px; border: 1px solid rgba(237,238,240,.06); border-radius: var(--radius-pill); background: rgba(24,25,27,.42); }
.navlinks a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 10px 13px;
  border-radius: var(--radius-pill);
  transition: color 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease);
}
.navlinks a:hover { color: var(--ink); background: rgba(255,255,255,0.055); }
.navlinks a.on { color: #052e16; background: var(--accent); box-shadow: 0 0 0 1px rgba(134,239,172,.35) inset; }
.ctaSmall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: var(--radius-pill);
  color: #052e16;
  background: linear-gradient(180deg, #bbf7d0, var(--accent));
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 34px rgba(134, 239, 172, 0.12), inset 0 -1px 0 rgba(5, 46, 22, 0.18);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), filter 160ms var(--ease);
  white-space: nowrap;
}
.ctaSmall:hover { transform: translateY(-1px); filter: saturate(1.05); box-shadow: 0 18px 48px rgba(134, 239, 172, 0.18), inset 0 -1px 0 rgba(5, 46, 22, 0.18); }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(78px, 9vw, 128px) 0 clamp(58px, 7vw, 90px);
  border-bottom: 1px solid rgba(237,238,240,.075);
}
.heroGlow {
  position: absolute;
  inset: -18% -10% auto;
  height: 70vh;
  min-height: 560px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(134,239,172,.18), transparent 28rem),
    radial-gradient(circle at 50% 52%, rgba(31,217,120,.06), transparent 35rem);
  filter: blur(4px);
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse { 50% { opacity: .72; transform: scale(1.035); } }
.heroInner {
  z-index: 2;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.heroBadge,
.asciiLine,
.num,
.tag,
.pill,
.side a,
.card .go,
.visualStep b,
.lessonStrip b,
.teachCard span,
.explain b,
.actionBox b,
.proofSteps span {
  font-family: var(--mono);
}
.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  margin-bottom: 24px;
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(134,239,172,.10), rgba(134,239,172,.045));
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(134,239,172,.42);
  animation: pulseDot 2.4s infinite;
}
@keyframes pulseDot { 70% { box-shadow: 0 0 0 8px rgba(134,239,172,0); } }
.heroTitle {
  font-family: var(--display);
  font-size: clamp(52px, 8.8vw, 116px);
  line-height: .88;
  letter-spacing: -0.034em;
  word-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 26px;
  text-wrap: balance;
}
.heroLine { display: block; }
.heroLineTop {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.18em;
  flex-wrap: wrap;
}
.heroAccent,
.ansi {
  background: linear-gradient(120deg, #fafafa 0%, var(--accent) 44%, #bbf7d0 66%, var(--accent-hot) 100%);
  background-size: 190% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.heroAccent { animation: shimmer 5.5s linear infinite; }
@keyframes shimmer { to { background-position: 190% center; } }
.heroLead {
  max-width: 650px;
  margin: 0 auto 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}
.heroActions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 46px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  color: var(--ink);
  font-weight: 850;
  font-size: 14px;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease);
}
.btn:hover { transform: translateY(-1px); border-color: rgba(134,239,172,.24); background: rgba(255,255,255,.07); }
.btn.primary { color: #042410; background: linear-gradient(180deg, #c8fdd9 0%, var(--accent) 54%, #6ee792 100%); border-color: rgba(134,239,172,.8); box-shadow: var(--shadow-green), inset 0 -1px 0 rgba(4,36,16,.24); }
.btn.primary:hover { box-shadow: 0 22px 58px rgba(134,239,172,.20), inset 0 -1px 0 rgba(4,36,16,.24); }
.btn.lg { min-height: 52px; padding-inline: 24px; font-size: 15px; }
.btn .arrow { display: inline-block; margin-left: 5px; transition: transform 160ms var(--ease); }
.btn.primary:hover .arrow { transform: translateX(4px); }
.heroStats { display: inline-grid; grid-template-columns: auto 1px auto 1px auto; align-items: center; gap: 24px; padding: 15px 20px; border: 1px solid rgba(237,238,240,.08); border-radius: var(--radius-pill); background: rgba(24,25,27,.48); box-shadow: 0 16px 50px rgba(0,0,0,.18); }
.hsItem { min-width: 88px; }
.hsNum { font-family: var(--display); color: var(--accent); font-size: 32px; line-height: .9; font-weight: 700; letter-spacing: -0.035em; }
.hsLabel { margin-top: 5px; color: var(--dim); font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }
.hsSep { width: 1px; height: 32px; background: var(--line-strong); }

/* HERO ORBIT */
.heroOrbit { position: absolute; top: 50%; left: 50%; z-index: 1; width: 950px; height: 950px; transform: translate(-50%, -50%); pointer-events: none; opacity: .86; }
.orbitRing { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(134,239,172,.06); border-radius: 50%; transform: translate(-50%, -50%); }
.orbitRing.r1 { width: 390px; height: 390px; }
.orbitRing.r2 { width: 620px; height: 620px; opacity: .75; }
.orbitRing.r3 { width: 850px; height: 850px; opacity: .42; }
.orbitCore { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(134,239,172,.05), transparent 70%); }
.coreInner { color: rgba(134,239,172,.18); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.orbitNode { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(24,25,27,.82); border: 1px solid rgba(237,238,240,.10); box-shadow: 0 20px 60px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04); animation: orbitFloat 5s ease-in-out infinite; }
.orbitNode span { color: var(--muted); font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.orbitNode.n1 { transform: translate(-50%, -50%) rotate(0deg) translateX(196px) rotate(0deg); }
.orbitNode.n2 { transform: translate(-50%, -50%) rotate(60deg) translateX(196px) rotate(-60deg); animation-delay: .8s; }
.orbitNode.n3 { transform: translate(-50%, -50%) rotate(120deg) translateX(196px) rotate(-120deg); animation-delay: 1.6s; }
.orbitNode.n4 { transform: translate(-50%, -50%) rotate(180deg) translateX(310px) rotate(-180deg); animation-delay: 2.4s; }
.orbitNode.n5 { transform: translate(-50%, -50%) rotate(240deg) translateX(310px) rotate(-240deg); animation-delay: 3.2s; }
.orbitNode.n6 { transform: translate(-50%, -50%) rotate(300deg) translateX(310px) rotate(-300deg); animation-delay: 4s; }
@keyframes orbitFloat { 50% { border-color: rgba(134,239,172,.28); box-shadow: 0 24px 70px rgba(0,0,0,.28), 0 0 34px rgba(134,239,172,.08); } }

/* SHARED SECTIONS */
section { position: relative; padding: clamp(60px, 8vw, 96px) 0; border-top: 1px solid rgba(237,238,240,.07); }
.trust { padding: 34px 0; background: rgba(24,25,27,.28); }
.trustLabel { margin-bottom: 18px; color: var(--dim); text-align: center; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.trustLogos { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 4vw, 42px); flex-wrap: wrap; }
.trustLogo { color: var(--muted); opacity: .48; font-size: clamp(15px, 2vw, 20px); font-weight: 900; letter-spacing: -0.04em; transition: opacity 160ms var(--ease), color 160ms var(--ease); }
.trustLogo:hover { color: var(--ink); opacity: .9; }
.sectionHead { display: grid; grid-template-columns: minmax(170px, 240px) 1fr; gap: 36px; align-items: start; margin-bottom: 34px; }
.num, .asciiLine { color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.asciiLine { margin-bottom: 18px; }
.asciiLine::before { content: '// '; color: rgba(134,239,172,.45); }
.sectionHead h2,
.guideTitle h1,
.guideHero h1 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.026em;
  word-spacing: 0.08em;
  text-wrap: balance;
}
.sectionHead h2 { font-size: clamp(34px, 5.3vw, 66px); line-height: .91; }
.sectionHead p { max-width: 690px; margin-top: 12px; color: var(--muted); font-size: 17px; line-height: 1.54; text-wrap: pretty; }
.lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(18px, 2.15vw, 23px); line-height: 1.45; letter-spacing: -0.026em; text-wrap: pretty; }
.muted { color: var(--muted); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card {
  position: relative;
  min-height: 228px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(237,238,240,.075);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 90% 0%, rgba(134,239,172,.10), transparent 12rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--surface-1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.card::before { content: ""; position: absolute; inset: 0; opacity: 0; background: linear-gradient(135deg, rgba(134,239,172,.13), transparent 42%); transition: opacity 180ms var(--ease); }
.card::after { content: attr(data-emoji); position: absolute; right: -14px; bottom: -22px; color: var(--accent); opacity: .03; font-family: var(--display); font-size: 120px; font-weight: 700; line-height: 1; pointer-events: none; }
.card:hover { transform: translateY(-4px); border-color: rgba(134,239,172,.24); box-shadow: var(--shadow-card), 0 0 0 1px rgba(134,239,172,.035) inset; }
.card:hover::before { opacity: 1; }
.tag, .pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-ring);
  background: rgba(134,239,172,.075);
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.tag { padding: 6px 10px; margin-bottom: 18px; }
.pill { padding: 7px 11px; color: var(--muted); background: rgba(255,255,255,.035); border-color: var(--line-strong); }
.card h3 { position: relative; z-index: 1; margin-bottom: 10px; font-family: var(--display); font-size: 25px; line-height: 1.04; font-weight: 700; letter-spacing: -0.018em; text-wrap: balance; }
.card p { position: relative; z-index: 1; color: var(--muted); font-size: 15px; line-height: 1.54; text-wrap: pretty; }
.card .go { position: relative; z-index: 1; margin-top: auto; padding-top: 20px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.visualSteps, .noobStrip { display: grid; gap: 14px; }
.visualSteps { grid-template-columns: repeat(4, 1fr); margin: 28px 0 24px; }
.visualStep, .noobStrip div {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(237,238,240,.075);
  border-radius: var(--radius-panel);
  background: rgba(24,25,27,.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.visualStep::after { content: '→'; position: absolute; top: 50%; right: -15px; transform: translateY(-50%); color: rgba(134,239,172,.38); font-size: 17px; }
.visualStep:last-child::after { display: none; }
.visualStep b { display: block; margin-bottom: 7px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.visualStep span, .noobStrip span { color: var(--muted); font-size: 14px; font-weight: 650; }

/* VIDEOS */
.videoGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.videoCard { overflow: hidden; border: 1px solid rgba(237,238,240,.075); border-radius: var(--radius-card); background: var(--surface-1); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease); }
.videoCard:hover { transform: translateY(-4px); border-color: rgba(134,239,172,.24); box-shadow: var(--shadow-card-soft); }
.embed { position: relative; aspect-ratio: 16 / 9; background: #050606; overflow: hidden; }
.embed::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(134,239,172,.10), transparent 72%); pointer-events: none; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.videoMeta { padding: 18px; }
.videoMeta h3 { margin-bottom: 8px; font-family: var(--display); font-size: 18px; line-height: 1.1; font-weight: 700; letter-spacing: -0.016em; text-wrap: balance; }
.videoMeta p { color: var(--muted); font-size: 14px; line-height: 1.5; text-wrap: pretty; }

/* GUIDE PAGES */
.guideHero { padding: clamp(56px, 7vw, 88px) 0 clamp(34px, 5vw, 54px); background: linear-gradient(180deg, rgba(134,239,172,.035), transparent 70%); }
.guideTitle { max-width: 900px; }
.guideTitle h1, .guideHero h1 { max-width: 960px; margin-bottom: 16px; font-size: clamp(42px, 6vw, 78px); line-height: .93; }
.guideMeta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.layout { display: grid; grid-template-columns: 272px minmax(0, 1fr); gap: 26px; align-items: start; }
.side { position: sticky; top: 92px; height: max-content; padding: 10px; border: 1px solid rgba(237,238,240,.075); border-radius: var(--radius-card); background: rgba(24,25,27,.72); backdrop-filter: blur(18px); box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.side a { display: block; padding: 11px 12px; border-radius: 13px; color: var(--muted); font-size: 12px; font-weight: 750; letter-spacing: .01em; transition: color 150ms var(--ease), background 150ms var(--ease); }
.side a:hover, .side a.on { color: var(--ink); background: rgba(255,255,255,.055); }
.article { padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(237,238,240,.075); border-radius: var(--radius-card); background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008)), rgba(24,25,27,.88); box-shadow: var(--shadow-card-soft), inset 0 1px 0 rgba(255,255,255,.035); }
.article h2 { margin: 38px 0 12px; font-family: var(--display); font-size: clamp(27px, 3vw, 38px); line-height: 1.05; font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }
.article h2:first-child { margin-top: 0; }
.article p { max-width: 74ch; color: var(--ink-soft); font-size: 17px; line-height: 1.72; letter-spacing: -0.012em; text-wrap: pretty; }
.article p + p { margin-top: 10px; }
.article ol, .article ul { margin: 14px 0 4px; padding-left: 1.25rem; }
.article li { color: var(--ink-soft); font-size: 17px; line-height: 1.62; margin: 8px 0; padding-left: 3px; }
.article ol li::marker { color: var(--accent); font-weight: 900; }

/* TEACHING BLOCKS */
.teachGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 6px 0 18px; }
.teachCard, .lessonStrip > div, .callout, .check, .notice, .proofSteps div, .explain, .actionBox { border: 1px solid rgba(237,238,240,.08); border-radius: var(--radius-panel); background: var(--surface-2); box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.teachCard { padding: 20px; }
.teachCard span, .lessonStrip b, .explain b, .actionBox b, .proofSteps span { display: block; margin-bottom: 10px; color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .085em; text-transform: uppercase; }
.teachCard p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.56; }
.teachCard ul { list-style: none; padding: 0; margin: 0; }
.teachCard li { position: relative; padding-left: 21px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; margin: 7px 0; }
.teachCard.do { border-color: rgba(74,222,128,.20); background: linear-gradient(180deg, rgba(74,222,128,.055), rgba(33,34,37,.95)); }
.teachCard.dont { border-color: var(--danger-ring); background: linear-gradient(180deg, rgba(248,113,113,.055), rgba(33,34,37,.95)); }
.teachCard.do span { color: #4ade80; }
.teachCard.dont span { color: var(--danger); }
.teachCard.do li::before { content: '✓'; color: #4ade80; }
.teachCard.dont li::before { content: '✕'; color: var(--danger); }
.teachCard li::before { position: absolute; left: 0; top: 0; font-weight: 900; }
.lessonStrip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 18px 0 28px; }
.lessonStrip > div { padding: 18px; background: rgba(33,34,37,.78); }
.lessonStrip p { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.callout { padding: 18px 20px; margin: 18px 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.callout b { color: var(--ink); font-weight: 900; }
.callout.warn { background: var(--warn-soft); border-color: var(--warn-ring); }
.callout.warn b { color: var(--warn); }
.callout.danger { background: var(--danger-soft); border-color: var(--danger-ring); }
.callout.danger b { color: var(--danger); }
.callout.info { background: var(--info-soft); border-color: var(--info-ring); }
.callout.info b { color: var(--info); }
.checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.check { padding: 15px 16px; color: var(--ink-soft); font-size: 15px; font-weight: 750; }
.check::before { content: '✓'; margin-right: 9px; color: var(--accent); font-weight: 900; }
.notice { padding: 18px 20px; margin-top: 22px; color: var(--color-green-200); background: linear-gradient(180deg, rgba(134,239,172,.105), rgba(134,239,172,.045)); border-color: var(--accent-ring); font-size: 15.5px; line-height: 1.55; }
.notice b { color: var(--accent); font-weight: 900; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* AIRDROP PROOF FLOW */
.proofSteps { display: grid; gap: 12px; margin: 16px 0 20px; }
.proofSteps div { position: relative; padding: 20px 20px 20px 72px; background: linear-gradient(135deg, rgba(134,239,172,.075), rgba(33,34,37,.94) 44%); }
.proofSteps span { position: absolute; top: 20px; left: 20px; display: grid; place-items: center; width: 36px; height: 36px; margin: 0; border-radius: 999px; background: var(--accent); color: #052e16; font-size: 12px; box-shadow: 0 10px 28px rgba(134,239,172,.14); }
.proofSteps b { display: block; margin-bottom: 6px; font-family: var(--display); font-size: 22px; line-height: 1.08; letter-spacing: -0.014em; }
.proofSteps p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* MISC STRUCTURE */
.learnBlock, .two, .noobStrip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.noobStrip { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 24px; }
.noobStrip b { display: block; margin-bottom: 6px; color: var(--accent); font-family: var(--display); font-size: 30px; line-height: .98; letter-spacing: -0.018em; }
.explain, .actionBox { padding: 20px; }
.explain p, .actionBox p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.footer { padding: 54px 0; border-top: 1px solid rgba(237,238,240,.075); text-align: center; background: rgba(17,17,19,.55); }
.footer img { width: 188px; height: auto; max-width: 100%; margin-bottom: 16px; opacity: .52; }
.footer p { color: var(--dim); font-size: 13px; font-weight: 650; }
.terminal { overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-card); background: var(--surface-1); box-shadow: var(--shadow-card-soft); }
.termHead { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.035); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--danger); }
.dot:nth-child(2) { background: var(--warn); }
.dot:nth-child(3) { background: var(--accent); }
.termHead span:last-child { margin-left: 8px; color: var(--dim); font-family: var(--mono); font-size: 12px; }
.termBody { padding: 20px; color: var(--muted); font-family: var(--mono); font-size: 13px; line-height: 1.8; }
.termBody b { color: var(--accent); }
.termBody .white { color: var(--ink); }
.termBody .warn { color: var(--warn); }

/* ==================== AIRDROP TRACKER ==================== */
.airdropTracker { padding: 28px; border: 1px solid rgba(237,238,240,.075); border-radius: var(--radius-card); background: var(--surface-1); box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.trackerHead { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 24px; }
.trackerHead h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.035em; margin-bottom: 6px; font-family: var(--display); }
.trackerHead p { color: var(--muted); font-size: 15px; max-width: 480px; line-height: 1.5; }
.progressRing { position: relative; width: 90px; height: 90px; flex-shrink: 0; }
.progressRing svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ringBg { fill: none; stroke: var(--line); stroke-width: 6; }
.ringFill { fill: none; stroke: var(--accent); stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 0.5s var(--ease); filter: drop-shadow(0 0 6px rgba(134,239,172,.3)); }
.ringText { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; font-weight: 700; color: var(--accent); letter-spacing: -0.04em; }
.trackerModules { display: flex; flex-direction: column; gap: 8px; }
.trackerModule { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,.018); border: 1px solid var(--line); border-radius: var(--radius-input); transition: all 0.15s var(--ease); }
.trackerModule.done { border-color: rgba(134,239,172,.2); background: rgba(134,239,172,.04); }
.tmCheck { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 12px; color: transparent; flex-shrink: 0; transition: all 0.15s var(--ease); }
.trackerModule.done .tmCheck { border-color: var(--accent); background: var(--accent); color: #052e16; font-weight: 700; }
.tmInfo { flex: 1; }
.tmInfo b { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.tmInfo span { font-size: 12px; color: var(--dim); font-family: var(--mono); }
.tmActions { display: flex; gap: 6px; flex-shrink: 0; }
.tmActions .btn { padding: 6px 12px; font-size: 12px; }
.trackerFooter { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.trackerStatus { font-size: 14px; color: var(--muted); }
.trackerStatus b { color: var(--ink); }
.trackerStatus.eligible b { color: var(--accent); }
#resetProgress { padding: 8px 14px; font-size: 12px; opacity: 0.6; }
#resetProgress:hover { opacity: 1; }

/* TIMELINE */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 8px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 20px; bottom: 20px; width: 2px; background: var(--line); }
.tlItem { display: flex; gap: 20px; padding: 16px 0; position: relative; }
.tlDot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line); background: var(--bg); flex-shrink: 0; position: relative; z-index: 1; margin-top: 2px; }
.tlItem.done .tlDot { border-color: var(--accent); background: var(--accent); }
.tlItem.active .tlDot { border-color: var(--accent); background: var(--bg); box-shadow: 0 0 0 4px rgba(134,239,172,.06); animation: tlPulse 2s ease-in-out infinite; }
@keyframes tlPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(134,239,172,.06); } 50% { box-shadow: 0 0 0 8px rgba(134,239,172,.02); } }
.tlContent b { display: block; font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.tlContent p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.tlItem:not(.done):not(.active) .tlContent b { color: var(--muted); }

/* AIRDROP CTA */
.airdropCTA { text-align: center; padding: 48px 24px; background: var(--surface-1); border: 1px solid rgba(134,239,172,.16); border-radius: var(--radius-card); box-shadow: 0 6px 28px rgba(134,239,172,.06); }
.airdropCTA h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.05em; margin-bottom: 10px; font-family: var(--display); }
.airdropCTA p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.airdropCTA .actions { justify-content: center; }

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

@media (max-width: 1100px) {
  .heroOrbit { opacity: .38; transform: translate(-50%, -50%) scale(.88); }
  .cards, .videoGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .layout { grid-template-columns: 230px minmax(0, 1fr); }
}

@media (max-width: 960px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .nav { min-height: 66px; }
  .navlinks, .ctaSmall { display: none; }
  .brand img { width: 134px; }
  .hero { min-height: auto; padding: 74px 0 56px; }
  .heroOrbit { display: none; }
  .heroTitle { font-size: clamp(44px, 12vw, 68px); letter-spacing: -0.022em; line-height: .92; }
  .heroLead, .lead { font-size: 17px; }
  .heroStats { grid-template-columns: 1fr; border-radius: 24px; gap: 14px; width: min(360px, 100%); }
  .hsSep { width: 100%; height: 1px; }
  .sectionHead, .layout, .two, .learnBlock, .teachGrid, .lessonStrip { grid-template-columns: 1fr; }
  .cards, .videoGrid, .visualSteps, .noobStrip { grid-template-columns: 1fr; }
  .visualStep::after { display: none; }
  .side { position: relative; top: 0; }
  .guideTitle h1, .guideHero h1 { font-size: clamp(34px, 10vw, 52px); letter-spacing: -0.022em; }
  .article { padding: 22px; }
  .article p, .article li { font-size: 16px; }
  .checklist { grid-template-columns: 1fr; }
  .trustLogos { gap: 18px; }
  .trustLogo { font-size: 15px; }
  .proofSteps div { padding-left: 66px; }
}

@media (max-width: 520px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  section { padding: 52px 0; }
  .heroActions, .actions { flex-direction: column; }
  .btn, .btn.lg { width: 100%; }
  .card { min-height: 196px; padding: 22px; }
  .guideTitle h1, .guideHero h1 { font-size: clamp(31px, 11.5vw, 44px); }
  .heroTitle { font-size: clamp(40px, 15vw, 58px); }
  .proofSteps div { padding: 18px; }
  .proofSteps span { position: static; margin-bottom: 12px; }
  .trackerHead { flex-direction: column; }
  .progressRing { width: 72px; height: 72px; }
  .trackerModule { flex-wrap: wrap; }
  .tmActions { width: 100%; margin-top: 4px; }
}
