/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0e0e12;
  --surface:   #16161c;
  --border:     #2a2a35;
  --fg:         #f0ede8;
  --fg-muted:   #7e7a90;
  --fg-faint:   #4a4758;
  --accent:     #e8632a;
  --accent-hover: #f07040;
  --white:      #ffffff;
  --error:      #e85a4a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 24px 64px;
  max-width: 640px;
  margin: 0 auto;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

/* ===== SIGNUP COUNTER ===== */
.signup-counter {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  min-height: 18px; /* reserve space so layout doesn't jump */
  margin-bottom: 12px;
}

/* ===== FOUNDER NOTE ===== */
.founder-note {
  font-size: 13px;
  color: var(--fg-faint);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ===== FORM ===== */
.form-wrap {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field-wrap {
  position: relative;
}

.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}

.form-input::placeholder { color: var(--fg-faint); }
.form-input:focus { border-color: var(--accent); }

.form-btn {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
}

.form-btn:hover { background: var(--accent-hover); }
.form-btn:active { transform: scale(0.98); }

.form-hint {
  font-size: 12px;
  color: var(--fg-faint);
  text-align: center;
  line-height: 1.5;
}

/* ===== PROOF POINTS ===== */
.proofpoints {
  padding: 48px 24px;
  max-width: 640px;
  margin: 0 auto;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.bullet:first-child { border-top: 1px solid var(--border); }

.bullet-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 1px;
}

.bullet-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

.bullet-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== SOCIAL PROOF ===== */
.socialproof {
  padding: 48px 24px 64px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  line-height: 0.8;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  font-style: italic;
}

.quote-text {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.quote-attr {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== FOOTER TRUST ===== */
.footer-trust {
  text-align: center;
  padding: 0 24px 48px;
  font-size: 13px;
  color: var(--fg-faint);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero { padding: 56px 20px 48px; }
  .form-wrap { gap: 10px; }
  .quote-card { padding: 22px 22px; }
}