/* ==========================================================================
   $JEANRINO — Jean Tilcayo
   ========================================================================== */

:root{
  --bg: #080502;
  --bg-soft: #120c06;
  --panel: #17100a;
  --panel-border: rgba(212,164,99,0.16);

  --amber-deep: #6b3810;
  --amber: #b4703c;
  --amber-light: #d9a463;
  --gold: #f0b04a;
  --gold-bright: #ffcf72;
  --blonde: #e8d0a0;
  --cream: #f6ecd9;

  --text: #f5ece0;
  --text-dim: #c9b79c;
  --text-faint: #8a7a63;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --header-h: 84px;
}

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

body{
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,.brand-text,.hero-title,.loader-name{
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection{ background: var(--gold); color:#241305; }

/* scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--bg); }
::-webkit-scrollbar-thumb{ background: linear-gradient(var(--amber), var(--gold)); border-radius:10px; }

/* ============ GRAIN OVERLAY ============ */
.grain{
  position: fixed; inset:0;
  background-image:url('assets/noise.png');
  background-size: 256px 256px;
  opacity:.5;
  pointer-events:none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress{
  position:fixed; top:0; left:0; right:0; height:3px; z-index:9999;
  background: rgba(255,255,255,0.03);
}
.scroll-progress-fill{
  height:100%; width:0%;
  background: linear-gradient(90deg, var(--amber), var(--gold-bright));
  box-shadow: 0 0 12px var(--gold);
  transition: width .08s linear;
}

/* ============ LOADER ============ */
#loader{
  position: fixed; inset:0; z-index: 10000;
  background: #050301;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
#loader.hidden{ opacity:0; visibility:hidden; pointer-events:none; }

.loader-media{
  position:absolute; inset:0;
  overflow:hidden;
}
.loader-media img{
  width:100%; height:100%; object-fit:cover;
  object-position: center 30%;
  opacity:.55;
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.05);
  animation: loaderZoom 3.2s ease-out forwards;
}
@keyframes loaderZoom{ from{ transform:scale(1.18);} to{ transform:scale(1.02);} }

.loader-vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at center, transparent 30%, #050301 92%),
    linear-gradient(180deg, rgba(5,3,1,.4), rgba(5,3,1,.85) 80%);
}

.loader-fg{
  position:relative; z-index:2;
  text-align:center;
  animation: fadeUp .8s var(--ease) both .15s;
}
.loader-name{
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: .04em;
  background: linear-gradient(120deg, var(--cream), var(--gold-bright) 50%, var(--amber-light));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-bottom: 22px;
}
.loader-bar-track{
  width: min(280px, 60vw); height:3px; border-radius:2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 10px;
  overflow:hidden;
}
.loader-bar-fill{
  height:100%; width:0%;
  background: linear-gradient(90deg, var(--amber), var(--gold-bright));
  box-shadow: 0 0 10px var(--gold);
}
.loader-pct{
  font-size:12px; letter-spacing:.18em; color: var(--text-dim);
}

@keyframes fadeUp{ from{ opacity:0; transform:translateY(16px);} to{ opacity:1; transform:translateY(0);} }

/* ============ HEADER ============ */
#siteHeader{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding-top: 14px;
}
.header-wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 58px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(15,10,5,.55);
  border: 1px solid rgba(212,164,99,0.18);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transition: background .3s ease, box-shadow .3s ease;
}
#siteHeader.scrolled .header-wrap{
  background: rgba(10,7,4,.78);
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:36px; height:36px; border-radius:50%;
  object-fit:cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(240,176,74,.15);
}
.brand-text{
  font-weight:700; font-size:15px; letter-spacing:.03em;
  color: var(--cream);
  white-space:nowrap;
}

.nav-desktop{ display:flex; gap:28px; }
.nav-desktop a{
  font-size:14px; color: var(--text-dim); font-weight:500;
  position:relative; padding:4px 0;
  transition: color .25s ease;
}
.nav-desktop a:hover{ color: var(--gold-bright); }
.nav-desktop a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px;
  background: var(--gold); transition: width .25s ease;
}
.nav-desktop a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(240,176,74,.08);
  border: 1px solid rgba(212,164,99,0.22);
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}
.icon-btn svg{ width:16px; height:16px; fill:var(--cream); }
.icon-btn:hover{ transform: translateY(-2px) scale(1.06); background: rgba(240,176,74,.18); border-color: var(--gold); }

.btn-ca-mini{
  font-size:12px; font-weight:700; letter-spacing:.04em;
  padding: 9px 16px; border-radius:999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  border: 1px solid rgba(255,207,114,.35);
  color: var(--cream);
  white-space:nowrap;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.btn-ca-mini:hover{ transform: translateY(-2px); box-shadow: 0 8px 22px rgba(180,112,60,.35); }

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

.nav-mobile{
  max-height:0; overflow:hidden; opacity:0;
  transition: max-height .4s var(--ease), opacity .3s ease;
  margin-top:8px; border-radius:22px;
  background: rgba(12,8,4,.92);
  border: 1px solid rgba(212,164,99,0.18);
  backdrop-filter: blur(16px);
}
.nav-mobile.open{ max-height:340px; opacity:1; }
.nav-mobile a{
  display:block; padding:14px 24px; font-size:15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-dim);
}
.nav-mobile-socials{ display:flex; gap:0; }
.nav-mobile-socials a{ flex:1; text-align:center; color: var(--gold-bright); font-weight:600; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 24px; border-radius: 999px;
  font-weight:700; font-size:14px; letter-spacing:.01em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease, background .3s ease;
  white-space: nowrap;
}
.btn-lg{ padding: 18px 30px; font-size:15px; }

.btn-primary{
  background: linear-gradient(135deg, var(--gold-bright), var(--amber) 60%, var(--amber-deep));
  color: #241304;
  box-shadow: 0 10px 30px rgba(212,140,60,.3), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover{ transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(240,176,74,.45), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-arrow{ width:16px; height:16px; stroke:#241304; stroke-width:2.4; fill:none; transition: transform .3s var(--ease); }
.btn-primary:hover .btn-arrow{ transform: translateX(4px); }

.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(212,164,99,.35);
  color: var(--cream);
}
.btn-ghost:hover{ background: rgba(240,176,74,.1); border-color: var(--gold); transform: translateY(-3px); }
.ca-label{ color: var(--text-faint); font-weight:500; }
.ca-value{
  font-family: "Space Grotesk", monospace;
  max-width: 160px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  font-size:13px;
}
.copy-icon{ width:15px; height:15px; stroke: var(--gold-bright); stroke-width:2; fill:none; }

.hero-cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.hero-cta-row.centered{ justify-content:center; }
.hero-links-row{ margin-top:18px; }
.link-underline{
  font-size:14px; color: var(--gold-bright);
  border-bottom: 1px solid rgba(240,176,74,.4);
  padding-bottom:2px;
  transition: border-color .25s ease, opacity .25s ease;
}
.link-underline:hover{ border-color: var(--gold-bright); opacity:.8; }

/* ============ REVEAL ANIMATION ============ */
[data-reveal]{
  opacity:0; transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex; align-items:center;
  padding-top: var(--header-h);
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:-5%;
  background-size:cover; background-position:center;
  filter: blur(2px);
  transform: scale(1.1);
  z-index:0;
}
.hero-bg::after{ content:''; }
.hero::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,0,0,0) 0%, var(--bg) 78%), linear-gradient(180deg, rgba(8,5,2,.4), var(--bg) 96%);
  z-index:1;
}
.hero-glow{
  position:absolute; border-radius:50%;
  filter: blur(90px);
  z-index:1; pointer-events:none;
}
.hero-glow-1{
  width:560px; height:560px; right:-10%; top:8%;
  background: radial-gradient(circle, rgba(240,176,74,.35), transparent 70%);
  animation: floaty 9s ease-in-out infinite;
}
.hero-glow-2{
  width:420px; height:420px; left:-8%; bottom:-5%;
  background: radial-gradient(circle, rgba(180,112,60,.28), transparent 70%);
  animation: floaty 11s ease-in-out infinite reverse;
}
.hero-glow-3{
  width:600px; height:600px; left:50%; top:50%; transform:translate(-50%,-50%);
  background: radial-gradient(circle, rgba(240,176,74,.3), transparent 70%);
  z-index:0;
}
@keyframes floaty{ 0%,100%{ transform: translateY(0) translateX(0);} 50%{ transform: translateY(-30px) translateX(15px);} }

.hero-fur-strand{ display:none; }

.hero-grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns: 1.05fr .95fr;
  align-items:center; gap:40px;
  padding-top: 40px; padding-bottom: 60px;
}

.ticker-badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:.12em; font-weight:600;
  color: var(--gold-bright);
  padding:8px 16px; border-radius:999px;
  background: rgba(240,176,74,.08);
  border:1px solid rgba(240,176,74,.3);
  margin-bottom:26px;
}
.ticker-badge .dot{
  width:7px; height:7px; border-radius:50%; background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.4; transform:scale(.7);} }

.hero-title{
  font-size: clamp(48px, 8vw, 96px);
  font-weight:800; line-height:.92; letter-spacing:-.01em;
  margin:0;
}
.hero-title-line{ display:block; color: var(--cream); }
.hero-title-accent{
  background: linear-gradient(120deg, var(--gold-bright), var(--amber-light) 45%, var(--amber));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  filter: drop-shadow(0 4px 30px rgba(240,176,74,.25));
}
.hero-ticker{
  font-size: clamp(20px, 3vw, 28px);
  font-weight:700; color: var(--amber-light);
  letter-spacing:.03em;
  margin: 14px 0 0;
  font-family: "Space Grotesk", monospace;
}
.hero-sub{
  font-size:17px; color: var(--text-dim); max-width:480px;
  margin: 18px 0 0; line-height:1.55;
}

.hero-visual{
  position:relative; display:flex; align-items:center; justify-content:center;
  perspective: 1200px;
}
.hero-visual-ring{
  position:absolute; width:105%; padding-top:105%;
  border-radius:50%;
  border: 1px dashed rgba(240,176,74,.25);
  animation: spin 30s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero-img{
  width: min(440px, 88%);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)) drop-shadow(0 0 60px rgba(240,176,74,.18));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .15s ease-out;
}
.floating-chip{
  position:absolute;
  font-size:11px; font-weight:700; letter-spacing:.06em;
  padding:9px 14px; border-radius:999px;
  background: rgba(15,10,5,.75);
  border:1px solid rgba(240,176,74,.35);
  color: var(--gold-bright);
  backdrop-filter: blur(8px);
  animation: floaty 7s ease-in-out infinite;
}
.chip-1{ top:8%; left:-4%; animation-delay:.3s; }
.chip-2{ bottom:12%; right:-6%; animation-delay:1.2s; }

.scroll-cue{
  position:absolute; left:50%; bottom:28px; transform:translateX(-50%);
  width:26px; height:42px; border-radius:16px;
  border: 2px solid rgba(245,236,224,.35);
  z-index:2;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; border-radius:2px;
  background: var(--gold-bright);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{ 0%{ opacity:1; top:8px;} 70%{ opacity:0; top:20px;} 100%{ opacity:0; top:8px;} }

/* ============ MARQUEE ============ */
.marquee{
  position:relative; z-index:2;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber) 50%, var(--amber-deep));
  padding: 14px 0;
  overflow:hidden;
  border-top: 1px solid rgba(240,176,74,.3);
  border-bottom: 1px solid rgba(240,176,74,.3);
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.marquee-track{
  display:flex; width:max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span{
  font-size: 17px; font-weight:800; letter-spacing:.04em;
  color: rgba(8,5,2,.88);
  white-space:nowrap;
  padding-right: 4px;
}
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============ SECTION GENERIC ============ */
section{ position:relative; padding: 120px 0; }
.section-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:.16;
  z-index:0;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}
.eyebrow{
  display:inline-block; font-size:12px; letter-spacing:.18em; font-weight:700;
  color: var(--gold-bright); text-transform:uppercase;
  margin-bottom:14px;
}
.section-title{
  font-size: clamp(32px, 5vw, 52px);
  font-weight:800; line-height:1.08; letter-spacing:-.01em;
  color: var(--cream);
  margin:0;
}
.section-sub{
  font-size:16px; color: var(--text-dim); max-width:560px;
  margin: 16px 0 0; line-height:1.6;
}
.section-head{ margin-bottom:56px; }

/* ============ LORE ============ */
.lore-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns: .8fr 1.2fr; gap:64px; align-items:center;
}
.lore-visual{ position:relative; perspective:1000px; }
.lore-img{
  width:100%; border-radius: var(--radius-lg);
  aspect-ratio:1/1; object-fit:cover;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  transform-style:preserve-3d;
  transition: transform .2s ease-out;
}
.lore-frame{
  position:absolute; inset:-14px;
  border-radius: calc(var(--radius-lg) + 10px);
  border: 1px solid rgba(240,176,74,.3);
  pointer-events:none;
  z-index:-1;
}
.lore-text{
  font-size:16px; line-height:1.75; color: var(--text-dim);
  margin: 0 0 18px;
}
.lore-text em{ color: var(--gold-bright); font-style:normal; }
.lore-quote{
  margin-top:28px; padding:24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(240,176,74,.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size:16px; font-style:italic; color: var(--cream);
  position:relative;
}
.quote-mark{ font-size:32px; color: var(--gold); opacity:.6; line-height:0; position:relative; top:8px; }
.quote-attr{ display:block; margin-top:10px; font-size:13px; font-style:normal; color: var(--text-faint); }

/* ============ HOW TO BUY ============ */
.buy-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:20px;
  position:relative; z-index:1;
}
.buy-card{
  background: linear-gradient(160deg, rgba(240,176,74,.06), rgba(255,255,255,.015));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transform-style:preserve-3d;
  transition: transform .2s ease-out, border-color .3s ease, box-shadow .3s ease;
}
.buy-card:hover{ border-color: rgba(240,176,74,.5); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.buy-num{
  font-size:34px; font-weight:800;
  background: linear-gradient(135deg, var(--gold-bright), var(--amber));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-bottom:12px;
}
.buy-card h3{ font-size:18px; margin: 0 0 10px; color: var(--cream); }
.buy-card p{ font-size:14px; line-height:1.6; color: var(--text-dim); margin:0; }

.buy-cta{
  margin-top:54px; display:flex; flex-wrap:wrap; gap:16px; justify-content:center;
  position:relative; z-index:1;
}

/* ============ CHART ============ */
.chart-frame{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  aspect-ratio: 16/10;
  z-index:1;
}
.chart-frame-glow{
  position:absolute; inset:-2px; z-index:-1; border-radius:inherit;
  background: linear-gradient(120deg, var(--amber), transparent 40%, var(--gold) 80%);
  opacity:.5; filter: blur(20px);
}
.chart-frame iframe{
  width:100%; height:100%; border:0; display:block;
}
.chart-placeholder{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; gap:8px; padding: 40px;
  color: var(--text-dim); font-size:15px; line-height:1.6;
}
.chart-placeholder code{
  color: var(--gold-bright); background: rgba(240,176,74,.08);
  padding:2px 8px; border-radius:6px; font-size:13px;
}
.chart-links{ text-align:center; margin-top:26px; position:relative; z-index:1; }

/* ============ ROADMAP ============ */
.timeline{ position:relative; max-width:760px; margin:0 auto; }
.timeline-line{
  position:absolute; left:11px; top:8px; bottom:8px; width:2px;
  background: linear-gradient(180deg, var(--amber), rgba(240,176,74,.05));
}
.timeline-item{ position:relative; padding-left:50px; margin-bottom:36px; }
.timeline-item:last-child{ margin-bottom:0; }
.timeline-dot{
  position:absolute; left:0; top:6px; width:24px; height:24px; border-radius:50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(240,176,74,.08);
}
.timeline-dot::after{
  content:''; position:absolute; inset:5px; border-radius:50%;
  background: var(--gold-bright);
}
.timeline-card{
  background: linear-gradient(160deg, rgba(240,176,74,.06), rgba(255,255,255,.015));
  border:1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding:26px 28px;
  transform-style:preserve-3d;
  transition: transform .2s ease-out, border-color .3s ease;
}
.timeline-card:hover{ border-color: rgba(240,176,74,.5); }
.timeline-phase{
  font-size:11px; letter-spacing:.14em; font-weight:700; text-transform:uppercase;
  color: var(--gold-bright);
}
.timeline-card h3{ font-size:20px; margin:8px 0 10px; color:var(--cream); }
.timeline-card p{ font-size:14px; line-height:1.6; color: var(--text-dim); margin:0; }

/* ============ FINAL CTA ============ */
.final-cta{
  padding: 100px 0 140px;
  text-align:center;
  overflow:hidden;
}
.final-cta-inner{ position:relative; z-index:1; }
.final-cta-img{
  width:140px; height:140px; border-radius:50%; object-fit:cover;
  margin: 0 auto 26px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(240,176,74,.1), 0 20px 50px rgba(0,0,0,.4);
}
.final-cta-title{
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight:800; color: var(--cream); margin:0 0 8px;
}

/* ============ FOOTER ============ */
.site-footer{
  padding: 60px 0 40px;
  border-top: 1px solid var(--panel-border);
  background: linear-gradient(180deg, transparent, rgba(180,112,60,.04));
}
.footer-top{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
  margin-bottom:36px;
}
.footer-socials{ display:flex; gap:10px; }
.footer-jump{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom:32px;
}
.footer-jump a{
  font-size:13px; font-weight:600; padding:10px 18px; border-radius:999px;
  background: rgba(240,176,74,.06);
  border:1px solid var(--panel-border);
  color: var(--text-dim);
  transition: all .25s var(--ease);
}
.footer-jump a:hover{
  color: #241304; background: linear-gradient(135deg, var(--gold-bright), var(--amber));
  border-color:transparent; transform: translateY(-2px);
}
.footer-ca{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  font-size:13px; color: var(--text-dim);
  background: rgba(0,0,0,.25);
  border:1px solid var(--panel-border);
  padding: 12px 18px; border-radius: 12px;
  margin-bottom: 28px;
}
.footer-ca code{ color: var(--gold-bright); word-break:break-all; }
.footer-ca button{
  background:none; border:none; padding:4px; display:flex;
}
.footer-ca button svg{ width:15px; height:15px; stroke: var(--gold-bright); stroke-width:2; fill:none; }
.footer-disclaimer{ font-size:12px; line-height:1.6; color: var(--text-faint); max-width:720px; margin:0 0 14px; }
.footer-copy{ font-size:12px; color: var(--text-faint); margin:0; }

/* ============ TOAST ============ */
.toast{
  position:fixed; bottom:28px; left:50%; transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--gold-bright), var(--amber));
  color:#241304; font-weight:700; font-size:14px;
  padding:13px 24px; border-radius:999px;
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
  opacity:0; pointer-events:none;
  transition: opacity .3s ease, transform .3s var(--ease);
  z-index: 10001;
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-cta-row{ justify-content:center; }
  .hero-visual{ order:-1; margin-bottom:10px; }
  .lore-grid{ grid-template-columns:1fr; }
  .buy-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px){
  .nav-desktop, .header-actions{ display:none; }
  .burger{ display:flex; }
  section{ padding: 88px 0; }
  .buy-grid{ grid-template-columns:1fr; }
  .final-cta-img{ width:110px; height:110px; }
  .footer-top{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 420px){
  .hero-title{ font-size: 44px; }
  .ca-value{ max-width:100px; }
}
@media (max-width: 500px){
  .chip-1{ left:0; font-size:10px; }
  .chip-2{ right:0; font-size:10px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}
