:root{
  --bg:#0b1220;
  --bg2:#0f1a33;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --accent:#7c5cff;
  --accent2:#22c55e;
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 16px;
  --container: 1120px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: var(--sans);
  background: radial-gradient(1200px 700px at 10% 0%, rgba(124,92,255,.35), transparent 55%),
              radial-gradient(1000px 600px at 90% 15%, rgba(34,197,94,.18), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 20px}

.site-header{
  position: sticky; top:0; z-index:50;
  
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid var(--stroke);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height: 74px;
  gap: 16px;
}

.brand{display:flex; align-items:center; gap: 12px; min-width: 240px}
.brand-logo{width:40px; height:40px; border-radius:12px; object-fit:cover; border:1px solid var(--stroke)}
.brand-title{font-weight:800; letter-spacing:.3px}
.brand-subtitle{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap: 18px}
.nav a{color: var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color: var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(124,92,255,.75));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  font-weight:800;
  gap:10px;
}
.btn:hover{transform: translateY(-1px)}
.btn-ghost{
  background: transparent;
  border: 1px solid var(--stroke);
  box-shadow: none;
}
.btn-small{padding:10px 12px; border-radius: 12px}

.hero{padding: 48px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-weight:700;
  font-size: 12px;
}
h1{font-size: 48px; margin: 12px 0 10px; letter-spacing:-.8px}
.lead{font-size: 16px; line-height:1.6; color: var(--muted); margin: 0 0 18px}
.hero-meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.meta-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 12px;
}
.meta-label{font-size: 12px; color: var(--muted); font-weight:700}
.meta-value{font-weight:900; margin-top: 6px}

.hero-actions{display:flex; gap: 12px; align-items:center; flex-wrap:wrap}
.link{color: var(--muted); font-weight:700}
.link:hover{color: var(--text)}
.fineprint{margin: 14px 0 0; color: var(--muted); font-size: 13px}

.hero-panel{display:grid; gap: 12px}
.panel-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
}
.panel-card h3{margin: 0 0 10px}
.checklist, .bullets{margin: 0; padding-left: 18px; color: var(--muted); line-height:1.65}
.checklist li{margin: 6px 0}
.bullets li{margin: 6px 0}

.section{padding: 48px 0}
.section-alt{background: rgba(255,255,255,.03); border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke)}
.section-head{margin-bottom: 18px}
.section-head h2{margin:0 0 10px; font-size: 28px}
.section-head p{margin:0; color: var(--muted); line-height:1.6}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
}
.card h3{margin: 0 0 10px}
.card p{margin:0; color: var(--muted); line-height:1.6}

.dates{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow:hidden;
}
.date-row{
  display:flex; justify-content:space-between; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--stroke);
}
.date-row:last-child{border-bottom:none}
.date-label{color: var(--muted); font-weight:700}
.date-value{font-family: var(--mono); font-weight:900}

.note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.25);
  background: rgba(124,92,255,.08);
  color: var(--muted);
}

.contact{color: var(--muted); line-height:1.75}
.contact a{color: var(--text); text-decoration:underline}
.contact hr{border:0; border-top:1px solid var(--stroke); margin: 12px 0}

.footer-cta{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 18px}

.site-footer{
  padding: 26px 0 40px;
  border-top: 1px solid var(--stroke);
}
.footer-row{display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap}
.muted{color: var(--muted); font-size: 13px}

/* Mobile nav */
.nav-toggle{display:none}
.burger{display:none; width:44px; height:44px; border-radius: 12px; border: 1px solid var(--stroke); background: rgba(255,255,255,.06); align-items:center; justify-content:center; gap:5px; flex-direction:column; cursor:pointer}
.burger span{width:18px; height:2px; background: rgba(234,240,255,.85); display:block; border-radius: 2px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; }
  h1{font-size: 40px}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .hero-meta{grid-template-columns: 1fr}
}

@media (max-width: 820px){
  .burger{display:flex}
  .nav{
    position: absolute;
    top: 74px; right: 0; left: 0;
    background: rgba(11,18,32,.92);
    border-bottom: 1px solid var(--stroke);
    padding: 14px 20px;
    display: none;
    flex-direction:column;
    align-items:flex-start;
    gap: 12px;
  }
  .nav-toggle:checked ~ .nav{display:flex}
}
