:root{
  --bg:#07070a;
  --card:#0f1016;
  --muted:#a7a7b3;
  --text:#f2f2f5;
  --accent:#ff4d00;
  --stroke:rgba(255,255,255,.08);
  --shadow:0 10px 40px rgba(0,0,0,.55);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
.bg{
  position:fixed; inset:0;
  background:
    radial-gradient(60vw 60vw at 30% 10%, rgba(255,77,0,.18), transparent 60%),
    radial-gradient(55vw 55vw at 80% 30%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(60vw 60vw at 60% 90%, rgba(255,77,0,.10), transparent 60%),
    linear-gradient(180deg, #07070a 0%, #05050a 100%);
  pointer-events:none;
}
.wrap{max-width:920px; margin:0 auto; padding:28px 16px 64px}
.hero{padding:28px 18px 10px; text-align:center}
.badge{
  display:inline-block;
  padding:8px 12px;
  border:1px solid var(--stroke);
  border-radius:999px;
  color:var(--muted);
  letter-spacing:.12em;
  font-size:12px;
  text-transform:uppercase;
  background:rgba(255,255,255,.03);
}
h1{
  margin:14px 0 6px;
  font-size:48px;
  letter-spacing:-.04em;
}
.tagline{margin:0 0 18px; color:var(--muted); font-weight:600}
.ctas{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--stroke);
  text-decoration:none; color:var(--text);
  background:rgba(255,255,255,.03);
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
  box-shadow:var(--shadow);
}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.18)}
.btn.primary{background:rgba(255,77,0,.14); border-color:rgba(255,77,0,.35)}
.btn.primary:hover{background:rgba(255,77,0,.20); border-color:rgba(255,77,0,.55)}
.btn.ghost{box-shadow:none}
.stats{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
  margin-top:10px;
}
.pill{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.02);
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.card{
  margin:14px 0;
  padding:18px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(15,16,22,.80);
  box-shadow:var(--shadow);
  backdrop-filter: blur(8px);
}
.card h2{margin:0 0 12px; font-size:18px; letter-spacing:-.02em}
.grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}
@media (min-width:720px){
  .grid{grid-template-columns:repeat(3, minmax(0,1fr))}
  h1{font-size:56px}
}
.link{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.02);
  padding:14px 14px;
  border-radius:16px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  display:flex; gap:10px; align-items:center; justify-content:space-between;
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
}
.link:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.04)}
.small{color:var(--muted); font-weight:600; font-size:12px}
.embeds{display:grid; gap:12px}
.embed{
  border:1px solid var(--stroke);
  border-radius:16px;
  overflow:hidden;
  background:rgba(0,0,0,.25);
}
.embed iframe{width:100%; height:320px; border:0}
@media (max-width:520px){
  .embed iframe{height:220px}
}
.hint{margin:10px 0 0; color:var(--muted); font-size:13px}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace; padding:2px 6px; border:1px solid var(--stroke); border-radius:10px; background:rgba(255,255,255,.03)}
.bookings{display:flex; gap:10px; flex-wrap:wrap}
.mini{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  text-decoration:none;
  font-weight:600;
}
.fineprint{margin:12px 0 0; color:var(--muted); font-size:12px}
