﻿/* ============================================================
   ETHTokenLaunch - Component CSS
   Layout utilities handled by Tailwind.
   This file: nav, buttons, cards, forms, badges, alerts,
              spinners, FAQ, code blocks, token cards, footer
              components, scrollbar, animations.
   ============================================================ */

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0f1117;
    color: #f1f5f9;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { color: #60a5fa; text-decoration: none; transition: color .18s ease; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
ul[role="list"] { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: #f1f5f9; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { color: #94a3b8; }
code { font-family: 'Courier New', monospace; font-size: .875em; background: #1e2535; padding: .1em .35em; border-radius: 4px; }

.text-gradient {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Layout utilities (used by pages not yet on Tailwind) ───── */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container--sm { max-width: 720px;  margin: 0 auto; padding: 0 1.5rem; }
.container--lg { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 5rem 0; }
.section--sm  { padding: 3rem 0; }
.section--lg  { padding: 7rem 0; }
.grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }  .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.page-header { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 3rem; }
.page-header__eyebrow { font-size: .8125rem; font-weight: 600; color: #60a5fa; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.page-header__title   { margin-bottom: .5rem; }
.page-header__subtitle { font-size: 1rem; color: #94a3b8; }
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Page wrap ─────────────────────────────────────────────── */
.page-wrap { min-height: calc(100vh - 68px); padding-top: 68px; }

/* ── Navigation ────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; height: 68px;
    background: rgba(15,17,23,.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08); z-index: 1000;
}
.nav-container {
    max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
    height: 68px; display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .625rem; text-decoration: none; flex-shrink: 0; }
.nav-logo__icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff;
}
.nav-logo__text { font-weight: 700; font-size: 1.125rem; color: #f1f5f9; }
.nav-logo__eth  { color: #60a5fa; }
.nav-logo:hover .nav-logo__text { color: #fff; }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; flex: 1; justify-content: center; }
.nav-link { padding: .375rem .75rem; border-radius: 8px; font-size: .9375rem; font-weight: 500; color: #94a3b8; transition: color .18s, background .18s; }
.nav-link:hover { color: #f1f5f9; background: rgba(255,255,255,.05); }
.nav-link--highlight { color: #60a5fa; border: 1px solid rgba(59,130,246,.2); }
.nav-link--highlight:hover { background: rgba(59,130,246,.1); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.wallet-wrapper { position: relative; }
.wallet-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0; width: 220px;
    background: #1e2535; border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px; padding: .75rem; box-shadow: 0 8px 48px rgba(0,0,0,.6); z-index: 200;
}
.wallet-dropdown__address { font-size: .8125rem; font-weight: 600; color: #f1f5f9; padding: .25rem .5rem; }
.wallet-dropdown__balance { font-size: .75rem; color: #94a3b8; padding: 0 .5rem .5rem; }
.wallet-dropdown__sep { border-color: rgba(255,255,255,.08); margin: .5rem 0; }
.wallet-dropdown__link {
    display: flex; align-items: center; gap: .5rem; width: 100%;
    padding: .5rem .75rem; border-radius: 8px; font-size: .875rem;
    color: #94a3b8; background: transparent; border: none; cursor: pointer;
    transition: background .18s, color .18s; text-decoration: none; font-family: inherit;
}
.wallet-dropdown__link:hover { background: rgba(255,255,255,.06); color: #f1f5f9; }
.wallet-dropdown__link--danger { color: #fca5a5; }
.wallet-dropdown__link--danger:hover { background: rgba(239,68,68,.1); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: .5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #94a3b8; border-radius: 2px; transition: background .18s; }
.nav-hamburger:hover span { background: #f1f5f9; }
.mobile-menu { background: rgba(15,17,23,.97); border-bottom: 1px solid rgba(255,255,255,.08); padding: 1rem 1.5rem 1.5rem; }
.mobile-menu__links { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.mobile-link { display: block; padding: .625rem .75rem; border-radius: 8px; font-size: .9375rem; font-weight: 500; color: #94a3b8; transition: color .18s, background .18s; }
.mobile-link:hover { color: #f1f5f9; background: rgba(255,255,255,.05); }
.mobile-link--highlight { color: #60a5fa; }
.mobile-menu__wallet { margin-top: 1rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .625rem 1.25rem; border-radius: 8px;
    font-size: .9375rem; font-weight: 600; cursor: pointer;
    border: none; white-space: nowrap; text-decoration: none;
    transition: all .18s ease; font-family: inherit;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn--primary { background: linear-gradient(135deg, #3b82f6, #6366f1); color: #fff; box-shadow: 0 2px 12px rgba(59,130,246,.3); }
.btn--primary:hover:not(:disabled) { box-shadow: 0 4px 20px rgba(59,130,246,.5); transform: translateY(-1px); color: #fff; }
.btn--secondary { background: rgba(255,255,255,.06); color: #f1f5f9; border: 1px solid rgba(255,255,255,.14); }
.btn--secondary:hover:not(:disabled) { background: rgba(255,255,255,.1); color: #fff; }
.btn--ghost { background: transparent; color: #94a3b8; border: 1px solid rgba(255,255,255,.08); }
.btn--ghost:hover:not(:disabled) { background: rgba(255,255,255,.05); color: #f1f5f9; }
.btn--danger { background: rgba(239,68,68,.1); color: #fca5a5; border: 1px solid rgba(239,68,68,.2); }
.btn--danger:hover:not(:disabled) { background: rgba(239,68,68,.2); }
.btn--wallet { background: rgba(59,130,246,.1); color: #60a5fa; border: 1px solid rgba(59,130,246,.25); padding: .5rem 1rem; font-size: .875rem; }
.btn--wallet:hover { background: rgba(59,130,246,.2); color: #fff; }
.btn--wallet-connected { background: rgba(34,197,94,.08); color: #86efac; border-color: rgba(34,197,94,.2); }
.btn--lg  { padding: .875rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn--sm  { padding: .375rem .875rem; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Card ──────────────────────────────────────────────────── */
.card { background: #161b27; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 2rem; }
.card--hover { transition: border-color .18s, box-shadow .18s, transform .18s; }
.card--hover:hover { border-color: rgba(59,130,246,.35); box-shadow: 0 0 0 1px rgba(59,130,246,.15), 0 4px 24px rgba(0,0,0,.4); transform: translateY(-2px); }
.card__icon {
    width: 48px; height: 48px; background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(99,102,241,.15));
    border: 1px solid rgba(59,130,246,.2); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #60a5fa; margin-bottom: 1rem;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group  { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.25rem; }
.form-label  { font-size: .875rem; font-weight: 500; color: #f1f5f9; }
.form-hint   { font-size: .75rem; color: #64748b; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: .625rem .875rem;
    background: #1e2535; border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px; color: #f1f5f9; font-size: .9375rem;
    font-family: inherit; transition: border-color .18s, box-shadow .18s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: #64748b; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-select   { appearance: none; cursor: pointer; }
.form-select option { background: #1e2535; }
.form-input--error { border-color: #ef4444 !important; }
.form-error  { font-size: .8125rem; color: #ef4444; margin-top: .25rem; }
.form-check {
    display: flex; align-items: flex-start; gap: .625rem; cursor: pointer;
    padding: .75rem; background: #1e2535; border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px; transition: border-color .18s;
}
.form-check:hover { border-color: rgba(255,255,255,.14); }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: #3b82f6; cursor: pointer; margin-top: 2px; }
.form-check__label { font-size: .9375rem; font-weight: 500; color: #f1f5f9; }
.form-check__hint  { font-size: .8125rem; color: #94a3b8; margin-top: .125rem; }
.fee-badge { display: inline-flex; align-items: center; gap: .375rem; padding: .25rem .625rem; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); border-radius: 100px; font-size: .8125rem; font-weight: 600; color: #60a5fa; }
.form-range { width: 100%; accent-color: #3b82f6; height: 4px; cursor: pointer; }

/* ── Badges ────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: .25rem; padding: .2rem .6rem; border-radius: 100px; font-size: .75rem; font-weight: 600; }
.badge--blue   { background: rgba(59,130,246,.1);  color: #60a5fa;  border: 1px solid rgba(59,130,246,.2); }
.badge--green  { background: rgba(34,197,94,.1);   color: #86efac;  border: 1px solid rgba(34,197,94,.2); }
.badge--red    { background: rgba(239,68,68,.1);   color: #fca5a5;  border: 1px solid rgba(239,68,68,.2); }
.badge--yellow { background: rgba(245,158,11,.1);  color: #fcd34d;  border: 1px solid rgba(245,158,11,.2); }
.badge--gray   { background: rgba(255,255,255,.06); color: #94a3b8; border: 1px solid rgba(255,255,255,.08); }
.eco-pill { display: inline-flex; align-items: center; gap: .375rem; padding: .25rem .625rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 100px; font-size: .8125rem; color: #94a3b8; }

/* ── Alerts ────────────────────────────────────────────────── */
.alert { padding: 1rem 1.25rem; border-radius: 8px; font-size: .9rem; display: flex; align-items: flex-start; gap: .75rem; border: 1px solid transparent; }
.alert i { flex-shrink: 0; margin-top: .1rem; font-size: 1rem; }
.alert--info    { background: rgba(59,130,246,.08);  border-color: rgba(59,130,246,.2);  color: #93c5fd; }
.alert--success { background: rgba(34,197,94,.08);   border-color: rgba(34,197,94,.2);   color: #86efac; }
.alert--error   { background: rgba(239,68,68,.08);   border-color: rgba(239,68,68,.2);   color: #fca5a5; }
.alert--warning { background: rgba(245,158,11,.08);  border-color: rgba(245,158,11,.2);  color: #fcd34d; }

/* ── Spinner ───────────────────────────────────────────────── */
.spinner { width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.15); border-top-color: #60a5fa; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Stepper ───────────────────────────────────────────────── */
.steps { display: flex; gap: 0; margin-bottom: 2.5rem; counter-reset: step; }
.step  { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.step::before { content: counter(step); counter-increment: step; width: 32px; height: 32px; background: #1e2535; border: 2px solid rgba(255,255,255,.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 700; color: #94a3b8; z-index: 1; position: relative; }
.step::after  { content: ''; position: absolute; top: 15px; left: calc(50% + 16px); right: calc(-50% + 16px); height: 2px; background: rgba(255,255,255,.08); }
.step:last-child::after { display: none; }
.step__label  { font-size: .75rem; color: #64748b; margin-top: .5rem; text-align: center; }
.step--active::before { border-color: #3b82f6; color: #60a5fa; background: rgba(59,130,246,.1); }
.step--active .step__label { color: #f1f5f9; }
.step--done::before   { background: #3b82f6; border-color: #3b82f6; color: #fff; content: '✓'; }
.step--done::after    { background: #3b82f6; }

/* ── Success card ──────────────────────────────────────────── */
.success-card { background: #161b27; border: 1px solid rgba(34,197,94,.2); border-radius: 16px; padding: 2.5rem; text-align: center; }
.success-card__icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, rgba(34,197,94,.15), rgba(59,130,246,.15)); border: 2px solid rgba(34,197,94,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.success-card__address { display: inline-flex; align-items: center; gap: .5rem; padding: .625rem 1rem; background: #1e2535; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; font-family: monospace; font-size: .9rem; color: #f1f5f9; word-break: break-all; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.faq-question { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; color: #f1f5f9; font-size: 1rem; background: none; border: none; width: 100%; text-align: left; gap: 1rem; padding: 0; font-family: inherit; }
.faq-question i { color: #60a5fa; flex-shrink: 0; transition: transform .18s; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer { padding-top: .75rem; font-size: .9375rem; color: #94a3b8; line-height: 1.7; }

/* ── Code block ────────────────────────────────────────────── */
.code-block { background: #1e2535; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: .625rem .875rem; font-family: 'Courier New', monospace; font-size: .875rem; color: #f1f5f9; word-break: break-all; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.code-block__copy { flex-shrink: 0; background: transparent; border: none; color: #94a3b8; cursor: pointer; font-size: .875rem; transition: color .18s; }
.code-block__copy:hover { color: #60a5fa; }

/* ── Token card ────────────────────────────────────────────── */
.token-card { background: #161b27; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 1.25rem; transition: border-color .18s, box-shadow .18s, transform .18s; }
.token-card:hover { border-color: rgba(59,130,246,.3); box-shadow: 0 0 0 1px rgba(59,130,246,.1), 0 4px 24px rgba(0,0,0,.4); transform: translateY(-2px); }
.token-card__header { display: flex; align-items: center; gap: .875rem; margin-bottom: .875rem; }
.token-card__logo { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #6366f1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; color: #fff; flex-shrink: 0; overflow: hidden; }
.token-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.token-card__name   { font-weight: 700; color: #f1f5f9; }
.token-card__symbol { font-size: .8125rem; color: #94a3b8; }
.token-card__address { font-family: monospace; font-size: .75rem; color: #64748b; margin-top: .375rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.token-card__meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }

/* ── Pricing card ──────────────────────────────────────────── */
.pricing-card { background: #161b27; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 2rem; }
.pricing-card--featured { border-color: rgba(59,130,246,.35); box-shadow: 0 0 0 1px rgba(59,130,246,.1), 0 4px 24px rgba(0,0,0,.4); }
.pricing-card__price { font-size: 2.5rem; font-weight: 800; color: #f1f5f9; margin: 1rem 0 .25rem; }
.pricing-card__price sub { font-size: 1rem; font-weight: 500; color: #94a3b8; }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin: 1.5rem 0; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9375rem; color: #94a3b8; }
.pricing-card__features li i { color: #22c55e; flex-shrink: 0; margin-top: .1rem; }

/* ── Table ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead th { padding: .75rem 1rem; text-align: left; font-size: .8125rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.08); }
tbody td { padding: .875rem 1rem; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.08); color: #94a3b8; vertical-align: middle; }
tbody tr:hover td { background: rgba(255,255,255,.02); }
tbody tr:last-child td { border-bottom: none; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { padding: 7rem 0 5rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 70%); pointer-events: none; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem 1rem; background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.2); border-radius: 100px; font-size: .875rem; font-weight: 600; color: #60a5fa; margin-bottom: 1.5rem; }
.hero__stats { display: flex; align-items: center; justify-content: center; gap: 2.5rem; margin-top: 4rem; flex-wrap: wrap; }
.hero__stat-value { font-size: 1.75rem; font-weight: 800; color: #f1f5f9; }
.hero__stat-label { font-size: .8125rem; color: #94a3b8; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: #161b27; border-top: 1px solid rgba(255,255,255,.08); padding-top: 3.5rem; margin-top: auto; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: .625rem; text-decoration: none; margin-bottom: .75rem; }
.footer-logo__icon { width: 32px; height: 32px; background: linear-gradient(135deg, #3b82f6, #6366f1); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: #fff; }
.footer-logo__text { font-weight: 700; color: #f1f5f9; font-size: 1rem; }
.footer-tagline { font-size: .875rem; color: #94a3b8; margin-bottom: 1rem; max-width: 260px; line-height: 1.5; }
.footer-ecosystem { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-heading { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #64748b; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .9rem; color: #94a3b8; transition: color .18s; }
.footer-links a:hover { color: #f1f5f9; }
/* ── Footer disclaimer block ───────────────────────────────── */
.footer-disclaimer-block { border-top: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02); }
.footer-disclaimer-inner { display: flex; align-items: flex-start; gap: .875rem; max-width: 1140px; margin: 0 auto; padding: 1.125rem 1.5rem; }
.footer-disclaimer-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 8px; background: rgba(96,165,250,.12); color: #60a5fa; font-size: .875rem; margin-top: .1rem; }
.footer-disclaimer-title { display: block; font-size: .8125rem; font-weight: 600; color: #94a3b8; margin-bottom: .3rem; }
.footer-disclaimer-text { font-size: .75rem; color: #64748b; line-height: 1.6; margin: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 1.5rem; max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy       { font-size: .875rem; color: #64748b; }
.footer-disclaimer { font-size: .75rem; color: #64748b; max-width: 480px; line-height: 1.5; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; } }

/* Hard-stop: mobile menu must never be visible at desktop widths */
@media (min-width: 769px) {
    .mobile-menu { display: none !important; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero { padding: 5rem 0 3rem; }
    .hero__stats { gap: 1.5rem; }
    .steps { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .step::after { display: none; }
    .step { flex-direction: row; gap: .75rem; }
    .step__label { margin-top: 0; text-align: left; }
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } .card { padding: 1.25rem; } .success-card { padding: 1.5rem; } }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f1117; }
::-webkit-scrollbar-thumb { background: #1e2535; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.14); }
