:root{
  --bg:#0f1224; --bg2:#0b0f1e;
  --text:#eef2ff; --muted:#a8b0c3;
  --accent:#8b5cf6; --accent2:#22d3ee; --accent3:#60a5fa;
  --border:rgba(255,255,255,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; color:var(--text);
  font-family:Inter,'Plus Jakarta Sans',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1150px 600px at 12% -10%, rgba(139,92,246,.25), transparent 60%),
    radial-gradient(900px 600px at 88% 0%, rgba(34,211,238,.18), transparent 60%),
    linear-gradient(180deg,#0f1224,#0b0f1e 70%);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{max-width:1180px; margin:0 auto; padding:0 22px}
.section{padding:64px 0; border-top:1px solid var(--border)}
.center{text-align:center}
.sub{color:var(--muted); margin:8px 0 18px}
.lead{font-size:1.05rem; color:#eaf0ff}
.meta{color:var(--muted)}
.footnote{color:var(--muted); font-size:.9rem}

/* Nav */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(12px);
  background:rgba(10,12,28,.65);
  border-bottom:1px solid var(--border);
}
.nav-inner{height:66px; display:flex; align-items:center; justify-content:space-between}
.brand{font-weight:800; letter-spacing:.3px}
.nav a{padding:10px 12px; border-radius:10px; color:var(--muted); font-weight:600}
.nav a:hover{background:linear-gradient(135deg,rgba(139,92,246,.18),rgba(34,211,238,.18)); color:#fff}

/* Hero */
.hero{position:relative; padding:84px 0 54px; border-bottom:1px solid var(--border);
  background:linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55))}
.hero-grid{display:grid; gap:28px; align-items:center; grid-template-columns:1fr}
@media(min-width:980px){.hero-grid{grid-template-columns:1.1fr .9fr}}
.hero-copy .kicker{
  display:inline-block; font-weight:700; letter-spacing:.5px; color:#fff;
  background:linear-gradient(135deg,rgba(139,92,246,.25),rgba(34,211,238,.25));
  border:1px solid var(--border); padding:8px 12px; border-radius:999px; margin-bottom:12px}
.hero-copy h1{font-size:clamp(32px,4.5vw,56px); line-height:1.05; margin:8px 0 8px;
  background:linear-gradient(120deg,var(--accent),var(--accent3)); -webkit-background-clip:text; background-clip:text; color:transparent}
.hero-copy p{color:#dbe3ff; font-size:1.08rem}
.cta{margin-top:10px}
.hero .btn{margin-right:10px}

/* HERO image – use hero.jpg (market vendor) */
.hero-media{
  min-height:420px; /* taller hero for impact */
  border-radius:18px; border:1px solid var(--border);
  background-image:
    linear-gradient(rgba(15,18,36,.35), rgba(15,18,36,.60)),
    url('hero.jpg');
  background-size:cover;
  background-position:center 35%; /* shows face + oranges nicely */
  box-shadow:0 16px 48px rgba(0,0,0,.35)
}

/* Grids */
.grid-2{display:grid; gap:16px; grid-template-columns:1fr}
.grid-3{display:grid; gap:16px; grid-template-columns:1fr}
@media(min-width:900px){
  .grid-2{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:repeat(3,1fr)}
}

/* Cards */
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border); border-radius:16px; padding:18px;
  box-shadow:0 12px 42px rgba(0,0,0,.22)
}
.image-card{
  border-radius:16px; overflow:hidden; border:1px solid var(--border);
  box-shadow:0 12px 42px rgba(0,0,0,.18)
}
.cards .card h3{margin-top:6px}
.bullets{padding-left:18px}
.bullets li{margin:6px 0}

/* Pills */
.pills span{
  display:inline-block; border:1px solid var(--border); border-radius:999px;
  padding:6px 10px; margin:8px 6px 0 0; color:#d9e1ff
}

/* Buttons */
.btn{
  display:inline-block; padding:11px 16px; border-radius:12px; font-weight:700;
  border:1px solid var(--border); color:#fff
}
.btn.primary{background:linear-gradient(135deg,var(--accent),var(--accent2)); color:#0b1020; border:none}

/* Stats */
.stats{display:grid; gap:16px; grid-template-columns:1fr; margin-top:14px}
@media(min-width:720px){.stats{grid-template-columns:repeat(3,1fr)}}
.stat{background:linear-gradient(180deg, rgba(34,211,238,.12), rgba(255,255,255,.02));
  border:1px solid var(--border); border-radius:16px; padding:18px; text-align:center}
.stat .big{font-size:clamp(26px,4vw,40px); font-weight:800}
.stat .label{color:var(--muted); margin-top:6px}

/* Quotes */
.quotes{align-items:stretch}
.quote{
  font-size:1.02rem; line-height:1.6; color:#e9efff;
  background:linear-gradient(180deg, rgba(139,92,246,.10), rgba(255,255,255,.02));
  border:1px solid var(--border); border-radius:16px; padding:18px
}
.quote span{display:block; margin-top:10px; color:var(--muted); font-weight:600}

/* Forms */
form .row{display:grid; gap:12px; grid-template-columns:1fr}
@media(min-width:760px){form .row{grid-template-columns:1fr 1fr}}
label{display:block; margin:12px 0 8px}
label span{display:block; margin-bottom:6px; color:#cfd6ea; font-weight:600}
input, select, textarea{
  width:100%; padding:12px 14px; border-radius:12px; border:1px solid var(--border);
  background:rgba(255,255,255,.04); color:var(--text); outline:none
}
.note{color:var(--muted); font-size:.92rem; margin-top:10px}

/* Video */
.video-frame{
  border-radius:16px; overflow:hidden; border:1px solid var(--border);
  background:rgba(255,255,255,.04); box-shadow:0 12px 42px rgba(0,0,0,.18); margin-bottom:18px
}
.video{width:100%; height:auto; display:block}

/* Footer */
.footer{padding:36px 0; border-top:1px solid var(--border); color:var(--muted)}
.footer-inner{display:flex; gap:12px; align-items:center; justify-content:space-between}

/* ===== Mobile Nav ===== */
.menu-btn{display:none; border:1px solid var(--border); background:rgba(255,255,255,.04);
  border-radius:10px; padding:10px 12px; cursor:pointer}
.menu-btn span{display:block; width:22px; height:2px; margin:5px 0; background:#e6ebff; transition:.25s}
.menu-btn[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-btn[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-btn[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-links{display:flex; gap:6px}
@media(max-width:900px){
  .menu-btn{display:block}
  .nav-links{
    position:fixed; left:0; right:0; top:66px; z-index:45;
    display:block; max-height:0; overflow:hidden;
    background:rgba(10,12,28,.92); backdrop-filter:saturate(160%) blur(12px);
    border-bottom:1px solid var(--border);
    transition:max-height .28s ease;
  }
  .nav-links.open{max-height:80vh}
  .nav a{display:block; padding:14px 18px; font-size:1.05rem; color:#e6ebff}
  .nav a + a{border-top:1px solid var(--border)}
  body.menu-open{overflow:hidden}
}
