/* welcome.css — markovAnalytics public landing page */

/* ── Reset / base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  background: var(--bg, #0f1117);
  color: var(--text, #e8eaf0);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent, #6c8fff); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout shell ───────────────────────────────────── */
.wl-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ─────────────────────────────────────────── */
.wl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border, #2a2d3a);
  background: var(--bg, #0f1117);
  position: sticky;
  top: 0;
  z-index: 10;
}

.wl-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text, #e8eaf0);
  letter-spacing: -0.02em;
}

.wl-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent, #6c8fff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.wl-nav-signin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border, #2a2d3a);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text, #e8eaf0);
  transition: border-color 0.15s, background 0.15s;
}
.wl-nav-signin:hover {
  border-color: var(--accent, #6c8fff);
  background: rgba(108, 143, 255, 0.08);
  text-decoration: none;
}

/* ── Hero ────────────────────────────────────────────── */
.wl-hero {
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.wl-hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, #6c8fff);
  background: rgba(108, 143, 255, 0.12);
  border: 1px solid rgba(108, 143, 255, 0.25);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}

.wl-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text, #e8eaf0);
  max-width: 720px;
  margin: 0 auto 1.25rem;
}

.wl-hero h1 span {
  color: var(--accent, #6c8fff);
}

.wl-hero-sub {
  font-size: 1.1rem;
  color: var(--muted, #8890a8);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.wl-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--accent, #6c8fff);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 0.15s, transform 0.1s;
}
.wl-btn-primary:hover {
  opacity: 0.9;
  text-decoration: none;
  transform: translateY(-1px);
}

.wl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border, #2a2d3a);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted, #8890a8);
  transition: border-color 0.15s, color 0.15s;
}
.wl-btn-ghost:hover {
  border-color: var(--accent, #6c8fff);
  color: var(--accent, #6c8fff);
  text-decoration: none;
}

/* ── Section headings ───────────────────────────────── */
.wl-section {
  padding: 4rem 1.5rem;
}

.wl-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #6c8fff);
  margin-bottom: 0.75rem;
  text-align: center;
}

.wl-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--text, #e8eaf0);
}

.wl-section-sub {
  font-size: 1rem;
  color: var(--muted, #8890a8);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── Feature grid ───────────────────────────────────── */
.wl-features {
  background: var(--bg-alt, #13161e);
  border-top: 1px solid var(--border, #2a2d3a);
  border-bottom: 1px solid var(--border, #2a2d3a);
}

.wl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.wl-card {
  background: var(--bg, #0f1117);
  border: 1px solid var(--border, #2a2d3a);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.15s, transform 0.15s;
}
.wl-card:hover {
  border-color: var(--accent, #6c8fff);
  transform: translateY(-2px);
}

.wl-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(108, 143, 255, 0.12);
  border: 1px solid rgba(108, 143, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.wl-card h3 {
  font-size: 0.975rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text, #e8eaf0);
}

.wl-card p {
  font-size: 0.875rem;
  color: var(--muted, #8890a8);
  line-height: 1.65;
}

/* ── Pricing ─────────────────────────────────────────── */
.wl-pricing {
  padding: 4rem 1.5rem;
}

.wl-pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-alt, #13161e);
  border: 1px solid var(--border, #2a2d3a);
  border-radius: 14px;
  overflow: hidden;
}

.wl-pricing-header {
  background: linear-gradient(135deg, rgba(108,143,255,0.15) 0%, rgba(108,143,255,0.04) 100%);
  border-bottom: 1px solid var(--border, #2a2d3a);
  padding: 2rem;
  text-align: center;
}

.wl-pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, #6c8fff);
  background: rgba(108, 143, 255, 0.15);
  border: 1px solid rgba(108, 143, 255, 0.3);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.wl-pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text, #e8eaf0);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.wl-pricing-price sup {
  font-size: 1.25rem;
  font-weight: 600;
  vertical-align: super;
}

.wl-pricing-cadence {
  font-size: 0.875rem;
  color: var(--muted, #8890a8);
}

.wl-pricing-body {
  padding: 1.75rem 2rem;
}

.wl-pricing-body ul {
  list-style: none;
  margin-bottom: 1.75rem;
}

.wl-pricing-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text, #e8eaf0);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border, #2a2d3a);
}
.wl-pricing-body li:last-child { border-bottom: none; }

.wl-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--green, #4ade80);
  margin-top: 2px;
}

.wl-pricing-cta {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background: var(--accent, #6c8fff);
  color: #fff;
  border-radius: 8px;
  font-size: 0.975rem;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.15s;
}
.wl-pricing-cta:hover { opacity: 0.9; text-decoration: none; }

.wl-pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted, #8890a8);
  margin-top: 0.85rem;
}

/* ── Divider ─────────────────────────────────────────── */
.wl-divider {
  height: 1px;
  background: var(--border, #2a2d3a);
  margin: 0 1.5rem;
}

/* ── Footer ─────────────────────────────────────────── */
.wl-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.825rem;
  color: var(--muted, #8890a8);
  border-top: 1px solid var(--border, #2a2d3a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wl-footer a { color: var(--muted, #8890a8); }
.wl-footer a:hover { color: var(--accent, #6c8fff); text-decoration: none; }
