* { box-sizing: border-box; }
body {
  margin: 0;
  background: #020617;
  color: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.nav {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 650;
}
.brand img { border-radius: 8px; }
.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
}
.navlinks a:hover { color: white; }
.hero { position: relative; min-height: 92vh; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shade { position: absolute; inset: 0; background: linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, .82) 50%, rgba(2, 6, 23, .18) 100%); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  min-height: calc(92vh - 76px);
  margin: 0 auto;
  padding: 48px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.pill {
  display: inline-flex;
  margin: 0 0 28px;
  border: 1px solid rgba(110, 231, 183, .25);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(52, 211, 153, .1);
  color: #a7f3d0;
  font-size: 12px;
  font-weight: 650;
}
h1 {
  margin: 0;
  max-width: 760px;
  color: white;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}
h2 { margin: 0; color: white; font-size: 18px; }
p { color: #94a3b8; }
.lead { max-width: 620px; margin: 18px 0 0; color: #cbd5e1; font-size: 18px; line-height: 1.75; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 650;
  transition: background .15s ease, color .15s ease;
}
.primary { background: #6366f1; color: white; }
.primary:hover { background: #818cf8; }
.secondary, .ghost {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(15, 23, 42, .72);
  color: #e2e8f0;
}
.secondary:hover, .ghost:hover { background: rgba(30, 41, 59, .86); }
.full { width: 100%; margin-top: 22px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(520px, 100%);
  margin: 32px 0 0;
}
.metrics div { border-left: 1px solid rgba(255,255,255,.16); padding-left: 12px; }
.metrics dt { color: white; font-size: 14px; font-weight: 700; }
.metrics dd { margin: 6px 0 0; color: #94a3b8; font-size: 12px; line-height: 1.5; }
.band {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 56px 24px;
}
.grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
article, .price-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(15, 23, 42, .7);
  padding: 20px;
}
article p { font-size: 14px; line-height: 1.7; }
.cta {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta img { border-radius: 12px; }
.cta h2 { margin-top: 16px; font-size: 32px; }
.cta p { max-width: 600px; line-height: 1.7; }
.page { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; }
.eyebrow {
  margin: 0 0 12px;
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.price-card strong { display: block; margin-top: 12px; font-size: 42px; color: white; }
.price-card span { display: block; margin-top: 6px; color: #94a3b8; font-size: 14px; }
.legal { max-width: 760px; }
.legal section { margin-top: 28px; }
.legal p { line-height: 1.75; }
@media (max-width: 820px) {
  .nav, .hero-content, .cta, .page { width: min(100% - 32px, 1120px); }
  .navlinks { gap: 10px; }
  .grid { grid-template-columns: 1fr; }
  .two-col, .cta { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
}
