:root {
  --bg:            #0b0d10;
  --bg-elev:       #12151a;
  --bg-elev-2:     #171b21;
  --border:        #262b33;
  --border-strong: #8a8f98;
  --text:          #eef1f5;
  --text-dim:      #a7adb8;
  --accent:        #ff5a2e;
  --accent-hover:  #ff6d47;
  --danger:        #ff6d47;
  --success:       #3ecf8e;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 720px;
  --radius: 8px;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

main {
  padding-bottom: 64px;
}

/* === ABOVE THE FOLD === */

.hero {
  padding-top: 40px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(27px, 6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
  text-wrap: balance;
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 560px;
  text-wrap: pretty;
}

#form-slot {
  margin-bottom: 12px;
}

form {
  margin-bottom: 0;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

input[type="email"] {
  width: 100%;
  min-height: 48px;
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 8px;
}

input[type="email"]::placeholder {
  color: var(--text-dim);
}

.form-help {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 14px;
  font-weight: 400;
}

.consent {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  cursor: pointer;
  margin-bottom: 16px;
}

.consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

button[type="submit"] {
  display: block;
  width: 100%;
  min-height: 48px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

button[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

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

.form-status {
  font-size: 14px;
  min-height: 20px;
  margin-top: 12px;
  color: var(--text-dim);
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

/* === Focus styles: locked, never removed === */
a:focus-visible,
input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.trust-line {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* === SUCCESS STATE === */
.success-state {
  margin-bottom: 12px;
}

.success-state h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 10px;
}

.success-state p {
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 10px;
}

.success-state p:last-child {
  margin-bottom: 0;
  font-size: 14px;
}

/* === BELOW THE FOLD === */

.below-fold {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.below-fold h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.lede {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 640px;
}

.value-list {
  list-style: none;
  margin-bottom: 36px;
}

.value-list li {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.5;
}

.value-list li:first-child {
  border-top: none;
}

.value-list li strong {
  color: var(--text);
  font-weight: 600;
}

.value-list li.emphasis {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.value-list li.emphasis strong {
  color: var(--accent);
}

.privacy-block {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-dim);
}

.paid-bridge {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.paid-bridge a {
  color: var(--accent);
  font-weight: 600;
}

footer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

footer p {
  font-size: 13px;
  color: var(--text-dim);
}

/* === Mobile fold tightening === */
@media (max-width: 600px) {
  .hero {
    padding-top: 28px;
  }

  h1 {
    margin-bottom: 10px;
  }

  .subtitle {
    margin-bottom: 16px;
  }

  #form-slot {
    margin-bottom: 8px;
  }

  .below-fold {
    margin-top: 40px;
    padding-top: 32px;
  }
}
