:root{
  --bg:#07070b;
  --bg2:#0b0b12;
  --card:#0f101a;
  --text:#eaeaf2;
  --muted:#a8a8b8;
  --gold:#f7c86a;
  --gold2:#ffdf9b;
  --line:rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(247,200,106,0.10), transparent 60%),
              radial-gradient(1000px 500px at 90% 20%, rgba(255,223,155,0.08), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

a{color:var(--gold);text-decoration:none}
a:hover{opacity:0.9}

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

.navbar{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(7,7,11,0.7);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:0.5px;
}

.logo-dot{
  width:10px;height:10px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 0 18px rgba(247,200,106,0.35);
}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav-links a{
  color:var(--text);
  opacity:0.9;
  font-weight:600;
  font-size:14px;
}

.nav-links a:hover{opacity:1}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#1a1205;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(247,200,106,0.15);
}

.btn.small{padding:10px 14px;border-radius:12px;font-size:14px}

.btn.ghost{
  background: transparent;
  color: var(--text);
  border:1px solid rgba(247,200,106,0.35);
  box-shadow:none;
}

.btn.ghost:hover{
  background: rgba(247,200,106,0.08);
}

.hero{
  padding:60px 0 40px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:26px;
  align-items:stretch;
}

.tag{
  display:inline-block;
  padding:8px 12px;
  border:1px solid rgba(247,200,106,0.22);
  border-radius:999px;
  color:var(--gold);
  font-weight:700;
  letter-spacing:0.8px;
  font-size:12px;
  background: rgba(247,200,106,0.06);
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
}

.accent{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:560px;
}

.cta-row{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.stats{
  display:flex;
  gap:16px;
  margin-top:22px;
  flex-wrap:wrap;
}

.stat{
  background: rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  min-width:160px;
}

.stat-num{
  font-size:20px;
  font-weight:900;
  color:var(--gold2);
}

.stat-label{
  font-size:13px;
  color:var(--muted);
  margin-top:4px;
}

.hero-card{
  background: rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}

.card-title{
  font-weight:900;
  margin:0;
}

.card-desc{
  color:var(--muted);
  margin:6px 0 0;
  font-size:13px;
  line-height:1.5;
}

.card-image{
  margin-top:14px;
  border-radius:18px;
  border:1px solid rgba(247,200,106,0.18);
  background: radial-gradient(700px 260px at 20% 20%, rgba(247,200,106,0.18), transparent 60%),
              rgba(255,255,255,0.02);
  height:220px;
  position:relative;
  overflow:hidden;
}

.glow{
  position:absolute;
  width:260px;height:260px;
  border-radius:50%;
  background: rgba(247,200,106,0.18);
  filter: blur(30px);
  top:-80px;left:-80px;
}

.placeholder{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  padding:16px;
  color:rgba(234,234,242,0.85);
}

.placeholder small{color:rgba(168,168,184,0.85)}

.card-bottom{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}

.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  font-weight:700;
  font-size:12px;
}

.pill.muted{
  color:var(--muted);
}

.section{
  padding:60px 0;
}

.section.alt{
  background: rgba(255,255,255,0.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

h2{
  margin:0 0 12px;
  font-size:28px;
}

.lead{
  color:var(--muted);
  line-height:1.7;
  max-width:860px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}

.panel{
  background: rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}

.panel h3{
  margin:0 0 8px;
  font-size:16px;
}

.panel p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.two-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
}

.side{
  background: rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}

.side-title{
  margin:0 0 10px;
  color:var(--gold2);
}

.hero-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}

.video-box{
  margin-top:18px;
  border:1px solid rgba(247,200,106,0.18);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,0.02);
}

.video-placeholder{
  padding:40px 18px;
  text-align:center;
  color:rgba(234,234,242,0.9);
}

.note{
  margin-top:14px;
  color:var(--muted);
}

.contact-card{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  background: rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}

.label{
  margin:0;
  font-size:12px;
  color:var(--muted);
}

.value{
  margin:6px 0 0;
  font-weight:800;
}

.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .two-cols{grid-template-columns:1fr}
  .contact-card{grid-template-columns:1fr}
  .nav-links{display:none}

}
