:root {
  --accent-color: #1A3C6D;
  --accent-light: #2563eb;
  --cta-color: #E44820;
  --warm-bg: #EBDCD2;
  --light-bg: #f8f8f8;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --error: #b91c1c;
  --success: #15803d;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 1.05rem;
  background: var(--warm-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.card {
  background: #fff;
  max-width: 560px;
  width: 100%;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.subhead {
  opacity: 0.85;
  margin-bottom: 1.75rem;
}

.bonus-badge {
  display: inline-block;
  background: var(--warm-bg);
  color: var(--accent-color);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

input[type="email"] {
  width: 100%;
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
}

input[type="email"]:focus { border-color: var(--accent-color); }

.cta-button {
  background: var(--cta-color);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 72, 32, 0.4);
}

.cta-button:disabled { opacity: 0.6; cursor: wait; }

.fine-print {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 1rem;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.error {
  color: var(--error);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

.success-block { text-align: left; }
.success-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}
.success-block ol {
  margin: 1rem 0 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.success-block .cta-button {
  display: block;
  text-align: center;
  margin: 1rem 0 0.5rem;
}

.hidden { display: none !important; }

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}
