* { box-sizing: border-box; margin: 0; padding: 0; }

:root{
  --bg: #0e0e11;
  --panel: #15151d;
  --text: #f5f5f7;
  --muted: #b7b7c7;
  --line: #242432;
  --accent: #ffffff;
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(900px 600px at 20% 0%, #1c1c2a 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.6;
}

a{ color: var(--text); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px;
}

.header{
  border-bottom: 1px solid var(--line);
  padding: 18px 0 12px;
}

.toprow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.logo{
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 22px;
}

.badge{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.headline{
  margin-top: 18px;
  font-size: 44px;
  line-height: 1.05;
}

.tagline{
  margin-top: 12px;
  color: var(--muted);
  max-width: 720px;
  font-size: 18px;
}

.ctaRow{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.cta{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #0e0e11;
  font-weight: 800;
  border: 1px solid transparent;
}

.cta.ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  font-weight: 700;
}

.pillrow{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.pill{
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.section{ margin: 22px 0; }

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card{
  background: rgba(21,21,29,0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

h2{ font-size: 26px; margin-bottom: 8px; }
h3{ font-size: 18px; margin-bottom: 10px; }

p{ margin-top: 6px; color: var(--muted); }

.list{
  list-style: none;
  margin-top: 8px;
}

.list li{
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text);
}

.email{
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--text);
}

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.footer{
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.footerInner{
  display:flex;
  justify-content:center;
  text-align:center;
}

@media (max-width: 860px){
  .headline{ font-size: 36px; }
  .grid{ grid-template-columns: 1fr; }
}
