/* SeekrX public marketing site — plain, dependency-free CSS.
   Color/type tokens copied from the authenticated app's
   tailwind.config.ts + app/globals.css so this page matches the
   product's look without pulling Tailwind or any build tool into a
   directory that Cloudflare must treat as pure static output. */

:root {
  --ink: #111318;
  --paper: #fafaf9;
  --line: #e4e4e1;
  --accent: #1d4ed8;
  --accent-soft: #eef2ff;
  --muted: #6b7280;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.page-wrap {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.hero h1 {
  margin: 0.5rem 0 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.lede {
  margin: 0.75rem 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.cta-block {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.btn-primary {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--accent);
  padding: 0.85rem 1rem;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary.btn-disabled {
  background-color: var(--muted);
  cursor: default;
  opacity: 0.55;
}

.btn-link {
  text-align: center;
  font-size: 14px;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-note {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.section {
  margin-top: 2.5rem;
}

.section-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card {
  border: 1px solid var(--line);
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
}

.step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.step-num {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.step-body {
  margin: 0.25rem 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.benefit-body {
  margin: 0.25rem 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.cta-final-card {
  text-align: center;
}

.cta-final-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

.cta-final-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.cta-final-sub {
  margin: 0.25rem 0 0;
  font-size: 13px;
  color: var(--muted);
}

.cta-final .cta-block {
  margin-top: 1.25rem;
}

.footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* Desktop: widen the column and step up type a little. Still one
   simple centered column -- a marketing page this short doesn't need
   a different layout, just more breathing room. */
@media (min-width: 640px) {
  .page-wrap {
    max-width: 40rem;
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 36px;
  }

  .lede {
    font-size: 17px;
  }

  .cta-block {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .btn-primary {
    width: auto;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cta-final .cta-block {
    flex-direction: column;
  }
}
