:root{
  --navy:#0b1220;
  --navy2:#0f1a2d;
  --red:#e03a2f;
  --text:#0b1220;
  --muted:#6b7280;
  --card:#ffffff;
  --bg:#f6f7fb;
  --ring: rgba(224,58,47,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 70% -10%, rgba(224,58,47,.18), transparent 55%),
              radial-gradient(900px 500px at 10% 0%, rgba(11,18,32,.22), transparent 50%),
              var(--bg);
}

a{color:inherit; text-decoration:none}

.topbar{
  position: sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .inner{
  max-width: 1200px;
  margin:0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
}
.brand .dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(224,58,47,.14);
}

.hero{
  max-width: 1200px;
  margin: 28px auto 40px;
  padding: 0 18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 980px){
  .hero{grid-template-columns: 1fr; margin-top: 18px;}
}

.h-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(15,23,42,.10);
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color: var(--navy);
  margin-bottom: 10px;
}
.kicker span{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,18,32,.06);
}

h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 10px 0 12px;
}
@media (max-width: 520px){ h1{font-size: 36px;} }

p.lead{
  margin: 0 0 18px;
  color: #334155;
  font-size: 16.5px;
  line-height: 1.55;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  font-weight: 700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn.primary{
  background: var(--navy);
  color:#fff;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 14px 26px rgba(11,18,32,.22);
}
.btn.primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 34px rgba(11,18,32,.28); }
.btn.ghost{
  background: rgba(255,255,255,.75);
}
.btn.ghost:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15,23,42,.12); }

.note{
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.visual{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 45px rgba(15,23,42,.14);
  background: #0b1220;
}
.visual img{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1.02);
}

.footer{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
  color: rgba(11,18,32,.60);
  font-size: 13px;
}
