:root{
  --brand:#EE7825;
  --bg:#070a0f;
  --bg2:#0b0f14;
  --card:rgba(255,255,255,.035);
  --card2:rgba(255,255,255,.02);
  --text:#e5e7eb;
  --muted:#9ca3af;
  --border:rgba(255,255,255,.08);
  --glow: 0 0 0 rgba(238,120,37,0);
  --shadow: 0 18px 46px rgba(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;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 70% 8%, rgba(238,120,37,.22), transparent 60%),
    radial-gradient(900px 420px at 15% 22%, rgba(238,120,37,.12), transparent 60%),
    radial-gradient(1400px 800px at 40% 120%, rgba(255,255,255,.03), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

/* NAV */
.navwrap{
  position:sticky; top:0; z-index:60;
  background:rgba(6,10,15,.62);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:950; letter-spacing:.6px;
}
.brand img{
  width:54px; height:54px; object-fit:contain;
  filter: drop-shadow(0 16px 22px rgba(238,120,37,.25));
}
.brand .name{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .name b{font-size:15px}
.brand .name span{font-size:11px;color:var(--muted);font-weight:700;letter-spacing:.2px}

.navlinks{
  display:flex; gap:8px; align-items:center; flex-wrap:wrap; justify-content:center;
}
.navlinks a{
  color:var(--muted);
  font-weight:800;
  font-size:13px;
  padding:10px 12px;
  border-radius:12px;
  position:relative;
  transition:all .2s ease;
}
.navlinks a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
}
.navlinks a.active{
  color:var(--text);
}
.navlinks a.active::after{
  content:"";
  position:absolute; left:12px; right:12px; bottom:6px;
  height:2px; border-radius:99px;
  background:linear-gradient(90deg, rgba(238,120,37,.15), rgba(238,120,37,.95), rgba(238,120,37,.15));
  filter: drop-shadow(0 10px 16px rgba(238,120,37,.28));
}
.navcta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:900;
  font-size:13px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:var(--brand);
  color:#0b0f14;
  border-color:rgba(238,120,37,.35);
  box-shadow: 0 14px 34px rgba(238,120,37,.18);
}
.btn.primary:hover{box-shadow: 0 18px 42px rgba(238,120,37,.25)}
.btn.ghost:hover{background:rgba(255,255,255,.05)}

/* HERO */
.hero{
  padding:58px 0 24px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:rgba(238,120,37,.95);
  text-transform:uppercase;
  letter-spacing:.8px;
  font-weight:950;
  font-size:12px;
}
h1{
  margin:12px 0 10px;
  font-size:46px;
  line-height:1.03;
}
.sub{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
  max-width:60ch;
}
.heroBtns{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.badge{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  font-weight:850;
  font-size:12px;
  color:var(--muted);
}
.heroMedia{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
  transform: translateZ(0);
}
.heroMedia::before{
  content:"";
  position:absolute; inset:-2px;
  background:radial-gradient(600px 260px at 75% 15%, rgba(238,120,37,.35), transparent 55%);
  opacity:.45; pointer-events:none;
}
.heroMedia img{
  width:100%; height:auto; display:block;
  filter:saturate(1.08) contrast(1.05);
  animation: float3d 7s ease-in-out infinite;
}

/* SECTIONS */
.section{padding:44px 0}
.section h2{margin:0 0 10px;font-size:28px}
.lead{margin:0;color:var(--muted);line-height:1.75}
.cards{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.30);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  transform-style:preserve-3d;
}
.card:hover{
  transform: translateY(-2px) rotateX(1deg);
  box-shadow: 0 16px 38px rgba(0,0,0,.42);
  border-color: rgba(238,120,37,.20);
}
.icon{
  width:42px; height:42px;
  border-radius:16px;
  display:grid; place-items:center;
  background:rgba(238,120,37,.12);
  border:1px solid rgba(238,120,37,.25);
}
.card h3{margin:10px 0 6px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:13px;line-height:1.7}

.grid2{margin-top:18px; display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:stretch}
.panel{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.panel .body{padding:16px}
.panel img{width:100%; height:280px; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.05)}
.tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(238,120,37,.25);
  background:rgba(238,120,37,.10);
  color:rgba(238,120,37,.95);
  font-weight:950;
  font-size:12px;
}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.75; font-size:14px}
.notice{
  margin-top:12px;
  border:1px dashed rgba(238,120,37,.35);
  background:rgba(238,120,37,.08);
  padding:12px;
  border-radius:16px;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.cta{
  margin-top:18px;
  border:1px solid rgba(238,120,37,.22);
  background:
    radial-gradient(900px 320px at 20% 0%, rgba(238,120,37,.22), transparent 60%),
    rgba(255,255,255,.02);
  border-radius:22px;
  padding:18px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.cta h3{margin:0 0 6px;font-size:20px}
.cta p{margin:0;color:var(--muted)}

/* FOOTER */
footer{padding:26px 0 40px;color:var(--muted)}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  border-top:1px solid var(--border);
  padding-top:18px;
}
.small{font-size:13px; line-height:1.7}
.footlinks{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.footlinks a{padding:8px 10px; border-radius:10px; border:1px solid transparent}
.footlinks a:hover{border-color:var(--border); background:rgba(255,255,255,.03)}

/* Scroll reveal */
.reveal{opacity:0; transform: translateY(10px); transition:opacity .6s ease, transform .6s ease}
.reveal.show{opacity:1; transform:none}

/* Float animation */
@keyframes float3d{
  0%{transform:translateY(0) rotateX(0deg)}
  50%{transform:translateY(-12px) rotateX(2deg)}
  100%{transform:translateY(0) rotateX(0deg)}
}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  h1{font-size:38px}
  .cards{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .panel img{height:220px}
  .footlinks{justify-content:flex-start}
  .brand img{width:48px;height:48px}
}