/*!
 * Wasparks microsite stylesheet.
 *
 * Self-contained — the microsites are standalone static pages on their own
 * subdomains and share nothing with the WordPress theme at runtime. Design
 * tokens are kept in sync with wp-content/themes/wassup/style.css by hand:
 *   bg #06110E · surface rgba(255,255,255,.035) · text #E8F2EF
 *   muted #A9C0BA / #7B958E · accent linear-gradient(140deg,#00C896,#0A7B6C)
 *   bright #5EE8C0 · headings 'Space Grotesk' · body 'Manrope'
 *
 * Generated output: do not edit the copies in dist-microsites/ — edit this
 * file and re-run microsites/build.php.
 */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #06110E;
  color: #E8F2EF;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

/* Ambient glow, matching the main site's page wrapper. */
.ms-page {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}
.ms-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ms-glow span { position: absolute; }
.ms-glow span:nth-child(1) {
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(ellipse at center,rgba(0,200,150,0.16),transparent 60%);
  filter: blur(20px);
}
.ms-glow span:nth-child(2) {
  top: 620px;
  left: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle,rgba(10,123,108,0.20),transparent 65%);
  filter: blur(10px);
}
.ms-glow span:nth-child(3) {
  top: 1400px;
  right: -200px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle,rgba(0,200,150,0.10),transparent 65%);
  filter: blur(10px);
}

.ms-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header: logo + one CTA, no nav ---------- */
.ms-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,17,14,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ms-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
}
.ms-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.ms-brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(0,200,150,0.35);
}
.ms-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(140deg,#00C896,#0A7B6C);
  color: #04130F;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0,200,150,0.30);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ms-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,200,150,0.42); }

/* ---------- Hero ---------- */
/* Keep the 24px inline padding from .ms-inner — a `0` here would let the copy
   run to the screen edge on mobile. */
.ms-hero {
  text-align: center;
  padding: clamp(56px,9vw,112px) 24px clamp(36px,5vw,60px);
}
.ms-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,200,150,0.30);
  background: rgba(0,200,150,0.08);
  font-size: 13px;
  font-weight: 600;
  color: #5EE8C0;
  margin-bottom: 26px;
}
.ms-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00C896;
  box-shadow: 0 0 10px #00C896;
}
.ms-hero h1 {
  font-weight: 700;
  font-size: clamp(34px,5.4vw,58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 15ch;
  margin-inline: auto;
}
.ms-hero p {
  font-size: clamp(16px,1.7vw,19px);
  line-height: 1.6;
  color: #A9C0BA;
  max-width: 580px;
  margin: 0 auto;
}
.ms-hero .ms-btn {
  margin-top: 34px;
  padding: 15px 30px;
  font-size: 16px;
}

/* ---------- Funnel strip ---------- */
.ms-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  padding: clamp(28px,4vw,44px) 0;
  list-style: none;
  margin: 0;
}
.ms-strip li {
  position: relative;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  font-size: 14.5px;
  line-height: 1.5;
  color: #C6DAD4;
}
.ms-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(0,200,150,0.12);
  color: #00C896;
  margin-bottom: 14px;
}
@media (max-width: 860px) { .ms-strip { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .ms-strip { grid-template-columns: 1fr; } }

/* ---------- Proof stat ---------- */
.ms-proof {
  margin: clamp(24px,4vw,40px) 0;
  padding: clamp(28px,4vw,42px);
  border-radius: 22px;
  border: 1px solid rgba(0,200,150,0.20);
  background: linear-gradient(160deg,rgba(0,200,150,0.08),rgba(255,255,255,0.02));
  text-align: center;
}
.ms-proof p {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(19px,2.5vw,27px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.ms-proof span { font-size: 13.5px; color: #7B958E; }

/* ---------- Lead form ---------- */
.ms-form-sec { padding: clamp(32px,5vw,64px) 24px clamp(48px,7vw,88px); }
.ms-form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(28px,4vw,40px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(16px);
}
.ms-form-card h2 {
  font-weight: 700;
  font-size: clamp(24px,3vw,32px);
  margin-bottom: 10px;
  text-align: center;
}
.ms-form-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: #A9C0BA;
  text-align: center;
  margin: 0 0 28px;
}
.ms-form { display: flex; flex-direction: column; gap: 16px; }
.ms-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #A9C0BA;
  margin-bottom: 7px;
}
.ms-input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #E8F2EF;
  font-family: inherit;
  font-size: 15px;
}
.ms-input::placeholder { color: #6f867f; }
.ms-input:focus {
  outline: none;
  border-color: rgba(0,200,150,0.55);
  box-shadow: 0 0 0 3px rgba(0,200,150,0.14);
}
select.ms-input { appearance: none; cursor: pointer; }
select.ms-input option { background: #06110E; color: #E8F2EF; }
.ms-submit {
  margin-top: 6px;
  padding: 15px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(140deg,#00C896,#0A7B6C);
  color: #04130F;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,200,150,0.30);
  transition: transform .18s ease;
}
.ms-submit:hover:not(:disabled) { transform: translateY(-2px); }
.ms-submit:disabled { opacity: .6; cursor: default; }
/* Off-screen honeypot — hidden from humans, still filled by bots. */
.ms-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ms-error {
  display: none;
  font-size: 14px;
  color: #ff8f8f;
  margin: 0;
}
.ms-thanks { display: none; text-align: center; }
.ms-thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,200,150,0.14);
  color: #5EE8C0;
  margin-bottom: 18px;
}
.ms-thanks h2 { font-size: 26px; margin-bottom: 10px; }
.ms-thanks p { font-size: 15px; line-height: 1.6; color: #A9C0BA; margin: 0; }
.ms-consent {
  font-size: 12.5px;
  line-height: 1.5;
  color: #6f867f;
  margin: 2px 0 0;
  text-align: center;
}

/* ---------- Footer ---------- */
.ms-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #06110E;
}
.ms-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px 24px 30px;
  text-align: center;
}
.ms-footer .ms-brand { justify-content: center; margin-bottom: 14px; }
.ms-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #7B958E;
  margin: 0 0 22px;
}
.ms-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #5EE8C0;
  text-decoration: none;
}
.ms-back:hover { text-decoration: underline; }
.ms-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
  color: #6f867f;
}
.ms-footer-bottom a { color: #6f867f; text-decoration: none; }
.ms-footer-bottom a:hover { color: #A9C0BA; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
