/* COE Pitch — Team Offsite Deck: Warm, approachable 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 {
  --bg-page: #F7F3EE;
  --bg-content: #FFFCF8;
  --bg-card: #FFFFFF;
  --text: #1C1E2A;
  --text-muted: #5C6070;
  --text-light: #8A8F9A;
  --border: #DEDAD5;
  --accent: #B87333;       /* terra cotta / warm amber */
  --accent-light: #B8733318;
  --navy: #1E2C4A;
  --slate: #4A556A;
  --charcoal: #2D3340;
  --before-bg: #EEF1F7;
  --after-bg: #FFF7F0;
  --green: #2A7D45;
  --amber: #C17F3A;
  --red: #C0392B;
  --changing-bg: #EEF1F7;
  --stable-bg: #F3F9F4;
}

.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: 48px 56px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--bg-page);
}

/* ── Typography ──────────────────────────────────────────────── */
.reveal h1 {
  font-size: 42pt;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 14px 0;
  letter-spacing: -0.4px;
}
.reveal h2 {
  font-size: 28pt;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 22px 0;
}
.reveal h3 {
  font-size: 16pt;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reveal p {
  margin: 0 0 14px 0;
  line-height: 1.6;
  color: var(--text);
}
.reveal ul, .reveal ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
}
.reveal li {
  margin-bottom: 10px;
  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: 14px 18px;
  margin: 16px 0;
  font-style: italic;
  color: var(--slate);
  font-size: 15pt;
  line-height: 1.55;
}

/* ── Title slide ─────────────────────────────────────────────── */
.title-slide {
  background: var(--charcoal) !important;
  justify-content: center !important;
  padding: 80px !important;
}
.title-slide h1 {
  color: #FFFFFF !important;
  font-size: 48pt !important;
  margin-bottom: 16px !important;
}
.title-slide .subheadline {
  color: #B0B8C8 !important;
  font-size: 20pt;
  font-weight: 300;
  line-height: 1.5;
  font-style: italic;
}
.title-slide .accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 24px 0;
}

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

/* ── Two-column layout ──────────────────────────────────────── */
.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  flex: 1;
}
.col-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
}
.col-card h3 {
  font-size: 12pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.col-card.before {
  background: var(--changing-bg);
  border-color: #BDC4D0;
}
.col-card.after {
  background: var(--stable-bg);
  border-color: #B8D4C0;
}
.col-card.after h3 {
  color: var(--green);
}
.col-card.before h3 {
  color: var(--slate);
}

/* ── Table ───────────────────────────────────────────────────── */
.role-section {
  margin-bottom: 20px;
}
.role-label {
  font-size: 14pt;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14pt;
  margin-bottom: 8px;
}
th {
  background: var(--navy);
  color: #FFFFFF;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12pt;
}
td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.45;
}
tr:nth-child(even) td {
  background: var(--bg-content);
}
tr:nth-child(odd) td {
  background: var(--bg-card);
}

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

/* ── Career paths ────────────────────────────────────────────── */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  flex: 1;
  align-items: start;
}
.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
}
.path-card h3 {
  font-size: 15pt;
  font-weight: 700;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.path-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22pt;
  color: var(--text-light);
  padding-top: 20px;
}
.shared-space {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 14px 18px;
  font-style: italic;
  color: var(--slate);
  font-size: 14pt;
  margin-top: 16px;
  line-height: 1.5;
  text-align: center;
  grid-column: span 3;
}

/* ── Ask items ──────────────────────────────────────────────── */
.ask-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
}
.ask-item-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ask-item-row .ask-label {
  font-size: 13pt;
  font-weight: 700;
  color: var(--navy);
}
.ask-item-row p {
  margin: 0;
  color: var(--slate);
  font-style: italic;
  font-size: 15pt;
}

/* ── Q&A slide ───────────────────────────────────────────────── */
.qa-slide {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
.qa-slide h2 {
  font-size: 52pt !important;
  color: var(--navy);
  margin-bottom: 32px;
}
.qa-slide .questions {
  font-size: 20pt;
  color: var(--slate);
  line-height: 2;
  font-style: italic;
}
.qa-slide .footer-note {
  font-size: 13pt;
  color: var(--text-light);
  margin-top: 40px;
  font-style: italic;
}

/* ── Utility ─────────────────────────────────────────────────── */
.framing-text {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 14pt;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}
.footer-note {
  font-size: 12pt;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-style: italic;
}
.standalone-statement {
  text-align: center;
  font-size: 17pt;
  font-weight: 600;
  color: var(--navy);
  background: var(--accent-light);
  border-radius: 6px;
  padding: 16px 24px;
  margin: 16px 0;
  line-height: 1.4;
}
.real-talk-obs {
  margin-top: 12px;
}
.real-talk-obs li {
  font-size: 15pt;
  color: var(--slate);
}

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