:root{
  --bg: #000000;
  --text: #ffffff;
  --muted: #e91e63;
  --pink: #e91e63;
  --pink-2: #ec407a;
  --border: rgba(233,30,99,.2);
  --shadow: 0 14px 40px rgba(233,30,99,.16);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--text); background:var(--bg); }
a{ color:var(--pink); text-decoration:none; }
a:hover{ text-decoration:underline; }

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

.site-header{
  position:sticky; top:0; z-index:10;
  background:#000;
  border-bottom:1px solid var(--border);
}

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

.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background:var(--pink);
  color:#fff; font-weight:800;
  box-shadow: var(--shadow);
}
.brand-name{ margin:0; font-weight:800; letter-spacing:.2px; }
.brand-tagline{ margin:2px 0 0; font-size:13px; color:var(--muted); }

.top-nav{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:flex-end; }
.nav-link{
  padding:10px 12px; border-radius:12px;
  color:var(--text);
}
.nav-link:hover{ background: rgba(233,30,99,.08); text-decoration:none; }
.nav-link.button{
  background:var(--pink);
  color:#fff;
  box-shadow: var(--shadow);
}
.nav-link.button:hover{ background:var(--pink-2); }

.hero{
  padding:48px 0 28px;
  background:
    radial-gradient(900px 260px at 20% 10%, rgba(233,30,99,.12), transparent 55%),
    radial-gradient(900px 260px at 80% 0%, rgba(236,64,122,.10), transparent 55%);
  border-bottom:1px solid var(--border);
}

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

h1{ font-size: clamp(30px, 4vw, 44px); line-height:1.1; margin:0 0 12px; letter-spacing:-.6px; }
h2{ font-size: clamp(22px, 2.4vw, 30px); margin:0 0 12px; }
h3{ margin:0 0 8px; }

.lead{ font-size: 18px; line-height:1.6; color:var(--muted); margin:0 0 18px; }
.micro{ font-size: 13px; color:var(--muted); margin:10px 0 0; }
.subtle{ color:var(--muted); }

.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.button{
  display:inline-block;
  background:var(--pink);
  color:#fff;
  padding:12px 16px;
  border-radius:14px;
  box-shadow: var(--shadow);
  font-weight:700;
}
.button:hover{ background:var(--pink-2); text-decoration:none; }
.ghost{
  display:inline-block;
  border:1px solid var(--border);
  padding:12px 16px;
  border-radius:14px;
  color:var(--pink);
  background:#000;
}
.ghost:hover{ background: rgba(233,30,99,.06); text-decoration:none; }

.hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}
.card-title{ margin:0 0 10px; font-size:18px; }
.checklist{ margin:0; padding-left:18px; color:var(--muted); }
.checklist li{ margin:10px 0; }
.card-note{
  margin-top:14px;
  padding:12px;
  border-radius:14px;
  border:1px dashed var(--border);
  background: rgba(233,30,99,.04);
  color:var(--muted);
}

.section{ padding:42px 0; }
.section.alt{ background: rgba(233,30,99,.04); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}

.tile{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 26px rgba(233,30,99,.10);
}

.steps{ margin:18px 0 0; padding-left:18px; }
.steps li{ margin:16px 0; }
.steps p{ margin:6px 0 0; color:var(--muted); }

.faq details{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px 16px;
  box-shadow: 0 10px 26px rgba(233,30,99,.10);
  margin:12px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--text);
}
.faq p{ margin:10px 0 0; color:var(--muted); line-height:1.6; }

.contact-card{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.contact-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px 16px;
  box-shadow: 0 10px 26px rgba(233,30,99,.10);
}
.inline-link{ font-weight:800; }

.site-footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  background:#000;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
}
.footer-links a{ margin-left:12px; }

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact-card{ grid-template-columns: 1fr; }
}
