:root{
  --bg:#09010f;
  --ink:#ffffff;
  --muted:rgba(255,255,255,.72);

  --p1:#ff4fd8;   /* pink */
  --p2:#9b5cff;   /* purple */
  --stroke:rgba(255,255,255,.18);

  --glass:rgba(12, 0, 25, .56);
  --glass2:rgba(12, 0, 25, .36);

  --shadow: 0 22px 80px rgba(0,0,0,.62);
  --r: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: radial-gradient(1200px 700px at 50% 10%, rgba(255,79,216,.16), transparent 58%),
              radial-gradient(1200px 700px at 75% 35%, rgba(155,92,255,.16), transparent 62%),
              radial-gradient(900px 500px at 20% 80%, rgba(0,0,0,.65), transparent 60%),
              linear-gradient(180deg, #04000a, #0b0012 55%, #05000c);
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.muted{ color:var(--muted); }
.small{ font-size:12.5px; }
.center{ text-align:center; }
.arrow{ font-weight:900; margin-left:8px; }

/* ===== Topbar ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(4,0,8,.92), rgba(4,0,8,.42));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 170px;
}
.brandLogo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(255,79,216,.25));
}
.brandText{
  font-weight: 850;
  letter-spacing:.2px;
  color: rgba(255,255,255,.92);
}

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  justify-content:center;
  flex:1;
}
.navLink{
  font-size:14px;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  transition: .15s ease;
}
.navLink:hover{
  color:#fff;
  background: rgba(255,255,255,.06);
}
.navLink.active{
  position:relative;
  color:#fff;
}
.navLink.active::after{
  content:"";
  position:absolute;
  left:12px; right:12px;
  bottom:-10px;
  height:3px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--p1), var(--p2));
  box-shadow: 0 0 20px rgba(255,79,216,.35);
}

/* ===== Buttons (ALL CONSISTENT) ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 14px;
  letter-spacing: .2px;
  color: #140012;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, var(--p1), var(--p2));
  box-shadow: 0 18px 70px rgba(255,79,216,.26);
  transition: transform .12s ease, filter .12s ease, opacity .12s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn:active{ transform: translateY(0); opacity:.95; }

.btnTop{
  padding-left: 24px;
  padding-right: 24px;
}

.page{
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 34px 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

/* Uses your uploaded mockup image */
.heroBg{
  position:absolute;
  inset:0;
  background-image: url("hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.08) brightness(.95);
  transform: scale(1.03);
  z-index:-3;
}

/* Adds luxury neon haze on top of image */
.heroGlow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 50% 38%, rgba(255,79,216,.16), transparent 60%),
    radial-gradient(900px 520px at 72% 42%, rgba(155,92,255,.14), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.78));
  z-index:-2;
}

.heroTitle{
  margin:0 0 12px;
  font-size: 60px;
  line-height:1.02;
  letter-spacing: .2px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  color: rgba(255,255,255,.97);
  text-shadow: 0 18px 70px rgba(0,0,0,.55), 0 18px 60px rgba(255,79,216,.20);
}

.heroSub{
  margin: 0 0 18px;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height:1.6;
  text-shadow: 0 12px 40px rgba(0,0,0,.6);
}

.btnHero{
  padding-left: 26px;
  padding-right: 26px;
  box-shadow: 0 22px 80px rgba(255,79,216,.34);
}

/* ===== Sections ===== */
.section{
  padding: 22px 18px;
}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -110px;
}

.card{
  background: linear-gradient(180deg, rgba(12,0,25,.60), rgba(12,0,25,.30));
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 20px;
  box-shadow: 0 24px 90px rgba(0,0,0,.65);
  overflow:hidden;
  position:relative;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 280px at 15% 0%, rgba(255,79,216,.24), transparent 58%),
    radial-gradient(520px 280px at 100% 10%, rgba(155,92,255,.22), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

.cardTop{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cardTopLeft{
  display:flex;
  align-items:center;
  gap:10px;
}

.cardTitle{
  font-weight: 900;
  letter-spacing:.2px;
}

.dots{
  opacity:.75;
}

.icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
  box-shadow: 0 14px 50px rgba(255,79,216,.18);
}
.icon.fb{ color: rgba(67,214,255,.95); }
.icon.heart{ color: rgba(255,79,216,1); }
.icon.ai{ color: rgba(155,92,255,1); }

.cardMedia{
  height: 155px;
  position:relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Safe image placeholders (no explicit imagery) */
.mediaCommunity{
  background:
    radial-gradient(420px 220px at 30% 30%, rgba(67,214,255,.20), transparent 60%),
    linear-gradient(135deg, rgba(255,79,216,.24), rgba(155,92,255,.22));
}
.mediaDating{
  background:
    radial-gradient(420px 220px at 30% 30%, rgba(255,79,216,.26), transparent 60%),
    linear-gradient(135deg, rgba(255,120,180,.22), rgba(155,92,255,.20));
}
.mediaAI{
  background:
    radial-gradient(420px 220px at 60% 35%, rgba(155,92,255,.26), transparent 60%),
    linear-gradient(135deg, rgba(67,214,255,.16), rgba(255,79,216,.20));
}

.cardBody{
  position:relative;
  padding: 14px;
}

.cardLabel{
  font-weight: 900;
  margin-bottom: 8px;
}

.miniList{
  margin: 0 0 14px 18px;
  padding: 0;
  color: rgba(255,255,255,.82);
  line-height:1.55;
  font-size: 13.5px;
}
.miniList li{ margin: 6px 0; }

.btnCard{
  width:100%;
}

/* AI block */
.aiHello{
  font-weight: 950;
  font-size: 18px;
  margin-bottom: 8px;
}
.stack{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 12px;
}

/* ===== Pricing ===== */
.sectionTitle{
  text-align:center;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 30px;
  margin: 8px 0 16px;
  text-shadow: 0 14px 55px rgba(255,79,216,.18);
}

.pricing3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.priceCard{
  background: linear-gradient(180deg, rgba(12,0,25,.52), rgba(12,0,25,.30));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align:center;
}

.priceHead{
  font-weight: 950;
  font-size: 20px;
  margin-bottom: 10px;
}

.priceBig{
  font-weight: 950;
  font-size: 44px;
  margin-top: 2px;
  text-shadow: 0 14px 55px rgba(255,79,216,.22);
}

.priceBody{
  margin: 12px 0 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.btnPrice{
  width:100%;
}

.priceCard.featured{
  transform: translateY(-6px);
  border-color: rgba(255,79,216,.40);
  box-shadow: 0 30px 95px rgba(255,79,216,.22);
}

/* ===== Bottom two cards ===== */
.bottom2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.wideCard{
  background: linear-gradient(180deg, rgba(12,0,25,.45), rgba(12,0,25,.26));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.wideTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.wideTitle{
  font-weight: 950;
}

.wideBody{
  padding: 14px;
  line-height:1.6;
}

.bullets{
  margin: 0 0 14px 18px;
  padding: 0;
  color: rgba(255,255,255,.82);
}
.bullets li{ margin: 6px 0; }

/* ===== Footer ===== */
.footer{
  padding: 18px 18px 26px;
}

.fineprint{
  text-align:center;
  font-size: 12px;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
}

.footerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.footerLinks{
  display:flex;
  gap:14px;
}
.footerLinks a{ color: rgba(255,255,255,.78); }
.footerLinks a:hover{ color:#fff; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nav{ display:none; }
  .heroTitle{ font-size: 42px; }
  .cards3{ grid-template-columns: 1fr; margin-top: 0; }
  .pricing3{ grid-template-columns: 1fr; }
  .bottom2{ grid-template-columns: 1fr; }
  .priceCard.featured{ transform:none; }
}
@media (max-width: 520px){
  .heroTitle{ font-size: 34px; }
}
