/* COE Pitch — Boss Deck: Neutral warm palette, no Cloudflare branding */

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

:root {
  /* Neutral warm palette */
  --bg-page: #F5F0E8;
  --bg-content: #FFFCF7;
  --bg-card: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #5A6070;
  --text-light: #8A909A;
  --border: #DDD5C8;
  --accent: #C17F3A;       /* warm amber */
  --accent-light: #C17F3A18;
  --navy: #1A2744;
  --slate: #4A5568;
  --before-bg: #EEF2F7;
  --after-bg: #FFF8F0;
}

.reveal-viewport {
  background: var(--bg-page);
}

.reveal {
  font-family: 'DM Sans', sans-serif;
  font-size: 18pt;
  color: var(--text);
  background: var(--bg-page);
}

/* ── Slide defaults ─────────────────────────────────────────── */
.reveal .slides section {
  height: 100%;
  box-sizing: border-box;
  padding: 52px 60px 44px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--bg-page);
}

/* ── Typography ──────────────────────────────────────────────── */
.reveal h1 {
  font-size: 44pt;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}
.reveal h2 {
  font-size: 30pt;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 24px 0;
}
.reveal h3 {
  font-size: 18pt;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.reveal p {
  margin: 0 0 16px 0;
  line-height: 1.6;
  color: var(--text);
}
.reveal ul, .reveal ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.reveal li {
  margin-bottom: 12px;
  line-height: 1.55;
  color: var(--text);
}
.reveal strong {
  font-weight: 600;
  color: var(--navy);
}
.reveal blockquote {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 16px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--slate);
  font-size: 16pt;
  line-height: 1.55;
}

/* ── Title slide ─────────────────────────────────────────────── */
.title-slide {
  background: var(--navy) !important;
  justify-content: center !important;
  padding: 80px !important;
}
.title-slide h1 {
  color: #FFFFFF !important;
  font-size: 52pt !important;
  margin-bottom: 20px !important;
}
.title-slide .tagline {
  color: #CBD5E0 !important;
  font-size: 20pt;
  font-weight: 300;
  line-height: 1.5;
  max-width: 780px;
  margin-top: 0;
}
.title-slide .accent-bar {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 28px 0;
}

/* ── Slide header line ────────────────────────────────────────── */
.slide-header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 16px;
  margin-bottom: 28px;
}

/* ── Two-column layout ──────────────────────────────────────── */
.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  flex: 1;
}
.col-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 26px;
}
.col-card h3 {
  font-size: 13pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.col-card.before {
  background: var(--before-bg);
  border-color: #BDC8D8;
}
.col-card.after {
  background: var(--after-bg);
  border-color: #D9C0A0;
}
.col-card.after h3 {
  color: var(--accent);
}

/* ── Timeline ────────────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  flex: 1;
  align-items: start;
}
.timeline-phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 18px;
  position: relative;
}
.timeline-phase::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 14px;
}
.timeline-phase .phase-label {
  font-size: 11pt;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
}
.timeline-phase .phase-dates {
  font-size: 12pt;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.timeline-phase ul {
  padding-left: 16px;
  margin: 0;
}
.timeline-phase li {
  font-size: 13pt;
  margin-bottom: 8px;
  color: var(--slate);
}

/* ── Ask slide ────────────────────────────────────────────────── */
.ask-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
  flex: 1;
}
.ask-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
}
.ask-item .ask-label {
  font-size: 12pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ask-item.green .ask-label { color: #2D7D46; }
.ask-item.amber .ask-label { color: #C17F3A; }
.ask-item.grey .ask-label { color: var(--slate); }

/* ── Utility ─────────────────────────────────────────────────── */
.framing-text {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 15pt;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.5;
}
.footer-note {
  font-size: 12pt;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}
.bullet-item strong {
  color: var(--navy);
}
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── Speaker notes ───────────────────────────────────────────── */
.reveal aside.notes {
  font-size: 14pt;
  line-height: 1.6;
}

/* ── Centered final slide ────────────────────────────────────── */
.center-slide {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
.center-slide h2 {
  font-size: 34pt;
  color: var(--navy);
  margin-bottom: 24px;
}
.center-slide .body-text {
  font-size: 18pt;
  color: var(--slate);
  max-width: 700px;
  line-height: 1.65;
  font-style: italic;
  margin: 0 auto 32px;
}
.center-slide .closing-line {
  font-size: 15pt;
  color: var(--text-light);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}
