/* Mega Matrix Media — Brand CSS (black + cyan + magenta) */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

:root{
  --bg:#000;
  --panel:rgba(255,255,255,0.04);
  --panel2:rgba(255,255,255,0.06);
  --cyan:#33b5ff;
  --cyanSoft:#7fd3ff;
  --magenta:#d81b60;
  --text:#fff;
  --muted:#b0b0b0;
  --stroke:rgba(255,255,255,0.10);
  --shadow:0 14px 50px rgba(0,0,0,0.65);
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  min-height:100vh;
}

.bg{
  position:fixed; inset:0; pointer-events:none;
  background:
    radial-gradient(900px 620px at 20% 12%, rgba(216,27,96,0.20), transparent 60%),
    radial-gradient(1000px 700px at 78% 14%, rgba(51,181,255,0.20), transparent 60%),
    radial-gradient(1400px 1100px at 50% 95%, rgba(51,181,255,0.18), transparent 62%),
    radial-gradient(1400px 1100px at 50% 95%, rgba(216,27,96,0.14), transparent 64%);
  filter:saturate(1.15);
}

.container{
  max-width: 1040px;
  margin: 0 auto;
  padding: 26px 18px 86px;
}

.hero{
  text-align:center;
  padding: 18px 10px 22px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color:#eaf7ff;
  font-weight:800;
  letter-spacing:0.02em;
  margin-bottom:14px;
}
.badge-dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  box-shadow: 0 0 18px rgba(51,181,255,0.22);
}

.nav{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
  margin: 6px 0 16px;
}

.nav a{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #eaf7ff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.nav a:hover{
  transform: translateY(-1px);
  border-color: rgba(51,181,255,0.28);
  background: rgba(255,255,255,0.05);
}

/* Logo container ensures it shows even with transparent/dark logo */
.logo-frame{
  width: fit-content;
  margin: 0 auto 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(216,27,96,0.08), rgba(51,181,255,0.08));
  box-shadow: 0 14px 50px rgba(0,0,0,0.55);
}

.logo{
  display:block;
  width: 280px;
  max-width: 82vw;
  height: auto;
  filter:
    drop-shadow(0 0 14px rgba(51,181,255,0.25))
    drop-shadow(0 0 10px rgba(216,27,96,0.16));
  transition: transform 250ms ease, filter 250ms ease;
}
.logo:hover{
  transform: translateY(-2px) scale(1.01);
  filter:
    drop-shadow(0 0 18px rgba(51,181,255,0.35))
    drop-shadow(0 0 14px rgba(216,27,96,0.22));
}

.logo-fallback{
  max-width: 320px;
  color: #ffd7e6;
  font-weight: 800;
  line-height: 1.45;
  padding: 8px 10px 2px;
  text-align: center;
}

.title{
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  text-shadow: 0 0 16px rgba(51,181,255,0.18);
}

.hero-lead{
  font-size: 1.08rem;
  line-height: 1.65;
  color: #eaf7ff;
  margin: 0 auto 12px;
  max-width: 760px;
}
.hero-lead strong{ color: var(--cyanSoft); }

.subtext{
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.divider{
  width: 190px; height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  position: relative; overflow:hidden;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(51,181,255,0.16);
}
.divider::after{
  content:"";
  position:absolute; top:-6px; left:-40%;
  width:40%; height:14px;
  background: rgba(255,255,255,0.22);
  filter: blur(6px);
  transform: skewX(-18deg);
  animation: sweep 2.2s ease-in-out infinite;
}
@keyframes sweep{
  0%{left:-45%;opacity:0;}
  20%{opacity:.5;}
  50%{left:55%;opacity:.35;}
  80%{opacity:.5;}
  100%{left:120%;opacity:0;}
}

.cta-row{
  display:flex; gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border:1px solid var(--stroke);
  text-decoration:none;
  font-weight:800;
  letter-spacing:0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor:pointer;
  user-select:none;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(216,27,96,0.95), rgba(51,181,255,0.90));
  color:#071018;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 14px 40px rgba(216,27,96,0.18), 0 14px 40px rgba(51,181,255,0.10);
}
.btn.ghost{
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.22);
}
.btn:active{ transform: translateY(0); }

.tiny-note{
  margin-top: 12px;
  color: #9da6ad;
  font-size: 0.92rem;
  line-height: 1.5;
}

.section{
  margin-top: 34px;
  padding: 26px 18px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.section-title{
  font-size: 1.55rem;
  margin-bottom: 10px;
  color:#eaf7ff;
}
.section-lead{
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.center{ text-align:center; }

.cards{
  display:grid;
  gap: 14px;
}
.cards.one{
  max-width: 820px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.card{
  background: var(--panel2);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px 18px 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.card h3{ color: var(--cyan); font-size: 1.15rem; margin-bottom: 8px; }
.card p{ color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.card ul{ padding-left: 18px; color:#d7d7d7; line-height:1.7; font-size:0.98rem; }
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(51,181,255,0.25);
  box-shadow: 0 18px 60px rgba(0,0,0,0.60);
}

/* ✅ centered buttons inside the card */
.card-cta{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 14px;
}

.form{ margin-top: 8px; }
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label{ display:block; margin-bottom: 14px; }
label span{
  display:inline-block;
  font-weight:900;
  margin-bottom: 8px;
  color:#eaf7ff;
}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  outline:none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(51,181,255,0.35);
  box-shadow: 0 0 0 4px rgba(51,181,255,0.12);
}
.tiny{
  margin-top: 12px;
  color:#a7a7a7;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer{
  text-align:center;
  margin-top: 44px;
  color:#a8a8a8;
}
.footer-line{
  width: 220px; height: 2px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216,27,96,0.8), rgba(51,181,255,0.8));
  opacity: 0.9;
}

@media (max-width: 980px){
  .container{ padding-top: 18px; }
  .grid{ grid-template-columns: 1fr; }
}
/* Pricing centering */
.price-center{
  text-align: center;
}

.price-list{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
  color: #d7d7d7;
  line-height: 1.9;
  font-size: 1rem;
}

.price-center h3{
  margin-bottom: 6px;
}

.price-list li strong{
  color: #eaf7ff;
}

