@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --navy:        #0B1628;
  --navy-mid:    #0F1E38;
  --navy-card:   #111E35;
  --navy-light:  #1A3060;
  --gold:        #D4A843;
  --gold-light:  #F0C96A;
  --gold-dim:    rgba(212,168,67,0.12);
  --gold-border: rgba(212,168,67,0.22);
  --cream:       #F2EDE3;
  --cream-dim:   rgba(242,237,227,0.55);
  --cream-faint: rgba(242,237,227,0.2);
  --cream-ghost: rgba(242,237,227,0.06);
  --green:       #10B981;
  --green-dim:   rgba(16,185,129,0.1);
  --red:         #EF4444;
  --border:      rgba(255,255,255,0.06);
  --shadow-gold: 0 0 40px rgba(212,168,67,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 600; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 500; }
p  { font-size: 0.95rem; }

.gold  { color: var(--gold); }
.cream { color: var(--cream); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 70px;
  background: rgba(11,22,40,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: 1px;
  color: var(--cream); text-decoration: none;
}
.nav-logo-badge {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 0.78rem; color: var(--navy); letter-spacing: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.45rem 1rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 500; color: var(--cream-dim);
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); background: var(--cream-ghost); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1.4rem; border-radius: 6px;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.3px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  padding: 0.95rem 2.2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.92rem;
  border: none; cursor: pointer; letter-spacing: 0.3px;
  transition: all 0.25s; text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,168,67,0.3); }

.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--cream);
  padding: 0.95rem 2.2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.92rem;
  border: 1px solid var(--cream-faint); cursor: pointer;
  transition: all 0.25s; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── LAYOUT ── */
.page-wrap { padding-top: 70px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── SECTION TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.tag::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); }

/* ── CARDS ── */
.card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: all 0.25s;
}
.card:hover { border-color: var(--gold-border); transform: translateY(-3px); }

/* ── STAT STRIP ── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.stat-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cream-dim); margin-top: 0.3rem; font-family: 'DM Mono', monospace; }

/* ── TRUST ROW ── */
.trust-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--cream-faint); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer; gap: 1rem; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-text { font-size: 0.95rem; font-weight: 500; }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; transition: all 0.2s;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem; color: var(--cream-dim); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }
.footer-col h4 {
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col a { display: block; font-size: 0.85rem; color: var(--cream-dim); padding: 0.25rem 0; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-copy { font-size: 0.75rem; color: var(--cream-faint); }
.footer-risk {
  font-size: 0.7rem; color: rgba(242,237,227,0.2);
  line-height: 1.65; max-width: 680px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.75rem;
}
.footer-legal a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.78rem;
}
.footer-legal a:hover { color: var(--gold); }
.footer-payment { margin-top: 0.75rem; text-align: center; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden; padding: 0.7rem 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--gold-border);
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 2.5rem;
  animation: ticker 22s linear infinite;
}
.ticker-inner span { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.ticker-inner .sep { color: var(--cream-faint); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── LIVE DOT ── */
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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