/* ==========================================================================
   Midas — Design Tokens
   ========================================================================== */
:root {
  --bg: #08080a;
  --bg-alt: #0c0c0f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(197, 162, 111, 0.18);
  --gold: #C5A26F;
  --gold-bright: #E8D6AE;
  --gold-dim: #8C7350;
  --text: #F2EFE9;
  --text-dim: #A8A29A;
  --text-faint: #6B665F;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
code { font-family: 'SF Mono', Consolas, monospace; }

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

.text-gold { color: var(--gold); }

/* Subtle background texture across whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(197,162,111,0.06), transparent 60%),
    radial-gradient(ellipse 900px 600px at 85% 40%, rgba(197,162,111,0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   Reveal-on-scroll
   Content is fully visible by default. The entrance animation only engages
   when <html> has .reveal-on (added by an inline head script, and only when
   the tab is visible + motion is allowed). This guarantees content never gets
   stuck dim if a hidden/backgrounded tab throttles the transition.
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
.reveal.center { text-align: center; margin-left: auto; margin-right: auto; }

.reveal-on .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-on .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-dim));
  color: #14110a;
  box-shadow: 0 8px 30px -8px rgba(197, 162, 111, 0.55);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -6px rgba(197, 162, 111, 0.75);
}

.btn--ghost {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(197, 162, 111, 0.35);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(197, 162, 111, 0.08);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--sm { padding: 9px 20px; font-size: 13px; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(197, 162, 111, 0.14);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #0d0d0f url("../assets/favicon-mark.png") center / cover no-repeat;
  color: transparent; /* hides the literal "M" in the markup */
  font-size: 0;
}
.brand__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  width: 20px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 480px; height: 480px;
  top: -120px; left: -140px;
  background: radial-gradient(circle, rgba(197,162,111,0.20), transparent 70%);
}
.hero__glow--2 {
  width: 520px; height: 520px;
  bottom: -180px; right: -160px;
  background: radial-gradient(circle, rgba(197,162,111,0.14), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-bright);
}
.hero__stat-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid rgba(197,162,111,0.4);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--gold);
  animation: scrollcue 1.8s infinite ease;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}

/* ==========================================================================
   Sections (generic)
   ========================================================================== */
.section {
  position: relative;
  z-index: 1;
  padding: 130px 0;
}
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(197,162,111,0.025) 20%, rgba(197,162,111,0.025) 80%, transparent);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 760px;
}
.section__title.center,
p.section__title { }

.section__lead {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.75;
}
.section__lead--left { margin-left: 0; margin-right: 0; }

/* ==========================================================================
   Glass / Cards
   ========================================================================== */
.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

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

.card {
  padding: 40px 32px;
  border-radius: 20px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 162, 111, 0.45);
  background: rgba(197, 162, 111, 0.05);
}
.card--center { text-align: center; }
.card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.7;
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(197,162,111,0.22), rgba(197,162,111,0.06));
  border: 1px solid rgba(197,162,111,0.3);
  color: var(--gold-bright);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}
.card--center .card__icon { margin-left: auto; margin-right: auto; }
.badge-icon {
  font-size: 30px;
  margin-bottom: 18px;
}

/* ==========================================================================
   Security & Trust — Audit / LP Lock cards
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.trust-card {
  padding: 40px;
  border-radius: 22px;
  border-color: rgba(197, 162, 111, 0.22);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 162, 111, 0.5);
  background: rgba(197, 162, 111, 0.045);
}
.trust-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(197,162,111,0.22), rgba(197,162,111,0.06));
  border: 1px solid rgba(197,162,111,0.32);
  font-size: 22px;
  margin-bottom: 22px;
}
.trust-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.trust-card > p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 22px;
}
.trust-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.trust-checklist__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(197,162,111,0.15);
  color: var(--gold-bright);
  font-size: 10.5px;
  flex-shrink: 0;
}
.trust-card__btn { width: 100%; }

/* ==========================================================================
   How It Works — Steps
   ========================================================================== */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.steps__line {
  position: absolute;
  top: 20px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,162,111,0.4), transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.step__number {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ==========================================================================
   Tokenomics
   ========================================================================== */
.tokenomics {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 24px;
}
.tokenomics__chart {
  display: flex;
  justify-content: center;
}
.donut {
  --size: 300px;
  width: var(--size); height: var(--size);
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    #C5A26F 0% calc(var(--p1) * 1%),
    #8C7350 calc(var(--p1) * 1%) calc(var(--p2) * 1%),
    #E8D6AE calc(var(--p2) * 1%) calc(var(--p3) * 1%),
    #332C22 calc(var(--p3) * 1%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px -10px rgba(197,162,111,0.3);
}
.donut::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: var(--bg);
}
.donut__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donut__value {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-bright);
}
.donut__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}

.tokenomics__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tok-heading {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}
.tok-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tok-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tok-name {
  flex: 1;
  font-size: 14.5px;
  color: var(--text-dim);
}
.tok-value {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
}
.tok-divider {
  height: 1px;
  background: rgba(197,162,111,0.2);
  margin: 6px 0;
}
.tok-row--meta .tok-name { color: var(--text-faint); font-size: 13.5px; }
.tok-row--meta .tok-value { color: var(--gold-bright); font-size: 13.5px; }

/* ==========================================================================
   Midas User App — Dashboard preview
   ========================================================================== */
.dash {
  border-radius: 26px;
  padding: 36px;
  margin-top: 16px;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.65);
}

.dash__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dash__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}
.dash__brand-mark {
  width: 28px; height: 28px;
  font-size: 14px;
}
.dash__badge {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(197,162,111,0.12);
  border: 1px solid rgba(197,162,111,0.3);
  padding: 4px 9px;
  border-radius: 999px;
}
.dash__wallet-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,162,111,0.35);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  font-family: 'SF Mono', Consolas, monospace;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.dash__wallet-btn:hover {
  border-color: var(--gold);
  background: rgba(197,162,111,0.08);
}
.dash__wallet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 8px rgba(111,207,151,0.7);
  flex-shrink: 0;
}

.dash__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.dash__card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.dash__card:hover {
  border-color: rgba(197,162,111,0.3);
  background: rgba(197,162,111,0.04);
}
.dash__card--gold {
  border-color: rgba(197,162,111,0.3);
  background: rgba(197,162,111,0.05);
}
.dash__card-label {
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.dash__card-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
}
.dash__card-value small {
  font-size: 13px;
  color: var(--text-faint);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-left: 5px;
}
.dash__card-sub {
  font-size: 12.5px;
  color: var(--text-dim);
}

.dash__claim-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, rgba(197,162,111,0.09), rgba(197,162,111,0.02));
  border: 1px solid rgba(197,162,111,0.2);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 36px;
}
.dash__claim-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.dash__claim-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash__claim-meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}
.dash__meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.dash__meta-faint {
  font-weight: 400;
  color: var(--text-faint);
}
.dash__meta-value--ready {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6FCF97;
}
.dash__ready-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 8px rgba(111,207,151,0.7);
}
.dash__claim-btn {
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-dim));
  color: #14110a;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 30px -8px rgba(197,162,111,0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  flex-shrink: 0;
}
.dash__claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -6px rgba(197,162,111,0.7);
}

.dash__panel {
  margin-bottom: 36px;
}
.dash__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash__panel-header h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
}
.dash__panel-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-bright);
  cursor: pointer;
}

.dash__table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.dash__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.dash__table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
  padding: 14px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dash__table td {
  padding: 15px 20px;
  font-size: 13.5px;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dash__table tbody tr:last-child td { border-bottom: none; }
.dash__table tbody tr {
  transition: background 0.25s var(--ease);
}
.dash__table tbody tr:hover {
  background: rgba(197,162,111,0.035);
}
.dash__table td:nth-child(2) {
  color: var(--text);
  font-weight: 600;
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 12.5px;
}

.tx-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
}
.tx-tag--claim {
  color: var(--gold-bright);
  background: rgba(197,162,111,0.14);
  border: 1px solid rgba(197,162,111,0.3);
}
.tx-tag--buy {
  color: #6FCF97;
  background: rgba(111,207,151,0.12);
  border: 1px solid rgba(111,207,151,0.28);
}
.tx-tag--sell {
  color: #E8877A;
  background: rgba(232,135,122,0.12);
  border: 1px solid rgba(232,135,122,0.28);
}
.tx-tag--transfer {
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.tx-status {
  font-size: 12.5px;
  color: #6FCF97;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tx-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6FCF97;
}

.dash__penalty {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px;
}
.dash__penalty-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.dash__penalty-copy h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.dash__penalty-copy p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 18px;
}
.dash__penalty-tiers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.penalty-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 84px;
}
.penalty-tier__pct {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-bright);
}
.penalty-tier--free .penalty-tier__pct { color: #6FCF97; }
.penalty-tier__range {
  font-size: 11px;
  color: var(--text-faint);
}

.dash__disclaimer {
  font-size: 12px;
  color: var(--text-faint);
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 1.6;
}

/* ==========================================================================
   Roadmap Timeline
   ========================================================================== */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.timeline__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.timeline__marker {
  width: fit-content;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(197,162,111,0.4);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 14px;
}
.timeline__content {
  border-radius: 18px;
  padding: 26px 24px;
  flex: 1;
}
.timeline__content h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.timeline__content p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ==========================================================================
   Buy / Contract Box
   ========================================================================== */
.contract-box {
  max-width: 640px;
  margin: 56px auto 0;
  border-radius: 20px;
  padding: 32px 36px;
  text-align: center;
}
.contract-box__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 14px;
}
.contract-box__row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
}
.contract-box__row code {
  flex: 1;
  font-size: 13px;
  color: var(--text-dim);
  overflow-x: auto;
  white-space: nowrap;
  text-align: left;
}
.copy-btn {
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid rgba(197,162,111,0.35);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.copy-btn:hover {
  background: rgba(197,162,111,0.1);
  border-color: var(--gold);
}
.copy-btn.copied {
  background: var(--gold);
  color: #14110a;
  border-color: var(--gold);
}

/* ==========================================================================
   Community
   ========================================================================== */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 20px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  color: var(--text);
}
.social-card__icon {
  font-size: 26px;
  color: var(--gold-bright);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 36px;
  border-top: 1px solid rgba(197,162,111,0.12);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__links a {
  font-size: 13.5px;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--gold-bright); }

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copyright {
  font-size: 12.5px;
  color: var(--text-faint);
  white-space: nowrap;
}
.footer__disclaimer {
  font-size: 12px;
  color: var(--text-faint);
  max-width: 480px;
  line-height: 1.6;
  text-align: right;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps, .timeline { grid-template-columns: repeat(2, 1fr); }
  .steps__line { display: none; }
  .tokenomics { grid-template-columns: 1fr; gap: 40px; }
  .footer__disclaimer { text-align: left; }
  .dash { padding: 28px; }
  .dash__cards { grid-template-columns: 1fr 1fr; }
  .dash__penalty { flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .grid--3, .grid--4, .steps, .timeline { grid-template-columns: 1fr; }
  .hero__stats { gap: 32px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .navbar__actions .btn--sm { display: none; }
  .section { padding: 90px 0; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .dash { padding: 20px; border-radius: 20px; }
  .dash__topbar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dash__cards { grid-template-columns: 1fr; }
  .dash__claim-bar { flex-direction: column; align-items: stretch; }
  .dash__claim-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dash__claim-meta-divider { display: none; }
  .dash__claim-btn { width: 100%; }
  .penalty-tier { flex: 1 1 40%; }
}

/* Mobile nav overlay (JS toggled) */
.nav-links.is-open {
  display: flex;
  position: fixed;
  top: 68px; left: 0; right: 0;
  flex-direction: column;
  background: rgba(8,8,10,0.97);
  backdrop-filter: blur(20px);
  padding: 32px;
  gap: 24px;
  border-bottom: 1px solid rgba(197,162,111,0.15);
}
