:root {
  --bg: #080b09;
  --bg-soft: #111611;
  --panel: #151b16;
  --panel-2: #1b231c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f3de;
  --muted: #9ca79e;
  --lime: #adff18;
  --lime-2: #d4ff65;
  --yellow: #ffd84a;
  --orange: #ff8a2b;
  --red: #ff4d45;
  --blue: #3da5ff;
  --purple: #9d69ff;
  --black: #050706;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(173, 255, 24, 0.08), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(157, 105, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #080b09 0%, #0b100c 46%, #070907 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #071006; background: var(--lime); }

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

#sewer-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.top-alert {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 7px 18px;
  color: #071006;
  background: var(--lime);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #071006; box-shadow: 0 0 0 4px rgba(7, 16, 6, 0.12); }
.alert-separator { width: 1px; height: 13px; background: rgba(7, 16, 6, 0.35); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 9, 0.84);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-shell {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #071006;
  background: var(--lime);
  border: 2px solid #071006;
  border-radius: 48% 52% 48% 52% / 55% 46% 54% 45%;
  box-shadow: 4px 4px 0 #f0ffb3;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  transform: rotate(-5deg);
}
.brand-name { display: grid; gap: 3px; line-height: 1; }
.brand-name strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}
.brand-name small { color: var(--lime); font-size: 0.64rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.site-nav a { position: relative; color: rgba(247, 243, 222, 0.7); font-size: 0.81rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; transition: color 180ms ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--lime); transition: right 180ms ease; }
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { right: 0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  color: #061006;
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 11px;
  box-shadow: 0 10px 35px rgba(173, 255, 24, 0.18);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(173, 255, 24, 0.28); }
.header-cta svg { width: 18px; height: 18px; }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 0; color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 12px; }
.nav-toggle svg { width: 24px; height: 24px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  gap: 68px;
  align-items: center;
  min-height: calc(100svh - 116px);
  padding-top: 86px;
  padding-bottom: 90px;
}
.hero-grid-bg {
  position: absolute;
  inset: 5% -10% 0;
  z-index: -1;
  opacity: .22;
  background-image: linear-gradient(rgba(173,255,24,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(173,255,24,.14) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 72%, transparent);
  transform: perspective(720px) rotateX(66deg) translateY(20%);
  transform-origin: center bottom;
}

.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--lime); font-size: .74rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-line { width: 42px; height: 2px; background: var(--lime); box-shadow: 0 0 16px rgba(173,255,24,.6); }
.hero h1, .section-heading h2, .token-copy h2, .roadmap-intro h2, .community-copy h2 {
  margin: 19px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 { max-width: 760px; font-size: clamp(4rem, 8.3vw, 8rem); line-height: .84; }
.hero h1 span { display: block; color: var(--lime); text-shadow: 5px 5px 0 rgba(14, 36, 13, .8); }
.hero-lead { max-width: 680px; margin: 26px 0 0; color: rgba(247,243,222,.73); font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.72; }
.hero-actions, .buy-actions, .community-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { color: #061006; background: var(--lime); box-shadow: 0 16px 45px rgba(173,255,24,.18); }
.btn-primary:hover { transform: translateY(-3px); background: var(--lime-2); }
.btn-ghost, .btn-dark { color: var(--text); background: rgba(255,255,255,.04); border-color: var(--line); }
.btn-ghost:hover, .btn-dark:hover { transform: translateY(-3px); border-color: rgba(173,255,24,.48); background: rgba(173,255,24,.07); }

.contract-panel {
  width: min(100%, 650px);
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 27px;
  padding: 14px 14px 14px 19px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.contract-copy { min-width: 0; display: grid; gap: 6px; }
.contract-copy span { color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contract-copy strong { max-width: 100%; overflow: hidden; color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.copy-contract { display: inline-flex; align-items: center; gap: 8px; min-height: 45px; padding: 0 14px; color: #081008; background: var(--lime); border: 0; border-radius: 9px; cursor: pointer; font-size: .72rem; font-weight: 950; text-transform: uppercase; }
.copy-contract svg { width: 18px; height: 18px; }

.hero-metrics { display: flex; flex-wrap: wrap; gap: 16px 34px; margin-top: 29px; }
.hero-metrics div { display: grid; gap: 3px; }
.hero-metrics strong { color: var(--text); font-family: Impact, sans-serif; font-size: 1.5rem; letter-spacing: .05em; }
.hero-metrics span { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.hero-visual { position: relative; min-height: 630px; display: grid; place-items: center; }
.visual-frame {
  position: relative;
  width: min(100%, 505px);
  aspect-ratio: .77;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 34px 16px 34px 16px;
  background: #151b16;
  box-shadow: 18px 18px 0 rgba(173,255,24,.92), 30px 30px 0 rgba(0,0,0,.55), var(--shadow);
  transform: rotate(1.5deg);
  z-index: 2;
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.02) contrast(1.03); }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,8,6,.92)); }
.visual-caption { position: absolute; left: 24px; right: 24px; bottom: 22px; display: grid; gap: 5px; }
.visual-caption span { color: var(--lime); font-size: .65rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.visual-caption strong { max-width: 390px; font-size: .82rem; line-height: 1.45; }
.visual-corner { position: absolute; z-index: 3; width: 50px; height: 50px; pointer-events: none; }
.corner-one { top: 14px; left: 14px; border-top: 3px solid var(--lime); border-left: 3px solid var(--lime); }
.corner-two { right: 14px; bottom: 14px; border-right: 3px solid var(--lime); border-bottom: 3px solid var(--lime); }
.hero-sticker { position: absolute; z-index: 4; padding: 11px 15px; color: #081008; border: 2px solid #081008; box-shadow: 5px 5px 0 rgba(0,0,0,.55); font-family: Impact, sans-serif; font-size: 1rem; letter-spacing: .07em; transform: rotate(-7deg); }
.sticker-a { left: -8px; top: 75px; background: var(--yellow); }
.sticker-b { right: -8px; bottom: 110px; background: var(--red); transform: rotate(6deg); }
.orbit-ring { position: absolute; border: 1px dashed rgba(173,255,24,.32); border-radius: 50%; animation: spin 18s linear infinite; }
.ring-one { width: 560px; height: 560px; }
.ring-two { width: 450px; height: 450px; animation-direction: reverse; animation-duration: 14s; }

.ticker { overflow: hidden; border-block: 1px solid rgba(173,255,24,.3); background: var(--lime); color: #061006; transform: rotate(-1deg) scale(1.02); }
.ticker-track { display: flex; width: max-content; min-width: 100%; animation: marquee 25s linear infinite; will-change: transform; }
.ticker-group { flex: 0 0 auto; display: flex; align-items: center; gap: 22px; min-width: max-content; padding-right: 22px; }
.ticker span { font-family: Impact, sans-serif; font-size: 1.16rem; letter-spacing: .08em; text-transform: uppercase; }
.ticker i { width: 8px; height: 8px; background: #061006; transform: rotate(45deg); }

.mission, .squad, .token-section, .how-to-buy, .roadmap, .asset-lab, .community { padding-top: 126px; }
.section-heading { display: grid; grid-template-columns: minmax(0, .92fr) minmax(320px, .62fr); gap: 70px; align-items: end; }
.section-heading.centered { grid-template-columns: 1fr; max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading.centered .kicker { justify-content: center; }
.section-heading h2, .token-copy h2, .roadmap-intro h2, .community-copy h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); line-height: .9; }
.section-heading > p, .section-heading > div + p, .token-copy > p, .community-copy > p { margin: 0; color: rgba(247,243,222,.66); font-size: 1rem; line-height: 1.78; }
.section-heading.centered > p { max-width: 650px; margin: 18px auto 0; }

.thesis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.thesis-card, .step-card {
  position: relative;
  min-height: 320px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform 220ms ease, border-color 220ms ease;
}
.thesis-card::before, .step-card::before { content: ""; position: absolute; width: 180px; height: 180px; left: var(--mx, 50%); top: var(--my, 50%); transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(173,255,24,.13), transparent 70%); pointer-events: none; opacity: 0; transition: opacity 180ms ease; }
.thesis-card:hover, .step-card:hover { transform: translateY(-7px); border-color: rgba(173,255,24,.38); }
.thesis-card:hover::before, .step-card:hover::before { opacity: 1; }
.card-index { position: absolute; right: 22px; top: 19px; color: rgba(255,255,255,.13); font-family: Impact, sans-serif; font-size: 3.6rem; }
.icon-box, .step-icon { width: 58px; height: 58px; display: grid; place-items: center; color: #071006; border-radius: 14px; }
.icon-box svg, .step-icon svg { width: 28px; height: 28px; }
.icon-box.green, .step-icon { background: var(--lime); }
.icon-box.orange { background: var(--orange); }
.icon-box.purple { background: var(--purple); color: #fff; }
.thesis-card h3, .step-card h3, .squad-card h3, .roadmap-item h3 { margin: 68px 0 0; font-family: Impact, sans-serif; font-size: 2rem; letter-spacing: .035em; text-transform: uppercase; }
.thesis-card p, .step-card p, .squad-card p, .roadmap-item p { margin: 13px 0 0; color: rgba(247,243,222,.64); line-height: 1.68; }

.squad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px; }
.squad-card { position: relative; min-height: 400px; padding: 25px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #121712; isolation: isolate; }
.squad-card::before { content: ""; position: absolute; inset: auto -20% -30% 15%; height: 70%; background: var(--unit); filter: blur(70px); opacity: .18; z-index: -1; }
.squad-card.blue { --unit: var(--blue); }
.squad-card.red { --unit: var(--red); }
.squad-card.purple { --unit: var(--purple); }
.squad-card.orange { --unit: var(--orange); }
.squad-top { display: flex; align-items: center; justify-content: space-between; color: var(--unit); font-family: Impact, sans-serif; }
.squad-top span { font-size: 3.2rem; }
.squad-top i { width: 18px; height: 18px; background: var(--unit); border-radius: 50%; box-shadow: 0 0 24px var(--unit); }
.squad-card h3 { margin-top: 122px; font-size: 2.35rem; }
.squad-label { position: absolute; left: 25px; bottom: 23px; color: var(--unit); font-size: .68rem; font-weight: 950; letter-spacing: .18em; }

.token-panel {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
  gap: 70px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(173,255,24,.22);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(173,255,24,.07), transparent 45%),
    #101610;
  box-shadow: var(--shadow);
}
.token-copy > p { margin-top: 20px; max-width: 600px; }
.token-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 31px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--line); }
.token-list div { min-width: 0; display: grid; gap: 7px; padding: 18px; background: #101510; }
.token-list span { color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.token-list strong { overflow: hidden; font-size: .9rem; text-overflow: ellipsis; white-space: nowrap; }
.shell-graphic { position: relative; width: min(100%, 430px); aspect-ratio: 1; margin-inline: auto; display: grid; place-items: center; border: 1px solid rgba(173,255,24,.18); border-radius: 50%; background: radial-gradient(circle, rgba(173,255,24,.2), rgba(173,255,24,.03) 36%, transparent 68%); box-shadow: inset 0 0 80px rgba(173,255,24,.06); animation: float 6s ease-in-out infinite; }
.shell-graphic::before, .shell-graphic::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(173,255,24,.25); }
.shell-graphic::before { inset: 8%; }
.shell-graphic::after { inset: 18%; }
.shell-core { position: relative; z-index: 2; width: 55%; aspect-ratio: 1; display: grid; place-items: center; align-content: center; border: 3px solid #081008; border-radius: 48% 52% 48% 52% / 55% 46% 54% 45%; color: #071006; background: var(--lime); box-shadow: 10px 10px 0 rgba(255,255,255,.08); transform: rotate(-4deg); }
.shell-core span { font-family: Impact, sans-serif; font-size: 3.2rem; line-height: 1; }
.shell-core strong { font-family: Impact, sans-serif; font-size: 1.15rem; letter-spacing: .05em; }
.shell-line { position: absolute; width: 30%; height: 1px; background: rgba(173,255,24,.45); transform-origin: left center; }
.line-a { left: 50%; top: 50%; transform: rotate(0deg); }
.line-b { left: 50%; top: 50%; transform: rotate(90deg); }
.line-c { left: 50%; top: 50%; transform: rotate(45deg); }
.line-d { left: 50%; top: 50%; transform: rotate(135deg); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 48px; }
.step-card { min-height: 360px; }
.step-number { position: absolute; right: 22px; top: 20px; color: rgba(255,255,255,.14); font-family: Impact, sans-serif; font-size: 3.4rem; }
.step-card h3 { margin-top: 75px; font-size: 1.75rem; }
.buy-actions { justify-content: center; }

.roadmap-intro { max-width: 800px; }
.roadmap-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.roadmap-track::before { content: ""; position: absolute; top: 16px; left: 2%; right: 2%; height: 1px; background: linear-gradient(90deg, var(--lime), rgba(173,255,24,.15)); }
.roadmap-item { position: relative; padding: 48px 20px 0 0; }
.roadmap-dot { position: absolute; top: 8px; left: 0; width: 17px; height: 17px; border: 3px solid #091009; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 1px var(--lime), 0 0 22px rgba(173,255,24,.4); }
.roadmap-item > span { color: var(--lime); font-size: .68rem; font-weight: 950; letter-spacing: .16em; }
.roadmap-item h3 { margin-top: 12px; font-size: 1.85rem; }

.asset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.asset-placeholder { position: relative; min-height: 360px; display: grid; place-items: center; align-content: center; gap: 13px; overflow: hidden; border: 1px dashed rgba(173,255,24,.34); border-radius: var(--radius); background: linear-gradient(145deg, rgba(173,255,24,.04), rgba(255,255,255,.02)); text-align: center; }
.asset-placeholder::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.05); border-radius: 19px; pointer-events: none; }
.placeholder-code { position: absolute; top: 24px; left: 24px; color: var(--lime); font-size: .66rem; font-weight: 950; letter-spacing: .15em; }
.placeholder-icon { width: 92px; height: 92px; display: grid; place-items: center; color: #061006; background: var(--lime); border-radius: 24px 12px 24px 12px; box-shadow: 8px 8px 0 rgba(255,255,255,.08); transform: rotate(-4deg); }
.placeholder-icon span { font-family: Impact, sans-serif; font-size: 3.4rem; }
.asset-placeholder strong { margin-top: 14px; font-family: Impact, sans-serif; font-size: 1.65rem; letter-spacing: .035em; text-transform: uppercase; }
.asset-placeholder small { color: var(--muted); }
.asset-art { isolation: isolate; border-style: solid; background: #111811; }
.asset-art::after { z-index: 2; border-color: rgba(255,255,255,.22); }
.asset-art img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.07); transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease; }
.asset-art:hover img { transform: scale(1.07) rotate(-1deg); filter: saturate(1.25) contrast(1.1); }
.asset-art-main:last-child img { object-position: 72% center; }
.asset-art-icon img { inset: 15%; width: 70%; height: 70%; object-fit: contain; filter: drop-shadow(0 16px 24px rgba(0,0,0,.5)); }
.asset-art::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,7,6,.02) 26%, rgba(5,7,6,.93) 100%); pointer-events: none; }
.asset-art-copy { position: absolute; z-index: 3; right: 28px; bottom: 27px; left: 28px; display: grid; gap: 4px; text-align: left; }
.asset-art .placeholder-code { z-index: 3; }
.asset-art-copy strong { margin: 0; font-size: clamp(1.55rem, 2.2vw, 2.25rem); line-height: .95; }
.asset-art-copy small { color: var(--lime-2); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.community { padding-bottom: 118px; }
.community-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); gap: 50px; align-items: center; overflow: hidden; padding: 56px; border: 1px solid rgba(173,255,24,.34); border-radius: 36px; background: var(--lime); color: #071006; box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.community-panel::before { content: ""; position: absolute; width: 480px; height: 480px; right: -180px; top: -260px; border: 1px solid rgba(7,16,6,.24); border-radius: 50%; }
.community-copy .kicker { color: #071006; }
.community-copy h2 { max-width: 790px; }
.community-copy > p { color: rgba(7,16,6,.69); max-width: 750px; margin-top: 20px; }
.social-button { min-height: 52px; display: inline-flex; align-items: center; gap: 10px; padding: 0 17px; border: 1px solid rgba(7,16,6,.27); border-radius: 11px; background: #071006; color: var(--text); font-size: .77rem; font-weight: 950; text-transform: uppercase; }
.social-button svg { width: 21px; height: 21px; }
.community-mark { position: relative; z-index: 1; display: grid; justify-items: end; line-height: .83; transform: rotate(-4deg); }
.community-mark span, .community-mark strong { font-family: Impact, sans-serif; font-size: clamp(4rem, 8vw, 7.5rem); }
.community-mark span { color: transparent; -webkit-text-stroke: 2px #071006; }
.community-mark small { margin-top: 15px; font-weight: 950; letter-spacing: .15em; }

.site-footer { padding-top: 44px; padding-bottom: 100px; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 25px; color: var(--muted); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.footer-bottom { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 50px; align-items: end; margin-top: 44px; padding-top: 27px; border-top: 1px solid var(--line); }
.footer-bottom p { max-width: 900px; margin: 0; color: rgba(247,243,222,.43); font-size: .72rem; line-height: 1.65; }
.footer-bottom span { color: var(--muted); font-size: .7rem; font-weight: 900; }

.mobile-buy-bar { display: none; }
.toast { position: fixed; left: 50%; bottom: 30px; z-index: 100; padding: 12px 17px; color: #071006; background: var(--lime); border-radius: 10px; box-shadow: var(--shadow); font-size: .76rem; font-weight: 950; text-transform: uppercase; transform: translate(-50%, 120px); opacity: 0; transition: 220ms ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 260ms; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header.nav-open .site-nav {
    position: fixed;
    inset: 116px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 20px 120px;
    background: rgba(8,11,9,.98);
    backdrop-filter: blur(20px);
  }
  .site-header.nav-open .site-nav a { padding: 20px 6px; border-bottom: 1px solid var(--line); font-family: Impact, sans-serif; font-size: 2rem; }
  .site-header.nav-open .site-nav a::after { display: none; }
  .hero { grid-template-columns: 1fr; gap: 72px; padding-top: 75px; }
  .hero-content { max-width: 850px; }
  .hero-visual { min-height: 690px; }
  .visual-frame { width: min(78vw, 520px); }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .thesis-grid { grid-template-columns: 1fr 1fr; }
  .squad-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-track { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .roadmap-track::before { display: none; }
  .asset-grid { grid-template-columns: 1fr 1fr; }
  .token-panel { grid-template-columns: 1fr; }
  .shell-graphic { margin-top: 12px; }
  .community-panel { grid-template-columns: 1fr; }
  .community-mark { justify-items: start; }
}

@media (max-width: 720px) {
  .section-shell { width: min(100% - 24px, 1240px); }
  .top-alert { gap: 8px; font-size: .56rem; letter-spacing: .1em; }
  .site-header { min-height: 72px; padding: 11px 12px; }
  .brand-shell { width: 40px; height: 40px; font-size: 1.4rem; }
  .brand-name strong { font-size: 1rem; }
  .brand-name small { font-size: .55rem; }
  .site-header.nav-open .site-nav { inset: 106px 0 0; }
  .hero { min-height: auto; gap: 54px; padding-top: 62px; padding-bottom: 78px; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5.3rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .contract-panel { align-items: stretch; flex-direction: column; padding: 16px; }
  .copy-contract { justify-content: center; }
  .hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-metrics strong { font-size: 1.25rem; }
  .hero-metrics span { font-size: .56rem; }
  .hero-visual { min-height: 505px; }
  .visual-frame { width: min(88vw, 390px); border-radius: 25px 12px 25px 12px; box-shadow: 11px 11px 0 rgba(173,255,24,.92), 19px 19px 0 rgba(0,0,0,.55), var(--shadow); }
  .visual-caption { left: 17px; right: 17px; bottom: 17px; }
  .visual-caption strong { font-size: .68rem; }
  .ring-one { width: 410px; height: 410px; }
  .ring-two { width: 330px; height: 330px; }
  .hero-sticker { padding: 8px 10px; font-size: .75rem; }
  .sticker-a { left: 0; top: 40px; }
  .sticker-b { right: 0; bottom: 70px; }
  .mission, .squad, .token-section, .how-to-buy, .roadmap, .asset-lab, .community { padding-top: 90px; }
  .section-heading h2, .token-copy h2, .roadmap-intro h2, .community-copy h2 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .thesis-grid, .squad-grid, .steps-grid, .asset-grid, .roadmap-track { grid-template-columns: 1fr; }
  .thesis-card, .step-card { min-height: 290px; }
  .squad-card { min-height: 330px; }
  .squad-card h3 { margin-top: 70px; }
  .token-panel, .community-panel { padding: 28px 20px; border-radius: 25px; }
  .token-list { grid-template-columns: 1fr; }
  .shell-graphic { width: min(82vw, 370px); }
  .roadmap-item { padding-right: 0; }
  .asset-placeholder { min-height: 310px; }
  .asset-art { min-height: 345px; }
  .asset-art-icon { min-height: 300px; }
  .asset-art-copy { right: 25px; bottom: 25px; left: 25px; }
  .ticker { transform: none; }
  .ticker-track { animation-duration: 18s; }
  .ticker-group { gap: 16px; padding-right: 16px; }
  .ticker span { font-size: .96rem; }
  .ticker i { width: 7px; height: 7px; }
  .community-mark span, .community-mark strong { font-size: clamp(3.6rem, 21vw, 6rem); }
  .footer-top, .footer-bottom { display: grid; grid-template-columns: 1fr; }
  .footer-links { gap: 17px; }
  .site-footer { padding-bottom: 130px; }
  .mobile-buy-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 45;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 16px;
    border: 1px solid rgba(173,255,24,.35);
    border-radius: 15px;
    background: rgba(7,10,8,.94);
    box-shadow: 0 20px 60px rgba(0,0,0,.48);
    backdrop-filter: blur(15px);
  }
  .mobile-buy-bar div { display: grid; gap: 3px; }
  .mobile-buy-bar span { font-family: Impact, sans-serif; font-size: 1.2rem; }
  .mobile-buy-bar strong { color: var(--muted); font-size: .55rem; letter-spacing: .11em; text-transform: uppercase; }
  .mobile-buy-bar a { min-height: 46px; display: inline-flex; align-items: center; gap: 7px; padding: 0 14px; color: #071006; background: var(--lime); border-radius: 10px; font-size: .7rem; font-weight: 950; text-transform: uppercase; }
  .mobile-buy-bar svg { width: 17px; height: 17px; }
  .toast { bottom: 90px; }
}

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