/* ==========================================================================
   EPEP — Elite Profit-Edge Protocol
   Steampunk-themed introduction site styles.
   ========================================================================== */

:root {
  --bg-deep:      #0e0a07;
  --bg-mid:       #1a120a;
  --bg-panel:     #21170d;
  --bg-parchment: #e9d9b3;
  --bg-parch-2:   #d8c595;
  --ink:          #f5ecd2;
  --ink-soft:     #d9c89b;
  --brass:        #c9923b;
  --brass-bright: #f2c271;
  --brass-deep:   #8a5a17;
  --copper:       #b6532a;
  --copper-deep:  #6e2f12;
  --teal:         #2f7a78;
  --rivet:        #3a2510;
  --shadow:       0 8px 30px rgba(0,0,0,.55);
  --line:         rgba(201,146,59,.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brass-bright); text-decoration: none; }
a:hover { color: #fff3d3; }
code, .mono { font-family: "Special Elite", "Courier New", monospace; letter-spacing: .02em; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ---- Background gears & vignette ---- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% -10%, #2a1c10 0%, #110a06 60%, #0a0604 100%);
  overflow: hidden;
}
.bg-layer::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,146,59,.04) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(-45deg, rgba(201,146,59,.03) 0 2px, transparent 2px 22px);
  opacity: .7;
}
.gear {
  position: absolute;
  width: 380px; height: 380px;
  color: rgba(201,146,59,.10);
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="black"><path d="M100 8l8 16 16-6 4 18 17 2-6 16 14 10-12 12 10 14-16 6 2 17-18 4-6 16-16-8-10 14-14-10-12 12-10-14-16 6-6-17-18-4 2-16-16-6 10-14-12-12 14-10-6-16 17-2 4-18 16 6z"/><circle cx="100" cy="100" r="38" fill="white"/><circle cx="100" cy="100" r="20" fill="black"/></g></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="black"><path d="M100 8l8 16 16-6 4 18 17 2-6 16 14 10-12 12 10 14-16 6 2 17-18 4-6 16-16-8-10 14-14-10-12 12-10-14-16 6-6-17-18-4 2-16-16-6 10-14-12-12 14-10-6-16 17-2 4-18 16 6z"/><circle cx="100" cy="100" r="38" fill="white"/><circle cx="100" cy="100" r="20" fill="black"/></g></svg>') center/contain no-repeat;
  animation: spin 60s linear infinite;
}
.gear-1 { top: -120px; left: -120px; }
.gear-2 { top: 30%; right: -160px; width: 520px; height: 520px; color: rgba(182,83,42,.08); animation-direction: reverse; animation-duration: 90s; }
.gear-3 { bottom: -180px; left: 30%; width: 460px; height: 460px; color: rgba(201,146,59,.06); animation-duration: 120s; }
.gear-4 { top: 55%; left: -180px; width: 300px; height: 300px; color: rgba(242,194,113,.06); animation-direction: reverse; animation-duration: 75s; }

@keyframes spin { to { transform: rotate(360deg); } }

.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 50%, transparent 50%, rgba(0,0,0,.55) 100%);
  mix-blend-mode: multiply;
}

/* ---- Top bar ---- */
.topbar {
  position: sticky;
  top: 0; z-index: 50;
  background:
    linear-gradient(180deg, rgba(20,12,7,.92), rgba(20,12,7,.78)),
    radial-gradient(800px 100px at 50% -20px, rgba(201,146,59,.35), transparent 70%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--brass-bright);
  font-family: "Cinzel", serif;
  font-weight: 900;
  letter-spacing: .08em;
}
.brand-cog { width: 36px; height: 36px; color: var(--brass); animation: spin 30s linear infinite; }
.brand-text { font-size: 22px; }
.brand-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.nav {
  display: flex; flex-wrap: wrap; gap: 18px;
}
.nav a {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
}
.nav a:hover { color: var(--brass-bright); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--brass-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  font-family: "Special Elite", monospace;
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 24px; height: 1px; background: var(--brass);
}
.eyebrow::before { margin-right: 4px; }
.eyebrow::after  { margin-left: 4px; }

.title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  margin: 0 0 20px;
  color: var(--ink);
  letter-spacing: .01em;
  text-shadow: 0 2px 0 rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.5);
}
.title .accent {
  background: linear-gradient(180deg, var(--brass-bright), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.3));
}
.lede {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 30px;
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1px solid var(--brass-deep);
  position: relative;
}
.btn.primary {
  background:
    linear-gradient(180deg, var(--brass-bright), var(--brass) 55%, var(--brass-deep));
  color: #1c0e02;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -2px 0 rgba(0,0,0,.35),
    0 6px 18px rgba(201,146,59,.35);
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -2px 0 rgba(0,0,0,.4),
    0 10px 24px rgba(242,194,113,.45);
  color: #2a1404;
}
.btn.ghost {
  background: transparent;
  color: var(--brass-bright);
  border: 1px solid var(--brass);
}
.btn.ghost:hover {
  background: rgba(201,146,59,.08);
  color: #fff3d3;
}
.btn.big { font-size: 16px; padding: 18px 30px; }

.hero-stats {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.hero-stats li {
  background: linear-gradient(180deg, rgba(33,23,13,.95), rgba(15,10,6,.95));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
}
.hero-stats li::before, .hero-stats li::after {
  content: ""; position: absolute; width: 8px; height: 8px;
  background: var(--brass); border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), inset 0 -1px 0 rgba(0,0,0,.5);
}
.hero-stats li::before { top: 6px; left: 6px; }
.hero-stats li::after  { bottom: 6px; right: 6px; }
.hero-stats strong {
  display: block; font-family: "Cinzel", serif; font-size: 26px;
  color: var(--brass-bright); margin-bottom: 2px;
}
.hero-stats span {
  font-family: "Special Elite", monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}

/* Hero artwork / mounted emblem */
.hero-art { display: flex; justify-content: center; }
.frame {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1 / 1;
  padding: 14px;
  border-radius: 14px;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(201,146,59,.10), transparent 70%);
  border: 1px solid var(--brass-deep);
  box-shadow:
    inset 0 0 0 1px rgba(242,194,113,.25),
    inset 0 0 24px rgba(0,0,0,.45),
    0 28px 60px rgba(0,0,0,.75),
    0 0 0 8px rgba(20,12,7,.55);
}
.frame::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(201,146,59,.35); border-radius: 10px;
  pointer-events: none;
}
.frame img,
.frame video {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 8px;
  filter:
    drop-shadow(0 0 24px rgba(201,146,59,.25))
    drop-shadow(0 14px 28px rgba(0,0,0,.7));
  display: block;
}
.frame-cog {
  position: absolute; width: 42px; height: 42px; color: var(--brass);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.7));
  opacity: .85;
}
.frame-cog.tl { top: -14px; left: -14px; animation: spin 18s linear infinite; }
.frame-cog.tr { top: -14px; right: -14px; animation: spin 22s linear infinite reverse; }
.frame-cog.bl { bottom: -14px; left: -14px; animation: spin 26s linear infinite; }
.frame-cog.br { bottom: -14px; right: -14px; animation: spin 30s linear infinite reverse; }

/* ---- Sections ---- */
.section {
  position: relative;
  padding: 90px 0;
  z-index: 1;
}
.section.parchment {
  background:
    radial-gradient(120% 80% at 50% 0%, var(--bg-parchment) 0%, var(--bg-parch-2) 70%);
  color: #2a1a08;
  border-top: 1px solid rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(0,0,0,.2);
}
.section.parchment::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(120,80,30,.15) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 80%, rgba(120,80,30,.12) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 20%, rgba(120,80,30,.10) 0 2px, transparent 3px);
  pointer-events: none;
}
.section.dark {
  background:
    linear-gradient(180deg, #150d07 0%, #0c0703 100%);
  border-top: 1px solid rgba(35, 22, 12, .9);
  border-bottom: 1px solid rgba(35, 22, 12, .9);
}
.section.dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 20%, rgba(242,194,113,.08) 50%, transparent 51%),
    radial-gradient(2px 2px at 80% 70%, rgba(242,194,113,.06) 50%, transparent 51%),
    radial-gradient(1px 1px at 50% 50%, rgba(242,194,113,.05) 50%, transparent 51%);
  background-size: 240px 240px, 320px 320px, 180px 180px;
  opacity: .6; pointer-events: none;
}

.section-title {
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--brass-bright);
  letter-spacing: .04em;
  margin: 0 0 14px;
  text-align: left;
  position: relative;
}
.section.dark .section-title { color: var(--brass-bright); }
.section.parchment .section-title {
  color: #4a2e0a;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}
.section-title.center { text-align: center; }
.section-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 70ch;
  text-align: center;
}
.section.parchment .section-sub { color: #5a3a12; }

.kicker {
  font-family: "Special Elite", monospace;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 6px 0 16px;
}
.kicker.light { color: var(--brass-bright); }
.section.parchment .kicker { color: #6e4416; }

/* ---- Story ---- */
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.two-col p { margin: 0 0 16px; color: inherit; }
.section.parchment .col { color: #2a1a08; }

.signature {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6e4416;
  margin-top: 14px;
}

.side-panel {
  background:
    linear-gradient(160deg, rgba(0,0,0,.04), rgba(0,0,0,.10)),
    repeating-linear-gradient(135deg, rgba(120,80,30,.05) 0 2px, transparent 2px 8px);
  border: 1px solid rgba(120,80,30,.45);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 6px 22px rgba(70,40,10,.18), inset 0 0 0 1px rgba(255,255,255,.4);
}
.panel-title {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #6e4416;
  margin: 0 0 10px;
}
blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px;
  color: #3b2308;
  margin: 4px 0 18px;
  padding: 0 0 0 16px;
  border-left: 3px double #8a5a17;
}
.plate {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(110,68,22,.45);
  display: grid; gap: 8px;
}
.plate-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: "Special Elite", monospace;
  font-size: 13px;
  letter-spacing: .08em;
}
.plate-row span { color: #6e4416; text-transform: uppercase; letter-spacing: .18em; }
.plate-row strong { color: #2a1a08; }

/* ---- Phases ---- */
.phase-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.phase-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(33,23,13,.95), rgba(15,10,6,.95));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 26px 22px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.phase-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brass), var(--copper), var(--brass));
}
.phase-card:hover { transform: translateY(-3px); border-color: var(--brass-bright); }
.phase-num {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: 64px;
  color: rgba(201,146,59,.25);
  line-height: 1;
  position: absolute;
  top: 10px; right: 18px;
  text-shadow: 0 2px 0 rgba(0,0,0,.4);
  pointer-events: none;
}
.phase-card h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  color: var(--brass-bright);
  margin: 0 0 10px;
  letter-spacing: .03em;
}
.phase-card p { color: var(--ink-soft); margin: 0 0 12px; }
.cmd {
  font-family: "Special Elite", monospace;
  font-size: 13px;
  line-height: 1.6;
  background: rgba(0,0,0,.5);
  border: 1px dashed rgba(201,146,59,.45);
  padding: 12px 14px;
  border-radius: 6px;
  color: #f2e2bf;
  white-space: pre;
  overflow-x: auto;
}
.note {
  margin-top: 12px;
  font-style: italic;
  font-size: 14px;
  color: #b9a26a;
}

/* ---- Innovations ---- */
.innov-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.innov-card {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(201,146,59,.10), transparent 60%),
    linear-gradient(180deg, rgba(33,23,13,.96), rgba(15,10,6,.96));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
  position: relative;
}
.innov-card::after {
  content: ""; position: absolute;
  top: 14px; right: 14px;
  width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, var(--brass-bright), var(--copper-deep));
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 0 0 2px rgba(0,0,0,.4);
}
.innov-card:hover { transform: translateY(-3px); border-color: var(--brass-bright); }
.innov-card h3 {
  font-family: "Cinzel", serif;
  font-size: 20px;
  color: var(--brass-bright);
  margin: 0 0 10px;
  letter-spacing: .03em;
}
.innov-card p { color: var(--ink-soft); margin: 0 0 10px; }
.luggage { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 6px; }
.luggage li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: "Special Elite", monospace;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px dashed rgba(201,146,59,.35);
  border-radius: 4px;
  color: #f2e2bf;
}
.luggage li i { font-style: normal; color: var(--brass-bright); }
.badge {
  display: inline-block;
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(201,146,59,.12);
  border: 1px solid var(--brass);
  border-radius: 999px;
  color: var(--brass-bright);
  margin-top: 4px;
}
.stat {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--brass-bright);
  letter-spacing: .04em;
  margin-top: 8px;
  padding: 6px 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---- Tiers ---- */
.section.parchment .tier-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 12px;
}
.tier {
  position: relative;
  border-radius: 10px;
  padding: 26px 22px 22px;
  background:
    linear-gradient(180deg, #f7e8c2 0%, #e6d3a6 100%);
  border: 2px solid #8a5a17;
  box-shadow: 0 12px 30px rgba(80,40,5,.25), inset 0 0 0 1px rgba(255,255,255,.5);
  text-align: center;
  transition: transform .25s ease;
}
.tier:hover { transform: translateY(-3px); }
.tier-crown {
  font-family: "Cinzel", serif;
  font-size: 36px; line-height: 1;
  color: #6e4416;
  margin-bottom: 6px;
}
.tier h3 {
  font-family: "Cinzel", serif;
  font-size: 22px; margin: 0; color: #3b2308; letter-spacing: .1em;
  text-transform: uppercase;
}
.tier-thresh {
  font-family: "Special Elite", monospace;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: #6e4416;
  margin: 4px 0 14px;
  border-bottom: 1px dashed rgba(110,68,22,.45);
  padding-bottom: 10px;
}
.tier ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.tier li {
  font-size: 14px; color: #3b2308;
  padding: 6px 10px;
  background: rgba(255,255,255,.4);
  border-radius: 4px;
  border: 1px solid rgba(110,68,22,.25);
}
.tier li.fee {
  font-family: "Special Elite", monospace;
  background: rgba(110,68,22,.18);
  border-color: rgba(110,68,22,.6);
  color: #2a1a08;
}
.tier-platinum { background: linear-gradient(180deg, #fff7d6 0%, #e8d49a 100%); border-color: #b08820; }
.tier-platinum .tier-crown { color: #8a6a12; }
.tier-gold     { background: linear-gradient(180deg, #fde99b 0%, #e1c46a 100%); border-color: #a07a14; }
.tier-gold .tier-crown { color: #774f0e; }
.tier-silver   { background: linear-gradient(180deg, #e9ecf0 0%, #c2c8cf 100%); border-color: #6b737a; }
.tier-silver .tier-crown { color: #4a545c; }
.tier-bronze   { background: linear-gradient(180deg, #e7b985 0%, #b38556 100%); border-color: #6b4421; }
.tier-bronze .tier-crown { color: #4a2f15; }
.tiers-foot {
  text-align: center; margin-top: 26px;
  font-style: italic; color: #4a2e0a;
  max-width: 70ch; margin-left: auto; margin-right: auto;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 20px;
  padding: 14px 0;
}
.timeline::before {
  content: ""; position: absolute;
  top: 50%; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brass-deep), var(--brass), var(--brass-deep));
  transform: translateY(-50%);
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(201,146,59,.35);
}
.t-event {
  position: relative;
  background:
    linear-gradient(180deg, rgba(33,23,13,.96), rgba(15,10,6,.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.t-event::before {
  content: ""; position: absolute;
  top: 50%; left: -10px; width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, var(--brass-bright), var(--copper-deep));
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 0 0 3px rgba(0,0,0,.5);
  z-index: 1;
}
.t-event:hover { transform: translateY(-3px); border-color: var(--brass-bright); }
.t-date {
  display: block;
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--brass-bright);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.t-event h4 {
  font-family: "Cinzel", serif;
  font-size: 14px;
  margin: 0;
  color: var(--ink);
  letter-spacing: .04em;
}
.t-event.done { opacity: .85; }
.t-event.done h4 { color: var(--ink-soft); }
.t-event.done .t-date { color: var(--ink-soft); }
.t-event.highlight {
  border-color: var(--brass-bright);
  box-shadow: 0 0 0 1px rgba(242,194,113,.4), var(--shadow);
}
.t-event.highlight h4 { color: var(--brass-bright); }
.t-event.pending { border-style: dashed; border-color: var(--teal); }
.t-event.pending .t-date { color: #7ec4c1; }
.t-event.future  { border-style: dotted; border-color: var(--ink-soft); opacity: .65; }
.t-event.future .t-date { color: var(--ink-soft); }

/* ---- Revenue ---- */
.streams {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 12px;
}
.streams li {
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass);
  border-radius: 6px;
  padding: 14px 16px;
  display: grid; gap: 4px;
}
.streams strong {
  font-family: "Cinzel", serif; color: var(--brass-bright); font-size: 16px;
  letter-spacing: .04em;
}
.streams span { color: var(--ink-soft); font-size: 16px; }

.forecast {
  background:
    linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.3));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.forecast h3 {
  font-family: "Cinzel", serif;
  color: var(--brass-bright);
  margin: 0 0 12px;
  letter-spacing: .04em;
}
.ledger { display: grid; gap: 8px; }
.ledger-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  font-family: "Special Elite", monospace;
  font-size: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,146,59,.18);
  border-radius: 4px;
}
.ledger-row b {
  font-family: "Cinzel", serif; font-size: 14px;
  color: var(--brass-bright); letter-spacing: .04em;
}
.ledger-row.accent {
  background: linear-gradient(90deg, rgba(201,146,59,.18), rgba(110,47,18,.18));
  border-color: var(--brass);
}
.ledger-row.accent b { color: #ffd87a; }
.fine { color: var(--ink-soft); font-style: italic; font-size: 14px; margin-top: 12px; }

/* ---- Verify ---- */
.verify-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.verify-step {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.2));
  border: 1px solid rgba(110,68,22,.4);
  border-radius: 8px;
  padding: 26px 22px;
  box-shadow: 0 4px 16px rgba(70,40,10,.15);
  position: relative;
}
.step-num {
  font-family: "Cinzel", serif;
  font-size: 36px;
  color: #6e4416;
  display: block;
  margin-bottom: 6px;
}
.verify-step h3 {
  font-family: "Cinzel", serif;
  font-size: 18px;
  color: #3b2308;
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.verify-step p { color: #4a2e0a; margin: 0; font-size: 16px; }

/* ---- Tokenomics & socials ---- */
.kv { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.kv li {
  display: grid; grid-template-columns: 160px 1fr; gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(33,23,13,.95), rgba(15,10,6,.95));
  border: 1px solid var(--line);
  border-radius: 6px;
}
.kv li span {
  font-family: "Special Elite", monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-bright);
}
.kv li strong { color: var(--ink); font-size: 17px; }
.kv li .mono { color: var(--brass-bright); font-weight: 700; }

.socials {
  display: grid; gap: 14px;
}
.social-tile {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 14px;
  padding: 18px 18px;
  background:
    linear-gradient(180deg, rgba(33,23,13,.95), rgba(15,10,6,.95));
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .2s, transform .2s;
  color: var(--ink);
}
.social-tile:hover { border-color: var(--brass-bright); transform: translateY(-2px); color: #fff3d3; }
.social-tile .s-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  font-family: "Cinzel", serif;
  font-size: 22px;
  background: linear-gradient(180deg, var(--brass-bright), var(--brass-deep));
  color: #1a0e02;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 10px rgba(0,0,0,.6);
}
.social-tile .s-name {
  font-family: "Cinzel", serif;
  font-size: 16px;
  letter-spacing: .06em;
}
.social-tile .s-handle {
  font-family: "Special Elite", monospace;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---- Final CTA ---- */
.finale {
  background:
    radial-gradient(800px 300px at 50% 30%, rgba(201,146,59,.18), transparent 70%),
    linear-gradient(180deg, #150d07 0%, #0a0604 100%);
  text-align: center;
  border-top: 1px solid var(--line);
}
.finale .display {
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 4.5vw, 56px);
  margin: 0 0 14px;
  color: var(--ink);
}
.finale .accent { color: var(--brass-bright); }
.finale p { color: var(--ink-soft); margin: 0 0 26px; font-size: 20px; }

/* ---- Footer ---- */
.footer {
  position: relative; z-index: 1;
  background: #0a0604;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  flex-wrap: wrap;
  color: var(--ink-soft); margin: 0;
}
.footer-row .fine { font-style: italic; color: #867048; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
  .eyebrow::before, .eyebrow::after { display: none; }
  .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .two-col, .phase-grid, .innov-grid, .verify-grid, .tier-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { top: 0; bottom: 0; left: 50%; width: 4px; height: auto; transform: translateX(-50%); }
  .t-event::before { top: -10px; left: 50%; transform: translateX(-50%); }
  .nav { display: none; }
  .brand-sub { display: none; }
  .kv li { grid-template-columns: 1fr; }
  .kv li span { font-size: 11px; }
}

@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
}
