:root{
  --bg: #090a0c;
  --panel: rgba(255,255,255,0.04);
  --panel-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --text: #f3f4f6;
  --muted: rgba(243,244,246,0.65);
  --accent: #3b82f6;
  --shadow: 0 18px 70px rgba(0,0,0,0.55);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
body.public{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 35% 20%, rgba(59,130,246,0.18), transparent 60%),
              radial-gradient(900px 500px at 70% 45%, rgba(255,255,255,0.08), transparent 60%),
              var(--bg);
  color: var(--text);
}

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

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9,10,12,0.55);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; }

.brand{
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.navlink{
  color: var(--muted);
  font-size: 14px;
}
.navlink:hover{ color: var(--text); }
.navlink.is-active{ color: var(--text); font-weight: 600; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  transition: 0.18s ease;
  cursor: pointer;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.06); }

.btn-primary{
  background: linear-gradient(180deg, rgba(59,130,246,1), rgba(37,99,235,1));
  border-color: rgba(59,130,246,0.55);
  color: white;
}
.btn-primary:hover{ filter: brightness(1.05); }

.hero{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 46px 0 26px;
}
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
}

.hero-left h1{
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.lede{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 62ch;
}

.cta-row{ display:flex; gap:12px; margin-top: 18px; flex-wrap: wrap; }

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

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
}

.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset;
}
.card h3{
  font-size: 14px;
  margin-bottom: 8px;
}
.card p{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.banner{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.banner h2{ font-size: 16px; margin-bottom: 6px; }
.banner p{ color: var(--muted); font-size: 13px; }
@media (max-width: 720px){
  .banner{ flex-direction:column; align-items:flex-start; }
}

.hero-right{ display:flex; justify-content:flex-end; }
.mock-window{
  width: min(460px, 100%);
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(17,19,24,0.65);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dots{ display:flex; gap:8px; }
.dot{ width: 10px; height: 10px; border-radius: 999px; opacity: 0.9; }
.dot.red{ background:#ff5f57; }
.dot.yellow{ background:#febc2e; }
.dot.green{ background:#28c840; }
.mock-title{ color: var(--muted); font-size: 12px; }

.mock-body{ padding: 18px; }
.mock-body h4{ font-size: 14px; margin-bottom: 10px; }
.mock-body ul{ padding-left: 18px; color: var(--muted); line-height: 1.7; }
.mock-foot{ margin-top: 12px; color: rgba(243,244,246,0.80); font-size: 13px; }

.page{ padding: 42px 0 24px; }
.page-head{ margin-bottom: 18px; }
.page-head h1{ font-size: 40px; letter-spacing: -0.6px; }
.page-head .lede{ margin-top: 10px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
}

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

.price-card{
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
}
.price-card.highlight{
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.price-top h3{ font-size: 16px; }
.price{
  font-size: 34px;
  font-weight: 800;
  margin-top: 4px;
}
.price span{ font-size: 14px; color: var(--muted); font-weight: 600; }
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.checklist{
  list-style:none;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
}
.checklist li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(243,244,246,0.85);
  font-size: 13px;
}
.full{ width:100%; margin-top: 12px; }

.footer{
  width: min(1120px, calc(100% - 40px));
  margin: 22px auto 26px;
  display:flex;
  justify-content:space-between;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}
.footer-links{ display:flex; gap: 14px; }
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }

.mt-10{ margin-top: 10px; }
.mt-24{ margin-top: 24px; }
