/* Minimal, fast, Cloudflare-friendly landing page */
:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.72);
  --line:rgba(167,197,255,.18);
  --accent:#7aa5ff;
  --accent2:#58d0ff;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 700px at 70% -10%, rgba(122,165,255,.18), rgba(0,0,0,0)),
              radial-gradient(900px 500px at 10% 20%, rgba(88,208,255,.12), rgba(0,0,0,0)),
              var(--bg);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 48px)); margin:0 auto}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px}
.brand-accent{color:var(--accent)}
.logo{
  width:28px; height:28px; border-radius:9px;
  background: radial-gradient(circle at 30% 30%, var(--accent2), var(--accent));
  box-shadow: 0 10px 30px rgba(122,165,255,.28);
}
.links{display:flex; gap:18px; color:var(--muted); font-weight:600}
.links a:hover{color:var(--text)}
.nav-cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:14px;
  color:var(--text);
  font-weight:700;
  background: rgba(255,255,255,.02);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(167,197,255,.32)}
.btn:active{transform: translateY(0)}
.btn-primary{
  background: linear-gradient(135deg, rgba(122,165,255,.95), rgba(88,208,255,.85));
  border-color: transparent;
  color: #07101f;
}
.btn-ghost{background: rgba(255,255,255,.02)}
.btn-lg{padding:12px 16px; border-radius:16px}
.w-full{width:100%}

.menu-btn{
  display:none;
  width:44px; height:40px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding:10px;
}
.menu-btn span{
  display:block; height:2px; margin:5px 0;
  background: rgba(234,241,255,.85);
}

.mobile-menu{
  border-top:1px solid var(--line);
  background: rgba(11,18,32,.92);
}
.mobile-menu .container{padding:14px 0; display:grid; gap:10px}
.mobile-menu a{color:var(--muted); font-weight:700}
.mobile-menu a:hover{color:var(--text)}

.hero{
  position:relative;
  padding:64px 0 42px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-bg{
  position:absolute; inset:0;
  opacity:0.95;
  transform: scale(1.02);
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(15,27,51,.40);
  color: var(--muted);
  font-weight:700;
  width: fit-content;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(88,208,255,.12);
}

h1{font-size: clamp(34px, 4vw, 54px); line-height:1.05; margin:14px 0 12px}
.lead{font-size:18px; color:var(--muted); max-width:56ch; margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 18px}

.trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:10px;
}
.trust-item{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(15,27,51,.30);
  min-width: 170px;
}
.trust-kpi{font-weight:900; letter-spacing:.2px}
.trust-label{color:var(--muted); font-weight:650; font-size:13px}
.micro{color:rgba(234,241,255,.56); font-size:12px; margin-top:14px}

.card{
  border-radius: var(--radius);
  background: rgba(15,27,51,.62);
  border:1px solid rgba(167,197,255,.24);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-header{
  display:flex; align-items:flex-start; justify-content:space-between;
  padding:16px 16px 10px;
  border-bottom:1px solid rgba(167,197,255,.16);
}
.card-title{font-weight:900}
.card-subtitle{color:var(--muted); font-weight:650; font-size:13px; margin-top:2px}
.chip{
  font-size:12px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  background: rgba(88,208,255,.14);
  border:1px solid rgba(88,208,255,.22);
  color: rgba(234,241,255,.92);
}
.mock{padding:14px 16px 16px}
.mock-row{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px dashed rgba(167,197,255,.14);
}
.mock-row:last-child{border-bottom:none}
.mock-label{color:var(--muted); font-weight:700}
.mock-value{font-weight:900}
.mock-divider{height:1px; background: rgba(167,197,255,.16); margin:14px 0}
.mock-list{display:grid; gap:10px}
.mock-list-item{
  display:grid; grid-template-columns: 58px 1fr auto;
  gap:10px; align-items:center;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(167,197,255,.16);
  background: rgba(11,18,32,.42);
}
.badge{
  font-size:12px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(167,197,255,.22);
  background: rgba(167,197,255,.10);
  text-align:center;
}
.badge-urgent{border-color: rgba(255,120,120,.38); background: rgba(255,120,120,.10)}
.badge-warn{border-color: rgba(255,210,120,.38); background: rgba(255,210,120,.10)}
.muted{color:var(--muted)}
.card-footer{padding:12px 16px 16px; color:rgba(234,241,255,.62); font-size:12px}

.section{padding:56px 0}
.section.alt{background: rgba(15,27,51,.22); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section-head{margin-bottom:22px}
.section-head h2{margin:0 0 10px; font-size: clamp(24px, 2.6vw, 34px)}
.section-head p{margin:0; color:var(--muted); max-width:72ch}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.feature, .stat{
  border-radius: var(--radius);
  border:1px solid rgba(167,197,255,.18);
  background: rgba(15,27,51,.38);
  padding:18px;
}
.feature h3{margin:0 0 10px}
.feature p{margin:0 0 12px; color:var(--muted)}
.feature ul{margin:0; padding-left:18px; color:rgba(234,241,255,.74); font-weight:650}
.feature li{margin:8px 0}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.steps{display:grid; gap:12px; margin-top:16px}
.step{
  display:grid; grid-template-columns: 34px 1fr;
  gap:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(167,197,255,.16);
  background: rgba(11,18,32,.38);
}
.step-num{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:12px;
  font-weight:900;
  background: rgba(122,165,255,.18);
  border:1px solid rgba(122,165,255,.26);
}
.step-title{font-weight:900}
.step-desc{color:var(--muted); font-weight:650; font-size:13px; margin-top:2px}

.panel{
  border-radius: var(--radius);
  border:1px solid rgba(167,197,255,.22);
  background: rgba(15,27,51,.55);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-top{padding:16px; border-bottom:1px solid rgba(167,197,255,.16)}
.panel-title{font-weight:900}
.panel-sub{color:var(--muted); font-weight:650; font-size:13px; margin-top:2px}
.panel-list{padding:14px 16px 18px; display:grid; gap:10px}
.panel-item{
  display:flex; align-items:center; gap:10px;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(167,197,255,.16);
  background: rgba(11,18,32,.38);
  color: rgba(234,241,255,.85);
  font-weight:700;
}
.check{
  width:14px; height:14px; border-radius:4px;
  background: linear-gradient(135deg, rgba(122,165,255,.95), rgba(88,208,255,.85));
  box-shadow: 0 6px 18px rgba(88,208,255,.12);
}

.note{
  margin-top:18px;
  padding:14px 16px;
  border-radius: 16px;
  border:1px solid rgba(167,197,255,.18);
  background: rgba(11,18,32,.36);
  color: rgba(234,241,255,.72);
  font-weight:650;
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}
.price-card{
  position:relative;
  border-radius: var(--radius);
  border:1px solid rgba(167,197,255,.18);
  background: rgba(15,27,51,.38);
  padding:18px;
}
.price-card.featured{
  border-color: rgba(88,208,255,.35);
  background: rgba(15,27,51,.55);
  box-shadow: var(--shadow);
}
.ribbon{
  position:absolute; top:12px; right:12px;
  font-size:12px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  background: rgba(88,208,255,.14);
  border:1px solid rgba(88,208,255,.22);
}
.price-top{margin-bottom:10px}
.price-name{font-weight:900; font-size:18px}
.price-tag{color:var(--muted); font-weight:650; font-size:13px; margin-top:4px}
.price-value{font-size:34px; font-weight:950; margin:12px 0}
.price-list{margin:0 0 14px; padding-left:18px; color:rgba(234,241,255,.78); font-weight:650}
.price-list li{margin:8px 0}

.cta{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  padding:20px;
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(167,197,255,.22);
  background: rgba(15,27,51,.45);
  box-shadow: var(--shadow);
}
.form{
  display:grid; gap:10px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(167,197,255,.16);
  background: rgba(11,18,32,.38);
}
label span{display:block; font-weight:800; font-size:12px; color: rgba(234,241,255,.78); margin-bottom:6px}
input, textarea{
  width:100%;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid rgba(167,197,255,.18);
  background: rgba(15,27,51,.55);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{border-color: rgba(88,208,255,.35)}
.form-note{min-height:18px; font-size:12px; color: rgba(234,241,255,.70); font-weight:650}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background: rgba(11,18,32,.92);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:16px;
  align-items:center;
}
.footer-links{display:flex; gap:14px; color: rgba(234,241,255,.72); font-weight:700}
.footer-links a:hover{color: var(--text)}
.footer-brand{margin-bottom:8px}

@media (max-width: 960px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-card{order:2}
  .grid-3{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .cta{grid-template-columns: 1fr}
  .links, .nav-cta{display:none}
  .menu-btn{display:inline-block}
  .footer-grid{grid-template-columns: 1fr}
}
