:root{
  --bg:#0b0b0b;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:#fff7d6;
  --muted:rgba(255,247,214,.78);
  --muted2:rgba(255,247,214,.55);
  --brand:#f4b400;
  --brand2:#ffdd55;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(244,180,0,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,221,85,.20), transparent 55%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 55%, #070707 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 18px}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand-logo{
  width:46px; height:46px;
  image-rendering:auto;
}
.brand-title{
  font-weight:900;
  letter-spacing:-.4px;
  font-size:18px;
}
.brand-title .dot{color:var(--brand)}
.brand-sub{
  color:var(--muted2);
  font-size:12px;
  font-weight:700;
}

.nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  transition:.2s ease;
}
.nav a:hover{
  transform: translateY(-1px);
  border-color: rgba(244,180,0,.65);
  background: rgba(244,180,0,.12);
  color:var(--text);
}

.hero{padding:48px 0 26px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:center;
}
.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(244,180,0,.35);
  background: rgba(244,180,0,.10);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
  margin-bottom:12px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height:1.05;
  letter-spacing:-.9px;
}
.highlight{
  background: linear-gradient(90deg, rgba(244,180,0,.95), rgba(255,221,85,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.6;
  font-size:16.5px;
  max-width:60ch;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:900;
  transition:.2s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.btn:hover{transform:translateY(-2px); border-color: rgba(244,180,0,.65); background: rgba(244,180,0,.12);}
.btn.primary{
  background: linear-gradient(135deg, rgba(244,180,0,.95), rgba(255,221,85,.90));
  border-color: rgba(255,255,255,.18);
  color:#120a00;
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost{background: rgba(255,255,255,.04);}

.mini-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px}
.mini-pill{
  font-size:13px;
  color:var(--muted2);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.hero-right .card-glass{
  border-radius: 22px;
  padding:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
  text-align:center;
}
.mascot{
  width:140px;
  height:auto;
  display:block;
  margin:0 auto 12px;
}
.card-title{font-weight:950; letter-spacing:-.2px; font-size:16px}
.card-text{color:var(--muted); font-size:14px; line-height:1.55; margin-top:6px}

.section{padding:26px 0}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section h2{margin:0 0 10px; font-size:20px; letter-spacing:-.2px}
.section-lead{margin:0 0 14px; color:var(--muted); line-height:1.6; max-width:75ch}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.tile{
  grid-column: span 6;
  border-radius: 18px;
  padding:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transition:.2s ease;
}
.tile:hover{
  transform: translateY(-3px);
  border-color: rgba(244,180,0,.55);
  background: rgba(244,180,0,.07);
}
.tile-top{display:flex; align-items:center; gap:10px; margin-bottom:6px}
.tile-icon{font-size:18px}
.tile-title{font-weight:950}
.tile-desc{color:var(--muted2); font-size:13px}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius: 18px;
  padding:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.card-icon{font-size:22px}
.card h3{margin:8px 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.55; font-size:14px}

.contact-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  padding:26px 0 18px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
}
.footer-title{font-weight:950; margin-bottom:6px}
.footer-text{color:var(--muted); line-height:1.6; margin:0}
.footer-links{list-style:none; padding:0; margin:0}
.footer-links li{margin:8px 0}
.footer-links a{
  color:var(--muted2);
  border-bottom:1px dashed rgba(255,255,255,.22);
}
.footer-links a:hover{color:var(--text); border-bottom-color: rgba(244,180,0,.75);}

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  padding:14px 0 0;
  color:var(--muted2);
  font-size:13px;
}
.sep{opacity:.35}
.mini{color:var(--muted2)}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .nav{display:none}
  .grid3{grid-template-columns:1fr}
  .tile{grid-column: span 12}
  .footer-inner{grid-template-columns:1fr}
  .contact-box{flex-direction:column; align-items:flex-start}
}
