/* ==========================================================================
   RICHDOGE — design tokens
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root{
  /* palette — lifted from the wall / cigar / cash in the hero art */
  --wall:        #e9d3aa;   /* light tan wall */
  --wall-dark:   #4a3423;   /* shadow wedge on the wall */
  --wall-deep:   #2c1e14;   /* deepest brown, footer/nav */
  --ink:         #241a10;   /* near-black brown, body text */
  --ink-soft:    #5a4633;
  --cream:       #f8edd8;   /* card surface */
  --cream-2:     #f1e2c2;
  --cigar:       #7a4a26;
  --cigar-dark:  #4f2f18;
  --money:       #1f7a3e;   /* bill green */
  --money-light: #3fa85c;
  --money-dark:  #123d22;
  --money-ink:   #eafff0;
  --gold:        #d8a93b;
  --gold-light:  #f0cc6f;
  --red-flag:    #b5432e;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --radius-pill: 999px;

  /* kept deliberately light — large-blur shadows are expensive to repaint
     on hover/transition and were contributing to the jank */
  --shadow-card: 0 6px 16px -8px rgba(44, 30, 20, 0.28);
  --shadow-pop:  0 8px 20px -8px rgba(18, 61, 34, 0.32);

  --font-display: 'Bungee', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--wall);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:400; line-height:1.05; letter-spacing: -0.01em; }
p{ margin:0; }

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

::selection{ background: var(--gold); color: var(--wall-deep); }

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* NOTE: a fixed full-viewport grain layer using an SVG feTurbulence filter +
   mix-blend-mode used to sit here. It forced the browser to recomposite the
   whole page on every scroll/paint frame and was the main cause of jank —
   removed entirely rather than lightened. */

/* ==========================================================================
   Eyebrow / labels
   ========================================================================== */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--money-dark);
  background: var(--money-ink);
  border: 1px solid var(--money-light);
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
}
.eyebrow .dot{
  width:7px; height:7px; border-radius:50%;
  background: var(--money);
  box-shadow: 0 0 0 3px rgba(31,122,62,.18);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(1.5); opacity:.6; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--money);
  color: var(--money-ink);
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover{ transform: translateY(-2px) scale(1.015); background: var(--money-light); }
.btn-primary:active{ transform: translateY(0) scale(.99); }

.btn-gold{
  background: var(--gold);
  color: var(--wall-deep);
  box-shadow: 0 14px 30px -12px rgba(216,169,59,.55);
}
.btn-gold:hover{ transform: translateY(-2px) scale(1.015); background: var(--gold-light); }

.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover{ background: var(--ink); color: var(--wall); }

.btn-outline-light{
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,237,216,.5);
}
.btn-outline-light:hover{ background: rgba(248,237,216,.12); border-color: var(--cream); }

.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.5; cursor:not-allowed; transform:none !important; }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav{
  position: sticky; top:0; z-index: 200;
  /* solid instead of blurred-glass: backdrop-filter on a sticky element
     forces a re-blur on every scroll frame and was a big source of jank */
  background: rgba(30, 20, 13, .97);
  border-bottom: 1px solid rgba(216,169,59,.25);
}
.site-nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--cream);
}
.brand img{ width:38px; height:38px; border-radius:50%; border:2px solid var(--gold); object-fit:cover; }
.brand span.tick{ color: var(--gold-light); font-size:11px; font-family:var(--font-mono); align-self:flex-start; margin-top:4px;}

.nav-links{
  display:flex; align-items:center; gap:2px;
}
.nav-links a{
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(248,237,216,.75);
  border-radius: var(--radius-pill);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover{ color: var(--cream); background: rgba(248,237,216,.08); }
.nav-links a.active{ color: var(--wall-deep); background: var(--gold); }

.nav-right{ display:flex; align-items:center; gap:12px; }

.nav-toggle{
  display:none;
  background:none; border:none; color:var(--cream);
  width:40px; height:40px; border-radius:8px;
}
.nav-toggle svg{ width:22px; height:22px; }

/* Wallet button */
.wallet-btn{
  display:flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-weight:600; font-size: 13.5px;
  padding: 10px 16px 10px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--wall-deep);
  border: 2px solid var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .15s ease, background .15s ease;
}
.wallet-btn:hover{ transform: translateY(-1px); background: var(--gold-light); }
.wallet-btn.connected{
  background: rgba(63,168,92,.15);
  color: var(--money-light);
  border-color: var(--money-light);
}
.wallet-btn .ph-dot{ width:8px; height:8px; border-radius:50%; background: var(--wall-deep); }
.wallet-btn.connected .ph-dot{ background: var(--money-light); box-shadow: 0 0 0 3px rgba(63,168,92,.25); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--wall);
}
.hero::before{
  /* diagonal shadow wedge like the source art — kept as a small corner
     accent only, clipped well clear of the copy column, so body text never
     sits on top of it (this was making the lede paragraph unreadable) */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(115deg, var(--wall-dark) 0%, var(--wall-dark) 18%, transparent 46%);
  clip-path: polygon(0 0, 34% 0, 0 38%);
  opacity: .9;
  z-index:0;
}
.hero .wrap{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap: 40px;
  padding-top: 74px;
  padding-bottom: 40px;
  min-height: 640px;
}
.hero-copy h1{
  font-size: clamp(40px, 5.4vw, 74px);
  margin: 18px 0 22px;
  color: var(--wall-deep);
}
.hero-copy h1 .line-green{ color: var(--money-dark); -webkit-text-stroke: 1px var(--money-dark); }
.hero-copy h1 .line-gold{ color: var(--gold); text-shadow: 2px 2px 0 var(--wall-deep); }
.hero-copy p.lede{
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 34px; }

.hero-stats{
  display:flex; gap: 10px; flex-wrap:wrap;
}
.stat-chip{
  display:flex; align-items:center; gap:8px;
  background: rgba(248,237,216,.65);
  border: 1px solid rgba(74,52,35,.18);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight:600;
  color: var(--wall-deep);
}
.stat-chip svg{ width:15px; height:15px; flex-shrink:0; color: var(--money); }

.hero-art{
  position:relative;
  z-index: 2;
}
.hero-art .frame{
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--wall-deep);
}
.hero-art img{ width:100%; height:100%; object-fit:cover; }

.hero-counter{
  position:absolute;
  bottom: -18px; left: -18px;
  background: var(--wall-deep);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--gold);
  z-index: 3;
}
.hero-counter .num{
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight:700;
  color: var(--gold-light);
}
.hero-counter .lbl{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; color: rgba(248,237,216,.7); }

/* smoke rings — signature motif, echoes the cigar in the source art */
.smoke-field{
  position:absolute;
  pointer-events:none;
  z-index: 3;
}
.smoke-ring{
  position:absolute;
  border: 2.5px solid rgba(248,237,216,.55);
  border-radius: 50%;
  opacity:0;
  animation: rise-fade 6s ease-in infinite;
  will-change: transform, opacity;
}
.smoke-ring:nth-child(1){ width:26px; height:26px; left:0; animation-delay: 0s; }
.smoke-ring:nth-child(2){ width:18px; height:18px; left:22px; animation-delay: 1.4s; }
.smoke-ring:nth-child(3){ width:34px; height:34px; left:-14px; animation-delay: 2.9s; }
.smoke-ring:nth-child(4){ width:14px; height:14px; left:10px; animation-delay: 4.3s; }
@keyframes rise-fade{
  0%{ transform: translateY(0) scale(.7); opacity:0; }
  12%{ opacity:.85; }
  75%{ opacity:.25; }
  100%{ transform: translateY(-160px) scale(1.5); opacity:0; }
}

/* floating cash bill particles, ambient */
.bill-field{ position:absolute; inset:0; overflow:hidden; z-index:1; pointer-events:none; }
.bill{
  position:absolute;
  width: 30px; height: 16px;
  background: repeating-linear-gradient(90deg, var(--money) 0 2px, var(--money-light) 2px 4px);
  border: 1px solid var(--money-dark);
  border-radius: 2px;
  opacity: .18;
  animation: drift linear infinite;
  /* transform + opacity only: stays on the compositor, never triggers layout/paint */
  will-change: transform;
}
@keyframes drift{
  0%{ transform: translateY(110vh) rotate(0deg) scale(var(--sc, 1)); }
  100%{ transform: translateY(-10vh) rotate(360deg) scale(var(--sc, 1)); }
}

/* ==========================================================================
   Sections shared
   ========================================================================== */
section{ padding: 96px 0; position:relative; }
.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 44px); margin: 14px 0 16px; color: var(--wall-deep); }
.section-head p{ font-size: 17px; color: var(--ink-soft); line-height:1.6; }

.section-light{ background: var(--wall); }
.section-cream{ background: var(--cream); }
.section-dark{ background: var(--wall-deep); color: var(--cream); }
.section-dark .section-head h2{ color: var(--cream); }
.section-dark .section-head p{ color: rgba(248,237,216,.65); }

/* ==========================================================================
   Feature / tool cards (numbered — mirrors the 4-tool flow)
   ========================================================================== */
.tool-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tool-card{
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  display:flex; flex-direction:column; height:100%;
}
.tool-card:hover{ transform: translateY(-6px); border-color: var(--gold); }
.tool-card .num{
  font-family: var(--font-mono);
  font-size: 13px; font-weight:700;
  color: var(--gold);
  background: var(--wall-deep);
  width: 30px; height:30px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.tool-card .icon-wrap{
  width: 52px; height:52px;
  border-radius: 14px;
  background: var(--money-ink);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
  color: var(--money-dark);
}
.tool-card .icon-wrap svg{ width:26px; height:26px; }
.tool-card h3{ font-family: var(--font-body); font-weight:800; font-size: 19px; margin-bottom: 10px; color: var(--wall-deep); }
.tool-card p{ font-size: 14.5px; color: var(--ink-soft); line-height:1.55; flex-grow:1; margin-bottom: 18px; }
.tool-card .card-link{ font-size: 13.5px; font-weight:700; color: var(--money-dark); display:inline-flex; align-items:center; gap:6px; }
.tool-card .card-link svg{ width:14px; height:14px; transition: transform .15s ease; }
.tool-card:hover .card-link svg{ transform: translateX(3px); }

/* ==========================================================================
   Coin pile / stat pyramid graphic (secondary signature motif)
   ========================================================================== */
.stack-row{ display:flex; align-items:flex-end; gap:6px; height: 46px; }
.stack-bar{
  flex:1;
  background: linear-gradient(180deg, var(--money-light), var(--money-dark));
  border-radius: 3px 3px 0 0;
  animation: grow-up 1.1s cubic-bezier(.2,.9,.3,1.2) both;
}
@keyframes grow-up{ from{ transform: scaleY(0); transform-origin:bottom; } to{ transform: scaleY(1); transform-origin:bottom; } }

/* ==========================================================================
   Steps / how it works
   ========================================================================== */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step{
  position:relative;
  padding: 28px 24px;
  background: var(--cream);
  border-radius: var(--radius-m);
  border-left: 4px solid var(--gold);
}
.step .step-num{ font-family: var(--font-mono); color: var(--gold); font-size:13px; letter-spacing:.1em; }
.step h4{ font-family: var(--font-body); font-weight:800; font-size:17px; margin: 10px 0 8px; color: var(--wall-deep); }
.step p{ font-size:14px; color: var(--ink-soft); line-height:1.55; }

/* ==========================================================================
   Stat band
   ========================================================================== */
.stat-band{
  display:grid; grid-template-columns: repeat(4,1fr);
  gap: 24px;
  border-top: 1px solid rgba(248,237,216,.15);
  border-bottom: 1px solid rgba(248,237,216,.15);
  padding: 40px 0;
}
.stat-band .stat{ text-align:left; }
.stat-band .stat .val{
  font-family: var(--font-mono); font-weight:700;
  font-size: clamp(26px,3vw,38px);
  color: var(--gold-light);
  display:block;
}
.stat-band .stat .lbl{ font-size: 13px; color: rgba(248,237,216,.65); margin-top:6px; display:block; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: linear-gradient(120deg, var(--money-dark), var(--money));
  border-radius: var(--radius-l);
  padding: 56px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 40px;
  flex-wrap:wrap;
  color: var(--money-ink);
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width:220px; height:220px; border-radius:50%;
  background: radial-gradient(circle, rgba(216,169,59,.35), transparent 70%);
}
.cta-band h3{ font-family: var(--font-body); font-weight:800; font-size: 27px; max-width: 460px; position:relative; z-index:1;}
.cta-band p{ margin-top:8px; color: rgba(234,255,240,.8); font-size:15px; position:relative; z-index:1;}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--wall-deep);
  color: rgba(248,237,216,.65);
  padding: 64px 0 30px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(248,237,216,.12);
}
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand p{ font-size: 13.5px; line-height:1.6; max-width: 280px; }
.footer-col h5{
  font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.1em;
  font-size: 12px; color: var(--gold-light); margin-bottom: 16px;
}
.footer-col ul li{ margin-bottom: 10px; }
.footer-col ul li a{ font-size: 14px; transition: color .15s ease; }
.footer-col ul li a:hover{ color: var(--cream); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 26px; font-size: 12.5px; flex-wrap:wrap; gap:10px;
}
.footer-bottom .disclaimer{ max-width: 560px; opacity:.7; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero{
  background: var(--wall-deep);
  color: var(--cream);
  padding: 64px 0 56px;
  position: relative;
  overflow:hidden;
}
.page-hero .wrap{ position:relative; z-index:2; }
.page-hero h1{ font-size: clamp(32px,4.4vw,54px); margin: 14px 0 16px; }
.page-hero p{ font-size:16.5px; color: rgba(248,237,216,.72); max-width: 560px; line-height:1.6; }
.page-hero .eyebrow{ background: rgba(216,169,59,.15); border-color: var(--gold); color: var(--gold-light); }
.page-hero .eyebrow .dot{ background: var(--gold-light); box-shadow: 0 0 0 3px rgba(216,169,59,.25); }

/* ==========================================================================
   Cards generic
   ========================================================================== */
.card{
  background: var(--cream);
  border-radius: var(--radius-m);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ==========================================================================
   Launch form
   ========================================================================== */
.launch-layout{
  display:grid;
  grid-template-columns: 1fr 400px;
  gap: 36px;
  align-items:start;
}
.form-card{
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 38px;
  box-shadow: var(--shadow-card);
}
.field{ margin-bottom: 24px; }
.field label{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap: wrap; row-gap: 4px;
  font-size: 13.5px; font-weight:700; margin-bottom: 8px; color: var(--wall-deep);
}
.field label .hint{ font-weight:500; font-size:12px; color: var(--ink-soft); font-family: var(--font-mono); }
.field input[type=text], .field input[type=number], .field textarea{
  width:100%;
  border: 2px solid rgba(74,52,35,.18);
  background: var(--wall);
  border-radius: var(--radius-s);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus{ border-color: var(--money); background: #fffaf0; outline:none; }
.field textarea{ resize: vertical; min-height: 96px; }
.field .char-count{ font-size:11px; color: var(--ink-soft); text-align:right; margin-top:4px; font-family:var(--font-mono); }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }

.ticker-input{ text-transform:uppercase; font-family: var(--font-mono); letter-spacing:.05em; }

.upload-zone{
  display:flex; align-items:center; gap:18px;
  border: 2px dashed rgba(74,52,35,.3);
  border-radius: var(--radius-m);
  padding: 18px;
  background: var(--wall);
  cursor:pointer;
  transition: border-color .15s ease, background .15s ease;
}
.upload-zone:hover, .upload-zone.dragover{ border-color: var(--money); background: #fffaf0; }
.upload-preview{
  width:72px; height:72px; border-radius:50%;
  background: var(--cream-2);
  border: 2px solid rgba(74,52,35,.2);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; flex-shrink:0;
  color: var(--ink-soft);
}
.upload-preview img{ width:100%; height:100%; object-fit:cover; }
.upload-preview svg{ width:26px; height:26px; }
.upload-text strong{ display:block; font-size:14px; color: var(--wall-deep); margin-bottom:2px; }
.upload-text span{ font-size:12.5px; color: var(--ink-soft); }

/* revoke toggles */
.toggle-list{ display:flex; flex-direction:column; gap:14px; }
.toggle-row{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--wall);
  border: 2px solid rgba(74,52,35,.14);
  border-radius: var(--radius-m);
  transition: border-color .15s ease, background .15s ease;
}
.toggle-row.on{ border-color: var(--money-light); background: var(--money-ink); }
.toggle-row .t-copy strong{ display:block; font-size:14.5px; color: var(--wall-deep); margin-bottom:3px; }
.toggle-row .t-copy p{ font-size:12.5px; color: var(--ink-soft); line-height:1.45; max-width: 320px; }

.switch{
  position:relative; width:50px; height:28px; flex-shrink:0;
}
.switch input{ opacity:0; width:100%; height:100%; position:absolute; margin:0; cursor:pointer; z-index:2; }
.switch .track{
  position:absolute; inset:0; border-radius: var(--radius-pill);
  background: rgba(74,52,35,.25);
  transition: background .18s ease;
}
.switch .thumb{
  position:absolute; top:3px; left:3px;
  width:22px; height:22px; border-radius:50%;
  background: var(--cream);
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease;
}
.switch input:checked ~ .track{ background: var(--money); }
.switch input:checked ~ .thumb{ transform: translateX(22px); background: var(--money-ink); }

/* live preview coin card */
.coin-preview{
  background: var(--wall-deep);
  color: var(--cream);
  border-radius: var(--radius-l);
  padding: 30px;
  position: sticky;
  top: 100px;
  overflow:hidden;
}
.coin-preview .cp-label{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.12em; color: var(--gold-light); margin-bottom: 20px; }
.coin-face{
  width: 108px; height:108px; border-radius:50%;
  margin: 0 auto 18px;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 60%, var(--cigar-dark));
  border: 3px solid var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  box-shadow: 0 0 0 6px rgba(216,169,59,.12), var(--shadow-pop);
}
.coin-face img{ width:100%; height:100%; object-fit:cover; }
.coin-face span{ font-family: var(--font-display); font-size:22px; color: var(--wall-deep); }
.cp-name{ text-align:center; font-family: var(--font-display); font-size:20px; margin-bottom:4px; }
.cp-ticker{ text-align:center; font-family: var(--font-mono); color: var(--gold-light); font-size:13px; margin-bottom:18px; }
.cp-row{ display:flex; justify-content:space-between; font-size:13px; padding:10px 0; border-top:1px solid rgba(248,237,216,.1); }
.cp-row span:first-child{ color: rgba(248,237,216,.55); }
.cp-row span:last-child{ font-family: var(--font-mono); font-weight:600; }
.cp-badges{ display:flex; gap:6px; flex-wrap:wrap; margin-top:16px; }
.cp-badge{
  font-family: var(--font-mono); font-size:10.5px; padding:5px 9px;
  border-radius: var(--radius-pill); border:1px solid rgba(248,237,216,.25);
  color: rgba(248,237,216,.6);
}
.cp-badge.active{ background: var(--money); border-color: var(--money-light); color: var(--money-ink); }

.fee-note{
  display:flex; align-items:center; gap:10px;
  font-size: 12.5px; color: var(--ink-soft);
  margin-top: 18px; padding-top:18px; border-top: 1px dashed rgba(74,52,35,.2);
}
.fee-note .val{ font-family: var(--font-mono); font-weight:700; color: var(--wall-deep); }

/* fee calculator */
.fee-calc{
  margin-top: 20px; padding-top: 18px; border-top: 1px dashed rgba(248,237,216,.2);
}
.fee-calc-head{
  font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.1em;
  color: var(--gold-light); margin-bottom: 12px;
}
.fee-row{
  display:flex; justify-content:space-between; align-items:center;
  font-size: 13px; padding: 7px 0; color: rgba(248,237,216,.55);
}
.fee-row span:last-child{ font-family: var(--font-mono); }
.fee-row-toggle{
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  padding-top: 0; padding-bottom: 0;
  transition: max-height .38s cubic-bezier(.2,.8,.3,1), opacity .3s ease, transform .32s cubic-bezier(.2,.8,.3,1), padding-top .38s ease, padding-bottom .38s ease;
}
.fee-row-toggle[data-active="true"]{
  max-height: 36px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 7px; padding-bottom: 7px;
  color: var(--gold-light);
}
.fee-total-row{
  border-top: 1px solid rgba(248,237,216,.15);
  margin-top: 6px; padding-top: 12px;
  font-weight:700; font-size:15px; color: var(--cream);
}
.fee-total-row span:last-child{ font-family: var(--font-mono); font-size:17px; color: var(--gold-light); }
.fee-sub{ font-size:11.5px; color: rgba(248,237,216,.4); margin-top:8px; line-height:1.5; }

.questions-note{
  margin-top: 16px; font-size: 12.5px; color: var(--ink-soft);
}
.questions-note a{ color: var(--money-dark); font-weight:700; }

/* socials fields */
.social-fields{ display:flex; flex-direction:column; gap:12px; }
.social-field{
  display:flex; align-items:center; gap:12px;
  border: 2px solid rgba(74,52,35,.18);
  background: var(--wall);
  border-radius: var(--radius-s);
  padding: 4px 15px;
  transition: border-color .15s ease, background .15s ease;
}
.social-field:focus-within{ border-color: var(--money); background:#fffaf0; }
.social-field svg{ width:18px; height:18px; flex-shrink:0; color: var(--ink-soft); }
.social-field .social-glyph{
  width:18px; text-align:center; flex-shrink:0; font-weight:800; color: var(--ink-soft); font-family: var(--font-display); font-size:14px;
}
.social-field input{
  border:none; background:none; padding: 11px 0; width:100%; font-family: var(--font-body); font-size:14.5px; color: var(--ink);
}
.social-field input:focus{ outline:none; }

.wallet-gate{
  margin-top: 22px; padding: 16px; border-radius: var(--radius-m);
  background: rgba(216,169,59,.12); border: 1px solid rgba(216,169,59,.4);
  font-size: 13px; color: var(--ink-soft); display:flex; gap:10px; align-items:flex-start;
}
.wallet-gate svg{ width:18px; height:18px; flex-shrink:0; color: var(--gold); margin-top:1px; }

/* success modal */
.modal-overlay{
  position: fixed; inset:0; background: rgba(20,14,9,.72);
  display:flex; align-items:center; justify-content:center;
  z-index: 500; opacity:0; pointer-events:none; transition: opacity .25s ease;
  padding: 20px;
}
.modal-overlay.show{ opacity:1; pointer-events:all; }
.modal-card{
  background: var(--cream); border-radius: var(--radius-l);
  padding: 40px; max-width: 420px; width:100%; text-align:center;
  transform: scale(.92) translateY(10px); transition: transform .3s cubic-bezier(.2,.9,.3,1.2);
  box-shadow: var(--shadow-pop);
  position:relative; overflow:hidden;
}
.modal-overlay.show .modal-card{ transform: scale(1) translateY(0); }
.modal-icon{
  width:76px; height:76px; border-radius:50%; margin:0 auto 18px;
  background: var(--money-ink); display:flex; align-items:center; justify-content:center;
  color: var(--money-dark);
}
.modal-icon svg{ width:38px; height:38px; }
.modal-card h3{ font-family:var(--font-body); font-weight:800; font-size:22px; margin-bottom:10px; color: var(--wall-deep); }
.modal-card p{ font-size:14px; color: var(--ink-soft); line-height:1.55; margin-bottom:22px; }
.modal-addr{
  font-family: var(--font-mono); font-size:12px; background: var(--wall);
  padding:10px 14px; border-radius: var(--radius-s); word-break:break-all; margin-bottom:22px;
  border: 1px solid rgba(74,52,35,.15);
}
.modal-icon-pending{ animation: spin-icon 1.1s linear infinite; }
@keyframes spin-icon{ to{ transform: rotate(360deg); } }

.modal-card-wide{
  max-width: 560px;
  text-align:left;
  max-height: 88vh;
  overflow-y: auto;
}
.modal-card-wide h3, .modal-card-wide > p{ text-align:left; }

/* promo / shill packages */
.promo-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:18px; }
.promo-item{
  display:flex; align-items:flex-start; gap:14px;
  background: var(--wall-deep);
  border: 2px solid rgba(248,237,216,.08);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  cursor:pointer;
  transition: border-color .15s ease, background .15s ease;
}
.promo-item:hover{ border-color: rgba(216,169,59,.4); }
.promo-item.checked{ border-color: var(--gold); background: rgba(216,169,59,.08); }
.promo-item.disabled{ opacity:.4; cursor:not-allowed; pointer-events:none; }
.promo-check{
  appearance:none; -webkit-appearance:none;
  width:20px; height:20px; flex-shrink:0; margin-top:2px;
  border: 2px solid rgba(248,237,216,.35);
  border-radius: 5px;
  background: transparent;
  position:relative;
  order:3;
  margin-left:auto;
}
.promo-check:checked{ background: var(--gold); border-color: var(--gold); }
.promo-check:checked::after{
  content:"";
  position:absolute; left:5px; top:1px;
  width:6px; height:11px;
  border: solid var(--wall-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.promo-logo{
  width:38px; height:38px; border-radius:10px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:16px; color:#fff;
  background: #111;
}
.promo-logo-x{ background:#000; }
.promo-logo-tiktok{ background:#010101; color:#fff; }
.promo-logo-ig{ background: radial-gradient(circle at 30% 110%, #fdf497, #fd5949 45%, #d6249f 70%, #285AEB); color:#fff; }
.promo-logo-weibo{ background:#e6162d; font-size:15px; }
.promo-logo-telegram{ background:#229ed9; }
.promo-logo-bundle{ background: var(--gold); color: var(--wall-deep); }
.promo-body{ flex:1; min-width:0; display:flex; flex-direction:column; gap:8px; }
.promo-head{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.promo-head strong{ font-family: var(--font-body); font-size:15px; color: var(--cream); }
.promo-price{ font-family: var(--font-mono); font-size:13px; color: var(--gold-light); font-weight:700; }
.promo-save{ font-family: var(--font-mono); font-size:10.5px; background: var(--money); color: var(--money-ink); padding:3px 8px; border-radius: var(--radius-pill); font-weight:700; }
.promo-bullets{ display:flex; flex-direction:column; gap:4px; }
.promo-bullets span{ font-size:12.5px; color: rgba(248,237,216,.55); line-height:1.5; position:relative; padding-left:14px; }
.promo-bullets span::before{ content:"•"; position:absolute; left:0; color: var(--gold); }

.promo-total-bar{
  display:flex; justify-content:space-between; align-items:center;
  background: var(--wall); border-radius: var(--radius-m); padding: 14px 18px;
  font-weight:700; font-size:15px; color: var(--wall-deep);
  position: sticky; bottom:0;
}
.promo-total-bar span:last-child{ font-family: var(--font-mono); color: var(--money-dark); font-size:18px; }

/* ==========================================================================
   Tables (affiliate, coin explorer)
   ========================================================================== */
.data-table{ width:100%; border-collapse: collapse; }
.data-table th{
  text-align:left; font-family: var(--font-mono); font-size:11.5px; text-transform:uppercase;
  letter-spacing:.08em; color: var(--ink-soft); padding: 12px 16px; border-bottom: 2px solid rgba(74,52,35,.15);
}
.data-table td{ padding: 16px; border-bottom: 1px solid rgba(74,52,35,.1); font-size:14px; }
.data-table tr:hover td{ background: rgba(216,169,59,.06); }
.pill-status{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-mono); font-size:11.5px; padding:4px 10px; border-radius: var(--radius-pill);
  background: var(--money-ink); color: var(--money-dark); font-weight:600;
}

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */
.accordion-item{
  border-bottom: 1px solid rgba(74,52,35,.15);
}
.accordion-item button{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap: 20px; padding: 24px 4px; background:none; border:none;
  font-family: var(--font-body); font-weight:700; font-size:17px; color: var(--wall-deep);
  text-align:left;
}
.accordion-item button svg{ width:20px; height:20px; flex-shrink:0; transition: transform .25s ease; color: var(--gold); }
.accordion-item.open button svg{ transform: rotate(45deg); }
.accordion-panel{
  max-height:0; overflow:hidden; transition: max-height .3s ease;
}
.accordion-item.open .accordion-panel{ max-height: 320px; }
.accordion-panel p{ padding: 0 4px 24px; font-size:14.5px; color: var(--ink-soft); line-height:1.65; max-width: 640px; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-layout{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:start; }

/* ==========================================================================
   Utility
   ========================================================================== */
.mt-40{ margin-top:40px; }
.center{ text-align:center; }
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

/* toast */
.toast{
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--wall-deep); color: var(--cream);
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight:600; border: 1px solid var(--gold);
  box-shadow: var(--shadow-pop);
  z-index: 600; opacity:0; pointer-events:none; transition: opacity .25s ease, transform .25s ease;
  display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }
.toast svg{ width:16px; height:16px; color: var(--gold-light); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .tool-grid{ grid-template-columns: repeat(2,1fr); }
  .hero .wrap{ grid-template-columns: 1fr; padding-top: 40px; }
  .hero-art{ order:-1; max-width: 420px; margin: 0 auto; }
  .launch-layout{ grid-template-columns: 1fr; }
  .coin-preview{ position:static; }
  .stat-band{ grid-template-columns: repeat(2,1fr); row-gap: 28px; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .contact-layout{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav-links{
    position: fixed; top:76px; left:0; right:0; bottom:0;
    background: var(--wall-deep);
    flex-direction:column; align-items:stretch; gap:0;
    padding: 12px 20px;
    transform: translateY(-110%); opacity:0;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 190;
  }
  .nav-links.open{ transform: translateY(0); opacity:1; }
  .nav-links a{ padding: 16px 10px; border-bottom: 1px solid rgba(248,237,216,.08); border-radius:0; }
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }
  .tool-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .cta-band{ padding: 34px; flex-direction:column; align-items:flex-start; }
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
  .hero-counter{ left:10px; bottom:-14px; padding:10px 14px; }
  .hero-counter .num{ font-size:20px; }
  .wallet-btn{ font-size: 12px; padding: 9px 12px 9px 10px; }
  .brand{ font-size: 16px; }
  .brand img{ width:32px; height:32px; }
  .promo-item{ flex-wrap: wrap; }
  .promo-check{ order:0; margin-left:0; }
  .modal-card-wide{ max-height: 82vh; }
}
@media (max-width: 480px){
  .brand .tick{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}