:root{
  --bg:#070A12;
  --panel:#0F1426;
  --panel2:#0B1022;
  --text:#F4F7FF;
  --muted:#B6BED7;
  --line:rgba(255,255,255,.12);
  --shadow: 0 22px 70px rgba(0,0,0,.55);

  --hot:#FF2D2D;
  --cyan:#00E7FF;
  --lime:#B8FF3D;
  --gold:#C9A227;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{color:inherit}
.container{max-width:1180px; margin:0 auto; padding:0 22px}
.muted{color:var(--muted)}
.micro{font-size:.92rem}
.thin{font-weight:600; opacity:.92}
.grad{
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* Background FX */
.bgfx{position:fixed; inset:0; pointer-events:none; z-index:-1;}
.bgfx__grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity:.22;
  mask-image: radial-gradient(circle at 40% 15%, black 0%, transparent 62%);
}
.bgfx__glow{position:absolute; width:900px; height:900px; filter: blur(80px); opacity:.35;}
.bgfx__glow--a{left:-260px; top:-320px; background: radial-gradient(circle, rgba(0,231,255,.55), transparent 60%);}
.bgfx__glow--b{right:-320px; top:120px; background: radial-gradient(circle, rgba(255,45,45,.55), transparent 60%);}

/* Nav */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,18,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand__mark{
  font-weight:900;
  padding:8px 10px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(255,45,45,.25), rgba(0,231,255,.18));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:900; letter-spacing:.2px}
.brand__tag{font-size:.86rem; color:rgba(244,247,255,.72); font-weight:800}

.nav__links{display:flex; align-items:center; gap:16px}
.nav__links a{color:rgba(244,247,255,.85); text-decoration:none; font-weight:900; opacity:.9}
.nav__links a:hover{opacity:1}
.nav__toggle{
  display:none;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  font-weight:900;
}
.nav__menu{
  display:none;
  padding:14px 0 18px;
  border-top:1px solid rgba(255,255,255,.10);
}
.nav__menu a{display:block; padding:10px 0; text-decoration:none; font-weight:900; color:rgba(244,247,255,.90)}
.nav__menu .btn{margin-top:10px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:13px 16px;
  border-radius:16px;
  font-weight:900;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.06)}
.btn--sm{padding:10px 12px; border-radius:14px}
.btn--wide{width:100%}
.btn--ghost{background: transparent; border:1px solid rgba(255,255,255,.16); box-shadow:none}
.btn--hot{
  background: linear-gradient(135deg, rgba(255,45,45,.34), rgba(0,231,255,.18));
  border-color: rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}

/* HERO */
.hero{position:relative; padding:92px 0 40px; overflow:hidden;}
.hero__media{
  position:absolute; inset:0;
  background:
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2400&q=70")
    center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(7,10,18,.62), rgba(7,10,18,.94)),
    radial-gradient(800px 520px at 15% 12%, rgba(0,231,255,.22), transparent 60%),
    radial-gradient(800px 520px at 85% 20%, rgba(255,45,45,.20), transparent 60%);
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}

.pillrow{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(15,20,38,.45);
  font-weight:900;
  letter-spacing:.2px;
  color:rgba(244,247,255,.90);
}
.pill--hot{border-color: rgba(255,45,45,.26); background: rgba(255,45,45,.10)}
.pill--lime{border-color: rgba(184,255,61,.28); background: rgba(184,255,61,.10)}

.hero__title{
  margin:14px 0 10px;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height:1.03;
  font-weight:900;
}
.hero__sub{
  margin:0 0 18px;
  max-width: 70ch;
  color:rgba(244,247,255,.88);
  font-size: 1.08rem;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.hero__meta{display:flex; gap:12px; flex-wrap:wrap}
.meta{
  display:flex; flex-direction:column; gap:2px;
  text-decoration:none;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(15,20,38,.48);
}
.meta span{color:rgba(244,247,255,.70); font-weight:900; font-size:.82rem}
.meta strong{font-weight:900; letter-spacing:.2px}

.marquee{margin-top:16px; border-top:1px solid rgba(255,255,255,.10); border-bottom:1px solid rgba(255,255,255,.10); padding:10px 0; overflow:hidden}
.marquee__track{
  display:flex; gap:40px;
  white-space:nowrap;
  animation: scroll 18s linear infinite;
  font-weight:900;
  color:rgba(244,247,255,.78);
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Card */
.card{
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:18px;
}
.card--glass{
  background: rgba(15,20,38,.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.card--dark{background: rgba(11,16,34,.78); box-shadow: var(--shadow)}

.card__top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.card__eyebrow{font-weight:900; color:rgba(244,247,255,.76); font-size:.86rem}
.card__title{font-weight:900; font-size:1.1rem; margin-top:4px}
.card__text{margin:10px 0 12px; color:rgba(244,247,255,.82)}

.badge{
  padding:8px 10px;
  border-radius:14px;
  font-weight:900;
  background: linear-gradient(135deg, rgba(255,45,45,.26), rgba(0,231,255,.14));
  border:1px solid rgba(255,255,255,.14);
}
.check{margin:0; padding-left:18px; color:rgba(244,247,255,.85); font-weight:800}
.check li{margin:8px 0}
.card__cta{display:grid; gap:10px; margin-top:14px}
.card__mini{margin-top:12px; display:grid; gap:8px}
.minirow{display:flex; align-items:center; gap:10px; color:rgba(244,247,255,.78); font-weight:900; font-size:.92rem}
.dot{width:10px; height:10px; border-radius:50%}
.dot--hot{background: var(--hot)}
.dot--cyan{background: var(--cyan)}

/* Strip */
.strip{padding:44px 0; border-top:1px solid rgba(255,255,255,.10); border-bottom:1px solid rgba(255,255,255,.10); background: rgba(15,20,38,.30)}
.strip__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:center}
.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.stat{
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:14px;
  background: rgba(15,20,38,.50);
}
.stat__num{
  font-size:2rem;
  font-weight:900;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.stat__label{color:rgba(244,247,255,.78); font-weight:800; font-size:.92rem}
.strip__note{grid-column: 1 / -1; margin:8px 0 0}

/* Sections */
.section{padding:86px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(15,20,38,.0), rgba(15,20,38,.55), rgba(15,20,38,.0));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.head{margin-bottom:18px}
.head h2{margin:0 0 6px; font-size:2rem; font-weight:900}

.grid4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.panel{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(15,20,38,.52);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 50px rgba(0,0,0,.35);
}
.panel__icon{
  width:44px; height:44px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(255,45,45,.22), rgba(0,231,255,.16));
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:10px;
}
.panel h3{margin:0 0 6px; font-weight:900}
.panel p{margin:0}

.mediaRow{margin-top:18px; display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.mediaCard{
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  overflow:hidden;
  background: rgba(15,20,38,.52);
}
.mediaCard img{width:100%; height:220px; object-fit:cover; display:block}
.mediaCard__cap{padding:12px 14px; display:flex; flex-direction:column; gap:2px}
.mediaCard__cap strong{font-weight:900}
.mediaCard__cap span{color:rgba(244,247,255,.76); font-weight:800; font-size:.92rem}

/* Proof split */
.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
.bigQuote{
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:18px;
  background: rgba(15,20,38,.55);
  box-shadow: var(--shadow);
}
.bigQuote__mark{
  font-size:48px;
  line-height:1;
  font-weight:900;
  color:rgba(0,231,255,.55);
}
.bigQuote__text{font-weight:800; color:rgba(244,247,255,.90)}
.bigQuote__by{margin-top:10px; color:rgba(244,247,255,.74); font-weight:900}

.bullets{margin-top:14px; display:grid; gap:10px}
.bullet{display:flex; align-items:center; gap:10px; font-weight:900}
.spark{
  width:12px; height:12px;
  border-radius:4px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.slider{
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  background: rgba(15,20,38,.55);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.slider__track{
  display:flex;
  transition: transform .35s ease;
}
.quote{margin:0; padding:18px; min-width:100%}
.quote blockquote{margin:0 0 12px; font-weight:900; color:rgba(244,247,255,.94); font-size:1.05rem}
.quote figcaption{color:rgba(244,247,255,.72); font-weight:900}

.slider__controls{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.12);
  background: rgba(11,16,34,.55);
}
.iconBtn{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:900;
  font-size:20px;
  cursor:pointer;
}
.dots{display:flex; gap:8px; align-items:center; justify-content:center}
.dotBtn{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  cursor:pointer;
}
.dotBtn.is-active{
  background: linear-gradient(135deg, rgba(255,45,45,.55), rgba(0,231,255,.35));
  border-color: rgba(255,255,255,.28);
}

.ctaBand{
  margin-top:16px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(255,45,45,.20), rgba(0,231,255,.14));
  border-radius:22px;
  padding:16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.ctaBand h3{margin:0 0 4px; font-weight:900}
.ctaBand p{margin:0}

/* Toolkit */
.toolkit{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
.toolkit__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

/* Contact */
.contact{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
.contact__cards{margin-top:14px; display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.contactCard{
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:14px;
  background: rgba(15,20,38,.55);
}
.contactCard:hover{filter: brightness(1.06)}
.contactCard__label{color:rgba(244,247,255,.70); font-weight:900; font-size:.92rem}
.contactCard__value{font-weight:900; margin-top:6px}

.divider{height:1px; background: rgba(255,255,255,.12); margin:14px 0}
.tinyRow{display:flex; gap:10px; align-items:center; justify-content:center; flex-wrap:wrap}
.tiny{font-size:.92rem; font-weight:900; color:rgba(244,247,255,.78); text-decoration:none}
.tiny:hover{color:rgba(244,247,255,.95); text-decoration:underline}
.tinySep{color:rgba(244,247,255,.45)}

/* Footer */
.footer{margin-top:18px; padding:18px 0 92px; border-top:1px solid rgba(255,255,255,.10)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}

/* Sticky actions */
.sticky{
  position:fixed; left:0; right:0; bottom:0;
  display:none;
  gap:10px;
  padding:10px;
  background: rgba(7,10,18,.85);
  border-top:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  z-index:60;
}
.sticky__btn{
  flex:1;
  text-align:center;
  text-decoration:none;
  padding:12px 10px;
  border-radius:16px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.sticky__btn--hot{
  background: linear-gradient(135deg, rgba(255,45,45,.30), rgba(0,231,255,.18));
}

/* Reveal animation */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .strip__grid{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr}
  .grid4{grid-template-columns: 1fr 1fr}
  .mediaRow{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .toolkit{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .contact__cards{grid-template-columns: 1fr}
}
@media (max-width: 680px){
  .nav__links a{display:none}
  .nav__toggle{display:inline-flex}
  .nav__menu.is-open{display:block}
  .grid4{grid-template-columns: 1fr}
  .sticky{display:flex}
  .ctaBand{flex-direction:column; align-items:flex-start}
}
