/* =========================================================
   Million Token — static rebuild
   Self-contained. No external fonts, JS libs, or CSS imports.
   Images are hot-linked to the original wixstatic.com CDN.
   ========================================================= */

:root{
  --bg:#08080c;
  --bg-alt:#0e0e16;
  --surface:#14141f;
  --surface-2:#1b1b29;
  --border:rgba(255,255,255,.08);
  --border-strong:rgba(255,255,255,.14);

  --gold:#f5c518;
  --gold-hi:#ffe071;
  --gold-deep:#c99700;
  --gold-grad:linear-gradient(135deg,#ffe071 0%,#f5c518 45%,#c99700 100%);

  --text:#f4f4f7;
  --text-dim:#a6a6b4;
  --text-mute:#71717f;

  --maxw:1120px;
  --radius:16px;
  --radius-sm:10px;
  --shadow:0 20px 50px -20px rgba(0,0,0,.7);

  --font:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--gold);text-decoration:none}
a:hover{color:var(--gold-hi)}
h1,h2,h3{margin:0;line-height:1.12;font-weight:800;letter-spacing:-.02em}
p{margin:0}
ul,ol{margin:0;padding:0;list-style:none}

.wrap{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}
.center{text-align:center}
.gold{
  background:var(--gold-grad);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:var(--gold);
}
.dim{color:var(--text-mute);font-weight:600}

/* accessibility helpers */
.skip-link{
  position:absolute;left:-999px;top:0;z-index:200;
  background:var(--gold);color:#000;padding:10px 16px;border-radius:0 0 8px 0;font-weight:700;
}
.skip-link:focus{left:0}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px}

/* ---------- eyebrow / section heads ---------- */
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.72rem;
  font-weight:700;
  color:var(--gold);
  margin-bottom:14px;
}
.section-head{margin-bottom:52px}
.section-head.center{margin-left:auto;margin-right:auto;max-width:720px}
.section-head h2{font-size:clamp(2rem,4.5vw,3rem)}
.section-head .lead{margin-top:14px}

h2{font-size:clamp(1.8rem,4vw,2.6rem)}
h3{font-size:1.15rem;font-weight:700;letter-spacing:-.01em}
.lead{font-size:1.12rem;color:var(--text-dim)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.4em;
  padding:13px 26px;border-radius:999px;font-weight:700;font-size:.98rem;
  border:1px solid transparent;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease;
  white-space:nowrap;
}
.btn-gold{background:var(--gold-grad);color:#1a1400;box-shadow:0 10px 24px -10px rgba(245,197,24,.7)}
.btn-gold:hover{color:#1a1400;transform:translateY(-2px);box-shadow:0 16px 30px -10px rgba(245,197,24,.85)}
.btn-ghost{background:transparent;color:var(--text);border-color:var(--border-strong)}
.btn-ghost:hover{color:var(--text);border-color:var(--gold);background:rgba(245,197,24,.08)}
.btn-lg{padding:16px 34px;font-size:1.05rem}
.btn-sm{padding:8px 18px;font-size:.85rem}
.btn-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:24px}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky;top:0;z-index:100;
  backdrop-filter:blur(10px);
  background:rgba(8,8,12,.72);
  border-bottom:1px solid transparent;
  transition:background .25s ease,border-color .25s ease;
}
.site-header.scrolled{background:rgba(8,8,12,.92);border-bottom-color:var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:70px}
.brand{display:flex;align-items:center;gap:10px;color:var(--text)}
.brand:hover{color:var(--text)}
.brand img{border-radius:50%}
.brand-name{font-weight:800;letter-spacing:.18em;font-size:1.05rem}

.nav{display:flex;align-items:center;gap:30px}
.nav a{color:var(--text-dim);font-weight:600;font-size:.95rem;transition:color .15s ease}
.nav a:hover{color:var(--text)}
.nav .nav-cta{color:#1a1400;padding:10px 20px}
.nav .nav-cta:hover{color:#1a1400}

.nav-toggle{
  display:none;flex-direction:column;gap:5px;background:none;border:0;padding:8px;cursor:pointer;
}
.nav-toggle span{width:24px;height:2px;background:var(--text);border-radius:2px;transition:transform .25s ease,opacity .25s ease}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* =========================================================
   HERO
   ========================================================= */
.hero{position:relative;overflow:hidden;padding:96px 0 80px}
.hero-bg{
  position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(120% 90% at 80% 0%,rgba(245,197,24,.10),transparent 55%),
    url('images/hero-background.jpg') center/cover no-repeat;
  opacity:.22;
}
.hero-glow{
  position:absolute;z-index:0;width:640px;height:640px;left:-160px;top:-160px;
  background:radial-gradient(circle,rgba(245,197,24,.16),transparent 62%);
  filter:blur(20px);pointer-events:none;
}
.hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:1.15fr .85fr;gap:48px;align-items:center}
.hero-title{font-size:clamp(2.4rem,5.6vw,4rem);letter-spacing:-.03em;margin-bottom:22px}
.hero-sub{font-size:1.2rem;color:var(--text-dim);max-width:34ch;margin-bottom:34px}
.hero-art{justify-self:center}
.hero-art img{filter:drop-shadow(0 30px 50px rgba(0,0,0,.6))}

.exchange-row{display:flex;flex-wrap:wrap;align-items:center;gap:14px}
.exchange{
  display:inline-flex;align-items:center;padding:12px 16px;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.exchange:hover{transform:translateY(-2px);border-color:var(--gold);background:var(--surface-2)}
.exchange img{width:auto}

/* =========================================================
   GENERIC SECTION
   ========================================================= */
.section{padding:96px 0}
.section-alt{background:var(--bg-alt)}

/* ---------- About ---------- */
.about-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:56px;align-items:center}
.about-media{justify-self:center}
.about-media img{filter:drop-shadow(0 24px 40px rgba(0,0,0,.55))}
.about-copy h2{margin-bottom:18px;font-size:clamp(1.9rem,4vw,2.7rem)}
.feature-list{display:flex;flex-direction:column;gap:22px;margin-top:30px}
.feature-list li{display:flex;gap:16px;align-items:flex-start}
.feature-emoji{font-size:1.6rem;line-height:1;flex-shrink:0;width:36px;text-align:center}
.feature-list h3{margin-bottom:4px}
.feature-list p{color:var(--text-dim);font-size:.98rem}

/* ---------- Quickstart / Buy ---------- */
.buy-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:start}
.steps{display:flex;flex-direction:column;gap:22px}
.steps li{
  display:flex;gap:18px;align-items:flex-start;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:22px 24px;
}
.steps.steps-tight li{padding:16px 18px}
.step-n{
  flex-shrink:0;width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;font-weight:800;color:#1a1400;
  background:var(--gold-grad);font-size:1rem;
}
.steps p{color:var(--text-dim)}
.steps a{font-weight:600}

.buy-card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:34px 28px;text-align:center;box-shadow:var(--shadow);
}
.buy-lion{margin:0 auto 22px;filter:drop-shadow(0 16px 26px rgba(0,0,0,.5))}
.buy-note{margin-top:22px;color:var(--text-mute);font-size:.88rem;text-transform:uppercase;letter-spacing:.12em}
.buy-alt-links{display:flex;flex-direction:column;align-items:center;gap:14px;margin-top:16px}
.buy-alt-links a{padding:10px 16px;border:1px solid var(--border);border-radius:var(--radius-sm);transition:border-color .15s ease}
.buy-alt-links a:hover{border-color:var(--gold)}

.alt-guide{
  display:grid;grid-template-columns:.7fr 1.3fr;gap:40px;align-items:center;
  margin-top:64px;padding-top:56px;border-top:1px solid var(--border);
}
.alt-media{justify-self:center}
.alt-media img{border-radius:var(--radius);box-shadow:var(--shadow)}
.alt-copy h3{font-size:1.5rem;margin-bottom:14px}
.alt-copy .lead{margin-bottom:24px}

/* ---------- Community ---------- */
.community-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.community-copy h2{font-size:clamp(1.9rem,4vw,2.7rem);margin-bottom:14px}
.social-row{display:flex;gap:18px;margin-top:28px}
.social{
  display:grid;place-items:center;padding:12px;border-radius:14px;
  background:var(--surface);border:1px solid var(--border);
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.social:hover{transform:translateY(-3px);border-color:var(--gold);background:var(--surface-2)}
.community-media img{border-radius:var(--radius);box-shadow:var(--shadow)}

/* =========================================================
   BANNERS (supply / governance)
   ========================================================= */
.banner{position:relative;overflow:hidden;padding:120px 0;text-align:center}
.banner-tall{padding:130px 0;text-align:left}
.banner-bg{
  position:absolute;inset:0;z-index:0;background-size:cover;background-position:center;
  opacity:.28;
}
.banner::after{
  content:"";position:absolute;inset:0;z-index:0;
  background:linear-gradient(180deg,rgba(8,8,12,.82),rgba(8,8,12,.62));
}
.banner-inner{position:relative;z-index:1}
.banner-left{max-width:720px;margin:0}
.banner-title{font-size:clamp(2.6rem,6vw,4.4rem);letter-spacing:-.03em}
.banner-title.small{font-size:clamp(1.7rem,3.6vw,2.6rem)}
.banner-sub{margin-top:12px;font-size:1.3rem;color:var(--text-dim)}
.banner-sub.wide{max-width:60ch;font-size:1.1rem;margin-top:18px}

/* =========================================================
   FAQ / PROPERTIES
   ========================================================= */
.faq{max-width:840px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);
  overflow:hidden;transition:border-color .2s ease,background .2s ease;
}
.faq-item.is-open{border-color:var(--gold);background:var(--surface-2)}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 24px;background:none;border:0;cursor:pointer;text-align:left;
  color:var(--text);font-size:1.06rem;font-weight:700;font-family:inherit;letter-spacing:-.01em;
}
.faq-q:hover{color:var(--gold-hi)}
.faq-icon{position:relative;flex-shrink:0;width:20px;height:20px}
.faq-icon::before,.faq-icon::after{
  content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  background:var(--gold);border-radius:2px;transition:transform .25s ease,opacity .2s ease;
}
.faq-icon::before{width:14px;height:2px}
.faq-icon::after{width:2px;height:14px}
.faq-item.is-open .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-a-inner{padding:0 24px 22px;color:var(--text-dim)}
.faq-actions{display:flex;gap:12px;margin-top:16px}

/* =========================================================
   SPLIT (Metafora)
   ========================================================= */
.split{display:grid;grid-template-columns:.4fr .6fr;gap:44px;align-items:center;max-width:900px}
.split-media{justify-self:center}
.split-media img{filter:drop-shadow(0 18px 30px rgba(0,0,0,.55))}
.split-copy h2{font-size:clamp(1.8rem,3.6vw,2.4rem);margin-bottom:12px}
.split-copy .lead{margin-bottom:8px}
.split-copy p{color:var(--text-dim);margin-bottom:22px}

/* =========================================================
   ECOSYSTEM
   ========================================================= */
.eco-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.eco-card{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:6px;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:28px 20px;color:var(--text);
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.eco-card:hover{transform:translateY(-6px);border-color:var(--gold);background:var(--surface-2);color:var(--text)}
.eco-card img{border-radius:14px;margin-bottom:12px;box-shadow:0 12px 24px -8px rgba(0,0,0,.6)}
.eco-card h3{font-size:1.1rem}
.eco-card p{color:var(--text-mute);font-size:.9rem}



/* Ecosystem is a light section on the original page. */
#ecosystem.ecosystem-light{background:#fff;color:#17171b}
#ecosystem .section-head h2{color:#17171b}
#ecosystem .section-head .lead{color:#5c5c66}
#ecosystem .eco-card{
  background:#fff;
  color:#17171b;
  border-color:rgba(20,20,28,.12);
  box-shadow:0 12px 30px -22px rgba(0,0,0,.35);
}
#ecosystem .eco-card:hover{
  background:#fafafa;
  color:#17171b;
  border-color:#d1a900;
}
#ecosystem .eco-card h3{color:#17171b}
#ecosystem .eco-card p{color:#6c6c75}

/* =========================================================
   ROADMAP
   ========================================================= */

.roadmap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}

/* Lion image */
.roadmap-art{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.roadmap-art img{
  position:static;
  display:block;
  width:100%;
  max-width:620px;
  height:auto;
  margin:0;
  transform:none;
  object-fit:contain;
  filter:drop-shadow(0 24px 40px rgba(0,0,0,.55));
}

/* Roadmap copy */
.phases{
  display:flex;
  flex-direction:column;
  gap:34px;
}

.phase{
  padding:0;
  margin:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.phase h3{
  margin:0 0 8px;
  font-size:1.35rem;
  line-height:1.2;
  color:var(--gold-hi);
}

.checks li{
  position:relative;
  padding-left:26px;
  margin:6px 0;
  color:var(--text-dim);
}

.checks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:800;
}

.checks li a{
  font-weight:600;
}

.checks-pending li::before{
  content:"⧖";
  color:var(--text-mute);
}

/* Tablet/mobile */
@media (max-width:920px){
  .roadmap{
    grid-template-columns:1fr;
    gap:36px;
  }

  .roadmap-art img{
    width:100%;
    max-width:560px;
    margin:0 auto;
  }

  .phases{
    width:100%;
    max-width:560px;
    margin:0 auto;
  }
}

@media (max-width:520px){
  .roadmap{
    gap:28px;
  }

  .roadmap-art img{
    max-width:100%;
  }

  .phases{
    gap:26px;
  }

  .phase h3{
    font-size:1.2rem;
  }

  .checks li{
    font-size:.98rem;
    line-height:1.4;
  }
}
/* =========================================================
   ROADMAP — MOBILE FIX
   ========================================================= */

@media (max-width:920px){

  .roadmap{
    display:flex;
    flex-direction:column;
    gap:36px;
    width:100%;
  }

  .roadmap-art{
    position:relative;
    width:100%;
    min-height:0;
    height:auto;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .roadmap-art img{
    position:relative;
    top:auto;
    right:auto;
    left:auto;

    width:100%;
    max-width:560px;
    height:auto;

    margin:0 auto;
    transform:none;

    object-fit:contain;
  }

  .phases{
    width:100%;
    max-width:560px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    gap:28px;
  }

  .phase{
    width:100%;
  }
}


@media (max-width:520px){

  .roadmap{
    gap:28px;
  }

  .roadmap-art{
    overflow:visible;
  }

  .roadmap-art img{
    width:115%;
    max-width:460px;
    margin-left:-7.5%;
    margin-right:-7.5%;
  }

  .phases{
    gap:26px;
  }

  .phase h3{
    font-size:1.2rem;
  }

  .checks li{
    padding-left:24px;
    font-size:.97rem;
    line-height:1.4;
  }
}

/* =========================================================
   ARCHIVED
   ========================================================= */
.archived{display:flex;align-items:center;gap:36px;flex-wrap:wrap;justify-content:center;text-align:center}
.archived-media img{border-radius:var(--radius);box-shadow:var(--shadow)}
.archived-copy h2{margin-bottom:8px}
.archived-copy .btn-row{justify-content:center}

/* =========================================================
   LION CTA
   ========================================================= */
.lion-cta{background:
  radial-gradient(80% 120% at 50% 0%,rgba(245,197,24,.10),transparent 60%),var(--bg)}
.lion-logo{margin:0 auto 22px;border-radius:50%;box-shadow:0 16px 30px -10px rgba(0,0,0,.6)}
.lion-title{font-size:clamp(2rem,5vw,3.2rem);letter-spacing:-.03em;margin-bottom:36px}
.explorers{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-bottom:40px}
.explorers a{padding:10px 16px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);transition:transform .18s ease,border-color .18s ease}
.explorers a:hover{transform:translateY(-2px);border-color:var(--gold)}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:#060609;border-top:1px solid var(--border);padding:56px 0 44px}
.disclosure{color:var(--text-mute);font-size:.82rem;line-height:1.7;max-width:900px;margin:0 auto;text-align:center}
.disclosure strong{color:var(--text-dim);letter-spacing:.1em}
.contact{text-align:center;margin-top:22px;color:var(--text-dim);font-size:.95rem}
.footer-social{display:flex;justify-content:center;gap:16px;margin:26px 0}
.footer-social a{opacity:.75;transition:opacity .15s ease,transform .15s ease}
.footer-social a:hover{opacity:1;transform:translateY(-2px)}
.copy{text-align:center;color:var(--text-mute);font-size:.8rem;margin-top:14px}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:920px){
  .nav{
    position:fixed;inset:70px 0 auto 0;flex-direction:column;gap:0;
    background:rgba(8,8,12,.98);border-bottom:1px solid var(--border);
    padding:8px 0 18px;
    clip-path:inset(0 0 100% 0);transition:clip-path .28s ease;
  }
  .nav.open{clip-path:inset(0 0 0 0)}
  .nav a{width:100%;padding:14px 24px}
  .nav .nav-cta{margin:10px 24px 0;width:calc(100% - 48px)}
  .nav-toggle{display:flex}

  .hero-inner{grid-template-columns:1fr;text-align:center;gap:36px}
  .hero-sub{margin-left:auto;margin-right:auto}
  .exchange-row{justify-content:center}
  .hero-art{order:-1;max-width:300px}

  .about-grid,.buy-grid,.alt-guide,.community-grid,.split,.roadmap{
    grid-template-columns:1fr;gap:36px;
  }
  .about-media,.alt-media,.split-media,.roadmap-art{max-width:280px}
  .community-media{order:-1}
  .eco-grid{grid-template-columns:repeat(2,1fr)}
  .banner-tall{text-align:center}
  .banner-left{margin:0 auto}
  .banner-tall .btn-row{justify-content:center}
}

@media (max-width:520px){
  .section{padding:64px 0}
  .banner,.banner-tall{padding:88px 0}
  .eco-grid{grid-template-columns:1fr}
  .wrap{padding:0 18px}
  .steps li{padding:18px}
  .exchange{padding:10px 12px}
}


/* =========================================================
   Fidelity patches — closer to the original Million site
   ========================================================= */

/* CertiK sits independently in the hero's upper-right. */
.hero-certik{
  position:absolute;
  z-index:3;
  top:24px;
  right:max(24px,calc((100vw - var(--maxw))/2 + 24px));
  display:flex;
  align-items:center;
  gap:9px;
  padding:8px 11px;
  color:rgba(255,255,255,.74);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:rgba(8,8,12,.48);
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  backdrop-filter:blur(8px);
}
.hero-certik:hover{color:#fff;border-color:rgba(255,255,255,.25)}
.hero-certik img{width:auto;height:22px}

/* Original light sections. */
#about,
#community,
.lion-cta{
  background:#fff;
  color:#17171b;
}
#about .lead,
#about .feature-list p,
#community .lead,
.lion-cta .lead{color:#5c5c66}
#about h2,#about h3,#community h2,.lion-cta h2{color:#17171b}
#about .about-media img{filter:drop-shadow(0 20px 34px rgba(0,0,0,.16))}
#about a:not(.btn),#community a:not(.btn),.lion-cta a:not(.btn){color:#b18500}
#about a:not(.btn):hover,#community a:not(.btn):hover,.lion-cta a:not(.btn):hover{color:#7f6000}

/* Community is intentionally text/social only — no splash photo. */
#community .community-grid{display:block;max-width:760px;text-align:center}
#community .community-copy{max-width:700px;margin:0 auto}
#community .social-row{justify-content:center}
#community .social{
  background:#fff;
  border-color:rgba(20,20,28,.12);
  box-shadow:0 10px 28px -18px rgba(0,0,0,.35);
}
#community .social:hover{background:#fafafa;border-color:#d1a900}

/* Supply banner uses the Million lion itself as the backdrop. */
#supply{background:#08080c;padding:126px 0}
#supply .banner-bg{
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  opacity:.72;
  filter:none;
}
#supply::after{
  background:linear-gradient(180deg,rgba(8,8,12,.34),rgba(8,8,12,.48));
}
#supply .banner-title,#supply .banner-sub{text-shadow:0 3px 18px rgba(0,0,0,.88)}

/* Full original action set in FAQ. */
.faq-actions{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-top:18px}
.faq-link-note{font-size:.78rem;color:var(--text-mute)}
.faq-a-inner a:not(.btn){font-weight:650}

/* Governance: original artwork + dark background + copy alongside it. */
.governance{
  position:relative;
  overflow:hidden;
  padding:96px 0;
  background:#08080c;
}
.governance-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(8,8,12,.92) 0%,rgba(8,8,12,.76) 48%,rgba(8,8,12,.88) 100%),
    url('images/governance-background.jpg') center/cover no-repeat;
  opacity:.88;
}
.governance-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.governance-media{justify-self:center}
.governance-media img{
  width:min(100%,500px);
  border-radius:2px;
  box-shadow:0 26px 70px -24px rgba(0,0,0,.9);
}
.governance-title{
  font-size:clamp(2.15rem,4.4vw,3rem);
  line-height:1.06;
  letter-spacing:-.02em;
  font-weight:800;
  color:#fff;
  margin:0 0 14px;
}
.governance-subtitle{
  font-size:clamp(1.05rem,1.8vw,1.2rem);
  line-height:1.35;
  letter-spacing:0;
  font-weight:750;
  color:var(--gold);
  margin:0 0 24px;
}
.governance-copy .lead{
  color:#e7e7eb;
  max-width:54ch;
  font-size:1.05rem;
  line-height:1.65;
}
.governance-copy .btn-ghost{color:#fff;border-color:rgba(255,255,255,.3)}
.governance-copy .btn-ghost:hover{color:#fff;border-color:var(--gold)}

/* Final "LION in every MILLION" section is light in the original. */
.lion-cta{background:#fff}
.lion-cta .lion-logo{box-shadow:0 14px 28px -16px rgba(0,0,0,.32)}
.lion-cta .explorers a{
  background:#fff;
  border-color:rgba(20,20,28,.12);
  box-shadow:0 9px 24px -18px rgba(0,0,0,.32);
}
.lion-cta .explorers a:hover{border-color:#d1a900}

@media (max-width:920px){
  .hero-certik{top:16px;right:18px}
  .governance-grid{grid-template-columns:1fr;gap:38px;text-align:center}
  .governance-media{max-width:360px}
  .governance-title{margin-left:auto;margin-right:auto}
  .governance-copy .lead{margin-left:auto;margin-right:auto}
  .governance-copy .btn-row{justify-content:center}
}

@media (max-width:620px){
  .hero{padding-top:108px}
  .hero-certik{left:50%;right:auto;transform:translateX(-50%);white-space:nowrap}
  #supply{padding:96px 0}
  #supply .banner-bg{background-size:cover}
  .governance{padding:76px 0}
}

/* Revision 6: governance scale harmonized with the rest of the site. */
.governance-copy .btn-row{margin-top:28px;align-items:center}
.governance-copy .btn{font-size:.98rem}


/* =========================================================
   REVISION 7
   ========================================================= */

/* Supply banner: larger-impact, all-white typography.
   The number is emphasized by scale and weight, not color. */
#supply .supply-title{
  color:#fff;
  font-size:clamp(3.2rem,7.2vw,5.6rem);
  line-height:.95;
  font-weight:800;
  letter-spacing:-.045em;
  margin:0;
}
#supply .supply-number{
  display:inline-block;
  color:#fff;
  font-size:1.12em;
  font-weight:900;
}
#supply .supply-sub{
  color:#fff;
  font-size:clamp(1.7rem,3.4vw,2.6rem);
  line-height:1.05;
  font-weight:750;
  letter-spacing:-.025em;
  margin-top:18px;
}
#supply .banner-title,
#supply .banner-sub{
  -webkit-text-fill-color:#fff;
}

/* Disabled legacy bridge action. */
.faq-actions .is-disabled{
  opacity:.42;
  cursor:not-allowed;
  pointer-events:none;
  color:var(--text-mute);
  border-color:var(--border);
  box-shadow:none;
}

/* Metafora is a light section in the original page rhythm. */
#metafora{
  background:#fff;
  color:#17171b;
}
#metafora h2{color:#17171b}
#metafora .split-copy .lead,
#metafora .split-copy p{color:#5c5c66}
#metafora .split-media img{
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.16));
}
#metafora a:not(.btn){color:#b18500}
#metafora a:not(.btn):hover{color:#7f6000}

@media (max-width:620px){
  #supply .supply-title{font-size:clamp(2.8rem,13vw,4.2rem)}
  #supply .supply-sub{font-size:clamp(1.45rem,7vw,2rem)}
}


/* =========================================================
   REVISION 8
   Supply reference match + subdued archive
   ========================================================= */

/* Supply: match the reference's large condensed two-line composition. */
#supply{
  padding:0;
  min-height:clamp(460px,46vw,720px);
  display:flex;
  align-items:center;
  text-align:left;
  background:#060708;
}
#supply .banner-bg{
  opacity:1;
  background-size:cover;
  background-position:center 46%;
  filter:none;
}
#supply::after{
  background:
    linear-gradient(90deg,rgba(2,3,4,.63) 0%,rgba(2,3,4,.36) 42%,rgba(2,3,4,.52) 100%),
    linear-gradient(180deg,rgba(2,3,4,.12),rgba(2,3,4,.34));
}
#supply .banner-inner{
  width:100%;
  max-width:1320px;
  padding-top:58px;
  padding-bottom:58px;
}
#supply .supply-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.48em;
  margin:0;
  color:#fff;
  font-family:Impact,Haettenschweiler,"Arial Narrow Bold","Arial Narrow",sans-serif;
  font-size:clamp(4rem,8.1vw,8.5rem);
  font-weight:400;
  line-height:.82;
  letter-spacing:.006em;
  text-transform:uppercase;
  -webkit-text-fill-color:#fff;
  text-shadow:0 3px 22px rgba(0,0,0,.6);
}
#supply .supply-topline{
  display:flex;
  align-items:stretch;
  white-space:nowrap;
}
#supply .supply-number{
  display:inline-flex;
  align-items:center;
  padding:.16em .10em .13em .08em;
  margin-right:.08em;
  background:rgba(161,112,13,.34);
  color:#fff;
  font-size:1em;
  font-weight:400;
  line-height:.78;
  -webkit-text-fill-color:#fff;
}
#supply .supply-fixed{
  display:inline-flex;
  align-items:center;
  color:#fff;
  line-height:.78;
}
#supply .supply-bottomline{
  display:block;
  color:#fff;
  line-height:.82;
}

/* Archived projects should feel intentionally secondary. */
#archived{
  padding:56px 0;
  background:#0a0a0f;
  border-top:1px solid rgba(255,255,255,.035);
  border-bottom:1px solid rgba(255,255,255,.035);
}
#archived .archived{
  gap:24px;
  opacity:.76;
}
#archived .archived-media img{
  width:150px;
  height:100px;
  object-fit:cover;
  filter:grayscale(.72) brightness(.72);
  opacity:.7;
  border-radius:10px;
  box-shadow:none;
}
#archived .archived-copy h2{
  margin-bottom:4px;
  color:#a0a0aa;
  font-size:1.28rem;
  font-weight:650;
  letter-spacing:-.01em;
}
#archived .archived-copy .btn-row{
  margin-top:12px;
  gap:10px;
}
#archived .archived-copy .btn{
  padding:7px 13px;
  font-size:.8rem;
  font-weight:600;
  color:#92929d;
  border-color:rgba(255,255,255,.09);
  background:transparent;
  box-shadow:none;
}
#archived .archived-copy .btn:hover{
  color:#d0d0d6;
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.025);
  transform:none;
  box-shadow:none;
}

@media (max-width:900px){
  #supply{
    min-height:clamp(400px,65vw,580px);
  }
  #supply .supply-title{
    font-size:clamp(3.45rem,10.8vw,6.5rem);
  }
}

@media (max-width:620px){
  #supply{
    min-height:400px;
  }
  #supply .banner-bg{
    background-position:center center;
  }
  #supply .banner-inner{
    padding-top:44px;
    padding-bottom:44px;
  }
  #supply .supply-title{
    gap:.42em;
    font-size:clamp(2.65rem,13.8vw,4.6rem);
  }
  #supply .supply-topline{
    white-space:normal;
    flex-wrap:wrap;
    row-gap:.14em;
  }
  #supply .supply-number{
    margin-right:.09em;
  }
  #archived{
    padding:42px 0;
  }
  #archived .archived-media img{
    width:124px;
    height:82px;
  }
}


/* =========================================================
   REVISION 9
   Original-style centered supply + brighter archive
   ========================================================= */

/*
  The live site presents this as:
  "1,000,000 Fixed"
  "Limited supply."
  Keep the block centered and use an original-style condensed,
  uppercase presentation with the gold panel behind only the number.
*/
#supply{
  min-height:clamp(430px,42vw,640px);
  padding:72px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
#supply .banner-bg{
  background-size:cover;
  background-position:center center;
  opacity:1;
}
#supply::after{
  background:
    linear-gradient(90deg,rgba(3,4,5,.55),rgba(3,4,5,.28) 50%,rgba(3,4,5,.55)),
    linear-gradient(180deg,rgba(3,4,5,.12),rgba(3,4,5,.32));
}
#supply .banner-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  max-width:none;
  width:100%;
  padding:0 24px;
}
#supply .supply-title{
  width:max-content;
  max-width:100%;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.42em;
  text-align:left;
  font-family:Impact,Haettenschweiler,"Arial Narrow Bold","Arial Narrow",sans-serif;
  font-size:clamp(3.7rem,6.9vw,7rem);
  font-weight:400;
  line-height:.82;
  letter-spacing:.008em;
  text-transform:uppercase;
  color:#fff;
  -webkit-text-fill-color:#fff;
  text-shadow:0 3px 18px rgba(0,0,0,.55);
}
#supply .supply-topline{
  display:flex;
  align-items:stretch;
  justify-content:flex-start;
  white-space:nowrap;
}
#supply .supply-number{
  display:inline-flex;
  align-items:center;
  padding:.16em .11em .13em .08em;
  margin-right:.08em;
  background:rgba(153,105,12,.40);
  color:#fff;
  font-size:1em;
  font-weight:400;
  line-height:.78;
  -webkit-text-fill-color:#fff;
}
#supply .supply-fixed{
  display:inline-flex;
  align-items:center;
  line-height:.78;
  color:#fff;
  -webkit-text-fill-color:#fff;
}
#supply .supply-bottomline{
  display:block;
  line-height:.82;
  color:#fff;
  -webkit-text-fill-color:#fff;
}

/* Archived Projects remains secondary, but now passes a much clearer
   visual contrast test against its background. */
#archived{
  padding:58px 0;
  background:#17171f;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
#archived .archived{
  gap:26px;
  opacity:1;
}
#archived .archived-media img{
  width:160px;
  height:106px;
  object-fit:cover;
  filter:grayscale(.35) brightness(.88);
  opacity:.88;
  border-radius:10px;
  box-shadow:0 10px 24px -16px rgba(0,0,0,.7);
}
#archived .archived-copy h2{
  margin-bottom:5px;
  color:#dedee5;
  font-size:1.38rem;
  font-weight:680;
}
#archived .archived-copy .btn-row{
  margin-top:14px;
  gap:10px;
}
#archived .archived-copy .btn{
  padding:8px 14px;
  font-size:.82rem;
  font-weight:600;
  color:#c4c4cd;
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.025);
}
#archived .archived-copy .btn:hover{
  color:#fff;
  border-color:rgba(255,255,255,.34);
  background:rgba(255,255,255,.06);
  transform:none;
  box-shadow:none;
}

@media (max-width:760px){
  #supply{
    min-height:400px;
    padding:58px 0;
  }
  #supply .supply-title{
    font-size:clamp(2.9rem,11vw,5.2rem);
  }
}

@media (max-width:520px){
  #supply .supply-title{
    width:100%;
    align-items:center;
    text-align:center;
    gap:.4em;
    font-size:clamp(2.55rem,12vw,4rem);
  }
  #supply .supply-topline{
    justify-content:center;
    flex-wrap:wrap;
    row-gap:.15em;
    white-space:normal;
  }
  #supply .supply-bottomline{
    text-align:center;
  }
  #archived{
    padding:46px 0;
  }
}


/* =========================================================
   LOCAL ASSET SIZE NORMALIZATION
   =========================================================
   The local package uses the full-resolution source files rather than
   Wix's server-resized variants. These rules preserve the intended
   on-page dimensions and cropping when the source images are local.
*/

/* Header / hero */
.brand img{
  width:40px;
  height:40px;
  object-fit:contain;
}
.hero-certik .asset-certik-logo{
  width:auto;
  height:22px;
  max-width:115px;
  object-fit:contain;
}
.exchange-row .asset-uniswap-logo{
  width:auto;
  height:34px;
  max-width:200px;
  object-fit:contain;
}
.exchange-row .asset-pancakeswap-logo,
.exchange-row .asset-quickswap-logo{
  width:auto;
  height:30px;
  max-width:200px;
  object-fit:contain;
}
.hero-art img{
  width:min(440px,100%);
  height:auto;
}

/* About / buy */
.about-media img{
  width:min(300px,100%);
  height:auto;
}
.buy-lion{
  width:180px;
  height:180px;
  object-fit:contain;
}
.buy-alt-links .asset-quickswap-logo,
.buy-alt-links .asset-pancakeswap-logo{
  width:auto;
  height:26px;
  max-width:200px;
  object-fit:contain;
}

/* Community / Metafora */
.social img{
  width:52px;
  height:52px;
  object-fit:contain;
}
#metafora .split-media img{
  width:150px;
  height:auto;
  max-width:100%;
}

/* Governance artwork: reproduce the Wix crop ratio instead of exposing
   the full uncropped original. */
.governance-media img{
  width:min(100%,500px);
  aspect-ratio:690 / 610;
  height:auto;
  object-fit:cover;
  object-position:center;
}

/* Ecosystem thumbnails were square Wix 'fill' crops. */
.eco-card img{
  width:120px;
  height:120px;
  object-fit:cover;
}

/* Final CTA and external-service logos. */
.lion-logo{
  width:88px;
  height:88px;
  object-fit:contain;
}
.explorers .asset-explorer-logo{
  width:auto;
  height:34px;
  max-width:160px;
  object-fit:contain;
}
.footer-social img{
  width:40px;
  height:40px;
  object-fit:contain;
}

@media (max-width:520px){
  .exchange-row .asset-uniswap-logo{height:30px}
  .exchange-row .asset-pancakeswap-logo,
  .exchange-row .asset-quickswap-logo{height:27px}
  .explorers .asset-explorer-logo{height:30px}
}
