/* ══════════════════════════════════════════════════════════
   SeeSurance Landing Page — White Paper Squeeze Page
   ══════════════════════════════════════════════════════════ */

/* ── Variables (matches existing site) ────────────────── */
:root {
  --primary: #6737f8;
  --primary-dark: #5528d9;
  --primary-light: #ede8fe;
  --cream: #fff5ea;
  --white: #ffffff;
  --dark: #1d1d1f;
  --dark-secondary: #332b5f;
  --text-secondary: #3d3d3d;
  --text-tertiary: #6e6e73;
  --bg-alt: #f9f9fb;
  --border: #e6e6e6;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --transition: 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  --radius: 12px;
}

/* ── Reset ────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Wordmark (top of page, no link) ─────────────────── */
.lp-wordmark {
  text-align: center;
  padding: 2rem 1.5rem 0;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  user-select: none;
}

.lp-wordmark .see {
  color: var(--primary);
}
.lp-wordmark .surance {
  color: var(--dark);
}

/* ── Hero Section ────────────────────────────────────── */
.lp-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}

.lp-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.lp-hero h1 .highlight {
  color: var(--primary);
}

.lp-hero .subtitle {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-tertiary);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── Email Form ──────────────────────────────────────── */
.lp-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.lp-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lp-form input[type="email"] {
  flex: 1;
  padding: 0.9375rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.lp-form input[type="email"]::placeholder {
  color: #b0b0b0;
}

.lp-form input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103, 55, 248, 0.1);
}

.lp-form button {
  padding: 0.9375rem 1.75rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.lp-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(103, 55, 248, 0.25);
}

.lp-privacy {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  text-align: center;
}

@media (max-width: 540px) {
  .lp-form {
    flex-direction: column;
  }
  .lp-form button {
    width: 100%;
  }
}

/* ── Success State ───────────────────────────────────── */
.lp-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: var(--primary-light);
  border-radius: var(--radius);
}

.lp-success.show {
  display: block;
}

.lp-success .check-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lp-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.lp-success p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.lp-success .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.lp-success .download-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.lp-coming-soon {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-tertiary);
}

.lp-coming-soon strong {
  color: var(--dark);
}

.lp-coming-soon em {
  color: var(--primary);
  font-style: italic;
}

/* ── Divider ─────────────────────────────────────────── */
.lp-divider {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-divider hr {
  border: none;
  height: 1px;
  background: var(--border);
}

/* ── What's Inside Section ────────────────────────────── */
.lp-inside {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.lp-inside-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lp-inside-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.lp-inside-header p {
  font-size: 1rem;
  color: var(--text-tertiary);
}

.lp-hooks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .lp-hooks {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.lp-hook {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.lp-hook:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.lp-hook .hook-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.lp-hook h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.lp-hook p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ── Credibility Bar ─────────────────────────────────── */
.lp-credibility {
  background: var(--bg-alt);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.lp-credibility-inner {
  max-width: 820px;
  margin: 0 auto;
}

.lp-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}

.lp-stat {
  text-align: center;
}

.lp-stat .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.lp-stat .label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

.lp-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 540px) {
  .lp-stat-divider {
    display: none;
  }
  .lp-stats-row {
    gap: 1.5rem;
  }
}

.lp-credibility-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Bottom CTA Section ──────────────────────────────── */
.lp-bottom-cta {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.lp-bottom-cta h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.lp-bottom-cta p {
  font-size: 1rem;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

/* ── Footer ──────────────────────────────────────────── */
.lp-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.lp-footer-wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.375rem;
}

.lp-footer-wordmark .see {
  color: var(--primary);
}
.lp-footer-wordmark .surance {
  color: var(--dark);
}

.lp-footer p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ── Utility: fade-in animation ──────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}