:root{
  --bc-blue:#0A2240;
  --bc-gold:#B8860B;
  --bc-ink:#0f172a;
  --bc-muted:#64748b;
  --bc-soft:#f8fafc;
  --bc-line: rgba(184,134,11,.35);
  --radius:18px;
}
*{scroll-behavior:smooth}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--bc-ink);
  background: #ffffff;
}
a{color: var(--bc-blue); text-decoration:none}
a:hover{color: var(--bc-gold)}
.navbar{
  background: linear-gradient(90deg, var(--bc-blue), #071a33);
  border-bottom: 1px solid rgba(184,134,11,.25);
}
.navbar .nav-link{color: rgba(255,255,255,.92)!important}
.navbar .nav-link:hover{color:#fff!important; opacity:1}
.brand-mark{
  width:34px;height:34px;border-radius:12px;
  background: rgba(184,134,11,.18);
  border: 1px solid rgba(184,134,11,.35);
  display:grid;place-items:center;
  margin-right:.6rem;
}
.brand-mark span{color: var(--bc-gold); font-weight:800; letter-spacing:.04em;}
.hero{
  position:relative;
  padding: 96px 0 72px;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 10% 20%, rgba(184,134,11,.22), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, #071a33, var(--bc-blue));
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute; inset:auto -30% -45% -30%;
  height:420px;
  background: radial-gradient(circle at 50% 50%, rgba(184,134,11,.28), transparent 65%);
  filter: blur(6px);
  opacity:.75;
}
.hero .container{position:relative; z-index:2}
.kicker{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.35rem .7rem;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,134,11,.35);
  color: rgba(255,255,255,.92);
  font-size:.92rem;
}
.kicker i{
  display:inline-block; width:10px; height:10px; border-radius:999px;
  background: var(--bc-gold);
  box-shadow: 0 0 0 4px rgba(184,134,11,.18);
}
.hero h1{font-weight: 800; letter-spacing:-.02em; margin-top: 1rem;}
.hero p.lead{color: rgba(255,255,255,.88)}
.hero-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(6px);
}
.hero-card .mini{font-size:.92rem; color: rgba(255,255,255,.8);}
.hero-card strong{color:#fff}
.hero-visual{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(2,6,23,.35);
}
.hero-visual img{width:100%; height:auto; display:block; opacity:.92}
.section{padding: 72px 0}
.section-title{font-weight: 800; letter-spacing:-.02em; margin-bottom: 10px;}
.section-sub{color: var(--bc-muted); max-width: 70ch;}
.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, var(--bc-line), transparent);
  margin: 22px 0 28px;
}
.badge-gold{
  background: rgba(184,134,11,.12);
  border: 1px solid rgba(184,134,11,.28);
  color: var(--bc-gold);
  padding: .45rem .7rem;
  border-radius: 999px;
  font-weight: 600;
}
.card-pro{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(2,6,23,.06);
}
.card-pro .card-header{
  background: linear-gradient(180deg, rgba(10,34,64,.06), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(2,6,23,.06);
}
.icon-pill{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(10,34,64,.06);
  border: 1px solid rgba(184,134,11,.22);
  color: var(--bc-blue);
  font-weight: 800;
}
.small-muted{color: var(--bc-muted); font-size:.95rem}
.timeline{border-left: 2px solid rgba(184,134,11,.35); padding-left: 18px;}
.timeline .step{position:relative; padding: 6px 0 18px 0;}
.timeline .step:before{
  content:""; position:absolute; left: -11px; top: 10px;
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--bc-gold);
  box-shadow: 0 0 0 5px rgba(184,134,11,.15);
}
.timeline h6{margin-bottom:6px; font-weight:800}
.cta{
  background:
    radial-gradient(900px 400px at 15% 30%, rgba(184,134,11,.18), transparent 60%),
    linear-gradient(180deg, rgba(10,34,64,1), rgba(7,26,51,1));
  color:#fff;
  border-radius: calc(var(--radius) + 10px);
  padding: 32px;
  border: 1px solid rgba(184,134,11,.28);
  box-shadow: 0 20px 70px rgba(2,6,23,.28);
}
.btn-gold{
  background: linear-gradient(180deg, #d1a33a, var(--bc-gold));
  border: 0;
  color: #091527;
  font-weight: 800;
  border-radius: 14px;
  padding: 10px 16px;
}
.btn-outline-soft{
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  border-radius: 14px;
  padding: 10px 16px;
}
.btn-outline-soft:hover{border-color: rgba(255,255,255,.45); color:#fff}
.footer{
  background: #071a33;
  color: rgba(255,255,255,.88);
  padding: 40px 0;
  border-top: 1px solid rgba(184,134,11,.22);
}
.footer a{color: rgba(255,255,255,.9)}
.footer a:hover{color:#fff}
.legal-note{color: rgba(255,255,255,.65); font-size:.92rem}
.shadow-soft{box-shadow: 0 10px 34px rgba(2,6,23,.10)}
