:root {
  --blue: #0E73C5;
  --blue-deep: #0A4D87;
  --navy: #0A1E3F;
  --navy-soft: #142a55;
  --pink: #EC2D7B;
  --pink-deep: #B91C5C;
  --pink-light: #F472B6;
  --cream: #FFF8E7;
  --paper: #FAFBFC;
  --line: rgba(255,255,255,0.08);
  --line-dark: #E5E7EB;
  --text-dark: #0A1E3F;
  --text-soft: #5C6E89;
  --text-on-dark: #E8EBF1;
  --text-muted-dark: #8B9AB5;
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--navy); color: var(--text-on-dark); overflow-x: hidden; line-height: 1.6; }

/* Title Case for all headings */
h1.headline, .form-title, .section-title, .why-title, .final-cta h2 { text-transform: capitalize; }

/* Background — subtle circuit grid */
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(236,45,123,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,45,123,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 0%, transparent 70%);
}
.bg-orb {
  position: fixed; pointer-events: none; z-index: 0;
  filter: blur(80px); opacity: 0.4;
}
.bg-orb.pink { width: 500px; height: 500px; background: var(--pink); top: -200px; right: -100px; }
.bg-orb.blue { width: 600px; height: 600px; background: var(--blue); top: 40%; left: -300px; opacity: 0.25; }

/* Nav */
nav {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px; max-width: 1400px; margin: 0 auto;
}
.logo-mark { height: 44px; display: block; }
nav .nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--line);
  border-radius: 100px; color: var(--text-on-dark);
  text-decoration: none; font-size: 13px; font-weight: 500;
  transition: all 0.3s; backdrop-filter: blur(10px);
}
nav .nav-cta:hover { border-color: var(--pink); color: var(--pink-light); }

/* Hero */
.hero {
  position: relative; z-index: 5;
  max-width: 1400px; margin: 0 auto;
  padding: 40px 40px 100px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: start;
}

.hero-content { padding-top: 60px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink-light);
  margin-bottom: 32px;
}
.eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--pink);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pink);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

h1.headline {
  font-family: var(--display);
  font-weight: 400; font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98; letter-spacing: -0.03em;
  color: white; margin-bottom: 24px;
}
h1.headline .italic { font-style: italic; color: var(--pink-light); font-weight: 300; }
h1.headline .em { font-weight: 600; }

.lede {
  font-size: 20px; line-height: 1.55; color: var(--text-on-dark);
  max-width: 540px; margin-bottom: 40px; font-weight: 400;
}
.lede strong { color: white; font-weight: 600; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--line);
  max-width: 580px;
}
.hero-stat .num {
  font-family: var(--display); font-size: 32px; font-weight: 500;
  color: white; line-height: 1; margin-bottom: 6px;
}
.hero-stat .label { font-size: 11px; color: var(--text-muted-dark); letter-spacing: 0.02em; line-height: 1.4; }

/* Hero form */
.form-card {
  background: white; color: var(--text-dark);
  border-radius: 24px; padding: 40px 36px;
  box-shadow: 0 30px 80px -20px rgba(10,30,80,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
  margin-top: 60px;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 100%);
}
.form-eyebrow {
  display: inline-block; background: var(--pink); color: white;
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.form-title {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; line-height: 1.15; color: var(--navy);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.form-sub { font-size: 14px; color: var(--text-soft); margin-bottom: 28px; line-height: 1.5; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600; color: var(--navy);
  margin-bottom: 8px; letter-spacing: 0.02em;
}
.form-input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line-dark); border-radius: 12px;
  font-family: var(--sans); font-size: 15px; color: var(--text-dark);
  background: var(--paper); transition: all 0.2s;
}
.form-input:focus {
  outline: none; border-color: var(--blue);
  background: white; box-shadow: 0 0 0 4px rgba(14,115,197,0.1);
}
.form-input.error { border-color: var(--pink); }
.form-error {
  font-size: 12px; color: var(--pink-deep); margin-top: 6px; display: none;
}
.form-input.error + .form-error { display: block; }
.lead-hint {
  margin: 4px 0 16px; padding: 11px 14px; border-radius: 8px;
  font-size: 12.5px; line-height: 1.5;
  background: #FFF8E7; color: #7a5b00; border-left: 3px solid #E0A800;
}

.btn-submit {
  width: 100%; padding: 18px;
  background: var(--navy); color: white;
  border: none; border-radius: 12px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em; cursor: pointer;
  transition: all 0.3s; margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-deep) 100%);
  transform: translateX(-100%); transition: transform 0.4s;
}
.btn-submit:hover::before { transform: translateX(0); }
.btn-submit > * { position: relative; z-index: 1; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit .arrow { transition: transform 0.3s; }
.btn-submit:hover .arrow { transform: translateX(4px); }

.form-trust {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px; color: var(--text-soft);
  display: flex; align-items: center; gap: 8px;
}
.form-trust svg { color: var(--blue); flex-shrink: 0; }

/* Proof bar — between hero and content */
.proof-section {
  position: relative; z-index: 5;
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px 100px;
}
.proof-label {
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted-dark);
  margin-bottom: 32px;
}
.media-row {
  display: flex; justify-content: center; align-items: center;
  gap: 60px; flex-wrap: wrap; opacity: 0.7;
}
.media-logo {
  height: 28px; width: auto; max-width: 150px;
  object-fit: contain; display: block;
}
.media-divider { width: 1px; height: 16px; background: var(--line); }

/* Why HSIM section */
.why-section {
  position: relative; z-index: 5;
  background: var(--paper); color: var(--text-dark);
  padding: 120px 0;
}
.container {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pink);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--pink);
}
.section-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--navy);
  margin-bottom: 24px; max-width: 800px;
}
.section-title .italic { font-style: italic; color: var(--pink); font-weight: 400; }
.section-lede {
  font-size: 18px; line-height: 1.6; color: var(--text-soft);
  max-width: 680px; margin-bottom: 64px;
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 80px;
}
.why-card {
  background: white; padding: 40px 32px;
  border-radius: 20px; position: relative;
  border: 1px solid var(--line-dark);
  transition: all 0.4s; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 4px;
  background: var(--pink); border-radius: 0 0 4px 0;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(10,30,80,0.15);
  border-color: var(--pink);
}
.why-num {
  font-family: var(--display); font-style: italic;
  font-size: 36px; color: var(--pink); font-weight: 400;
  margin-bottom: 24px;
}
.why-title {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; line-height: 1.2; color: var(--navy);
  margin-bottom: 14px; letter-spacing: -0.01em;
}
.why-desc { font-size: 15px; line-height: 1.6; color: var(--text-soft); }

/* Numbers / stats section */
.stats-section {
  background: var(--navy);
  padding: 100px 0; position: relative; overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(236,45,123,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,45,123,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.stats-grid {
  position: relative; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 40px;
  text-align: left;
}
.big-stat .big-num {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(56px, 8vw, 96px);
  background: linear-gradient(135deg, white 0%, var(--pink-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 14px; letter-spacing: -0.04em;
}
.big-stat .big-label {
  font-size: 14px; color: var(--text-muted-dark);
  line-height: 1.5; max-width: 220px;
}
.big-stat .pink-bar {
  width: 40px; height: 3px; background: var(--pink);
  margin-bottom: 20px; transition: width 0.6s 0.3s;
}

/* Urgency strip */
.urgency-strip {
  background: var(--pink); color: white;
  padding: 24px 40px; text-align: center;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
}
.urgency-strip strong { font-weight: 700; }
.urgency-strip .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: white; margin-right: 12px; vertical-align: middle;
  animation: pulse 1.8s infinite;
}

/* Final CTA */
.final-cta {
  background: var(--navy); padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
}
.final-cta h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 64px); line-height: 1.05;
  letter-spacing: -0.03em; color: white;
  margin-bottom: 24px; max-width: 820px; margin-left: auto; margin-right: auto;
}
.final-cta h2 .italic { font-style: italic; color: var(--pink-light); }
.final-cta p {
  font-size: 18px; color: var(--text-muted-dark);
  max-width: 600px; margin: 0 auto 40px;
}
.btn-final {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--pink); color: white;
  padding: 20px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 20px 40px -10px rgba(236,45,123,0.4);
}
.btn-final:hover {
  background: var(--pink-deep); transform: translateY(-2px);
  box-shadow: 0 24px 48px -10px rgba(236,45,123,0.6);
}

/* Footer */
footer {
  background: var(--navy); border-top: 1px solid var(--line);
  padding: 40px 40px; text-align: center;
  font-size: 12px; color: var(--text-muted-dark);
}
footer a { color: var(--text-on-dark); text-decoration: none; margin: 0 12px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
.reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; }

/* Mobile */
@media (max-width: 980px) {
  nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr; gap: 32px;
    padding: 24px 24px 60px;
  }
  .hero-content { padding-top: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-card { padding: 32px 24px; margin-top: 20px; }
  .why-section { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
  .container { padding: 0 24px; }
  .proof-section { padding: 0 24px 60px; }
  .media-row { gap: 24px; }
  .media-logo { height: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .stats-section { padding: 80px 0; }
  .final-cta { padding: 80px 0; }
  .urgency-strip { padding: 20px 24px; font-size: 13px; }
}
@media (max-width: 540px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .big-stat .pink-bar { margin: 0 auto 20px; }
  .big-stat .big-label { margin: 0 auto; }
  .media-row { gap: 20px; }
  .media-divider { display: none; }
}


/* extracted utility classes */
.mt-12{margin-top:12px}
.hp-field{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden}
.form-notice{background:#FFF8E7;border-left:3px solid #E0A800;color:#7a5b00;padding:12px 16px;border-radius:8px;font-size:13px;margin-bottom:18px}
.form-alert{background:#FCE4EC;border-left:3px solid var(--pink);color:var(--pink-deep);padding:12px 16px;border-radius:8px;font-size:13px;margin-bottom:18px}
.eyebrow-pink{color:var(--pink-light)}
.title-white{color:#fff}
.mt-80{margin-top:80px}
