:root{
  --bg:#0b0c0f;
  --panel:#0f1118;
  --panel2:#0c0e14;
  --text:#e8eaf1;
  --muted:#a8afc0;
  --line:rgba(255,255,255,.10);
  --accent:#7c5cff;
  --accent2:#ff7a3d;
  --radius:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box;}
html{max-width:100%; overflow-x:hidden;}
body{
  margin:0; max-width:100vw; overflow-x:hidden;
  font-family:var(--sans);
  background:
    radial-gradient(900px 550px at 15% 10%, rgba(124,92,255,.20), transparent 55%),
    radial-gradient(700px 500px at 85% 25%, rgba(255,122,61,.14), transparent 60%),
    var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
p{color:var(--muted); line-height:1.65; margin:0;}
h1,h2,h3{margin:0; letter-spacing:-.02em;}
/* prevent long strings forcing horizontal scroll */
*{overflow-wrap:anywhere; word-break:normal;}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(14px);
  background:rgba(11,12,15,.70);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width:0;
}
.brand img{height:30px; width:auto;}
.brand span{
  font-weight:650; letter-spacing:.02em;
  white-space:nowrap;
}

.navlinks{
  display:flex; gap:18px; align-items:center;
}
.navlinks a{
  color:var(--muted);
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.navlinks a:hover{color:var(--text); background:rgba(255,255,255,.06);}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(124,92,255,.22), rgba(255,122,61,.14));
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  font-size:14px;
}
.btn:hover{filter:brightness(1.05);}

.burger{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.hero{
  padding:64px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:start;
}
.kicker{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.kicker:before{
  content:"";
  width:10px; height:10px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  display:inline-block;
}

.hero h1{
  margin-top:14px;
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.05;
}
.hero p{margin-top:14px; font-size:clamp(15px, 2.2vw, 18px); max-width:52ch;}
.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap;}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.hero-card h3{font-size:16px;}
.hero-card .list{margin-top:12px; display:flex; flex-wrap:wrap; gap:8px;}
.pill{
  font-size:12px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:rgba(255,255,255,.78);
  background:rgba(255,255,255,.04);
}

.section{padding:44px 0;}
.section-head{
  display:flex; align-items:end; justify-content:space-between; gap:18px;
  margin-bottom:18px;
}
.section-head h2{
  font-size:clamp(22px, 3vw, 30px);
}
.section-head p{max-width:62ch;}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:18px;
}
.stat{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}
.stat .num{font-size:20px; font-weight:700;}
.stat .lbl{font-size:12px; color:var(--muted); margin-top:2px;}

.marquee{
  margin-top:22px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.03);
  padding:14px 0;
  contain:layout paint;
}
.marquee-track{
  display:flex;
  gap:18px;
  padding:0 18px;
  width:max-content;
  will-change:transform;
  animation: marquee 24s linear infinite;
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.partner{
  width:140px; height:90px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0f0f0f;
  flex:0 0 auto;
}
.partner img{
  width:100%; height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  opacity:.85;
  transition:all .28s ease;
}
.partner:hover img{filter:grayscale(0%); opacity:1; transform:scale(1.03);}

.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.video-card{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease;
}
.video-card:hover{transform:translateY(-3px); border-color:rgba(255,255,255,.22);}
.thumb{
  aspect-ratio:16/9;
  background:rgba(255,255,255,.04);
  position:relative;
}
.thumb img{width:100%; height:100%; object-fit:cover;}
.play{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.play span{
  width:54px; height:54px;
  border-radius:999px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.18);
  display:grid; place-items:center;
}
.play svg{width:22px; height:22px; margin-left:2px;}
.video-card .meta{
  padding:12px 12px 14px;
}
.video-card .title{font-weight:650; font-size:14px;}
.video-card .sub{font-size:12px; color:var(--muted); margin-top:4px;}

.shorts-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.short-card .thumb{aspect-ratio:9/16;}
.short-card .thumb img{object-fit:cover;}

.services{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.service{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:16px;
}
.service h3{font-size:16px;}
.service ul{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.6; font-size:14px;}

.testimonials{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.quote{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:16px;
}
.quote p{color:rgba(255,255,255,.80);}
.quote .who{margin-top:10px; color:var(--muted); font-size:12px;}

.cta{
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  background:linear-gradient(135deg, rgba(124,92,255,.20), rgba(255,122,61,.12));
  padding:22px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.cta h2{font-size:clamp(22px, 3vw, 30px);}
.cta p{max-width:55ch;}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0 40px;
  color:var(--muted);
}
.footer-grid{
  display:flex; align-items:flex-start; justify-content:space-between; gap:20px;
  flex-wrap:wrap;
}
.footer a{color:var(--muted);}
.footer a:hover{color:var(--text);}
.social-icons{display:flex; gap:14px; margin-top:14px;}
.social-icons a{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.social-icons svg{width:20px; height:20px;}
.social-icons a:hover{background:rgba(255,255,255,.08);}

.modal{
  position:fixed; inset:0;
  background:rgba(0,0,0,.72);
  display:none;
  align-items:center; justify-content:center;
  padding:18px;
  z-index:100;
}
.modal.open{display:flex;}
.modal-inner{
  width:min(980px, 100%);
  background:rgba(15,17,24,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.modal-top{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.modal-top .m-title{font-size:13px; color:var(--muted); font-family:var(--mono);}
.modal-top button{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.player{
  aspect-ratio:16/9;
  background:#000;
}
.player iframe{width:100%; height:100%; border:0;}

.form{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
.field{display:flex; flex-direction:column; gap:6px;}
label{font-size:12px; color:var(--muted);}
input, textarea{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical; grid-column:1/-1;}
input:focus, textarea:focus{border-color:rgba(124,92,255,.55);}

.faq{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:16px;
}
.faq h3{font-size:16px; margin-bottom:10px;}
.faq .qa{margin-top:12px;}
.faq .q{font-weight:650; font-size:14px;}
.faq .a{margin-top:6px; color:var(--muted); font-size:14px; line-height:1.6;}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr; }
  .video-grid{grid-template-columns:repeat(2,1fr);}
  .services{grid-template-columns:1fr;}
  .testimonials{grid-template-columns:1fr;}
  .stats{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 620px){
  .navlinks{display:none;}
  .burger{display:inline-grid; place-items:center;}
  .section{padding:36px 0;}
  .video-grid{grid-template-columns:1fr;}
  .shorts-grid{grid-template-columns:1fr;}
  .cta{flex-direction:column; align-items:flex-start;}
  .form{grid-template-columns:1fr;}
}

.mobile-menu{
  display:none;
  padding:10px 0 18px;
}
.mobile-menu.open{display:block;}
.mobile-menu a{
  display:block;
  padding:12px 0;
  color:var(--muted);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-menu a:last-child{border-bottom:0;}
/* Content note block */
.content-note{
  max-width: 720px;
}
.content-note h3{
  margin: 0 0 10px;
}
.content-note p{
  margin: 0;
  opacity: .85;
}

/* Home CTA spacing fix */
.cta-home {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cta-home {
    margin-bottom: 40px;
  }
}
