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

:root {
  --red: #c0392b;
  --red-dark: #a93226;
  --black: #111111;
  --gray-dark: #2a2a2a;
  --gray: #555;
  --gray-light: #e8e8e8;
  --white: #ffffff;
  --off-white: #f8f7f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 20px 72px;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.subhead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #c0bfbd;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ─── Form ──────────────────────────────────────────────────── */
.field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
}

input[type="text"],
input[type="email"] {
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #333;
  background: #1a1a1a;
  color: var(--white);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

input::placeholder {
  color: #555;
}

input:focus {
  border-color: var(--red);
}

button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
  width: 100%;
  margin-top: 4px;
}

button[type="submit"]:hover {
  background: var(--red-dark);
}

button[type="submit"]:active {
  transform: scale(0.98);
}

button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-message {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-message.success {
  color: #5dbb6e;
}

.form-message.error {
  color: #ff6b6b;
}

.privacy-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #666;
}

/* ─── Proof bar ──────────────────────────────────────────────── */
.proof {
  background: var(--red);
  color: var(--white);
  padding: 32px 20px;
}

.proof-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.proof-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

/* ─── Feature list ───────────────────────────────────────────── */
.what-you-get {
  background: var(--off-white);
  padding: 72px 20px;
}

.content-inner {
  max-width: 680px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list strong {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.feature-list p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── CTA Footer ─────────────────────────────────────────────── */
.cta-footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 20px;
  text-align: center;
}

.cta-footer h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-footer p {
  color: #aaa;
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.cta-btn:hover {
  background: var(--red-dark);
}

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  padding: 24px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
  border-top: 1px solid var(--gray-light);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 500px) {
  .field-row {
    flex-direction: column;
  }
  .proof-inner {
    gap: 16px;
  }
  .divider {
    display: none;
  }
}
