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

:root {
  --ink:    #0A0F1E;
  --ink2:   #111827;
  --card:   #141C30;
  --card2:  #1A2440;
  --gold:   #C49A3C;
  --gold2:  #F0D06A;
  --dim:    rgba(255,255,255,0.52);
  --dim2:   rgba(255,255,255,0.28);
  --border: rgba(255,255,255,0.07);
  --serif:  Georgia, 'Times New Roman', serif;
  --sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--ink); color: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; height: 58px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--serif); font-size: 19px; color: #fff; letter-spacing: -0.02em; }
.logo span { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link { font-size: 13px; color: var(--dim); text-decoration: none; transition: color .15s; }
.nav-link:hover { color: #fff; }
.btn-cta {
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 6px;
  padding: 8px 20px; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: opacity .15s;
}
.btn-cta:hover { opacity: .88; }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: calc(100vh - 58px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% -10%, rgba(196,154,60,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 80% 110%, rgba(26,36,64,0.8) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; position: relative;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold); opacity: .35;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 400; line-height: 1.06; letter-spacing: -0.03em;
  margin-bottom: 1.25rem; position: relative;
}
h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--dim); max-width: 520px; line-height: 1.65;
  margin: 0 auto 2.5rem; position: relative;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 8px; padding: 14px 30px;
  font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .15s, transform .15s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 14px 30px; font-size: 15px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .15s, transform .15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.45); transform: translateY(-1px); }
.hero-note { margin-top: 1rem; font-size: 12px; color: var(--dim2); position: relative; }

/* ── TRUST STRIP ────────────────────────────── */
.trust {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dim); }
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── FUNNEL / HOW IT WORKS ──────────────────── */
.section { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.section-tag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.section-title { font-family: var(--serif); font-size: clamp(26px,4vw,38px); font-weight: 400; letter-spacing: -.02em; margin-bottom: .75rem; }
.section-sub { font-size: 16px; color: var(--dim); max-width: 500px; line-height: 1.6; }

.funnel { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; margin-top: 3rem; background: var(--border); border-radius: 14px; overflow: hidden; }
.funnel-step {
  background: var(--card); padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: background .2s;
}
.funnel-step:hover { background: var(--card2); }
.funnel-num { font-size: 11px; letter-spacing: .1em; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.funnel-title { font-size: 16px; font-weight: 700; line-height: 1.3; }
.funnel-sub { font-size: 13px; color: var(--gold2); font-weight: 600; }
.funnel-desc { font-size: 13px; color: var(--dim); line-height: 1.55; margin-top: .25rem; }

/* ── DEPOSIT CALLOUT ────────────────────────── */
.deposit-wrap { max-width: 900px; margin: 0 auto; padding: 0 2rem 5rem; }
.deposit-card {
  background: var(--card);
  border: 1px solid rgba(196,154,60,0.22);
  border-radius: 16px; padding: 2.5rem 3rem;
  display: flex; gap: 3rem; flex-wrap: wrap; align-items: center;
}
.dq-left { flex: 1; min-width: 240px; }
.dq-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.dq-title { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: .5rem; }
.dq-desc { font-size: 14px; color: var(--dim); line-height: 1.6; }
.dq-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1.2rem; }
.pill { border-radius: 40px; padding: 6px 16px; font-size: 13px; white-space: nowrap; }
.pill-gold { background: rgba(196,154,60,0.15); color: var(--gold2); border: 1px solid rgba(196,154,60,0.3); }
.pill-dim  { background: rgba(255,255,255,0.05); color: var(--dim); border: 1px solid var(--border); }
.dq-note { margin-top: 1rem; font-size: 12px; color: var(--dim2); }
.dq-right { flex-shrink: 0; }

/* ── SERVICES ───────────────────────────────── */
.services-wrap { background: var(--card2); }
.services { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.svc-label { margin-top: 2rem; margin-bottom: .6rem; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.card {
  background: var(--ink); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.4rem;
  transition: border-color .15s, transform .2s;
}
.card:hover { border-color: rgba(196,154,60,.35); transform: translateY(-2px); }
.card-price { font-family: var(--serif); font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.card-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--dim); line-height: 1.5; }
.card-tag { display: inline-block; margin-top: 10px; font-size: 11px; color: var(--gold); border: 1px solid rgba(196,154,60,.3); border-radius: 4px; padding: 2px 8px; }

/* ── WHY US ─────────────────────────────────── */
.why-wrap { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.why-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}
.why-icon { font-size: 22px; margin-bottom: .75rem; }
.why-title { font-size: 14px; font-weight: 700; margin-bottom: .4rem; }
.why-desc { font-size: 13px; color: var(--dim); line-height: 1.55; }

/* ── SCENARIOS ──────────────────────────────── */
.scenario-wrap { background: var(--card2); }
.scenario { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.scene-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 2.5rem; }
.scene-card { background: var(--ink); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.scene-who { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.scene-quote { font-family: var(--serif); font-size: 15px; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.5; margin-bottom: 1rem; }
.scene-how { font-size: 13px; color: var(--dim); line-height: 1.55; }

/* ── CTA ────────────────────────────────────── */
.cta-wrap { max-width: 900px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.cta-card {
  background: linear-gradient(135deg, #1A2440 0%, #0F1828 100%);
  border: 1px solid rgba(196,154,60,.25);
  border-radius: 16px; padding: 3rem; text-align: center;
}
.cta-title { font-family: var(--serif); font-size: clamp(24px,4vw,36px); font-weight: 400; margin-bottom: .75rem; }
.cta-sub { font-size: 16px; color: var(--dim); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 2rem; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; font-size: 13px; }
.footer-links a { color: var(--dim); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { margin-top: .75rem; font-size: 12px; color: rgba(255,255,255,.18); }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity:0; animation: fadeUp .7s ease forwards; }
.anim-d1 { animation-delay:.1s; }
.anim-d2 { animation-delay:.25s; }
.anim-d3 { animation-delay:.4s; }
.anim-d4 { animation-delay:.55s; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.pulse { animation: pulse 2s ease infinite; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 560px) {
  nav { padding: 0 1.25rem; }
  .nav-link { display: none; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .section, .deposit-wrap, .why-wrap, .cta-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
  .services { padding-left: 1.25rem; padding-right: 1.25rem; }
  .scenario { padding-left: 1.25rem; padding-right: 1.25rem; }
  .deposit-card { padding: 1.75rem 1.5rem; flex-direction: column; }
  .cta-card { padding: 2rem 1.5rem; }
  .trust { gap: 1.25rem; }
  .funnel { grid-template-columns: 1fr; }
}
