/* HiringReach — Shared Styles
   Extracted from index.html + extended for multi-page site */

:root {
  --ink: #0D0F12;
  --paper: #FAFAF8;
  --accent: #1A6CFF;
  --accent-dark: #0B4FCC;
  --muted: #4B5563;
  --faint: #E5E7EB;
  --warm: #FFF7ED;
  --red: #DC2626;
  --green: #16A34A;
  --red-bg: #FEF2F2;
  --green-bg: #F0FDF4;
  --stat-bg: #F1F5F9;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 108, 255, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(26, 108, 255, 0.03), transparent);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--warm);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #92400E;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease-out both;
}
.hero-badge::before {
  content: '\1F525';
}
h1 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero h1 { animation: fadeUp 0.8s 0.1s ease-out both; }
h1 .serif-italic {
  font-style: normal !important;
  color: var(--ink) !important;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease-out both;
}
.hero-cta-group {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  animation: fadeUp 0.8s 0.3s ease-out both;
}
.cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.cta-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26, 108, 255, 0.25); }
.cta-note { font-size: 0.8rem; color: var(--muted); }

/* ─── HERO FEATURE (subpages) ─── */
.hero--feature {
  min-height: auto;
  padding: 8rem 2rem 3rem;
}
.hero--feature::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 108, 255, 0.08), transparent);
}
.hero--feature h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.hero--brand {
  min-height: auto;
  padding: 8rem 2rem 3rem;
}
.hero--brand::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 108, 255, 0.05), transparent);
}
.hero--brand h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.hero--pseo {
  min-height: auto;
  padding: 7rem 2rem 2.5rem;
}
.hero--pseo::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 108, 255, 0.04), transparent);
}
.hero--pseo h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  max-width: 700px;
}

/* ─── STAT BAR ─── */
.stat-bar {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding: 3rem 2rem;
  background: var(--ink);
  color: #fff;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}
.stat-num.red { color: #F87171; }
.stat-num.green { color: #4ADE80; }
.stat-num.yellow { color: #FBBF24; }
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  max-width: 160px;
}

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }
main section { padding: 0; margin-bottom: 1.5rem; }
.container { max-width: 960px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h2 .serif-italic { font-style: normal !important; font-weight: 700; color: var(--ink) !important; }

/* ─── PAIN SECTION ─── */
.pain-section { background: #FAFAF8; }
.pain-section .section-label,
.pain-section h2 { text-align: center; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--faint);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.25s;
}
.pain-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(220, 38, 38, 0.06); }
.pain-icon {
  width: 44px; height: 44px;
  background: var(--red-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.pain-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.pain-card:hover .pain-icon { background: var(--red); }
.pain-card:hover .pain-icon svg { stroke: #fff; }
.pain-title { font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
.pain-quote {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--faint);
  padding-left: 0.75rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}
.pain-source {
  font-size: 0.7rem;
  color: #6B7280;
  margin-top: 0.35rem;
  font-style: normal;
}

/* ─── BROKEN LOOP ─── */
.loop-section {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.loop-section h2 { color: #fff; }
.loop-section .section-label { color: #60A5FA; }
.loop-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0rem;
  margin: 3rem auto 1.5rem;
  max-width: 800px;
}
.loop-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  min-width: 140px;
}
.loop-step .step-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.5rem;
}
.loop-step .step-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.loop-step:last-child .step-icon { background: rgba(248,113,113,0.15); }
.loop-step:last-child .step-icon svg { stroke: #F87171; }
.loop-step .step-label { display: block; font-weight: 500; }
.loop-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 1.2rem;
  padding: 0 0.25rem;
}
.loop-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.loop-note strong { color: #F87171; }

/* ─── COMPARE ─── */
.compare-section { background: var(--paper); }
.compare-section .section-label,
.compare-section h2,
.compare-section > .container > p { text-align: center; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--faint);
}
.compare-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.compare-table th:first-child { background: var(--red-bg); color: var(--red); }
.compare-table th:last-child { background: var(--green-bg); color: var(--green); }
.compare-table td {
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--faint);
  vertical-align: top;
}
.compare-table tr td:first-child { color: var(--muted); }
.compare-table tr td:last-child { font-weight: 500; }
.compare-table tr:hover td { background: rgba(26, 108, 255, 0.02); }

/* ─── HOW IT WORKS ─── */
.how-section { background: #fff; }
.how-section .section-label,
.how-section h2 { text-align: center; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.step {
  text-align: center;
  padding: 1.5rem;
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── SPRINT ─── */
.sprint-section {
  background: linear-gradient(135deg, #0D0F12, #1A2332);
  color: #fff;
  text-align: center;
}
.sprint-section .section-label { color: #FBBF24; }
.sprint-section h2 { color: #fff; }
.sprint-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}
.sprint-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}
.phase {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}
.phase-week {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FBBF24;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.phase h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.phase p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ─── FAQ ─── */
.faq-section { background: var(--paper); }
.faq-section .section-label,
.faq-section h2 { text-align: center; }
.faq-list { max-width: 680px; margin: 2rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--faint);
  padding: 1.25rem 0;
}
.faq-q {
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--muted); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 0.75rem; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2rem; }
.cta-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  color: var(--ink);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.cta-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}
footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
footer a:hover { color: #fff; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.8rem;
}

/* ─── FEATURE SHOWCASE ─── */
.features-section { background: #fff; }
.features-section .section-label,
.features-section h2 { text-align: center; }
.features-section > .container > p { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--faint);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.25s;
}
.feature-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(26, 108, 255, 0.08); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(26, 108, 255, 0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.feature-card:hover .feature-icon { background: var(--accent); }
.feature-card:hover .feature-icon svg { stroke: #fff; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 0; }
.feature-card .feature-tier {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  background: rgba(26, 108, 255, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* ─── CALLING HIGHLIGHT ─── */
.calling-section {
  background: linear-gradient(135deg, #0B1A2E, #0D2847);
  color: #fff;
  overflow: hidden;
}
.calling-section .section-label { color: #34D399; }
.calling-section h2 { color: #fff; }
.calling-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.calling-content p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.5rem; }
.calling-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.calling-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.calling-features li svg { flex-shrink: 0; width: 20px; height: 20px; stroke: #34D399; fill: none; stroke-width: 2; margin-top: 2px; }
.calling-badge {
  display: inline-block;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34D399;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.calling-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.calling-visual-icon {
  width: 80px; height: 80px;
  background: rgba(52, 211, 153, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.calling-visual-icon svg { width: 36px; height: 36px; stroke: #34D399; fill: none; stroke-width: 1.5; }
.calling-visual h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.calling-visual p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }
.calling-flow {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.calling-flow-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.calling-flow-arrow { color: rgba(255,255,255,0.2); font-size: 0.9rem; display: flex; align-items: center; }

/* ─── AFTER YOU'RE HIRED (OTJ) ─── */
.otj-section { background: var(--paper); }
.otj-section .section-label,
.otj-section h2,
.otj-section > .container > p { text-align: center; }
.otj-section > .container > p { color: var(--muted); max-width: 580px; margin: 0 auto 2.5rem; }
.otj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.otj-card {
  background: #fff;
  border: 1px solid var(--faint);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.25s;
}
.otj-card:hover { border-color: #FBBF24; box-shadow: 0 4px 16px rgba(251, 191, 36, 0.1); }
.otj-card-icon {
  width: 40px; height: 40px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.otj-card-icon svg { width: 20px; height: 20px; stroke: #D97706; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.otj-card h3 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.3rem; }
.otj-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.4; margin: 0; }
.otj-hook {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 12px;
}
.otj-hook p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.otj-hook strong { color: var(--ink); }

/* ─── PRICING ─── */
.pricing-section { background: #fff; }
.pricing-section .section-label,
.pricing-section h2,
.pricing-section > .container > p { text-align: center; }
.pricing-section > .container > p { color: var(--muted); max-width: 480px; margin: 0 auto 2.5rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--faint);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(26, 108, 255, 0.12);
  position: relative;
}
.pricing-popular-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.pricing-bundle {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  flex: 1;
}
.pricing-features li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}
.pricing-features li.disabled { color: #C4C9D2; }
.pricing-features li.disabled::before { content: '\2013'; color: #C4C9D2; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}
.pricing-cta-outline {
  border: 2px solid var(--faint);
  color: var(--ink);
}
.pricing-cta-outline:hover { border-color: var(--accent); color: var(--accent); }
.pricing-cta-fill {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.pricing-cta-fill:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ─── NETWORK EFFECT ─── */
.network-section {
  background: var(--stat-bg);
  text-align: center;
}
.network-section .section-label { text-align: center; }
.network-section h2 { text-align: center; }
.network-section p { color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.network-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.network-stat { text-align: center; }
.network-stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--accent);
}
.network-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ─── RESPONSIVE NEW SECTIONS ─── */
@media (max-width: 768px) {
  .calling-layout { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .otj-grid { grid-template-columns: 1fr 1fr; }
  .network-stats { gap: 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .otj-grid { grid-template-columns: 1fr; }
  .calling-flow { flex-direction: column; align-items: center; }
  .calling-flow-arrow { transform: rotate(90deg); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  padding: 5.5rem 2rem 0;
  max-width: 960px;
  margin: 0 auto;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li + li::before {
  content: '/';
  margin-right: 0.4rem;
  color: var(--faint);
}

/* ─── ARTICLE CONTENT (feature + brand pages) ─── */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.article-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.article-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.article-content ul, .article-content ol {
  margin: 0.5rem 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}
.article-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(26, 108, 255, 0.03);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}

/* ─── TEMPLATE BOX (pSEO pages) ─── */
.template-box {
  background: #fff;
  border: 1px solid var(--faint);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  font-family: 'DM Sans', monospace;
}
.template-box .template-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}
.template-box .template-content {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink);
  white-space: pre-wrap;
}
.template-box .template-content .placeholder {
  background: rgba(26, 108, 255, 0.08);
  color: var(--accent);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-weight: 500;
}

/* ─── RELATED PAGES GRID ─── */
.related-section {
  background: var(--stat-bg);
  padding: 3rem 2rem;
}
.related-section h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.related-card {
  background: #fff;
  border: 1px solid var(--faint);
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
}
.related-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(26, 108, 255, 0.08);
  transform: translateY(-2px);
}
.related-card .related-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.related-card .related-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── FEATURE CHECKLIST ─── */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.feature-list li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── DATA TABLE (pSEO pages) ─── */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--faint);
  margin: 1.5rem 0;
}
.data-table th {
  background: var(--stat-bg);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
}
.data-table td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-top: 1px solid var(--faint);
}
.data-table tr:hover td {
  background: rgba(26, 108, 255, 0.02);
}

/* ─── ARTICLE / BLOG / GUIDE PAGES ─── */
/* Scoped under <main> so homepage (no <main>) is unaffected */
main {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
}
main h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  animation: none;
  max-width: none;
}
main h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1.25;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
main h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
main p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
main ul, main ol {
  margin: 0.75rem 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.8;
}
main li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
main a {
  color: var(--accent);
  text-decoration: none;
}
main a:hover {
  text-decoration: underline;
}
main blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(26, 108, 255, 0.03);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}
main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
main table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--faint);
  margin: 1.5rem 0;
}
main th {
  background: var(--stat-bg);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
}
main td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--faint);
  color: var(--muted);
}
main tr:hover td {
  background: rgba(26, 108, 255, 0.02);
}
main hr {
  border: none;
  border-top: 1px solid var(--faint);
  margin: 2rem 0;
}
main header {
  margin-bottom: 2rem;
}
/* Breadcrumb nav inside articles */
main nav[aria-label="Breadcrumb"],
main .breadcrumb {
  margin-bottom: 1rem;
}
main nav[aria-label="Breadcrumb"] ol,
main .breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  padding: 0;
}
main nav[aria-label="Breadcrumb"] li + li::before,
main .breadcrumb li + li::before {
  content: '/';
  margin-right: 0.4rem;
  color: var(--faint);
}
/* Article meta (date, read time) */
main .post-meta, main .guide-meta, main .page-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
/* Table of contents box */
main .toc-box, main [class*="toc"] {
  background: var(--stat-bg);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
main .toc-box ol, main [class*="toc"] ol {
  margin: 0.5rem 0 0 1rem;
}
/* Related guides section injected by QA */
main section[style*="border-top"] {
  margin-top: 3rem;
  padding-top: 2rem;
}
main section[style*="border-top"] h2 {
  font-size: 1.3rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  #site-nav { padding: 0.75rem 1rem; }
  .logo { font-size: 1.25rem; }
  .nav-links { display: none; }
  section { padding: 3.5rem 1.25rem; }
  main { padding: 5rem 1.25rem 2rem; }
  .stat-bar { gap: 1.5rem; padding: 2rem 1rem; }
  .stat-num { font-size: 2rem; }
  .loop-flow { flex-direction: column; gap: 0; }
  .loop-arrow { transform: rotate(90deg); }
  .compare-table th, .compare-table td { padding: 0.7rem 0.85rem; font-size: 0.8rem; }
  .sprint-phases { grid-template-columns: 1fr 1fr; }
  .article-content { padding: 0 1.25rem 2rem; }
  .breadcrumbs { padding: 5rem 1.25rem 0; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sprint-phases { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .waitlist-input { min-width: 0; }
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--faint);
  border-radius: 10px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.waitlist-input:focus {
  border-color: var(--accent);
}
.waitlist-input-dark {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.waitlist-input-dark::placeholder {
  color: rgba(255,255,255,0.6);
}
.waitlist-input-dark:focus {
  border-color: rgba(255,255,255,0.7);
}
.waitlist-form-dark {
  max-width: 480px;
  margin: 0 auto;
}

/* ── Article Format Elements ──────────────────────────────
   Shared styles for callouts, stat blocks, process flows,
   timelines, comparison charts, TL;DR and key takeaway boxes.
   Used by org-factory content generation across all sites. */

/* ── Callout Boxes ──────────────────────────────────────── */
.callout {
  border-left: 4px solid var(--accent, #1A6CFF);
  background: rgba(26, 108, 255, 0.08);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.95em;
  line-height: 1.6;
}
.callout strong:first-child {
  display: inline;
  margin-right: 4px;
}
.callout-tip {
  border-left-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}
.callout-warning {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}
.callout-info {
  border-left-color: var(--accent, #1A6CFF);
  background: rgba(26, 108, 255, 0.08);
}

/* ── Stat Blocks ────────────────────────────────────────── */
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--stat-bg, rgba(26, 108, 255, 0.06));
  border: 1px solid var(--stat-border, rgba(26, 108, 255, 0.15));
  border-radius: 12px;
  padding: 24px 20px;
  margin: 24px 0;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent, #1A6CFF);
}
.stat-label {
  font-size: 0.9em;
  color: var(--text-muted, #666);
  margin-top: 8px;
  max-width: 280px;
}

/* ── TL;DR Box ──────────────────────────────────────────── */
.tldr-box {
  background: var(--tldr-bg, #f0f7ff);
  border: 1px solid var(--tldr-border, #c8ddf5);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.tldr-box h3 {
  margin: 0 0 12px;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent, #1A6CFF);
}
.tldr-box ul {
  margin: 0;
  padding-left: 20px;
}
.tldr-box li {
  margin-bottom: 6px;
  line-height: 1.5;
}

/* ── Key Takeaway Box ───────────────────────────────────── */
.key-takeaway {
  border: 2px solid var(--accent, #1A6CFF);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--takeaway-bg, rgba(26, 108, 255, 0.03));
}
.key-takeaway h3 {
  margin: 0 0 12px;
  font-size: 1.05em;
  font-weight: 700;
  color: var(--accent, #1A6CFF);
}
.key-takeaway ul {
  margin: 0;
  padding-left: 20px;
}
.key-takeaway li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ── Process Flow ───────────────────────────────────────── */
.process-flow {
  margin: 28px 0;
  padding-left: 8px;
}
.process-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--accent, #1A6CFF);
  opacity: 0.3;
}
.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent, #1A6CFF);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9em;
}
.step-content {
  flex: 1;
  padding-top: 4px;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05em;
}
.step-content p {
  margin: 0;
  color: var(--text-muted, #555);
  line-height: 1.5;
}

/* ── Timeline ───────────────────────────────────────────── */
.timeline {
  margin: 28px 0;
  padding-left: 8px;
  border-left: 3px solid var(--timeline-line, rgba(26, 108, 255, 0.2));
}
.timeline-item {
  position: relative;
  padding: 0 0 24px 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent, #1A6CFF);
  border: 2px solid #fff;
}
.timeline-date {
  display: block;
  font-weight: 700;
  font-size: 0.85em;
  color: var(--accent, #1A6CFF);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.timeline-content {
  line-height: 1.5;
  color: var(--text-body, #333);
}

/* ── Comparison Chart ───────────────────────────────────── */
.comparison-chart {
  margin: 24px 0;
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--chart-border, #e5e7eb);
}
.comparison-chart table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92em;
}
.comparison-chart th {
  background: var(--chart-header-bg, #f8fafc);
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--chart-border, #e5e7eb);
}
.comparison-chart td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--chart-border, #e5e7eb);
}
.comparison-chart tr:last-child td {
  border-bottom: none;
}
.comparison-chart tr:hover td {
  background: var(--chart-hover, rgba(26, 108, 255, 0.04));
}

/* ── Mobile Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .stat-number { font-size: 2.2rem; }
  .stat-block { padding: 18px 16px; }
  .callout { padding: 12px 16px; }
  .tldr-box, .key-takeaway { padding: 16px 18px; }
  .process-step { gap: 12px; }
  .step-number { width: 30px; height: 30px; font-size: 0.8em; }
  .process-step:not(:last-child)::before { left: 14px; }
  .comparison-chart { font-size: 0.85em; }
  .comparison-chart th, .comparison-chart td { padding: 8px 10px; }
}
/* Article H1 - added by org-factory */
article h1, .article-body h1, .article-content h1 {
  font-size: 2.25rem;
  margin: 0 0 24px;
  color: inherit;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}
