/* Landing page styles — single-screen, single-purpose pre-launch capture */

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0; min-height: 100vh;
  background: var(--paper); color: var(--ink);
  font-family: var(--font-body);
}

.ld-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
}

/* ── Top bar — just brand, no nav (single-purpose) ──────────────────── */
.ld-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 36px;
  border-bottom: 1px solid var(--ink);
}
.ld-top__handle {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  text-decoration: none;
}
.ld-top__handle:hover { color: var(--signal); }

/* ── Hero — centered, the whole point ───────────────────────────────── */
.ld-hero {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 36px 64px;
}
.ld-hero__inner {
  width: 100%; max-width: 980px;
  text-align: center;
}
.ld-eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 36px;
}
.ld-eyebrow .dot { display: inline-block; width: 8px; height: 8px; background: var(--signal); border-radius: 50%; margin: 0 8px 1px; vertical-align: middle; }

.ld-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--ink);
}
.ld-headline .lede {
  display: block;
  font-size: 0.36em; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.ld-headline .lede.bottom { margin-top: 12px; margin-bottom: 0; }

/* The strike + lots overwrite — the visual centerpiece */
.ld-so {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.ld-so__cross { position: relative; display: inline-block; }
.ld-so__cross::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%;
  top: 50%;
  height: 0.13em;
  background: var(--signal);
  transform: translateY(-50%) rotate(-2.5deg);
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}
.ld-so__lots {
  position: absolute;
  left: 0; right: 0;
  top: 8%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85em;
  line-height: 1;
  color: var(--signal);
  text-align: center;
  transform: rotate(-6deg);
  z-index: 2;
  pointer-events: none;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ld-sub {
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 640px;
}

/* ── Form ───────────────────────────────────────────────────────────── */
.ld-form {
  display: flex; gap: 10px;
  max-width: 580px; margin: 0 auto;
  flex-wrap: wrap;
}
.ld-input {
  flex: 1; min-width: 240px;
  font-family: var(--font-body); font-size: 17px;
  padding: 16px 18px;
  border: 1px solid var(--ink); border-radius: 2px;
  background: var(--paper-light);
  color: var(--ink);
}
.ld-input::placeholder { color: var(--ink-mute); }
.ld-input:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}
.ld-submit {
  font-family: var(--font-body); font-weight: 600; font-size: 17px;
  padding: 16px 22px;
  border: 1px solid var(--signal); border-radius: 2px;
  background: var(--signal); color: var(--paper);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 80ms cubic-bezier(0.2,0.8,0.2,1), background 80ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.ld-submit:hover { background: var(--signal-deep); border-color: var(--signal-deep); }
.ld-submit:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.ld-submit[disabled] { opacity: 0.7; cursor: wait; }

.ld-note {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 20px;
}

.ld-error {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--signal);
  margin-top: 14px;
}

/* Success state — celebration */
.ld-done {
  max-width: 580px; margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
}
.ld-done__h {
  font-family: var(--font-display); font-weight: 800;
  font-size: 42px; line-height: 1; letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.ld-done__h .accent { color: var(--signal); }
.ld-done__p {
  font-size: 16px; color: var(--paper); opacity: 0.78;
  margin: 0;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.ld-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 36px;
  border-top: 1px solid var(--ink);
  background: var(--paper-deep);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
}
.ld-foot__l { display: flex; align-items: center; gap: 14px; }
.ld-foot__l img { height: 26px; display: block; }
.ld-foot__r { display: flex; gap: 18px; }
.ld-foot__r a { color: var(--ink-mute); text-decoration: none; }
.ld-foot__r a:hover { color: var(--signal); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .ld-top { padding: 18px 22px; }
  .ld-hero { padding: 32px 22px 48px; }
  .ld-foot { padding: 16px 22px; flex-direction: column; gap: 14px; }
  .ld-form { flex-direction: column; }
  .ld-submit { width: 100%; justify-content: center; }
}
