:root{
  --bg: #07070a;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.12);
  --accent: #ff2d2d; /* aggressive red */
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
a{ color: inherit; text-decoration: none; }

.nav{
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(7,7,10,0.70);
  border-bottom: 1px solid var(--line);
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 16px 22px;
  z-index: 10;
}
.brand{
  letter-spacing: 0.22em;
  font-weight: 800;
  font-size: 12px;
}
.links a{
  margin-left: 16px;
  font-size: 14px;
  color: var(--muted);
}
.links a.active, .links a:hover{ color: var(--text); }

.container{ max-width: 1080px; margin: 0 auto; padding: 26px 18px 60px; }

.hero{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}
.hero-left{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255,45,45,0.10), rgba(255,255,255,0.02));
}
.hero-right{
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 20%, rgba(255,45,45,0.18), rgba(255,255,255,0.03));
  display:flex;
}
.eyebrow{
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 56px);
  letter-spacing: -0.03em;
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
}
.btn.primary{
  background: var(--accent);
  border-color: rgba(255,45,45,0.5);
  color: #0b0b0f;
}
.btn.primary:hover{ filter: brightness(1.05); }
.btn.ghost{
  background: rgba(255,255,255,0.03);
}
.btn.ghost:hover{ background: rgba(255,255,255,0.06); }

.trust{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 12px;
}

.hero-card{ width:100%; display:flex; flex-direction: column; justify-content: center; }
.card-title{
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
.bullets{ margin: 0; padding-left: 18px; color: var(--text); }
.bullets li{ margin: 8px 0; color: var(--muted); }
.fineprint{ margin-top: 14px; font-size: 12px; color: var(--muted); }

.section{ margin-top: 26px; padding: 22px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.section h2{ margin: 0 0 12px; letter-spacing: -0.02em; }
.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.panel{ padding: 16px; border-radius: 16px; border: 1px solid var(--line); background: var(--panel); }
.panel h3{ margin: 0 0 8px; }
.panel p{ margin: 0; color: var(--muted); line-height: 1.5; }

.footer{ margin-top: 26px; text-align:center; color: var(--muted); font-size: 12px; }

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
}
