/* ============================================================
   eldoradoware.shop — dark storefront
   deep navy surfaces · Eldorado gold #FFB600 accents
   ============================================================ */

:root {
  --bg: #070C16;
  --bg-alt: #0A111F;
  --navy: #0B1220;
  --navy-2: #101A2E;
  --surface: #0F1930;
  --surface-2: #14203A;
  --ink: #EAF0F8;
  --body: #A7B7CC;
  --muted: #7C8DA5;
  --line: rgba(148, 170, 200, 0.14);
  --line-strong: rgba(148, 170, 200, 0.24);
  --gold: #FFB600;
  --gold-2: #FFC533;
  --gold-deep: #E09E00;
  --gold-soft: rgba(255, 182, 0, 0.12);
  --green: #12B76A;
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35), 0 6px 18px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 34px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.55);
  --glow-gold: 0 0 0 1px rgba(255, 182, 0, .35), 0 8px 30px rgba(255, 182, 0, .22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* hidden attribute always beats layout display rules */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(255,182,0,.28); color: #fff; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.container-narrow { width: min(820px, calc(100% - 40px)); }

/* ---------- announcement ---------- */
.announce {
  background: #05090F;
  color: #8FA0B5;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 0;
  flex-wrap: wrap;
  text-align: center;
}
.announce i {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 30px; width: auto; }
.brand-domain {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.02em;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.brand-domain span { color: var(--gold); }

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav a {
  color: #9FB0C5;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav a:hover { color: #fff; }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(255, 182, 0, .28);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-navy {
  background: #EDF2FA;
  color: var(--navy);
}
.btn-navy:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: rgba(255,255,255,.02);
  color: var(--ink);
  border: 1.5px solid rgba(255,255,255,.18);
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: #fff;
}

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.45); }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 88% -12%, rgba(255,182,0,.10), transparent 62%),
    radial-gradient(700px 380px at -8% 108%, rgba(56,120,255,.07), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #091423 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hero-glow {
  position: absolute;
  top: -140px;
  right: -60px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,182,0,.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
  position: relative;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 14px;
}
.pill-outline {
  border: 1px solid rgba(255,182,0,.45);
  color: var(--gold-2);
  background: rgba(255,182,0,.07);
}
.ic { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 20px 0 18px;
  color: #fff;
}
.lead {
  color: #9FB0C5;
  font-size: 17.5px;
  max-width: 54ch;
}
.lead strong { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px;
  color: #7C8DA5;
}
.hero-trust b { color: #fff; font-weight: 700; }

.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

/* hero card */
.hero-card-wrap { position: relative; }
.hero-card {
  background: linear-gradient(160deg, #13203A 0%, #0C1628 100%);
  color: var(--ink);
  border: 1px solid rgba(255,182,0,.28);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg), var(--glow-gold);
  animation: floaty 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.hc-top img { height: 26px; width: auto; }
.stock-pill {
  font-size: 12px;
  font-weight: 700;
  color: #4ADE97;
  background: rgba(18, 183, 106, .12);
  border: 1px solid rgba(18, 183, 106, .35);
  padding: 4px 11px;
  border-radius: 999px;
}
.hero-card h3 { font-size: 21px; letter-spacing: -.01em; color: #fff; }
.hc-sub { color: var(--muted); font-size: 13.5px; margin: 4px 0 16px; }
.hc-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  font-size: 14px;
}
.hc-row span { color: var(--muted); }
.hc-row b { font-weight: 600; color: var(--ink); }
.hc-row .ok { color: #4ADE97; }
.hc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.hc-price {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--gold-2);
}

.hero-mini-card {
  position: absolute;
  bottom: -26px;
  left: -34px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
  z-index: 3;
  animation: floaty 6s ease-in-out 1.2s infinite;
}
.hero-mini-card p {
  font-size: 12.5px;
  color: #D5DEEA;
  margin: 6px 0 4px;
  line-height: 1.45;
}
.hero-mini-card small { font-size: 11px; color: var(--muted); }

/* stats band */
.stats-band {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}
.stat { text-align: center; }
.stat b {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-2);
  letter-spacing: -.02em;
}
.stat span {
  display: block;
  font-size: 12.5px;
  color: #7C8DA5;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* ---------- sections ---------- */
.section { padding: 92px 0; }
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.kicker-gold { color: var(--gold); }
.section-head h2 {
  font-size: clamp(27px, 3.4vw, 38px);
  letter-spacing: -.025em;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}
.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;
}

/* ---------- product cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* two product cards kept at the original narrow card width */
.accounts-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 620px;
  margin-inline: auto;
}

.card {
  background: linear-gradient(180deg, var(--surface) 0%, #0C1526 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.card-head h3 { font-size: 18.5px; letter-spacing: -.01em; color: #fff; }

.tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tag-neutral { background: rgba(255,255,255,.07); color: #A7B7CC; }
.tag-green { background: rgba(18,183,106,.14); color: #4ADE97; }
.tag-gold { background: var(--gold-soft); color: var(--gold-2); }

.card-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.card-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.card-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 10px 0 18px;
  min-height: 42px;
}

.checklist { flex-grow: 1; margin-bottom: 18px; }
.checklist li {
  font-size: 14px;
  padding: 6px 0 6px 26px;
  position: relative;
  color: #C4D0DF;
}
.checklist li b { font-weight: 700; color: #fff; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(18,183,106,.16)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2312B76A'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2 18.6 6.8z'/%3E%3C/svg%3E")
    center/11px no-repeat;
}
.checklist-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 18px;
  margin-top: 14px;
}

.stock-line {
  font-size: 12.5px;
  font-weight: 600;
  color: #4ADE97;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.stock-line::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(18,183,106,.18);
}
.stock-line.hot { color: var(--gold-2); }
.stock-line.hot::before { background: var(--gold); box-shadow: 0 0 0 3px rgba(255,182,0,.2); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,182,0,.2); }
  50% { box-shadow: 0 0 0 6px rgba(255,182,0,.08); }
}

.card-popular {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #16223C 0%, #0E1830 100%);
  box-shadow: 0 10px 36px rgba(255,182,0,.14);
}
.card-popular:hover { box-shadow: 0 16px 44px rgba(255,182,0,.22); }
.ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255,182,0,.35);
  white-space: nowrap;
}

/* ---------- bundle ---------- */
.bundle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(520px 280px at 92% 8%, rgba(255,182,0,.16), transparent 64%),
    radial-gradient(400px 240px at 4% 96%, rgba(56,120,255,.10), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, #0A1424 100%);
  color: #fff;
  border-radius: 22px;
  padding: 46px 50px;
  border: 1px solid rgba(255,182,0,.38);
  box-shadow: 0 24px 70px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}
.bundle-logo img { height: 34px; width: auto; opacity: .95; }
.bundle-copy h2 {
  font-size: clamp(23px, 2.8vw, 31px);
  letter-spacing: -.02em;
  line-height: 1.18;
  font-weight: 800;
  margin-top: 4px;
  color: #fff;
}
.bundle-copy p { color: #9FB0C5; margin-top: 12px; max-width: 58ch; font-size: 15px; }
.bundle-copy .checklist li { color: #C4D0DF; }
.bundle-buy {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 28px 30px;
  backdrop-filter: blur(6px);
}
.bundle-old {
  display: block;
  color: #66788F;
  text-decoration: line-through;
  font-size: 17px;
  font-weight: 600;
}
.bundle-price {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: var(--gold-2);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 2px 0 4px;
}
.bundle-save {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #4ADE97;
  background: rgba(18,183,106,.16);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.bundle-note {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #7C8DA5;
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: start;
}
.step {
  background: linear-gradient(180deg, var(--surface) 0%, #0C1526 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-2);
  letter-spacing: .12em;
}
.step h3 { font-size: 18px; margin: 8px 0 8px; letter-spacing: -.01em; color: #fff; }
.step p { font-size: 14px; color: var(--muted); }
.step-arrow {
  color: #46586F;
  font-size: 22px;
  padding-top: 42px;
  user-select: none;
}

/* ---------- why us ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.trust-logo { margin-bottom: 22px; }
.trust-intro h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -.02em;
  line-height: 1.18;
  font-weight: 800;
  color: #fff;
}
.trust-intro p { color: var(--muted); margin: 14px 0 24px; max-width: 46ch; }

.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .18s, box-shadow .18s, border-color .18s, background .18s;
}
.tcard:hover {
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.tic { width: 26px; height: 26px; color: var(--gold-2); margin-bottom: 12px; }
.tcard h3 { font-size: 16px; margin-bottom: 6px; letter-spacing: -.01em; color: #fff; }
.tcard p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- vouches ---------- */
.vouch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vouch {
  background: linear-gradient(180deg, var(--surface) 0%, #0C1526 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.vouch:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.vouch-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.vouch-top > div { flex-grow: 1; }
.vouch-top b { display: block; font-size: 14.5px; color: #fff; }
.vouch-top small { color: var(--muted); font-size: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.av-a { background: #3B82F6; }
.av-b { background: #8B5CF6; }
.av-c { background: #EC4899; }
.av-d { background: #F59E0B; }
.av-e { background: #10B981; }
.av-f { background: #6366F1; }

.vouch blockquote {
  font-size: 14px;
  color: #C4D0DF;
  line-height: 1.6;
  flex-grow: 1;
}
.vouch figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.12);
  font-size: 12px;
  color: var(--muted);
}
.vf {
  color: #4ADE97;
  font-weight: 700;
  font-size: 12px;
}

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 22px;
  transition: background .18s, border-color .18s;
}
.faq[open] {
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-color: rgba(255,182,0,.35);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 34px;
  color: #EAF0F8;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-2);
  transition: transform .2s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p {
  color: var(--muted);
  font-size: 14.5px;
  padding: 0 0 20px;
  max-width: 68ch;
}

/* ---------- cta band ---------- */
.cta-band {
  background:
    radial-gradient(640px 320px at 18% 130%, rgba(255,182,0,.20), transparent 60%),
    radial-gradient(500px 260px at 92% -20%, rgba(56,120,255,.10), transparent 60%),
    linear-gradient(150deg, #0A1424 0%, #070F1C 100%);
  color: #fff;
  padding: 76px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -.025em;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
.cta-inner p { color: #9FB0C5; margin-top: 10px; max-width: 52ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer {
  background: #05080F;
  color: #7C8DA5;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 64px 0 44px;
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { line-height: 1.65; }
.footer-brand strong { color: #C4D0DF; }

.pay-chips { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; align-items: center; }
.pay-chips .chip {
  height: 32px;
  min-width: 46px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 6px;
  position: relative;
}
.pay-chips .chip svg { height: 18px; width: auto; display: block; }
.pay-chips .coin-fallback { height: 20px; width: 20px; }
.pay-chips .chip-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

.footer-col h4 {
  color: #EAF0F8;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: #7C8DA5;
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold-2); }

.related-searches {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 26px 0;
}
.related-searches h4 {
  color: #C4D0DF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.related-searches p { font-size: 13px; line-height: 2; }
.related-searches a { transition: color .15s; }
.related-searches a:hover { color: var(--gold-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
}
.footer-disc { color: #5A6B80; }

/* ---------- subpage heroes ---------- */
.hero-sub .hero-grid { padding: 58px 0 68px; gap: 44px; grid-template-columns: 1fr; max-width: 900px; }
.hero-sub h1 { font-size: clamp(29px, 3.9vw, 43px); margin-top: 14px; }
.crumbs { font-size: 13px; color: var(--muted); }
.crumbs a { color: #A7B7CC; transition: color .15s; }
.crumbs a:hover { color: var(--gold-2); }
.center-chips { display: flex; justify-content: center; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card, .hero-mini-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vouch-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; padding: 64px 0 88px; }
  .hero-card-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .bundle { grid-template-columns: 1fr; gap: 30px; padding: 40px 34px; }
  .bundle-buy { max-width: 340px; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .accounts-grid { grid-template-columns: 1fr; max-width: 420px; }
  .vouch-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .trust-cards { grid-template-columns: 1fr; }
  .checklist-inline { grid-template-columns: 1fr; }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 10px 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-130%);
    transition: transform .25s ease;
    z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 28px; font-size: 15px; }
  .burger { display: block; }
  .header-cta { display: none; }

  .hero-mini-card { left: 8px; bottom: -30px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
