/* ── 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;
}

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

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(197, 139, 98, 0.6);
}

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

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

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

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

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

/* ── 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: 148px;
  height: 148px;
  border-radius: 22px;
  border: 1px solid rgba(197, 139, 98, 0.5);
  background: rgba(17, 12, 9, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(197,139,98,0.12);
}

.hero-symbol img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
}

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

/* ── 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;
}

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

/* ── 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 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-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);
}

/* ── 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; }
  .nav-links { display: none; }
  .nav-logo span { display: none; }
  .price-ticker-inner { gap: 12px; }
  .price-ticker-value { font-size: 20px; }
}
