:root{
  --bg:#0b0b10;
  --card:#11111a;
  --text:#f6f6fb;
  --muted:rgba(246,246,251,0.75);
  --muted2:rgba(246,246,251,0.55);
  --line:rgba(246,246,251,0.12);
  --gold:#f2c14e;
  --red:#ff3b30;
  --orange:#ff9500;
  --sky:#38bdf8;
  --radius:18px;
  --shadow:0 12px 40px rgba(0,0,0,0.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1000px 700px at 20% -10%, rgba(56,189,248,0.25), transparent 60%),
              radial-gradient(900px 600px at 80% -5%, rgba(255,149,0,0.18), transparent 55%),
              radial-gradient(800px 600px at 60% 20%, rgba(255,59,48,0.12), transparent 50%),
              var(--bg);
  color:var(--text);
  line-height:1.45;
}

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

.container{max-width:1120px; margin:0 auto; padding:0 20px}

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(11,11,16,0.65);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  letter-spacing:0.2px;
}
.logo{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold), var(--sky));
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.brand small{display:block; font-weight:600; color:var(--muted2); letter-spacing:0.6px}

.navlinks{display:flex; gap:16px; align-items:center}
.navlinks a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.navlinks a:hover{background:rgba(246,246,251,0.06); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(246,246,251,0.06);
  color:var(--text);
  font-weight:700;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(255,59,48,0.95), rgba(255,149,0,0.92), rgba(242,193,78,0.9), rgba(56,189,248,0.85));
  border: none;
  color:#0b0b10;
}
.btn.primary:hover{filter:brightness(1.05)}

.hamburger{display:none; border:1px solid var(--line); background:rgba(246,246,251,0.06); color:var(--text); padding:10px 12px; border-radius:12px}

/* Announcement */
.announce{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(246,246,251,0.04);
}
.announce .row{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:10px 0;
  color:var(--muted);
}
.announce a{color:var(--text); font-weight:700}

/* Hero */
.hero{padding:56px 0 18px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap:22px;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--line);
  background: rgba(17,17,26,0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:26px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(242,193,78,0.25);
  background: rgba(242,193,78,0.08);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.h1{font-size:44px; line-height:1.06; margin:14px 0 10px; letter-spacing:-0.5px}
.sub{color:var(--muted); font-size:16px; max-width:62ch}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.sideCard{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17,17,26,0.35);
  padding:18px;
}
.sideCard h3{margin:0 0 10px; font-size:16px}
.meta{color:var(--muted); font-size:13px}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.pill{
  border:1px solid var(--line);
  background:rgba(246,246,251,0.05);
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}

/* Sections */
section{padding:30px 0}
.sectionTitle{font-size:22px; margin:0 0 10px}
.sectionLead{color:var(--muted); margin:0 0 18px; max-width:70ch}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.card{
  border:1px solid var(--line);
  background: rgba(17,17,26,0.45);
  border-radius: var(--radius);
  padding:18px;
}
.card h4{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted)}

.card ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.hr{height:1px; background:var(--line); margin:18px 0}

.formRow{display:flex; gap:10px; flex-wrap:wrap}
.input{
  flex:1;
  min-width: 220px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(246,246,251,0.05);
  color:var(--text);
}
.input::placeholder{color:rgba(246,246,251,0.5)}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0 28px;
  color:var(--muted2);
}
.footer .row{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.small{font-size:12px; color:var(--muted2)}

/* Responsive */
@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr}
  .h1{font-size:38px}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .navlinks{display:none}
  .hamburger{display:inline-flex}
  .nav.open .navlinks{
    display:flex;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    margin-top:10px;
    gap:6px;
  }
  .nav.open{flex-wrap:wrap}
}


/* Pricing */
.priceGrid{display:grid; grid-template-columns:repeat(12,1fr); gap:16px;}
.priceCard{grid-column:span 6;}
@media (max-width: 900px){.priceCard{grid-column:span 12;}}
.price{font-size:28px; font-weight:800; letter-spacing:-0.02em;}
.priceList{margin:12px 0 0; padding-left:18px; color:var(--text);}
.priceList li{margin:6px 0;}
