/* ==========================================================
   GoFusion — Public Website Stylesheet
   Identity: BLACK + WHITE + GOLD
   ========================================================== */

:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gold: #c71325;
  --gold-light: #c71325;
  --gold-dark: #c71325;
  --text: #111111;
  --muted: #6b7280;
  --border: #e5e7eb;
  --success: #128a4a;

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(5, 5, 5, 0.05);
  --shadow: 0 6px 24px rgba(5, 5, 5, 0.06);
  --shadow-lg: 0 18px 48px rgba(5, 5, 5, 0.10);

  --container: 1200px;
  --header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 { margin: 0 0 12px; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
p { margin: 0 0 14px; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-dark); }

ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 6px; }

:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--black); color: var(--white); padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); color: #e9e9e9; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-title { font-size: 36px; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 16px; margin: 0; }
.section-dark .section-sub { color: #a5a5a5; }
.text-gold { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
}
.section-dark .eyebrow { color: var(--gold); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 12px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--gold); color: #1a1204; box-shadow: 0 6px 18px rgba(245, 185, 66, .28); }
.btn-primary:hover { background: var(--gold-light); color: #1a1204; }

.btn-secondary { background: var(--white); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: #cfd3da; background: var(--off-white); color: var(--text); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #1c1c1c; color: var(--white); }

.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.24); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.center { justify-content: center; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: var(--off-white); color: var(--muted); border: 1px solid var(--border);
}
.badge-gold { background: rgba(245,185,66,.14); color: var(--gold-dark); border-color: rgba(245,185,66,.4); }
.badge-dark { background: #141414; color: var(--gold); border-color: #262626; }
.badge-success { background: rgba(18,138,74,.1); color: var(--success); border-color: rgba(18,138,74,.25); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #dcdfe5; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }
.card-static:hover { transform: none; box-shadow: var(--shadow-sm); }

.icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245,185,66,.14); color: var(--gold-dark);
  margin-bottom: 16px; border: 1px solid rgba(245,185,66,.28);
}
.icon-box svg { width: 21px; height: 21px; }
.icon-box-dark { background: #121212; border-color: #242424; color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px; font-weight: 800; letter-spacing: 0;
  border: 1px solid #1e1e1e;
}
.logo-text { color: var(--text); }
.logo-text span { color: var(--gold-dark); }
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text span { color: var(--gold); }
.logo-light .logo-mark { background: var(--white); color: var(--black); border-color: rgba(255,255,255,.2); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  font-size: 15px; font-weight: 500; color: #3f434b;
  padding: 8px 12px; border-radius: 10px; transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--text); background: var(--off-white); }
.nav a.active { color: var(--text); font-weight: 600; background: rgba(245,185,66,.14); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  align-items: center; justify-content: center; cursor: pointer; color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 12px 0 22px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 4px; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border); color: #3f434b;
}
.mobile-nav a.active { color: var(--text); font-weight: 600; }
.mobile-nav .mobile-actions { display: grid; gap: 10px; margin-top: 18px; }
.mobile-nav .mobile-actions a { border: 0; padding: 12px 22px; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(900px 380px at 78% 4%, rgba(245,185,66,.13), transparent 65%),
    var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 56px; letter-spacing: -0.035em; margin-bottom: 18px; }
.hero-lead { font-size: 17px; color: var(--muted); max-width: 520px; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--muted); font-weight: 500; }
.hero-note b { color: var(--gold-dark); font-weight: 600; }

.page-hero {
  padding: 72px 0 60px;
  background: var(--black);
  color: #cfcfcf;
  text-align: center;
}
.page-hero h1 { font-size: 46px; color: var(--white); margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: #a5a5a5; font-size: 17px; }
.page-hero .btn-row { margin-top: 26px; }

/* ---------- Dashboard preview ---------- */
.preview {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; font-size: 13px;
}
.preview-top {
  background: var(--black); color: var(--white);
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
}
.preview-top .p-title { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.preview-top .p-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; margin-right: 8px; }
.preview-top .p-user { font-size: 12px; color: #9a9a9a; }
.preview-body { padding: 18px; background: var(--off-white); }

.balance-card {
  background: var(--black-soft); color: var(--white);
  border-radius: var(--radius); padding: 18px; margin-bottom: 14px;
  border: 1px solid #1c1c1c;
}
.balance-card .label { font-size: 12px; color: #9a9a9a; letter-spacing: .04em; text-transform: uppercase; }
.balance-card .amount { font-size: 30px; font-weight: 700; color: var(--white); letter-spacing: -.02em; margin-top: 4px; }
.balance-card .amount span { color: var(--gold); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.stat {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px;
}
.stat .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.stat .value { font-size: 16px; font-weight: 700; margin-top: 4px; }
.stat.gold { border-color: rgba(245,185,66,.5); background: rgba(245,185,66,.07); }

.activity { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 14px; }
.activity .row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); }
.activity .row:last-child { border-bottom: 0; }
.activity .row .t { font-size: 13px; font-weight: 500; }
.activity .row .d { font-size: 11px; color: var(--muted); }
.activity .row .amt { font-size: 13px; font-weight: 700; color: var(--gold-dark); }
.activity-head { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: 12px 0 4px; }

/* ---------- Trust strip ---------- */
.trust-strip { border-bottom: 1px solid var(--border); background: var(--off-white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; justify-content: center; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold-dark); flex: none; }

/* ---------- Steps ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
}
.step { position: relative; text-align: center; padding: 0 10px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--white); border: 1px solid var(--gold); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
  position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--white);
}
.section-alt .step-num { box-shadow: 0 0 0 6px var(--off-white); }
.step h3 { font-size: 18px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

.steps-list { display: grid; gap: 14px; }
.step-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
}
.step-row .n { font-size: 22px; font-weight: 800; color: var(--gold-dark); letter-spacing: -.02em; }
.step-row h3 { font-size: 18px; margin-bottom: 6px; }
.step-row p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Dark feature blocks ---------- */
.feature-dark {
  background: var(--black-soft); border: 1px solid #1b1b1b; border-radius: var(--radius); padding: 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature-dark:hover { border-color: rgba(245,185,66,.45); transform: translateY(-3px); }
.feature-dark .kicker { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.feature-dark h3 { font-size: 18px; margin: 10px 0 8px; }
.feature-dark p { color: #a5a5a5; font-size: 15px; margin: 0; }
.gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 18px; }

/* ---------- Referral ---------- */
.referral-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow);
}
.referral-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.referral-link {
  display: flex; align-items: center; gap: 12px; margin: 12px 0 18px;
  background: var(--off-white); border: 1px dashed var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 14px; color: var(--text); overflow-x: auto; white-space: nowrap;
}
.referral-link svg { width: 18px; height: 18px; color: var(--gold-dark); flex: none; }

/* ---------- Leaderboard ---------- */
.leaderboard { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.lb-row { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.lb-row:last-child { border-bottom: 0; }
.lb-rank { width: 34px; height: 34px; border-radius: 10px; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--muted); }
.lb-name { font-weight: 600; font-size: 15px; }
.lb-name small { display: block; font-weight: 400; font-size: 12px; color: var(--muted); }
.lb-amount { font-weight: 700; font-size: 15px; }
.lb-row.top { background: rgba(245,185,66,.07); }
.lb-row.top .lb-rank { background: var(--gold); border-color: var(--gold-dark); color: #1a1204; }
.lb-row.top .lb-amount { color: var(--gold-dark); }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.testimonial p { font-size: 15px; color: #33373e; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--black); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.t-author .n { font-weight: 600; font-size: 14px; }
.t-author .r { font-size: 12px; color: var(--muted); }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: 0; }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600; color: var(--text);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.acc-trigger:hover { color: var(--gold-dark); }
.acc-trigger svg { width: 18px; height: 18px; flex: none; transition: transform .22s ease; color: var(--muted); }
.acc-trigger[aria-expanded="true"] svg { transform: rotate(45deg); color: var(--gold-dark); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.acc-panel .acc-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: start; }
.plan { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; display: flex; flex-direction: column; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan .plan-name { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.plan .price { font-size: 30px; font-weight: 800; margin: 10px 0 2px; letter-spacing: -.03em; }
.plan .price small { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan .plan-desc { font-size: 14px; color: var(--muted); min-height: 42px; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 22px; }
.plan ul li { display: flex; gap: 10px; font-size: 14px; color: #33373e; margin-bottom: 10px; }
.plan ul li svg { width: 16px; height: 16px; color: var(--gold-dark); flex: none; margin-top: 4px; }
.plan .btn { margin-top: auto; }
.plan-featured { border-color: var(--gold); box-shadow: 0 12px 32px rgba(245,185,66,.16); position: relative; }
.plan-featured .price { color: var(--text); }
.plan-badge { position: absolute; top: -11px; left: 20px; }

/* ---------- Tasks ---------- */
.task-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.task-card .task-type { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.task-card h3 { font-size: 18px; margin: 8px 0 6px; }
.task-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); margin-top: 18px; padding-top: 16px; }
.task-reward { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.task-reward small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-block { text-align: center; padding: 26px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.stat-block .v { font-size: 32px; font-weight: 800; letter-spacing: -.03em; color: var(--text); }
.stat-block .k { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.section-dark .stat-block { background: var(--black-soft); border-color: #1c1c1c; }
.section-dark .stat-block .v { color: var(--gold); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; color: #33373e; }
.form-control {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control::placeholder { color: #9ca3af; }
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,185,66,.2); }
.form-control.invalid { border-color: #c0392b; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
textarea.form-control { min-height: 140px; resize: vertical; }
.field-error { display: none; font-size: 13px; color: #c0392b; margin-top: 6px; }
.field-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

.password-wrap { position: relative; }
.password-wrap .form-control { padding-right: 46px; }
.toggle-password {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; cursor: pointer; padding: 8px; color: var(--muted); border-radius: 8px;
}
.toggle-password:hover { color: var(--text); }
.toggle-password svg { width: 18px; height: 18px; }
.toggle-password .icon-eye-off { display: none; }
.toggle-password[aria-pressed="true"] .icon-eye-off { display: block; }
.toggle-password[aria-pressed="true"] .icon-eye { display: none; }

.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #33373e; }
.check-row input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--gold-dark); flex: none; }
.form-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.form-foot { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.form-foot a { font-weight: 600; color: var(--gold-dark); }

/* Auth split */
.auth { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 100vh; }
.auth-brand { background: var(--black); color: var(--white); padding: 56px 56px; display: flex; flex-direction: column; justify-content: space-between; }
.auth-brand .statement { font-size: 32px; font-weight: 700; letter-spacing: -.02em; max-width: 420px; line-height: 1.25; }
.auth-brand .statement span { color: var(--gold); }
.auth-brand .sub { color: #9a9a9a; font-size: 15px; max-width: 400px; }
.auth-brand ul { list-style: none; padding: 0; margin: 26px 0 0; }
.auth-brand li { display: flex; gap: 10px; align-items: center; color: #cfcfcf; font-size: 15px; margin-bottom: 12px; }
.auth-brand li svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.auth-main { padding: 48px 24px; display: flex; align-items: center; justify-content: center; background: var(--off-white); }
.auth-card { width: 100%; max-width: 520px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 28px; margin-bottom: 6px; }
.auth-card .lead { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.auth-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.auth-back svg { width: 16px; height: 16px; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 22px; margin: 36px 0 10px; }
.legal p, .legal li { color: #40444b; font-size: 15px; }
.legal .updated { color: var(--muted); font-size: 14px; }

/* ---------- Contact ---------- */
.contact-card { display: flex; flex-direction: column; }
.contact-card .v { font-weight: 600; font-size: 15px; margin-top: 4px; word-break: break-word; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--black); border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; border: 1px solid #1b1b1b; }
.cta-band h2 { color: var(--white); font-size: 34px; margin-bottom: 12px; }
.cta-band p { color: #a5a5a5; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #a5a5a5; padding: 64px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 34px; }
.footer-brand p { font-size: 14px; color: #8c8c8c; max-width: 300px; margin-top: 14px; }
.site-footer h4 { color: var(--white); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { font-size: 14px; color: #a5a5a5; }
.site-footer a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid #232323; display: flex; align-items: center; justify-content: center; color: var(--gold); background: var(--black-soft); }
.footer-social a:hover { border-color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid #1c1c1c; margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #7c7c7c; }

/* ---------- Toast ---------- */
.toast-stack { position: fixed; right: 20px; bottom: 20px; z-index: 300; display: flex; flex-direction: column; gap: 10px; max-width: calc(100vw - 40px); }
.toast {
  background: var(--black); color: var(--white); border: 1px solid #232323; border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm); padding: 13px 18px; font-size: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(10px); transition: opacity .22s ease, transform .22s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-left-color: var(--success); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* ---------- Utilities ---------- */
.note { font-size: 13px; color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.disclaimer { background: var(--off-white); border: 1px dashed var(--border); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14px; color: var(--muted); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { width: 100%; min-width: 560px; border-collapse: collapse; }
.table-scroll th, .table-scroll td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.table-scroll th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .hero h1 { font-size: 46px; }
  .section-title { font-size: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .nav a { padding: 8px 9px; font-size: 14px; }
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-lead { max-width: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .auth { grid-template-columns: 1fr; min-height: 0; }
  .auth-brand { padding: 40px 28px; }
  .auth-brand .statement { font-size: 26px; }
}

@media (max-width: 860px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 767px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .hero { padding: 52px 0 56px; }
  .hero h1 { font-size: 34px; }
  .page-hero { padding: 52px 0 44px; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .grid-2, .grid-3, .grid-4, .pricing-grid, .stats-row, .stat-grid, .trust-grid, .form-row { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .cta-band { padding: 40px 22px; }
  .cta-band h2 { font-size: 26px; }
  .btn { width: auto; }
  .btn-row .btn { flex: 1 1 auto; }
  .toast-stack { left: 18px; right: 18px; bottom: 18px; }
  .step-row { grid-template-columns: 1fr; gap: 6px; padding: 20px; }
  .auth-card { padding: 24px; }
  .balance-card .amount { font-size: 24px; }
}

@media (max-width: 420px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
