/* Buy Early Consulting LLC — Coming Soon
   Color system matches the main site gateway theme */

:root {
  --bg-light: #f7f8fa;
  --bg-white: #ffffff;
  --text-dark: #1a1d23;
  --text-muted: #5a6270;
  --accent: #1e3a5f;
  --accent-hover: #152a45;
  --border-light: #e2e6ed;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --radius: 10px;
  --max-width: 720px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body { height: 100%; }

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.mark {
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 1.75rem;
}

.firm {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.firm span {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.85em;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 650;
  line-height: 1.2;
  margin: 1.25rem 0 1rem;
  color: var(--text-dark);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.badge {
  display: inline-block;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--card-shadow);
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 2.25rem 2rem;
  max-width: var(--max-width);
  width: 100%;
}

.note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  border-top: 1px solid var(--border-light);
}
