/* Exact Prospect landing: dark premium, glass surfaces, cyan gradient accent.
   Brand accent: linear-gradient(135deg,#00f2fe,#4facfe). One loud CTA per view. */

:root {
  --bg: #0b1018;
  --bg-raise: #0e1520;
  --ink: #f2f6fa;
  --muted: #93a1b5;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.06);
  --cyan: #00f2fe;
  --blue: #4facfe;
  --grad: linear-gradient(135deg, #00f2fe, #4facfe);
  --radius: 16px;
  --radius-sm: 12px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Ambient background glow, fixed, very quiet */
.bg-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(600px 420px at 82% -5%, rgba(79, 172, 254, 0.13), transparent 65%),
    radial-gradient(520px 400px at -8% 30%, rgba(0, 242, 254, 0.07), transparent 60%),
    radial-gradient(700px 520px at 50% 115%, rgba(79, 172, 254, 0.08), transparent 65%);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 16, 24, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.06rem; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.logo span {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.header-cta {
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.header-cta:hover { border-color: rgba(79, 172, 254, 0.6); background: var(--glass); }

/* ---------- Hero ---------- */
.hero { padding: 92px 0 72px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px; align-items: center;
}
.hero-copy { max-width: 640px; }

.eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; background: var(--glass);
  margin-bottom: 22px;
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 32px;
}

/* Form card */
.form-card {
  background: var(--glass-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 50px -18px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(79, 172, 254, 0.05);
}
.field-row { display: flex; flex-direction: column; gap: 10px; }

.field-shell {
  position: relative; display: flex; align-items: center;
}
.field-icon {
  position: absolute; left: 15px; color: var(--muted); pointer-events: none;
}
.field-input {
  width: 100%;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 500;
  color: var(--ink);
  background: rgba(11, 16, 24, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px 14px 44px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field-input::placeholder { color: rgba(147, 161, 181, 0.75); }
.field-input:focus {
  border-color: rgba(79, 172, 254, 0.75);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.18);
}

#ep-email-group { transition: opacity 0.25s ease; }
#ep-email-group.is-collapsed { display: none; }

.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  color: #06202c;
  background: var(--grad);
  border: none; border-radius: var(--radius-sm);
  padding: 15px 26px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 30px -10px rgba(0, 214, 254, 0.55);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -10px rgba(0, 214, 254, 0.7);
  filter: saturate(1.08);
}
.cta-btn:active { transform: translateY(0); }

.form-microcopy {
  font-size: 0.8rem; color: var(--muted);
  margin-top: 12px; text-align: center;
}
.form-error {
  font-size: 0.86rem; font-weight: 600; color: #ff8f8f;
  background: rgba(255, 90, 90, 0.09);
  border: 1px solid rgba(255, 90, 90, 0.3);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 12px;
}

/* Confirmation state */
.confirm-state {
  display: flex; gap: 16px; align-items: flex-start;
  border-color: rgba(0, 242, 254, 0.4);
}
.confirm-icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0, 242, 254, 0.12); color: var(--cyan);
  border: 1px solid rgba(0, 242, 254, 0.4);
}
.confirm-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.confirm-copy { color: var(--muted); font-size: 0.94rem; }
.confirm-inline { color: var(--muted); font-weight: 600; }

/* Trust row */
.trust-row {
  list-style: none; display: flex; align-items: center; gap: 20px;
  margin-top: 28px; flex-wrap: wrap;
}
.trust-row li { display: flex; flex-direction: column; }
.trust-row strong {
  font-family: var(--font-display); font-size: 0.98rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.trust-row span { font-size: 0.76rem; color: var(--muted); }
.trust-sep { width: 1px; height: 30px; background: var(--line-strong); }

/* Radar visual */
.hero-visual { display: flex; justify-content: center; }
.radar {
  position: relative; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.07), transparent 70%);
}
.radar-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(79, 172, 254, 0.22);
}
.radar-ring.r1 { inset: 0; }
.radar-ring.r2 { inset: 15%; border-color: rgba(79, 172, 254, 0.17); }
.radar-ring.r3 { inset: 32%; border-color: rgba(79, 172, 254, 0.13); }
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 242, 254, 0.28), transparent 24%);
  animation: sweep 5.2s linear infinite;
  mask: radial-gradient(circle, transparent 12%, black 13%);
  -webkit-mask: radial-gradient(circle, transparent 12%, black 13%);
}
.radar-core {
  position: absolute; top: 50%; left: 50%; width: 13px; height: 13px;
  transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--grad);
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.9);
}
.radar-dot {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
  animation: blip 5.2s ease-in-out infinite;
}
.radar-dot.d1 { top: 24%; left: 62%; }
.radar-dot.d2 { top: 58%; left: 76%; animation-delay: 1.2s; }
.radar-dot.d3 { top: 68%; left: 30%; animation-delay: 2.5s; }
.radar-dot.d4 { top: 36%; left: 22%; animation-delay: 3.7s; }

@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes blip {
  0%, 18% { opacity: 0.15; }
  26% { opacity: 1; }
  55%, 100% { opacity: 0.15; }
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing: -0.025em; line-height: 1.15;
  text-wrap: balance;
}
.section-lead {
  color: var(--muted); margin-top: 14px;
  font-size: 1.02rem; max-width: 58ch;
}

/* Glass cards */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 172, 254, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 40px -18px rgba(0, 0, 0, 0.65);
}
.glass-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.015em; margin-bottom: 8px;
}
.glass-card p { color: var(--muted); font-size: 0.94rem; }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--blue);
  background: rgba(79, 172, 254, 0.1);
  border: 1px solid rgba(79, 172, 254, 0.25);
  margin-bottom: 16px;
}

/* Steps */
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  counter-reset: step;
}
.step { position: relative; padding-top: 30px; }
.step-num {
  position: absolute; top: -18px; left: 22px;
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: #06202c; background: var(--grad);
  box-shadow: 0 8px 20px -8px rgba(0, 214, 254, 0.6);
}
.step h3 { font-size: 0.99rem; }
.step p { font-size: 0.9rem; }

/* Closing */
.closing { padding-bottom: 110px; }
.closing-panel {
  position: relative; text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 68px 32px;
  background:
    radial-gradient(420px 220px at 50% 0%, rgba(79, 172, 254, 0.14), transparent 70%),
    var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.closing-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 12px; text-wrap: balance;
}
.closing-sub { color: var(--muted); margin-bottom: 30px; font-size: 1.02rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8rem; color: var(--muted); text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--ink); }

/* Honeypot: visually removed, still in the DOM for bots */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Scroll reveal. FAIL-OPEN by design: content only hides when the .js class
   is present (set by an inline script), so with JS missing, blocked, or stale
   the page always renders fully. Never let an animation hide the product. */
.js .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .radar-sweep, .radar-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (min-width: 721px) {
  .field-row { flex-direction: row; }
  .field-shell { flex: 1; }
  .cta-btn { flex: none; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 34px; }
}

@media (max-width: 560px) {
  .hero { padding: 64px 0 56px; }
  .section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; row-gap: 34px; }
  .trust-row { gap: 14px; }
  .trust-sep { display: none; }
  .closing-panel { padding: 48px 20px; }
}
