/* ════════════════════════════════════════════════════════════════════════════
   LANDER STYLES — shared across the keyword-targeted SEO landing pages
   (/linkedin-audit, /personal-brand-checker, /free-personal-brand-audit,
   /executive-personal-brand-audit). Used in tandem with shared-chrome.css.
   ════════════════════════════════════════════════════════════════════════════ */

:root {
  --vp-cream: #fafafa;
  --vp-deep-black: #0c0b09;
  --vp-text-grey: #56556B;
  --vp-indigo: #3F36B2;
  --vp-lavender: #8683E5;
  --vp-navy: #0B0359;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--vp-cream);
  color: var(--vp-deep-black);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--vp-indigo); text-decoration: none; }
a:hover { color: var(--vp-deep-black); }

.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.eyebrow-row { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vp-indigo); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vp-indigo);
}

.lander-hero {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, var(--vp-cream) 0%, #f0eff8 100%);
  border-bottom: 1px solid rgba(15, 15, 15, 0.06);
}
.lander-hero h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 18px 0 18px;
  text-wrap: balance;
}
.lander-hero .lede {
  font-size: 20px;
  color: var(--vp-text-grey);
  max-width: 56ch;
  line-height: 1.5;
  margin: 0 0 32px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vp-deep-black);
  color: #fcfcfc !important;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(11, 3, 89, 0.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cta-primary:hover {
  background: var(--vp-indigo);
  color: #fcfcfc !important;
  transform: translateY(-1px);
}
.cta-primary:active { transform: scale(0.97); }

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--vp-text-grey);
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row span::before { content: "·"; opacity: 0.5; }
.trust-row span:first-child::before { content: ""; }

section.lander-section {
  padding: 72px 0;
  border-top: 1px solid rgba(15, 15, 15, 0.06);
}
section.lander-section h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0 0 16px;
}
section.lander-section p {
  color: var(--vp-text-grey);
  line-height: 1.65;
  margin: 0 0 18px;
}
section.lander-section ul {
  color: var(--vp-text-grey);
  line-height: 1.65;
}

.dim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 720px) { .dim-grid { grid-template-columns: 1fr; } }

.dim-card {
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.06);
  border-radius: 14px;
  padding: 22px;
}
.dim-card .num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--vp-indigo);
  background: rgba(63, 54, 178, 0.06);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.dim-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.012em;
}
.dim-card p {
  font-size: 14px;
  color: var(--vp-text-grey);
  margin: 0;
  line-height: 1.55;
}

.faq { display: grid; gap: 14px; margin-top: 28px; }
.faq details {
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color .2s ease, background .2s ease;
}
.faq details[open] {
  border-color: rgba(63, 54, 178, 0.30);
  background: #fbfaff;
}
.faq summary {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
  color: var(--vp-deep-black);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--vp-indigo);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin: 14px 0 0;
  color: var(--vp-text-grey);
  font-size: 15px;
  line-height: 1.6;
}

.closing-cta {
  background: var(--vp-navy);
  color: #fcfcfc;
  padding: 80px 0;
  text-align: center;
}
.closing-cta h2 { color: #fcfcfc !important; }
.closing-cta p {
  color: rgba(252, 252, 252, 0.72);
  max-width: 560px;
  margin: 0 auto 28px;
}
.closing-cta .cta-primary {
  background: #fcfcfc;
  color: var(--vp-deep-black) !important;
}
.closing-cta .cta-primary:hover {
  background: var(--vp-lavender);
  color: var(--vp-deep-black) !important;
}
