/* ═══════════════════════════════════════════════
   ReConnect™ v3.0 — Built from Tom's content flow
   NOT from a template.
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --orange: #F7941D;
  --dark-orange: #E07A0A;
  --light-orange: #FFB347;
  --cream: #FDFAF5;
  --warm-cream: #FFF8EE;
  --navy: #1A1A2E;
  --blue-navy: #16213E;
  --deep-blue: #0F3460;
  --warm-brown: #2C1A00;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --mid-gray: #8899AA;
  --dark-gray: #555;
  --text: #3A3A3A;
  --black: #0D0D0D;

  --display: 'Libre Baskerville', Georgia, serif;
  --body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.65; font-weight: 400; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; font-weight: 300; }
em { font-style: italic; }
strong { font-weight: 600; }

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-weight: 600; font-size: 15px; font-family: var(--body);
  cursor: pointer; transition: all 0.3s var(--ease);
  border: none; letter-spacing: 0.2px;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--dark-orange); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(247,148,29,0.3); color: #fff; }
.btn--ghost { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.15); }
.btn--ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn--outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn--outline:hover { background: var(--orange); color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--blue-navy); }
.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--lg { padding: 16px 38px; font-size: 16px; }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--cream); }

/* ─── NAVBAR ───────────────────────────────── */
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 56px;
  background: var(--navy); position: sticky; top: 0; z-index: 1000;
}
.navbar__home {
  font-family: var(--body); font-weight: 600; font-size: 13px;
  color: var(--orange); letter-spacing: 1px; text-transform: uppercase;
}
.navbar__home:hover { color: var(--light-orange); }
.navbar__links { display: flex; gap: 24px; align-items: center; font-size: 13px; font-weight: 500; }
.navbar__links a { color: rgba(255,255,255,0.7); transition: color 0.25s; }
.navbar__links a:hover { color: var(--orange); }
.navbar__mobile { display: none; font-size: 22px; cursor: pointer; color: #fff; background: none; border: none; }

/* Mobile overlay */
.navbar__links--open {
  display: flex !important; position: fixed; inset: 0;
  background: rgba(26,26,46,0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 24px; z-index: 9999;
  animation: fadeIn 0.25s var(--ease);
}
.navbar__links--open a { font-size: 20px; color: #fff !important; }
.navbar__links--open a:hover { color: var(--orange) !important; }

/* ══════════════════════════════════════════════
   HOMEPAGE — Gateway, not a deep scroll
   ══════════════════════════════════════════════ */

.home-hero {
  background: linear-gradient(170deg, var(--navy) 0%, #111128 60%, var(--deep-blue) 100%);
  min-height: calc(100vh - 56px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 48px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
/* Subtle glow */
.home-hero::before {
  content: ''; position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(247,148,29,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero__inner { position: relative; z-index: 2; max-width: 700px; }

.home-hero__logo {
  max-width: 460px; width: 100%; margin: 0 auto 32px;
  animation: fadeIn 1s var(--ease);
}

.home-hero__tagline {
  font-family: var(--display); font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.6); font-weight: 400; font-style: italic;
  margin-bottom: 28px; letter-spacing: 0.5px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.home-hero__welcome {
  font-size: 16px; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 560px; margin: 0 auto 36px;
  font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}
.home-hero__welcome em { color: var(--orange); font-style: italic; }

.home-hero__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}

.home-hero__illustration {
  position: relative; z-index: 1;
  width: 100%; max-width: 800px; margin: 40px auto 0;
  animation: fadeIn 1.2s var(--ease) 0.8s both;
}
.home-hero__svg { width: 100%; height: auto; }

/* ─── NAVIGATION CARDS ─────────────────────── */
.home-nav-cards {
  background: var(--cream);
  padding: 72px 48px;
}
.home-nav-cards__container { max-width: var(--max-width); margin: 0 auto; }
.home-nav-cards__heading {
  text-align: center; margin-bottom: 40px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
}

.home-nav-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nav-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(247,148,29,0.1);
  border-color: rgba(247,148,29,0.2);
  color: var(--text);
}
.nav-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 16px;
  transition: all 0.3s;
}
.nav-card:hover .nav-card__icon { background: var(--orange); color: #fff; }
.nav-card__title { font-size: 17px; font-weight: 700; font-family: var(--display); color: var(--navy); margin-bottom: 8px; }
.nav-card__desc { font-size: 14px; color: var(--mid-gray); line-height: 1.6; font-weight: 300; flex: 1; }

/* ─── VALUE PROPOSITION STRIP ──────────────── */
.home-value {
  background: var(--navy);
  padding: 64px 48px;
}
.home-value__container {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center;
}
.home-value__quote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.7); line-height: 1.8;
}
.home-value__attribution {
  font-size: 13px; color: var(--orange);
  font-weight: 600; margin-top: 8px;
}
.home-value__stats { display: grid; gap: 24px; }
.home-value__stat {
  padding: 20px 24px; background: rgba(255,255,255,0.04);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06);
}
.home-value__stat-number {
  font-size: 28px; font-weight: 700; color: var(--orange);
  font-family: var(--display); display: block; line-height: 1;
}
.home-value__stat-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-top: 6px; display: block; line-height: 1.5;
}

/* ══════════════════════════════════════════════
   INNER PAGES — Shared layout
   ══════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-navy) 100%);
  padding: 48px 48px 40px; text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.5); font-size: 15px; max-width: 600px; margin: 0 auto; }

.page-content { padding: 64px 48px; }
.page-content__inner { max-width: var(--max-width); margin: 0 auto; }
.page-content__narrow { max-width: 780px; margin: 0 auto; }

.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: var(--orange); text-transform: uppercase;
  margin-bottom: 12px;
}

/* ─── Content typography for inner pages ───── */
.prose { max-width: 720px; }
.prose p { font-size: 16px; line-height: 1.8; color: var(--dark-gray); margin-bottom: 18px; }
.prose h2 { margin: 48px 0 16px; }
.prose h3 { margin: 36px 0 12px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { font-size: 15px; color: var(--dark-gray); line-height: 1.7; margin-bottom: 8px; }
.prose blockquote {
  background: var(--cream); border-left: 4px solid var(--orange);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0; font-style: italic;
}
.prose blockquote p { font-family: var(--display); color: var(--navy); font-size: 16px; margin: 0; }

/* ─── Grid layouts ─────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─── Cards ────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.35s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.card--featured {
  background: var(--navy); border: 2px solid var(--orange);
  color: #fff;
}
.card--featured h3, .card--featured h4 { color: #fff; }
.card--featured p { color: rgba(255,255,255,0.6); }

.card__badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}

.card__price {
  font-size: 40px; font-weight: 700; color: var(--orange);
  font-family: var(--display); line-height: 1;
}

.card__feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--dark-gray); padding: 7px 0;
}
.card__feature::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ─── Stat cards ───────────────────────────── */
.stat-card {
  padding: 28px; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.04); text-align: center;
}
.stat-card__number { font-size: 44px; font-weight: 700; color: var(--orange); font-family: var(--display); line-height: 1; }
.stat-card__label { font-size: 13px; color: var(--mid-gray); margin-top: 6px; line-height: 1.4; }

/* ─── Module rows (for programs page) ──────── */
.module-block {
  padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.module-block__tag { font-size: 10px; color: var(--orange); font-weight: 700; letter-spacing: 1.5px; margin-bottom: 4px; }
.module-block__title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-family: var(--display); }
.module-block__desc { font-size: 14px; color: var(--dark-gray); line-height: 1.7; }
.module-block__meta { font-size: 12px; color: var(--mid-gray); margin-top: 6px; }

/* ─── Event rows ───────────────────────────── */
.event-row {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04); align-items: center;
}
.event-row__date {
  min-width: 68px; text-align: center; padding: 14px 10px;
  background: var(--navy); border-radius: var(--radius); color: #fff; flex-shrink: 0;
}
.event-row__month { font-size: 10px; letter-spacing: 2px; color: var(--orange); font-weight: 700; }
.event-row__day { font-size: 26px; font-weight: 700; font-family: var(--display); }
.event-row__info { flex: 1; }
.event-row__title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.event-row__meta { font-size: 13px; color: var(--mid-gray); }

/* ─── FAQ ──────────────────────────────────── */
.faq-item { padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.04); cursor: pointer; }
.faq-item__q { font-size: 16px; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-toggle { width: 24px; height: 24px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--orange); flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-toggle { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s; font-size: 15px; color: var(--dark-gray); line-height: 1.7; }
.faq-item.open .faq-item__a { max-height: 500px; padding-top: 12px; }

/* ─── CTA Sections ─────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--dark-orange));
  padding: 56px 48px; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 500px; margin: 0 auto 24px; }

/* Warm background sections */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: #fff; }

/* ─── Image placeholders ───────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream), var(--warm-cream));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-gray); font-size: 13px;
  min-height: 200px; border: 2px dashed rgba(0,0,0,0.06);
}

/* ─── Process steps ────────────────────────── */
.step { display: flex; gap: 16px; padding: 12px 0; align-items: flex-start; }
.step__num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--orange); font-weight: 700; flex-shrink: 0;
}
.step__text { font-size: 14px; color: var(--dark-gray); }

/* ─── Comparison table ─────────────────────── */
.compare-row {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.04); align-items: center;
}
.compare-row__old { font-size: 14px; color: var(--mid-gray); text-decoration: line-through; }
.compare-row__arrow { color: var(--orange); font-weight: 700; }
.compare-row__new { font-size: 14px; color: var(--navy); font-weight: 600; }

/* ─── Content cards (blog/podcast) ─────────── */
.content-card {
  display: block; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s var(--ease);
}
.content-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(247,148,29,0.1); color: var(--text); }
.content-card__image {
  height: 180px; background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); font-size: 13px;
}
.content-card__body { padding: 20px; }
.content-card__tag { font-size: 10px; color: var(--orange); font-weight: 700; letter-spacing: 2px; margin-bottom: 6px; }
.content-card__title { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 6px; font-family: var(--display); }
.content-card__meta { font-size: 12px; color: var(--mid-gray); }

/* ─── FOOTER ───────────────────────────────── */
.footer { background: var(--black); padding: 48px 48px 24px; color: #666; font-size: 13px; }
.footer__inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 2fr 1.5fr; gap: 40px; margin-bottom: 36px; }
.footer__logo { height: 28px; margin-bottom: 12px; opacity: 0.8; }
.footer__brand p { line-height: 1.7; color: #555; font-size: 12px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: flex-start; align-content: flex-start; }
.footer__links a { color: #666; transition: color 0.25s; }
.footer__links a:hover { color: var(--orange); }
.footer__cta-label { font-size: 12px; color: #888; margin-bottom: 8px; }
.footer__email-form { display: flex; gap: 6px; }
.footer__email-form input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; color: #aaa; font-size: 12px; font-family: var(--body); outline: none;
}
.footer__email-form input:focus { border-color: var(--orange); }
.footer__bottom {
  max-width: var(--max-width); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px; display: flex; justify-content: space-between;
  font-size: 11px; color: #444;
}

/* ─── Form Messages ────────────────────────── */
.form-message { font-size: 13px; margin-top: 8px; }

/* ─── Animations ───────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .home-nav-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .home-value__container { grid-template-columns: 1fr; gap: 32px; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .navbar__links { display: none; }
  .navbar__mobile { display: block; }
  .home-hero { padding: 40px 24px 32px; }
  .home-hero__logo { max-width: 320px; }
  .home-nav-cards { padding: 48px 24px; }
  .home-nav-cards__grid { grid-template-columns: 1fr; }
  .home-value { padding: 40px 24px; }
  .page-header { padding: 32px 24px; }
  .page-content { padding: 40px 24px; }
  .cta-band { padding: 40px 24px; }
  .footer { padding: 32px 24px 16px; }
  .home-hero__actions { flex-direction: column; align-items: center; }
  .compare-row { grid-template-columns: 1fr; gap: 4px; }
  .compare-row__arrow { display: none; }
  .event-row { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .home-hero__logo { max-width: 260px; }
  .navbar__home { font-size: 11px; }
  .footer__bottom { flex-direction: column; gap: 4px; }
}
