/* ─────────────────────────────────────────────────────────
   PROACTIVE Co · AI Anxiety Reset Webinar landing page
   Page-specific styles only. site.css carries the homepage
   tokens, components, and layout system.
   ───────────────────────────────────────────────────────── */

/* ── Eyebrow / display variants (replaces inline overrides) ── */
.section-eyebrow.on-dark   { color: var(--white); }
.section-eyebrow.on-dark::before  { background: var(--white); }
.section-eyebrow.on-cta {
  color: rgba(255, 255, 255, 0.78);
  justify-content: center;
}
.section-eyebrow.on-cta::before   { background: rgba(255, 255, 255, 0.78); }

h2.display.on-dark { color: var(--white); }

/* ── Outcomes grid (3 cards, off-white card on off-white section) ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.outcome-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--grey-100);
}
.outcome-card-num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
}
.outcome-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
}
.outcome-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-700);
}
.outcome-card em { font-style: italic; color: var(--black); font-weight: 600; }

/* ── Anti-frame strip (black, echoes .values-strip) ── */
.anti-frame {
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  margin-top: 16px;
}
.anti-frame p {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ── LIVIN section (black, two-column) ── */
.livin-section { background: var(--black); }
.livin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.livin-lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
}
.livin-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.livin-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.livin-card-row:last-of-type { border-bottom: none; }
.livin-card-row-emphasis {
  border-top: 1px solid rgba(245, 0, 0, 0.4);
  border-bottom: 1px solid rgba(245, 0, 0, 0.4);
}
.livin-card-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.livin-card-value {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}
.livin-card-value.red { color: var(--red); }
.livin-footnote {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

/* ── About Chris (solo card, off-white section) ── */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--grey-200), var(--grey-100));
  aspect-ratio: 4 / 5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.about-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--red);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.about-info { padding-top: 8px; }
.about-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.about-brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}
.about-brand-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.about-info h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.about-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey-500);
  margin-bottom: 22px;
}
.about-info > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-700);
  margin-bottom: 8px;
}
.about-info em { font-style: italic; color: var(--black); font-weight: 600; }

/* ── Final CTA underline accent ── */
.cta-underline {
  position: relative;
  display: inline-block;
}
.cta-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.12em;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 4px;
}

/* ── Preview-capture mode (?capture=1) — strip behaviour gates ── */
body.preview-capture .hero { min-height: auto; }
body.preview-capture .fade-up { opacity: 1; transform: none; transition: none; }

/* ── Reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .livin-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .anti-frame { padding: 28px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(40px, 11vw, 52px); }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }
  .hero-eyebrow { font-size: 11px; padding: 5px 14px; }
  .anti-frame p { font-size: 18px; line-height: 1.4; }
  .livin-card { padding: 28px 24px; }
  .livin-card-value { font-size: 22px; }
  .about-photo { aspect-ratio: 1 / 1; }
}
