/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Tokens ── */
:root {
  --copper:       #c58b62;
  --copper-deep:  #9f6946;
  --copper-light: #deb291;
  --black:        #070607;
  --dark:         #110c09;
  --mid:          #1b140f;
  --off-white:    #f4ece6;
  --muted:        #ad9481;
  --radius:       12px;
  --max-w:        1100px;
}

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(197, 139, 98, 0.16), transparent 34%),
    radial-gradient(circle at 85% 88%, rgba(159, 105, 70, 0.12), transparent 28%),
    linear-gradient(180deg, #090707 0%, #070607 100%);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 115, 51, 0.2);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 14px;
  min-width: 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--off-white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav-logo img {
  width: 75px;
  height: 75px;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  white-space: nowrap;
  transition: color 0.2s;
}

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

.nav-links a.active,
.nav-links a.nav-link--active {
  color: var(--copper);
  font-weight: 400;
}

.btn-buy {
  background: var(--copper);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-buy:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
}

/* ── Copper Price Ticker ── */
.price-ticker {
  background: linear-gradient(90deg, rgba(17,12,9,0.95), rgba(27,20,15,0.95));
  border-bottom: 1px solid rgba(184,115,51,0.25);
  padding: 12px 0;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
}

.price-ticker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.price-ticker-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.price-ticker-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--copper);
  font-family: 'Space Mono', monospace;
  min-width: 80px;
}

.price-ticker-unit {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.price-ticker-change {
  font-size: 13px;
  font-weight: 600;
}
.price-ticker-change--up   { color: #4caf50; }
.price-ticker-change--down { color: #ef5350; }

.price-ticker-updated {
  font-size: 11px;
  color: rgba(173,148,129,0.6);
}

.price-ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.price-ticker--loading .price-ticker-value {
  color: var(--muted);
  font-size: 14px;
}

.price-ticker--error .price-ticker-value {
  color: var(--muted);
  font-size: 13px;
}

.price-ticker-target {
  margin-top: 8px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 0 24px 4px;
}

.price-ticker-target-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Space Grotesk', sans-serif;
}

.price-ticker-target-value {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  color: var(--copper-light);
  font-weight: 700;
}

/* ── CDI Dashboard ── */
.cdi {
  padding: 88px 0;
  background: linear-gradient(180deg, rgba(17,12,9,0.45), rgba(7,6,7,0.8));
  border-top: 1px solid rgba(184,115,51,0.2);
  border-bottom: 1px solid rgba(184,115,51,0.2);
}

.cdi-header {
  margin-bottom: 32px;
}

.cdi-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cdi-sub {
  max-width: 760px;
  font-size: 16px;
  color: var(--muted);
}

.cdi-updated {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(173,148,129,0.8);
  font-family: 'Space Mono', monospace;
}

.cdi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cdi-card {
  background: rgba(27,20,15,0.9);
  border: 1px solid rgba(184,115,51,0.22);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.cdi-card--live {
  border-color: rgba(197,139,98,0.6);
  background: linear-gradient(145deg, rgba(184,115,51,0.2), rgba(27,20,15,0.92));
}

.cdi-stream {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cdi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(197, 139, 98, 0.45);
  background: rgba(197, 139, 98, 0.12);
  color: var(--copper-light);
  font-size: 13px;
  line-height: 1;
}

.cdi-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  line-height: 1.35;
  color: var(--off-white);
  margin-bottom: 12px;
}

.cdi-status,
.cdi-date {
  font-size: 13px;
  color: var(--copper-light);
  font-family: 'Space Mono', monospace;
}

.cdi-date {
  color: var(--muted);
  margin-top: 4px;
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184,115,51,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-symbol {
  width: 330px;
  height: 330px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-symbol img {
  width: 285px;
  height: 285px;
  border-radius: 22px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero h1 span { color: var(--copper); }

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--copper);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--copper);
}

.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--copper);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid var(--copper);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(184,115,51,0.1);
  transform: translateY(-2px);
}

.hero-disclaimer {
  margin-top: 32px;
  font-size: 12px;
  color: var(--muted);
}

/* ── Stats ── */
.stats {
  background: var(--dark);
  border-top: 1px solid rgba(184,115,51,0.2);
  border-bottom: 1px solid rgba(184,115,51,0.2);
  padding: 64px 0;
}

.stats-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 48px;
  font-family: 'Space Grotesk', sans-serif;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--mid);
  border: 1px solid rgba(184,115,51,0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Thesis ── */
.thesis {
  padding: 96px 0;
}

.section-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.thesis h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 24px;
}

.thesis h2 span { color: var(--copper); }

.thesis p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.thesis-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thesis-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--off-white);
}

.thesis-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--copper);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 7px;
  border-radius: 1px;
}

.cdi-inline-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--copper-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
}

.cdi-inline-link:hover {
  color: var(--off-white);
}

/* ── Roadmap ── */
.roadmap {
  background: var(--dark);
  padding: 96px 0;
  border-top: 1px solid rgba(184,115,51,0.2);
  border-bottom: 1px solid rgba(184,115,51,0.2);
}

.roadmap h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 64px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.roadmap-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--copper), rgba(184,115,51,0.3));
}

.stage-card {
  background: var(--mid);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.stage-card.active {
  border-color: var(--copper);
  background: rgba(184,115,51,0.08);
}

.stage-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.stage-card.active .stage-dot {
  background: var(--copper);
  box-shadow: 0 0 16px rgba(184,115,51,0.5);
}

.stage-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.stage-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.stage-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.stage-badge {
  display: inline-block;
  background: var(--copper);
  color: #fff;
  font-size: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 16px;
}

.roadmap-summary {
  margin-top: 36px;
  padding: 24px;
  background: rgba(184,115,51,0.06);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
}

.roadmap-summary p {
  color: var(--off-white);
  font-size: 15px;
  margin-bottom: 14px;
}

.gate-tracker {
  margin-top: 22px;
  border-top: 1px solid rgba(184,115,51,0.2);
  padding-top: 20px;
}

.gate-tracker h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--off-white);
  font-size: 18px;
  margin-bottom: 12px;
}

.tracker-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.tracker-table th,
.tracker-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(184,115,51,0.12);
  font-size: 13px;
}

.tracker-table th {
  font-family: 'Space Mono', monospace;
  color: var(--copper-light);
  letter-spacing: 0.04em;
  background: rgba(184,115,51,0.08);
}

.tracker-table td {
  color: var(--muted);
}

.tracker-table tr:last-child td {
  border-bottom: 0;
}

.stage-gates {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
}

.stage-gates li {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stage-gates li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 29ers ── */
.identity-section {
  padding: 84px 0;
  border-top: 1px solid rgba(184,115,51,0.12);
  border-bottom: 1px solid rgba(184,115,51,0.12);
  background: linear-gradient(180deg, rgba(184,115,51,0.04), rgba(184,115,51,0));
}

.identity-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.identity-copy {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* ── Vision ── */
.vision {
  padding: 96px 0;
  text-align: center;
}

.vision-quote {
  max-width: 700px;
  margin: 0 auto;
}

.vision-quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: var(--off-white);
  margin-bottom: 24px;
}

.vision-quote .tagline-line {
  font-size: clamp(30px, 5.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.vision-quote p span { color: var(--copper); }

.vision-quote .muted {
  font-size: 16px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

/* ── Transparency ── */
.transparency {
  background: var(--dark);
  border-top: 1px solid rgba(184,115,51,0.2);
  border-bottom: 1px solid rgba(184,115,51,0.2);
  padding: 96px 0;
}

.transparency h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 48px;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.transparency-card {
  background: var(--mid);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
}

.transparency-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--copper);
  font-family: 'Space Grotesk', sans-serif;
}

.transparency-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Community CTA ── */
.community {
  padding: 96px 0;
  text-align: center;
}

.community h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.community p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 48px;
}

.community-report {
  max-width: 860px;
  margin: 0 auto 28px;
  background: rgba(184,115,51,0.08);
  border: 1px solid rgba(184,115,51,0.22);
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 15px;
  line-height: 1.65;
}

.community-report a {
  color: var(--copper-light);
  text-decoration: underline;
}

.founder-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--copper);
  background: rgba(184,115,51,0.08);
  border-radius: 8px;
  color: var(--off-white);
  font-size: 15px;
  line-height: 1.7;
}

.architecture-teaser {
  margin-top: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--copper-light);
}

.wallet-block {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(197, 139, 98, 0.25);
  border-radius: var(--radius);
  background: rgba(17, 12, 9, 0.55);
}

.wallet-block .section-label { margin-bottom: 16px; }

.wallet-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.wallet-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border: 1px solid rgba(197, 139, 98, 0.18);
  border-radius: 8px;
  background: rgba(7, 6, 7, 0.5);
}

.wallet-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--copper-light);
  flex-shrink: 0;
}

.wallet-addr {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--off-white);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}

.wallet-addr:hover { color: var(--copper); }

.community-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contract ── */

/* ── Wallet Transparency ── */
.wallet-transparency {
  padding: 80px 0;
  text-align: center;
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.wallet-card {
  background: rgba(184,115,51,0.06);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
}

.wallet-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: var(--copper);
  margin-bottom: 8px;
}

.wallet-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.wallet-addr {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--copper-light);
  background: rgba(184,115,51,0.1);
  border: 1px solid rgba(184,115,51,0.25);
  padding: 10px 14px;
  border-radius: 6px;
  display: block;
  word-break: break-all;
  text-decoration: none;
  transition: background 0.2s;
}

.wallet-addr:hover {
  background: rgba(184,115,51,0.2);
}

.allocation-block {
  margin-top: 48px;
  text-align: left;
}

.allocation-block h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: var(--copper);
  margin-bottom: 16px;
  text-align: center;
}

.allocation-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}

.allocation-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(184,115,51,0.3);
  padding: 10px 12px;
  text-align: left;
}

.allocation-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--off-white);
}

.allocation-table tbody tr:hover {
  background: rgba(184,115,51,0.06);
}

.vesting-table td:first-child,
.vesting-table td:last-child {
  font-family: 'Space Mono', monospace;
  color: var(--copper-light);
}

/* ── Contract Section ── */
.contract-section {
  background: var(--mid);
  border-top: 1px solid rgba(184,115,51,0.2);
  padding: 40px 0;
  text-align: center;
}

.contract-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.contract-address {
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  color: var(--copper);
  background: rgba(184,115,51,0.1);
  border: 1px solid rgba(184,115,51,0.3);
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.contract-address:hover {
  background: rgba(184,115,51,0.18);
}

.copy-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
}

.copy-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* ── Footer ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--off-white); }

.footer-disclaimer {
  max-width: 680px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-copy {
  font-size: 12px;
  color: rgba(154,138,122,0.5);
}

/* ── Milestones Page ── */

.nav-link--active {
  color: var(--copper) !important;
}

/* Page header */
.milestones-hero {
  padding: 80px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(197,139,98,0.10) 0%, transparent 60%);
  border-bottom: 1px solid rgba(184,115,51,0.2);
}

.milestones-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.milestones-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.milestones-updated {
  font-size: 12px;
  color: rgba(173,148,129,0.6);
  font-family: 'Space Mono', monospace;
}

/* Traction Gates */
.traction-gates {
  padding: 80px 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(184,115,51,0.2);
}

.traction-gates h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.gates-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 560px;
}

.gates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gate-card {
  background: var(--mid);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
  padding: 24px;
}

.gate-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  gap: 8px;
}

.gate-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--off-white);
}

.gate-target {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  font-family: 'Space Mono', monospace;
}

.gate-bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.gate-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper));
  border-radius: 999px;
  transition: width 0.4s ease;
  min-width: 0;
}

/* Full gate: green tint */
.gate-bar-fill[style*="width: 100%"] {
  background: linear-gradient(90deg, #3d9e45, #5cbf65);
}

.gate-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gate-current {
  font-size: 13px;
  color: var(--copper-light);
  font-family: 'Space Mono', monospace;
}

.gate-pct {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
}

/* Milestone Log */
.milestone-log-section {
  padding: 80px 0;
}

.milestone-log-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.milestone-log {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.milestone-entry {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(184,115,51,0.12);
  transition: background 0.15s;
}

.milestone-entry:last-child {
  border-bottom: none;
}

.milestone-entry:hover {
  background: rgba(197,139,98,0.04);
}

.milestone-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(184,115,51,0.12);
  background: rgba(17,12,9,0.4);
}

.milestone-date {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.milestone-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
}

.badge--launch    { background: rgba(197,139,98,0.2);  color: var(--copper);       border: 1px solid rgba(197,139,98,0.4); }
.badge--community { background: rgba(92,191,101,0.12); color: #5cbf65;             border: 1px solid rgba(92,191,101,0.3); }
.badge--protocol  { background: rgba(99,148,218,0.12); color: #6394da;             border: 1px solid rgba(99,148,218,0.3); }
.badge--content   { background: rgba(218,183,99,0.12); color: #dab763;             border: 1px solid rgba(218,183,99,0.3); }
.badge--treasury  { background: rgba(184,99,218,0.12); color: #b863da;             border: 1px solid rgba(184,99,218,0.3); }
.badge--technical { background: rgba(99,218,218,0.12); color: #63dada;             border: 1px solid rgba(99,218,218,0.3); }

.milestone-body {
  padding: 24px 28px;
}

.milestone-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
}

.milestone-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Phase Checklist */
.phase-checklist-section {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid rgba(184,115,51,0.2);
}

.phase-checklist-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 48px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.checklist-card {
  background: var(--mid);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.checklist-card--active {
  border-color: var(--copper);
  background: rgba(184,115,51,0.07);
}

.checklist-card--future {
  opacity: 0.55;
}

.checklist-phase-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(197,139,98,0.15);
  border: 1px solid rgba(197,139,98,0.3);
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}

.checklist-phase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-item {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.checklist-item::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.checklist-item--done {
  color: var(--off-white);
}

.checklist-item--done::before {
  background-color: var(--copper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l2.5 2.5 4.5-4.5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.checklist-item--pending {
  color: var(--muted);
}

.checklist-item--pending::before {
  border: 1.5px solid rgba(184,115,51,0.4);
  background-color: transparent;
}

.checklist-item--future {
  color: rgba(173,148,129,0.5);
}

.checklist-item--future::before {
  border: 1.5px solid rgba(255,255,255,0.1);
  background-color: transparent;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .thesis-grid { grid-template-columns: 1fr; gap: 40px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-grid::before { display: none; }
  .stage-gates { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .cdi-grid { grid-template-columns: 1fr; }
  .price-ticker-target { flex-direction: column; gap: 4px; }
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 8px;
    padding: 0 16px 8px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    padding-bottom: 2px;
  }
  .nav-logo span { display: none; }
  .btn-buy { padding: 8px 12px; font-size: 12px; }
  .price-ticker-inner { gap: 12px; }
  .price-ticker-value { font-size: 20px; }
  .milestone-entry { grid-template-columns: 1fr; }
  .milestone-meta { border-right: none; border-bottom: 1px solid rgba(184,115,51,0.12); flex-direction: row; align-items: center; }
  .checklist-grid { grid-template-columns: 1fr; }
  .gates-grid { grid-template-columns: 1fr; }
  .identity-copy { font-size: 16px; }
  .vision-quote .tagline-line { font-size: clamp(24px, 9vw, 38px); }
  .tracker-table th,
  .tracker-table td { font-size: 12px; padding: 8px 10px; }
}
