:root{
  --bg:#07080b;
  --bg2:#0b0d12;
  --card:#0f1320;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.10);
  --accent:#ff2d2d; /* MediaVision vibe: red */
  --accent2:#ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255,45,45,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(255,255,255,.08), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

.wrap{
  width:min(1120px, 92vw);
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(12px);
  background: rgba(7,8,11,.55);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, var(--accent), rgba(255,45,45,.35));
  color:#fff;
  font-weight:800;
  letter-spacing:.5px;
  box-shadow: var(--shadow);
}
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-tag{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; align-items:center; gap:14px; }
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.nav a:hover{ color:#fff; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}

.btn-primary{
  background: linear-gradient(135deg, var(--accent), rgba(255,45,45,.55));
  color:#fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover{ filter:brightness(1.05); }

.btn-outline{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
}
.btn-outline:hover{ background: rgba(255,255,255,.10); }

.btn-ghost{
  border-color: rgba(255,255,255,.14);
  background: transparent;
  color:#fff;
}
.btn-ghost:hover{ background: rgba(255,255,255,.06); }

.hero{
  padding:72px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.85);
  font-weight:700;
  font-size:12px;
  margin-bottom:14px;
}

h1{
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  margin: 0 0 12px;
  letter-spacing:-.8px;
}
.accent{ color: var(--accent); }

.sub{
  color: var(--muted);
  font-size:16px;
  line-height:1.55;
  margin: 0 0 18px;
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px; }

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

.section{ padding:46px 0; }
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

h2{
  margin:0 0 18px;
  font-size: 28px;
  letter-spacing:-.4px;
}
.kicker{
  color:rgba(255,255,255,.75);
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.9px;
  margin-bottom:8px;
}

.card{
  border:1px solid var(--line);
  background: rgba(15,19,32,.75);
  border-radius:20px;
  padding:18px;
  box-shadow: var(--shadow);
}

.hero-card h3{ margin: 0 0 10px; }
.hero-card h4{ margin: 10px 0 6px; }

.checklist{ margin:0; padding-left:18px; color:rgba(255,255,255,.86); }
.checklist li{ margin: 10px 0; }

.divider{
  height:1px;
  background: var(--line);
  margin: 14px 0;
}

.muted{ color: var(--muted); }
.tiny{ font-size:12px; margin-top:10px; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.callout{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,45,45,.25);
  background: rgba(255,45,45,.10);
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.form label{
  display:block;
  font-size:13px;
  color: rgba(255,255,255,.85);
  font-weight:700;
  margin-bottom:10px;
}
input, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:#fff;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(255,45,45,.55);
}

.footer{
  padding:26px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid var(--line);
  padding-top:16px;
  font-size:13px;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}

