/* Brigid pitch deck — large-typography light theme.
   Boss has bad eyesight: high contrast, large type, generous spacing.
   TMB green (#25be6a) used as the only accent. */

/* Self-hosted fonts (vendored woff2 — work offline, no CDN).
   Atkinson Hyperlegible = low-vision-optimized body; Fraunces = serif display. */
@font-face {
  font-family: 'Atkinson Hyperlegible';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/atkinson-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Atkinson Hyperlegible';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/atkinson-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('fonts/fraunces-var.woff2') format('woff2');
}

:root {
  --tmb-green: #25be6a;
  --tmb-green-dark: #1a9350;
  --tmb-green-tint: rgba(37, 190, 106, 0.12);
  --ink: #0e1a14;
  --ink-soft: #4a5560;
  --paper: #f4f2ea;        /* warm stone, not stark white */
  --paper-soft: #ece9dd;
  --card: #fffefb;         /* cards lift off the warm ground */
  --rule: #d7d4c8;
}

.reveal {
  font-family: 'Atkinson Hyperlegible', 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  font-size: 36px;
  color: var(--ink);
  /* depth, not emptiness: warm stone + soft green vignette + faint hairline grid */
  background:
    radial-gradient(120% 70% at 50% -8%, var(--tmb-green-tint) 0%, transparent 55%),
    repeating-linear-gradient(0deg,  rgba(14,26,20,.022) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(14,26,20,.022) 0 1px, transparent 1px 34px),
    var(--paper);
}

.reveal .slides section {
  text-align: left;
  padding: 0 40px;
  line-height: 1.4;
  box-sizing: border-box;
}
.reveal .slides {
  text-align: left;
}

.reveal h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 30px;
  line-height: 1.05;
  text-transform: none;
}

.reveal h2 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.1;
  text-transform: none;
}

.reveal h3 {
  font-size: 40px;
  font-weight: 600;
  color: var(--tmb-green-dark);
  margin-bottom: 18px;
  text-transform: none;
}

.reveal p {
  font-size: 32px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.reveal ul, .reveal ol {
  font-size: 30px;
  line-height: 1.5;
}

.reveal li {
  margin-bottom: 14px;
}

.reveal strong { color: var(--ink); font-weight: 700; }
.reveal em     { color: var(--ink-soft); font-style: normal; }

/* Accent rule under section titles */
.title-rule {
  width: 80px;
  height: 6px;
  background: var(--tmb-green);
  border: none;
  margin: 0 0 32px 0;
  border-radius: 3px;
}

/* Title slide */
.title-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.title-slide .brand {
  font-size: 26px;
  color: var(--tmb-green);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.title-slide .title-line {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 18px;
  line-height: 1.0;
}
.title-slide .subtitle {
  font-size: 38px;
  color: var(--ink-soft);
  font-weight: 400;
}
.title-slide .meta {
  margin-top: 56px;
  font-size: 26px;
  color: var(--ink-soft);
}

/* status split for "where Brigid is today" */
.status-label {
  font-size: 18px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--tmb-green-dark);
  margin: 6px 0 10px;
}
.status-label.wip { color: var(--ink-soft); margin-top: 22px; }
.tile.wip { opacity: 0.7; }

/* grid for the "working today" / "in progress" tile groups */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
  width: 100%;
}
/* working group = 4 tiles in a row; in-progress group = 2 tiles */
.status-label + .grid-6 { grid-template-columns: repeat(4, 1fr); }
.status-label.wip + .grid-6 { grid-template-columns: repeat(2, 1fr); max-width: 62%; }
.grid-6 .tile {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(14, 26, 20, 0.07);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.grid-6 .tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid var(--rule);
  display: block;
}
.grid-6 .tile .label {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

/* Mobile mock row */
.mobile-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 14px;
}
.mobile-frame {
  width: 230px;
  border: 12px solid #1a1a1a;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  background: #000;
}
.mobile-frame img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}
.mobile-caption {
  text-align: center;
  font-size: 20px;
  color: var(--ink-soft);
  margin-top: 10px;
  font-weight: 500;
  max-width: 230px;
}

/* Business case — three pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--rule);
  border-top: 6px solid var(--tmb-green);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 24px rgba(14, 26, 20, 0.06);
  padding: 28px 26px;
}
.pillar .pillar-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.pillar .pillar-body {
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Roadmap — 3 columns */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.milestone {
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(14, 26, 20, 0.06);
}
.milestone .milestone-head {
  background: var(--tmb-green);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 18px 22px;
  letter-spacing: -0.5px;
}
.milestone .milestone-body {
  padding: 20px 22px;
  background: var(--card);
}
.milestone .milestone-body ul {
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  padding-left: 22px;
}
.milestone .milestone-body li { margin-bottom: 10px; }

/* The ask */
.ask {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.ask .ask-line {
  font-size: 72px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.15;
}
.ask .ask-line .num {
  color: var(--tmb-green);
}
.ask .ask-footnote {
  margin-top: 36px;
  font-size: 26px;
  color: var(--ink-soft);
  max-width: 90%;
}

/* Pull-quote / single-screenshot slides */
.feature-row {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-top: 16px;
  width: 100%;
}
.feature-row .feature-text {
  flex: 1 1 0;
  min-width: 0;
}
.feature-row .feature-text p {
  font-size: 34px;
  line-height: 1.4;
  color: var(--ink);
}
.feature-row .feature-shot {
  flex: 1 1 0;
  min-width: 0;
}
.feature-row .feature-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--rule);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Closing slide — two paragraphs */
.closing p {
  font-size: 32px;
  line-height: 1.5;
  max-width: 88%;
  margin-bottom: 28px;
}
.closing p:first-of-type {
  border-left: 4px solid var(--tmb-green);
  padding-left: 24px;
}

/* Print / PDF export — reveal.js applies print stylesheet automatically when
   ?print-pdf is in the URL. Force light background + crisp text. */
@media print {
  .reveal, .reveal .slides section { background: var(--paper) !important; }
  .reveal h1, .reveal h2 { color: var(--ink) !important; }
}
