/* ---------- Base ---------- */
:root{
  --bg:#0b0d12;
  --panel:#11141a;
  --panel-soft:#151a22;
  --text:#e8ecf1;
  --muted:#a8b0bc;
  --brand:#36c2ff;
  --accent:#6ae3a7;
  --pill:#1a2330;
  --border:#202734;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{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:linear-gradient(180deg, #0b0d12 0%, #0e1118 100%);
  line-height:1.6;
}

img{max-width:100%; display:block}
a{color:var(--brand); text-decoration:none}
a:hover{opacity:.9}

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.section{padding:64px 0}
.section.alt{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,13,18,.7); backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.logo{height:40px; width:auto; border-radius:6px; box-shadow: var(--shadow)}
.menu a{margin-left:18px; font-weight:600}

/* ---------- Hero ---------- */
.hero{
  padding:72px 0 56px;
  background:
    radial-gradient(800px 300px at 30% -10%, rgba(54,194,255,.15), transparent 70%),
    radial-gradient(600px 240px at 80% 10%, rgba(106,227,167,.12), transparent 60%);
  border-bottom:1px solid var(--border);
}
.hero-inner{ text-align:center }
.hero h1{ font-size: clamp(28px, 6vw, 44px); margin:0 0 8px }
.sub{ color:var(--muted); margin:0 auto 18px; max-width:760px }
.hero-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap }

/* ---------- Buttons ---------- */
.btn{
  display:inline-block; padding:12px 18px; border-radius:14px;
  border:1px solid var(--border);
  font-weight:700; letter-spacing:.2px; box-shadow: var(--shadow);
}
.btn.primary{ background:linear-gradient(90deg, var(--brand), #8ae1ff); color:#00121a; border-color:transparent }
.btn.ghost{ background:transparent }
.btn.tiny{ padding:6px 10px; border-radius:10px; font-weight:600}

/* ---------- Cards & Grid ---------- */
.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px; padding:20px; box-shadow: var(--shadow);
}
.card.soft{ background:var(--panel-soft) }

.grid-2{ display:grid; grid-template-columns: 1fr; gap:20px }
@media (min-width: 900px){
  .grid-2{ grid-template-columns: 1fr 1fr }
}
.gap-xl{ gap:28px }

.section-head{ margin-bottom:16px }
.section-head h2{ margin:0 0 6px }

/* ---------- Lists ---------- */
.tick li{ margin:10px 0; list-style:none; padding-left:28px; position:relative }
.tick li:before{
  content:"✓"; position:absolute; left:0; top:0; color:var(--accent); font-weight:900
}
.dash li{ margin:8px 0; list-style:none; padding-left:18px; position:relative }
.dash li:before{
  content:"—"; position:absolute; left:0; top:0; color:var(--muted)
}

/* ---------- Pills ---------- */
.pill-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px }
.pill{
  background:var(--pill); border:1px solid var(--border); color:var(--muted);
  padding:6px 10px; border-radius:999px; font-size:13px
}

/* ---------- Months Grid ---------- */
.months-grid{
  display:grid; grid-template-columns: 1fr; gap:18px;
}
@media (min-width: 800px){
  .months-grid{ grid-template-columns: 1fr 1fr }
}
@media (min-width: 1100px){
  .months-grid{ grid-template-columns: 1fr 1fr 1fr }
}
.month{
  background:linear-gradient(180deg, rgba(54,194,255,.06), rgba(255,255,255,0));
  border:1px solid var(--border);
  border-radius:16px; overflow:hidden; display:flex; flex-direction:column; min-height:320px;
}
.month header{
  padding:14px 16px; display:flex; align-items:center; justify-content:space-between;
  background:linear-gradient(90deg, rgba(54,194,255,.16), rgba(106,227,167,.10));
  border-bottom:1px solid var(--border);
}
.month .tag{ font-size:12px; color:#00121a; background:linear-gradient(90deg, #6ae3a7, #d9ffe6); padding:6px 10px; border-radius:999px; border:0 }
.month h3{ margin:0; font-size:18px }
.month .body{ padding:16px; flex:1 }
.month .body ul{ margin:0; padding-left:18px }
.month .body li{ margin:8px 0 }
.month .actions{ padding:12px 16px; border-top:1px solid var(--border); display:flex; gap:10px }
.link{ font-size:14px }
.muted{ color:var(--muted) }
.micro{ font-size:12px; color:var(--muted) }
.mt-16{ margin-top:16px }

/* ---------- Form (legacy placeholder removed) ---------- */

/* ---------- Footer ---------- */
.site-footer{
  border-top:1px solid var(--border); padding:22px 0; background:#0a0c11;
}
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap }
