/* Deck-specific styles for Blend × YourStory partnership proposal */

deck-stage > section {
  position: relative;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--blend-ink);
  background: var(--blend-cream);
}

/* ---------- Stripe band ---------- */
.stripe {
  position: absolute; left: 0; right: 0; height: 14px;
  display: flex; z-index: 5;
}
.stripe.top { top: 0; }
.stripe.bot { bottom: 0; }
.stripe > i { flex: 1; display: block; }
.stripe > i:nth-child(1) { background: #2457E5; }
.stripe > i:nth-child(2) { background: #FDCD03; }
.stripe > i:nth-child(3) { background: #F7B6C2; }
.stripe > i:nth-child(4) { background: #13A454; }
.stripe > i:nth-child(5) { background: #FF7403; }

/* ---------- Footer chrome ---------- */
.foot {
  position: absolute; left: 72px; right: 72px; bottom: 30px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-mono); font-size: 14px;
  color: var(--blend-ink-3); z-index: 6;
}
.foot .brand {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--blend-ink); letter-spacing: -0.01em;
}
.foot .x { font-family: var(--font-mono); color: var(--blend-ink-3); }
.foot .doc { font-family: var(--font-mono); color: var(--blend-ink-3); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; }
.foot .pages { margin-left: auto; }

.dark .foot { color: rgba(255,248,232,0.55); }
.dark .foot .brand { color: var(--blend-cream); }
.dark .foot .doc { color: rgba(255,248,232,0.45); }

/* ---------- Section bg variants ---------- */
section.dark { background: var(--blend-black); color: var(--blend-cream); }
section.yellow { background: var(--blend-yellow); }
section.cream2 { background: var(--blend-cream-2); }
section.blue { background: var(--blend-blue); color: var(--blend-cream); }
section.green { background: var(--blend-green); color: var(--blend-cream); }

/* ---------- Eyebrow / Caps ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blend-orange);
}
.eyebrow.blue { color: var(--blend-blue); }
.eyebrow.green { color: var(--blend-green); }
.eyebrow.cream { color: var(--blend-cream); }
.eyebrow.yellow { color: var(--blend-yellow); }

/* ---------- Display titles ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
  text-wrap: balance;
}
.display-mega { font-size: 168px; line-height: 0.92; }
.display-xl { font-size: 124px; }
.display-lg { font-size: 96px; }
.display-md { font-size: 72px; }
.display-sm { font-size: 56px; }
.display-xs { font-size: 42px; }

.body-lg { font-family: var(--font-body); font-size: 24px; line-height: 1.5; color: var(--blend-ink-2); }
.body-md { font-family: var(--font-body); font-size: 20px; line-height: 1.5; color: var(--blend-ink-2); }
.body-sm { font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--blend-ink-2); }

.dark .body-lg, .dark .body-md, .dark .body-sm { color: rgba(255,248,232,0.78); }

/* ---------- Hand-script ---------- */
.hand {
  font-family: var(--font-hand); font-weight: 700;
  color: var(--blend-orange);
  display: inline-block;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 2.5px solid var(--blend-ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 0 var(--blend-ink);
  padding: 36px;
}
.card.flat { box-shadow: none; }
.card.cream { background: var(--blend-cream-2); }
.card.yellow { background: var(--blend-yellow); }
.card.orange { background: var(--blend-orange); color: var(--blend-cream); }
.card.green { background: var(--blend-green); color: var(--blend-cream); }
.card.blue { background: var(--blend-blue); color: var(--blend-cream); }
.card.pink { background: var(--blend-pink); }
.card.ink { background: var(--blend-ink); color: var(--blend-cream); box-shadow: 6px 6px 0 0 var(--blend-orange); }

.card h3, .card .h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; line-height: 1; margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.card .h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; line-height: 0.98; margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.card p { font-size: 18px; line-height: 1.5; margin: 0; color: inherit; opacity: 0.92; }

/* ---------- Slide layout helpers ---------- */
.slide-pad { padding: 140px 96px 110px; height: 100%; box-sizing: border-box; }
.slide-pad.tight { padding: 120px 96px 100px; }

/* ---------- Pill / chip ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em;
  padding: 8px 16px; border-radius: 999px;
  border: 2px solid var(--blend-ink);
  background: #fff; color: var(--blend-ink);
}
.pill.dot::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blend-orange); display: inline-block;
}
.pill.green { border-color: var(--blend-green); color: var(--blend-green); }
.pill.blue { border-color: var(--blend-blue); color: var(--blend-blue); }
.pill.orange { border-color: var(--blend-orange); color: var(--blend-orange); }

/* ---------- Page-number badge for section dividers ---------- */
.part-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 220px; line-height: 0.85; letter-spacing: -0.04em;
  color: var(--blend-ink);
  opacity: 0.08;
}
.dark .part-num { color: var(--blend-cream); opacity: 0.10; }

/* ---------- Tables ---------- */
.table { width: 100%; border-collapse: separate; border-spacing: 0; }
.table th, .table td {
  text-align: left; padding: 18px 22px;
  font-family: var(--font-body); font-size: 18px; line-height: 1.4;
  color: var(--blend-ink);
  border-bottom: 1.5px solid rgba(45,45,45,0.18);
  vertical-align: top;
}
.table th {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; letter-spacing: 0.02em;
  background: var(--blend-ink); color: var(--blend-cream);
  border-bottom: none;
}
.table th:first-child { border-top-left-radius: 14px; }
.table th:last-child  { border-top-right-radius: 14px; }
.table tr:last-child td { border-bottom: none; }
.table tr:nth-child(even) td { background: rgba(45,45,45,0.03); }

/* "vs" table — three column highlight pattern */
.table.vs td.col-bad { color: var(--blend-ink-2); }
.table.vs td.col-good { background: rgba(19,164,84,0.10) !important; font-weight: 600; }
.table.vs tr.win td { background: var(--blend-ink) !important; color: var(--blend-cream) !important; }
.table.vs tr.win td .ok { color: var(--blend-yellow); font-weight: 700; }

/* ---------- Big stat ---------- */
.stat-big .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 132px; line-height: 0.9; letter-spacing: -0.03em;
  color: var(--blend-ink);
}
.stat-big .lab {
  font-family: var(--font-body); font-weight: 500;
  font-size: 18px; color: var(--blend-ink-2);
  margin-top: 8px;
  text-wrap: balance;
}

.stat-card .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 64px; line-height: 0.95;
  letter-spacing: -0.02em; color: var(--blend-ink);
}
.stat-card .num.tight { font-size: 56px; }
.stat-card .lab {
  font-family: var(--font-body); font-size: 14px; line-height: 1.4;
  color: var(--blend-ink-2); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ---------- × / ✓ marks ---------- */
.x-mark { color: var(--blend-ink-2); font-weight: 800; }
.check-mark { color: var(--blend-green); font-weight: 800; }

/* ---------- Quarter card ---------- */
.q-tag {
  display: inline-flex; align-items: baseline; gap: 14px;
  font-family: var(--font-display); font-weight: 700;
}
.q-tag .q { font-size: 80px; line-height: 0.85; letter-spacing: -0.03em; }
.q-tag .name { font-size: 36px; color: var(--blend-orange); letter-spacing: -0.01em; }
.q-tag .dates {
  font-family: var(--font-mono); font-size: 14px; color: var(--blend-ink-3);
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px;
}

/* ---------- Bullets ---------- */
ul.dotlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
ul.dotlist li {
  position: relative; padding-left: 28px;
  font-family: var(--font-body); font-size: 19px; line-height: 1.45; color: var(--blend-ink);
}
ul.dotlist li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--blend-orange);
}
ul.dotlist li.green::before { background: var(--blend-green); }
ul.dotlist li.blue::before { background: var(--blend-blue); }
ul.dotlist li.yellow::before { background: var(--blend-yellow); }

.dark ul.dotlist li { color: var(--blend-cream); }

/* shapes positioning (decorative) */
.deco { position: absolute; pointer-events: none; user-select: none; }

/* small helpers */
.row { display: flex; }
.col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-5 { gap: 24px; } .gap-6 { gap: 32px; } .gap-7 { gap: 48px; } .gap-8 { gap: 64px; }
.items-center { align-items: center; } .items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.tac { text-align: center; }

/* underline accent */
.acc-underline { position: relative; display: inline-block; }
.acc-underline::after {
  content: ''; position: absolute; left: -4px; right: -4px; bottom: -8px;
  height: 14px;
  background: url("assets/vector-underline.svg") no-repeat center / 100% 100%;
}

/* corner badge for section dividers */
.corner-tag {
  position: absolute; top: 56px; left: 72px;
  font-family: var(--font-mono); font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--blend-ink-3);
}
.dark .corner-tag { color: rgba(255,248,232,0.55); }
