:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.06);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --stroke:rgba(255,255,255,.12);
  --shadow: 0 20px 80px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(139,92,246,.25), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(34,211,238,.20), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
a{color:inherit;text-decoration:none}
.section{padding:72px 18px; max-width:1100px; margin:0 auto;}
.section.alt{background:linear-gradient(to bottom, transparent, rgba(255,255,255,.03), transparent); border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke);}
.grid.two{display:grid; grid-template-columns:1.2fr .8fr; gap:18px;}
@media (max-width: 900px){ .grid.two{grid-template-columns:1fr;} }

.topbar{
  position:sticky; top:0; z-index:20;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px; border-bottom:1px solid var(--stroke);
  background:rgba(7,10,18,.65); backdrop-filter: blur(16px);
}
.logo{font-weight:900; letter-spacing:.22em; text-transform:uppercase}
.nav{display:flex; gap:14px; align-items:center}
.nav a{color:var(--muted); font-weight:600}
.nav a:hover{color:var(--text)}
.cta{padding:10px 14px; border:1px solid var(--stroke); border-radius:999px; background:rgba(255,255,255,.04)}
.cta:hover{border-color:rgba(255,255,255,.24)}

.hero{position:relative; overflow:hidden; padding:88px 18px 64px; max-width:1100px; margin:0 auto;}
.hero-inner{max-width:720px}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border:1px solid var(--stroke); border-radius:999px;
  background:rgba(255,255,255,.04); color:var(--muted);
}
h1{font-size:72px; margin:14px 0 6px; line-height:1; letter-spacing:.06em}
@media (max-width:520px){ h1{font-size:52px;} }
.sub{color:var(--muted); font-size:18px; line-height:1.6; max-width:52ch}
.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px; border:1px solid var(--stroke);
  background:rgba(255,255,255,.04); color:var(--text); font-weight:700;
}
.btn.primary{
  background:linear-gradient(135deg, rgba(139,92,246,.95), rgba(34,211,238,.85));
  border-color:transparent;
}
.btn.ghost:hover{border-color:rgba(255,255,255,.22)}
.btn.primary:hover{filter:brightness(1.05)}

.hero-glow{
  position:absolute; inset:-60px -80px auto auto;
  width:520px; height:520px;
  background:radial-gradient(circle at 30% 30%, rgba(34,211,238,.35), transparent 60%),
             radial-gradient(circle at 70% 70%, rgba(139,92,246,.35), transparent 60%);
  filter: blur(10px); opacity:.9; pointer-events:none;
}

.card{
  background:var(--panel);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:18px;
  box-shadow: var(--shadow);
}
h2{font-size:34px; margin:0 0 10px}
h3{margin:0 0 10px}
p{margin:10px 0; color:var(--muted); line-height:1.7}
.bullets{margin:14px 0 0; padding-left:18px; color:var(--muted)}
.links{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:8px;}
.links a{padding:10px 12px; border-radius:12px; border:1px solid var(--stroke); background:rgba(255,255,255,.03);}
.links a:hover{border-color:rgba(255,255,255,.22)}
.hint{font-size:13px; color:rgba(255,255,255,.55)}

.section-head{margin-bottom:14px}
.calendar-wrap{
  background:var(--panel);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:12px;
  box-shadow: var(--shadow);
}

/* FullCalendar tweaks */
.fc{--fc-border-color: rgba(255,255,255,.10); --fc-page-bg-color: transparent; --fc-neutral-bg-color: rgba(255,255,255,.04);}
.fc .fc-toolbar-title{color:var(--text)}
.fc .fc-button{border-color:rgba(255,255,255,.14) !important; background:rgba(255,255,255,.04) !important; color:var(--text) !important;}
.fc .fc-button-primary:not(:disabled).fc-button-active{background:rgba(139,92,246,.35) !important;}
.fc .fc-daygrid-day-number, .fc .fc-col-header-cell-cushion{color:rgba(255,255,255,.8)}
.fc .fc-event{border:0; padding:2px 6px; border-radius:10px; background:linear-gradient(135deg, rgba(139,92,246,.85), rgba(34,211,238,.75));}
.fc .fc-event-title{font-weight:800}

/* Modal */
.modal{position:fixed; inset:0; display:none; align-items:center; justify-content:center; padding:18px;
  background:rgba(0,0,0,.60); backdrop-filter: blur(10px); z-index:50;}
.modal.show{display:flex}
.modal-card{
  width:min(560px, 100%);
  background:rgba(12,14,24,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.modal-x{float:right; font-size:28px; line-height:1; background:transparent; border:0; color:rgba(255,255,255,.8); cursor:pointer;}
.modal-x:hover{color:#fff}
.meta{white-space:pre-line; font-size:14px}
.modal-actions{display:flex; gap:10px; justify-content:flex-end; margin-top:14px; flex-wrap:wrap}

.embed{margin-top:12px}
.embed-placeholder{
  border:1px dashed rgba(255,255,255,.18);
  border-radius:16px;
  padding:28px;
  text-align:center;
  background:rgba(255,255,255,.03);
}

.form label{display:block; margin:10px 0; color:rgba(255,255,255,.75); font-weight:700; font-size:14px}
input, textarea{
  width:100%; margin-top:6px; padding:12px 12px;
  border-radius:12px; border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04); color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color:rgba(34,211,238,.45)}
.contact{display:flex; flex-direction:column; gap:10px; margin-top:12px}
.contact-item{padding:12px 14px; border-radius:14px; border:1px solid var(--stroke); background:rgba(255,255,255,.03)}
.contact-item:hover{border-color:rgba(255,255,255,.22)}
.footer{padding:34px 18px; text-align:center; color:rgba(255,255,255,.55); border-top:1px solid var(--stroke)}
.footer .tiny{margin-top:6px; font-size:13px; color:rgba(255,255,255,.45)}