/* Select Life Strategies — brand: deep navy, gold accent, serif display */
:root {
  --navy: #12365f;
  --navy-deep: #0d2a4d;
  --gold: #e3a72f;
  --teal: #2f8c8c;
  --ink: #1c2b3a;
  --muted: #5b6b7c;
  --paper: #ffffff;
  --wash: #f5f7fa;
  --line: #e3e8ee;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
}
h1, h2, h3, .serif { font-family: "Playfair Display", Georgia, serif; color: var(--navy); }

/* Header */
.site-header {
  background: var(--navy);
  border-left: 10px solid var(--gold);
  padding: 0.9rem 0;
  position: sticky; top: 0; z-index: 50;
}
.site-header .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.brand { font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; color: #fff; text-decoration: none; letter-spacing: 0.02em; }
.brand em { color: var(--gold); font-style: normal; }
.nav a { color: #d9e2ee; text-decoration: none; margin-left: 1.1rem; font-size: 0.95rem; }
.nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 5rem 1.25rem 4.5rem;
  border-left: 10px solid var(--gold);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero .inner { max-width: 1100px; margin: 0 auto; position: relative; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.12; max-width: 21ch; }
.hero .kicker { color: var(--gold); font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: 1.35rem; margin-top: 1rem; }
.hero .sub { border-left: 3px solid var(--teal); padding-left: 0.9rem; margin-top: 1.2rem; max-width: 58ch; color: #dbe4ef; font-size: 1.1rem; }
.hero .presenter { margin-top: 1.6rem; color: #9fb2c8; font-size: 0.95rem; }

/* Sections */
.section { padding: 3.5rem 1.25rem; }
.section.wash { background: var(--wash); }
.section .inner { max-width: 1100px; margin: 0 auto; }
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section .lede { color: var(--teal); font-size: 1.15rem; margin-top: 0.3rem; }
.rule { width: 100%; height: 3px; background: var(--gold); margin: 1.2rem 0 2rem; border: 0; }

/* Strategy cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-top: 5px solid var(--navy);
  padding: 1.6rem 1.5rem 1.4rem; display: flex; flex-direction: column; gap: 0.7rem;
  text-decoration: none; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(18,54,95,0.12); }
.card .num { font-family: "Playfair Display", Georgia, serif; color: var(--gold); font-size: 1rem; letter-spacing: 0.12em; }
.card h3 { font-size: 1.35rem; line-height: 1.25; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .go { margin-top: auto; color: var(--teal); font-weight: 600; font-size: 0.95rem; }

/* Stat tiles */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; margin-top: 1.6rem; }
.stat { background: var(--wash); border-top: 4px solid var(--navy); padding: 1.1rem 1.2rem; }
.stat .label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.stat .value { font-family: "Playfair Display", Georgia, serif; font-size: 1.9rem; color: var(--navy); line-height: 1.15; margin-top: 0.2rem; }
.stat .note { color: var(--teal); font-size: 0.92rem; }

/* Pillars / bullet columns */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; margin-top: 1.4rem; }
.pillar h3 { font-size: 1.25rem; border-bottom: 3px solid var(--teal); padding-bottom: 0.45rem; margin-bottom: 0.7rem; }
.pillar ul { list-style: none; }
.pillar li { padding-left: 1.1rem; position: relative; margin-bottom: 0.5rem; color: var(--ink); font-size: 1rem; }
.pillar li::before { content: "●"; color: var(--gold); font-size: 0.6rem; position: absolute; left: 0; top: 0.5em; }

/* Deck viewer */
.deck-frame {
  width: 100%; height: 640px; border: 1px solid var(--line); border-top: 5px solid var(--gold);
  background: var(--wash);
}
.deck-actions { margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-block; background: var(--navy); color: #fff; text-decoration: none;
  padding: 0.75rem 1.5rem; font-weight: 600; font-size: 1rem; border: 0; cursor: pointer;
}
.btn:hover { background: var(--navy-deep); }
.btn.gold { background: var(--gold); color: var(--navy-deep); }
.btn.gold:hover { filter: brightness(1.06); }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; border-left: 10px solid var(--gold); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d9e2ee; max-width: 60ch; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #9fb2c8; padding: 2.5rem 1.25rem; font-size: 0.88rem; }
.site-footer .inner { max-width: 1100px; margin: 0 auto; }
.site-footer .disclosure { margin-top: 0.8rem; line-height: 1.55; }
.site-footer a { color: #d9e2ee; }

/* Breadcrumb */
.crumb { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.6rem; }
.crumb a { color: var(--teal); text-decoration: none; }

/* Mobile */
@media (max-width: 640px) {
  .deck-frame { height: 420px; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
}
