:root {
  --bg: #fff7fb;
  --text: #24142f;
  --muted: #695d72;
  --white: #ffffff;
  --pink: #ff6b9d;
  --pink-dark: #e63b7a;
  --yellow: #ffd166;
  --blue: #42cafd;
  --mint: #5ee6a8;
  --purple: #a06bff;
  --orange: #ff9f43;
  --line: rgba(36, 20, 47, 0.12);
  --shadow: 0 24px 70px rgba(92, 41, 116, 0.16);
  --shadow-strong: 0 30px 90px rgba(92, 41, 116, 0.24);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 209, 102, 0.42), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(66, 202, 253, 0.28), transparent 24rem),
    radial-gradient(circle at 20% 88%, rgba(160, 107, 255, 0.22), transparent 25rem),
    linear-gradient(135deg, #fff7fb 0%, #f8f4ff 42%, #effdff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    radial-gradient(circle, rgba(255, 107, 157, .16) 2px, transparent 2px),
    radial-gradient(circle, rgba(66, 202, 253, .18) 2px, transparent 2px);
  background-position: 0 0, 18px 18px;
  background-size: 36px 36px;
  opacity: .6;
}

.sparkle-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,.65) 49%, transparent 51%) 10% 18% / 18px 18px no-repeat,
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,.65) 49%, transparent 51%) 73% 12% / 18px 18px no-repeat,
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,.65) 49%, transparent 51%) 86% 78% / 20px 20px no-repeat,
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,.65) 49%, transparent 51%) 9% 72% / 16px 16px no-repeat;
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: .45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

.blob {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(24px);
  opacity: .38;
  pointer-events: none;
  z-index: -2;
}
.blob-one { background: var(--pink); top: 8%; left: -8rem; animation: floatBlob 12s ease-in-out infinite; }
.blob-two { background: var(--blue); top: 14%; right: -9rem; animation: floatBlob 13s ease-in-out infinite reverse; }
.blob-three { background: var(--yellow); bottom: 8%; left: 38%; animation: floatBlob 15s ease-in-out infinite; }

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(22px, -28px) scale(1.08); }
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  width: min(1160px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 40px rgba(111, 57, 133, .13);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 14px;
  z-index: 20;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.04em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-weight: 1000;
  transform: rotate(-5deg);
  box-shadow: 0 10px 22px rgba(255, 107, 157, .35);
}

nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
}
nav a:hover { color: var(--text); background: rgba(255, 107, 157, .10); }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: center;
  gap: 38px;
  padding: 76px 0 38px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 999px;
  color: #7b2850;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 10px 28px rgba(92, 41, 116, .10);
  font-size: 13px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0 18px;
  max-width: 920px;
  font-size: clamp(46px, 7.6vw, 94px);
  line-height: .9;
  letter-spacing: -.075em;
}
.hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover { transform: translateY(-2px) rotate(-.4deg); filter: saturate(1.12); }
.button:active { transform: translateY(0); }
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 16px 30px rgba(255, 107, 157, .32);
}
.button.secondary {
  color: var(--text);
  background: linear-gradient(135deg, var(--yellow), #ffef9f);
  box-shadow: 0 16px 30px rgba(255, 209, 102, .36);
}
.button.full { width: 100%; min-height: 56px; font-size: 16px; }

.hero-card {
  position: relative;
  min-height: 440px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,255,255,.65)),
    linear-gradient(135deg, rgba(255,107,157,.35), rgba(66,202,253,.30));
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: rotate(2deg);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255, 209, 102, .52);
}
.stamp {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .05em;
  transform: rotate(-3deg);
}
.big-emoji {
  display: block;
  font-size: 86px;
  margin: 22px 0 10px;
  filter: drop-shadow(0 14px 18px rgba(92, 41, 116, .18));
}
.hero-card h2 { margin-bottom: 8px; font-size: 26px; letter-spacing: -.04em; }
.score {
  font-size: 96px;
  line-height: .86;
  letter-spacing: -.08em;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-card p { color: var(--muted); font-weight: 750; }
.hero-card small { color: var(--muted); font-weight: 700; }
.mini-meter {
  height: 14px;
  margin: 20px 0 14px;
  border-radius: 999px;
  background: rgba(36, 20, 47, .08);
  overflow: hidden;
}
.mini-meter span {
  display: block;
  width: 6%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--blue), var(--pink), var(--yellow));
  transition: width .25s ease;
}

.floating-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -22px;
  margin-bottom: 74px;
}
.note {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.72);
}
.note span { display: inline-flex; font-size: 34px; margin-bottom: 12px; }
.note strong { display: block; margin-bottom: 8px; font-size: 19px; letter-spacing: -.03em; }
.note p { margin: 0; color: var(--muted); line-height: 1.45; font-weight: 680; }
.note-pink { background: linear-gradient(160deg, rgba(255,255,255,.86), rgba(255,107,157,.20)); }
.note-blue { background: linear-gradient(160deg, rgba(255,255,255,.86), rgba(66,202,253,.18)); }
.note-yellow { background: linear-gradient(160deg, rgba(255,255,255,.86), rgba(255,209,102,.26)); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr);
  gap: 30px;
  align-items: start;
  padding: 10px 0 28px;
}
.section-intro {
  position: sticky;
  top: 108px;
}
h2 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: .98;
  letter-spacing: -.06em;
}
.muted { color: var(--muted); line-height: 1.55; font-weight: 650; }
.mini-callout {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.68);
  border: 2px solid rgba(255,255,255,.9);
}
.mini-callout span { font-size: 28px; }
.mini-callout p { margin: 0; font-weight: 900; }

.objection-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 3px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-strong);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label {
  display: grid;
  gap: 8px;
  color: #3c2148;
  font-size: 14px;
  font-weight: 950;
}
input, select, textarea {
  width: 100%;
  border: 2px solid rgba(36, 20, 47, .10);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  padding: 14px 14px;
  min-height: 50px;
  font: inherit;
  font-weight: 760;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
textarea { min-height: 96px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(255, 107, 157, .65);
  box-shadow: 0 0 0 5px rgba(255, 107, 157, .14);
}
input[type="range"] {
  accent-color: var(--pink);
  padding: 0;
  min-height: 34px;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.range-wrap { padding: 16px; border-radius: var(--radius-md); background: rgba(255, 209, 102, .22); }
.range-label {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  color: #5d326d;
  font-size: 13px;
  font-weight: 900;
}

.ticket-section { padding: 22px 0 70px; }
.ticket {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,107,157,.96), rgba(160,107,255,.94) 52%, rgba(66,202,253,.94));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
}
.ticket::before { left: -40px; top: 48%; }
.ticket::after { right: -40px; top: 48%; }
.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(255,255,255,.42);
  margin-bottom: 18px;
  font-weight: 1000;
}
.ticket p { margin-bottom: 10px; line-height: 1.45; font-weight: 700; }
.ticket p:last-child { margin-bottom: 0; }
.ticket strong { font-weight: 1000; }

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: start;
  padding: 30px 0 76px;
}
.manifesto-grid { display: grid; gap: 14px; }
.manifesto article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.manifesto article span {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  font-weight: 1000;
}
.manifesto article p { margin: 0; color: var(--muted); font-weight: 750; line-height: 1.45; }

.stats-section {
  padding-bottom: 72px;
}
.stats-intro {
  max-width: 760px;
  margin-bottom: 18px;
}
.stats-intro h2 {
  margin: 14px 0 8px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: .95;
  letter-spacing: -.06em;
}
.stats-intro p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.stat-card strong {
  font-size: 40px;
  letter-spacing: -.06em;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card span { color: var(--muted); font-weight: 850; line-height: 1.35; }

.final-cta {
  margin-bottom: 54px;
  text-align: center;
  padding: 54px 24px;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b9d, #a06bff 50%, #42cafd);
  box-shadow: var(--shadow-strong);
}
.final-cta > span { display: block; font-size: 58px; margin-bottom: 10px; }
.final-cta h2 { max-width: 760px; margin: 0 auto 14px; }
.final-cta p { color: rgba(255,255,255,.86); font-weight: 750; margin-bottom: 24px; }
.final-cta .button.primary { background: #fff; color: var(--pink-dark); box-shadow: 0 18px 34px rgba(36,20,47,.16); }

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 26px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.66);
  text-align: center;
  color: var(--muted);
  font-weight: 750;
}
.site-footer p { margin: 0; }

.confetti {
  position: fixed;
  top: -12px;
  width: 10px;
  height: 14px;
  border-radius: 4px;
  z-index: 999;
  pointer-events: none;
  animation: confettiFall 900ms ease-out forwards;
}
@keyframes confettiFall {
  to { transform: translateY(105vh) rotate(540deg); opacity: 0; }
}

@media (max-width: 920px) {
  .site-header { align-items: flex-start; border-radius: 28px; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .split-section, .manifesto { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; min-height: auto; }
  .hero-card { transform: none; }
  .floating-notes { grid-template-columns: 1fr; margin-top: 18px; }
  .section-intro { position: static; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .section-shell, .site-header, .site-footer { width: min(100% - 22px, 1160px); }
  nav a { padding: 8px 10px; font-size: 13px; }
  h1 { font-size: clamp(44px, 16vw, 72px); }
  .hero-actions .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .objection-form { padding: 16px; border-radius: 28px; }
  .manifesto article { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .score { font-size: 78px; }
}
