/* =========================================================
   Slide 2 — Brand positioning map
   ========================================================= */

.bm {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bm__header,
.bm__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.bm__catlabel {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-fire);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: right;
  padding-right: 8px;
}
.bm__header .bm__catlabel { color: transparent; }

.bm__axis {
  position: relative;
  height: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bm__tier {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bm__tier::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--c-fire);
}
.bm__tier--empty {
  color: rgba(255,255,255,0.36);
}
.bm__tier--empty::after {
  background: rgba(255,255,255,0.18);
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.2) 0 6px,
    transparent 6px 12px
  );
}

/* Each row's axis area carries:
   1. Alternating column tint (zebra-stripe) to visually anchor tier columns
   2. Vertical gridlines at 25/50/75%
   3. Bars positioned absolutely on top */
.bm__lines {
  height: 88px;
  position: relative;
  background:
    /* zebra column tint */
    linear-gradient(to right,
      rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.025) 25%,
      rgba(255,255,255,0)     25%, rgba(255,255,255,0)     50%,
      rgba(255,255,255,0.025) 50%, rgba(255,255,255,0.025) 75%,
      rgba(255,255,255,0)     75%, rgba(255,255,255,0)    100%
    );
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Vertical gridlines on top of the tint */
.bm__lines::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right,
      transparent calc(25% - 1px), rgba(255,255,255,0.18) calc(25% - 1px), rgba(255,255,255,0.18) 25%, transparent 25%,
      transparent calc(50% - 1px), rgba(255,255,255,0.18) calc(50% - 1px), rgba(255,255,255,0.18) 50%, transparent 50%,
      transparent calc(75% - 1px), rgba(255,255,255,0.14) calc(75% - 1px), rgba(255,255,255,0.14) 75%, transparent 75%);
}

/* Premium column highlight (subtle) — to suggest headroom */
.bm__row .bm__axis::before {
  content: "";
  position: absolute;
  inset: 0 0 0 75%;
  background: linear-gradient(180deg, rgba(255,97,47,0.04), rgba(255,97,47,0.0));
  pointer-events: none;
}

/* A brand bar */
.bar {
  position: absolute;
  top: 14px;
  height: 40px;
  background: linear-gradient(180deg, rgba(0,171,120,0.32), rgba(0,171,120,0.18));
  border: 1px solid rgba(0,171,120,0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px -10px rgba(0,171,120,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}
.bar span em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-left: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.bar--accent {
  background: linear-gradient(180deg, rgba(255,97,47,0.40), rgba(255,97,47,0.22));
  border-color: rgba(255,97,47,0.78);
  color: #fff;
  box-shadow: 0 14px 36px -10px rgba(255,97,47,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}

.bar--niche {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.48);
  color: rgba(255,255,255,0.95);
  box-shadow: none;
}

/* Premium "Future" annotation */
.bm__future {
  position: absolute;
  top: 18px;
  right: -20px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--c-fire);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(255,97,47,0.12);
  border: 1px dashed rgba(255,97,47,0.45);
  border-radius: 999px;
}
.bm__future::before {
  content: "→";
  color: var(--c-fire);
  font-size: 18px;
  font-weight: 700;
}

/* legend */
.bm__legend {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.lg {
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}
.lg--accent { background: rgba(255,97,47,0.28); color: #fff; border: 1px solid rgba(255,97,47,0.7); }
.lg--niche  { background: rgba(255,255,255,0.06); color: #fff; border: 1px dashed rgba(255,255,255,0.45); }
.lg--std    { background: rgba(0,171,120,0.22); color: #fff; border: 1px solid rgba(0,171,120,0.55); }

/* =========================================================
   Slide 3 — Then→Now Bento + Philosophy
   ========================================================= */
.card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 26px 26px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.card__h {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-fire);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  position: relative;
  z-index: 1;
}
.card__then {
  color: rgba(255,255,255,0.62);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.card__arrow {
  color: var(--c-fire);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin: 8px 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(255,97,47,0.35));
}
.card__now {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.32;
  position: relative;
  z-index: 1;
}
.card__now b { color: var(--c-grass); font-weight: 800; }

/* Compact variant for 4-up rows */
.card--compact {
  padding: 22px 22px 20px;
}
.card--compact .card__h    { font-size: 14px; letter-spacing: 0.18em; }
.card--compact .card__then { font-size: 17px; line-height: 1.35; }
.card--compact .card__arrow{ font-size: 28px; margin: 6px 0; }
.card--compact .card__now  { font-size: 18px; line-height: 1.3; }

/* Wide variant of the philosophy hero (horizontal layout) */
.philo--wide {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255,97,47,0.16), transparent 55%),
    var(--glass-bg-2);
}

/* =========================================================
   Slide 1 — Cinematic editorial hero
   ========================================================= */
/* Hero inherits the canonical ambient bg from base .slide — no override. */
.slide.hero-cinematic { overflow: hidden; }
/* SVG chevron pattern hidden — caused subpixel banding artifacts. */
.slide.hero-cinematic .pattern-bg,
.slide.hero-cinematic .vignette { display: none; }

.slide.hero-cinematic .hero-meta {
  position: absolute;
  top: 64px; left: 96px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.30em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  z-index: 5;
  display: flex; align-items: center; gap: 16px;
}
.slide.hero-cinematic .hero-meta .pipe {
  display: inline-block; width: 40px; height: 1px; background: rgba(255,255,255,0.4);
}

.slide.hero-cinematic .hero-center {
  position: absolute;
  left: 96px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1700px;
  z-index: 5;
}
.slide.hero-cinematic .hero-h1 {
  font-size: 240px;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.slide.hero-cinematic .hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF7A4F 0%, #FF4A12 60%, #C43412 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slide.hero-cinematic .hero-divider {
  width: 88px; height: 4px;
  background: var(--c-fire);
  margin: 40px 0 24px;
  box-shadow: 0 0 24px rgba(255,97,47,0.55);
}
.slide.hero-cinematic .hero-tag {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.slide.hero-cinematic .hero-sub {
  margin-top: 22px;
  font-size: 26px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  max-width: 1100px;
  line-height: 1.42;
}

.slide.hero-cinematic .hero-byline {
  position: absolute;
  bottom: 64px; left: 96px;
  z-index: 5;
  display: flex; align-items: center; gap: 14px;
}
.slide.hero-cinematic .hero-byline__name {
  font-size: 18px; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: 0.12em;
}
.slide.hero-cinematic .hero-byline__role {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.slide.hero-cinematic .hero-byline .pipe {
  display:inline-block; width:1px; height:18px; background: rgba(255,255,255,0.28);
}

/* =========================================================
   Slide — Team Structure (principle, no names, scalability)
   ========================================================= */
.structure {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
  flex: 1;
}

.structure__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.structure__row--center { justify-content: center; }
.structure__row--connect {
  position: relative;
  min-height: 24px;
}
.structure__row--connect::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05));
}

.tile {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px 26px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

.tile--main {
  background: linear-gradient(180deg, rgba(255,97,47,0.22), rgba(255,97,47,0.10));
  border-color: rgba(255,97,47,0.65);
  box-shadow: 0 18px 40px -16px rgba(255,97,47,0.32);
}
.tile--main .tile__h { color: #fff; }
.tile--service {
  background: linear-gradient(180deg, rgba(0,171,120,0.16), rgba(0,171,120,0.06));
  border-color: rgba(0,171,120,0.55);
  flex: 1;
}

.tile__h {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-fire);
  position: relative; z-index: 1;
}
.tile--service .tile__h { color: #3CE0A0; }

.tile__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  position: relative; z-index: 1;
}
.tile__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 2px;
  position: relative; z-index: 1;
}

/* 4 + 1 directions grid */
.directions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  flex: 1;
}
.direction {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 18px 18px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.direction::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.direction__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--c-fire);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.1;
  position: relative; z-index: 1;
  min-height: 30px;
}
.direction__roles {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 2px;
  position: relative; z-index: 1;
}
.direction__role {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px;
  background: rgba(0,171,120,0.16);
  border-left: 3px solid var(--c-grass);
  border-radius: 4px;
  line-height: 1.15;
}
.direction__role--sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(255,255,255,0.3);
}

/* Ghost (placeholder for next direction) */
.direction--ghost {
  background: transparent;
  border: 2px dashed rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.direction--ghost::before { display:none; }
.direction--ghost .direction__name {
  color: rgba(255,255,255,0.55);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.direction--ghost .direction__hint {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  margin-top: 6px;
}
.direction--ghost .ghost-plus {
  font-size: 32px;
  color: var(--c-fire);
  font-weight: 800;
  line-height: 1;
}

/* Support row */
.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.support-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 22px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.support-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.support-card__icon {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-fire);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  min-width: 140px;
  position: relative; z-index: 1;
}
.support-card__body {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.35;
  position: relative; z-index: 1;
}
.support-card__body b { color: #fff; font-weight: 800; }

/* Philosophy hero card (big bento item) */
.philo {
  background:
    radial-gradient(120% 100% at 10% 0%, rgba(255,97,47,0.16), transparent 60%),
    var(--glass-bg-2);
  border: 1px solid rgba(255,97,47,0.3);
  border-radius: var(--radius-card);
  padding: 38px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.philo__hint { font-size: 16px; font-weight: 700; color: var(--c-fire); text-transform: uppercase; letter-spacing: 0.16em; }
.philo__big {
  font-size: 56px; font-weight: 800; line-height: 1.05;
  margin-top: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.philo__big em {
  font-style: normal;
  background: linear-gradient(135deg, #FF7A4F, #FF4A12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.philo__sub {
  margin-top: 18px;
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  font-style: italic;
}

/* =========================================================
   Slide 5 — AI 3-layer cards
   ========================================================= */
.ailayer {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 36px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.ailayer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}

/* Featured "now" card gets glow */
.ailayer--now {
  border-color: rgba(255,97,47,0.45);
  box-shadow: 0 24px 60px -28px rgba(255,97,47,0.40);
}
.ailayer--future {
  border-style: dashed;
  border-color: rgba(255,255,255,0.25);
}

.ailayer__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.ailayer__pill::before {
  content: "";
  width: 8px; height: 8px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.ailayer__pill--now    { background: var(--c-fire); color: #fff; }
.ailayer__pill--now::before { background: #fff; box-shadow: 0 0 10px #fff; }
.ailayer__pill--next   { background: var(--c-grass); color: #fff; }
.ailayer__pill--next::before { background: #fff; }
.ailayer__pill--future { background: rgba(255,255,255,0.12); color: #fff; border: 1px dashed rgba(255,255,255,0.4); }
.ailayer__pill--future::before { background: rgba(255,255,255,0.65); box-shadow: none; }

.ailayer h3 { position: relative; z-index: 1; }
.ailayer .divider { position: relative; z-index: 1; }

.ailayer__body {
  margin-top: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.42;
  flex: 1;
  position: relative;
  z-index: 1;
}
.ailayer__tag {
  align-self: flex-start;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   Slide 4 — KPI block modernization
   ========================================================= */
.kpi-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 32px 32px 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}
.kpi-card--accent {
  border-color: rgba(255,97,47,0.45);
  box-shadow: 0 24px 56px -28px rgba(255,97,47,0.35);
}
.kpi-card__label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative; z-index: 1;
}
.kpi-card__hint {
  margin-top: 14px;
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  position: relative; z-index: 1;
}
.kpi-card__hint b { color: #fff; }
.kpi-card .big {
  font-size: 132px; font-weight: 800;
  background: linear-gradient(180deg, #FF7A4F 0%, #FF4A12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.95; letter-spacing: -0.02em;
  margin-top: 4px;
  filter: drop-shadow(0 12px 24px rgba(255,97,47,0.18));
  position: relative; z-index: 1;
}
.kpi-card .big small {
  font-size: 56px;
  vertical-align: top;
  margin-left: 2px;
}

/* =========================================================
   Slide 5 — Modern process timeline
   ========================================================= */
.ptl {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 10px;
}

.ptl__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.ptl__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* TOP ROW — owner badge + stage number */
.ptl__row--top .ptl__cell { gap: 8px; }
.ptl__owner {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(0,171,120,0.12);
  border: 1px solid rgba(0,171,120,0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #3CE0A0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.ptl__owner--final {
  background: rgba(255,97,47,0.16);
  border-color: rgba(255,97,47,0.45);
  color: var(--c-fire);
  box-shadow: 0 6px 18px -6px rgba(255,97,47,0.4);
}
.ptl__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.45);
  font-feature-settings: "tnum" 1;
}

/* MIDDLE ROW — connecting track + nodes */
.ptl__row--track {
  position: relative;
  height: 56px;
}
.ptl__track-line {
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: linear-gradient(90deg,
    rgba(0,171,120,0.0)  0%,
    rgba(0,171,120,0.7)  4%,
    rgba(0,171,120,0.7)  72%,
    rgba(255,97,47,0.95) 100%);
  border-radius: 2px;
  z-index: 1;
}
.ptl__track-line::after {
  content: "";
  position: absolute;
  inset: -8px 0;
  background: linear-gradient(90deg,
    rgba(0,171,120,0)    0%,
    rgba(0,171,120,0.25) 50%,
    rgba(255,97,47,0.35) 100%);
  filter: blur(10px);
  z-index: -1;
}

.ptl__node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-deeper);
  border: 3px solid var(--c-grass);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(0,171,120,0.12), 0 4px 14px -4px rgba(0,171,120,0.45);
}
.ptl__node span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-grass);
}
.ptl__node--final {
  width: 36px;
  height: 36px;
  border-color: var(--c-fire);
  background: rgba(255,97,47,0.18);
  box-shadow:
    0 0 0 8px rgba(255,97,47,0.14),
    0 0 28px rgba(255,97,47,0.55),
    0 6px 18px -4px rgba(255,97,47,0.5);
}
.ptl__node--final span {
  width: 14px; height: 14px;
  background: var(--c-fire);
  box-shadow: 0 0 12px rgba(255,97,47,0.85);
}

/* BOTTOM ROW — stage name + descriptor */
.ptl__row--bottom .ptl__cell { gap: 4px; padding: 0 8px; }
.ptl__name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.ptl__name--final {
  background: linear-gradient(135deg, #FF7A4F, #FF4A12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ptl__desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.32;
  max-width: 220px;
}

/* =========================================================
   Slide 7 — Outro / P.S. (meta-note)
   ========================================================= */
/* Outro inherits the canonical ambient bg from base .slide — no override. */
.outro__pattern, .outro__vignette { display: none; }

.outro__center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 96px;
}

.outro__eyebrow {
  font-size: 14px;
  font-weight: 800;
  color: var(--c-fire);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  padding-bottom: 4px;
}

.outro__line {
  font-size: 38px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.outro__line em {
  font-style: normal;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #FF7A4F, #FF4A12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.outro__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}
.outro__logo {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 0 32px rgba(217,119,87,0.35));
}

/* Pipeline gate-strip pills */
.gate-strip {
  display: flex; justify-content: center; gap: 18px;
  margin-top: 6px;
  position: relative; z-index: 1;
}
.gate {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}
.gate--fire  { background: rgba(255,97,47,0.16); color: var(--c-fire); border: 1px solid rgba(255,97,47,0.45); }
.gate--grass { background: rgba(0,171,120,0.16); color: #3CE0A0; border: 1px solid rgba(0,171,120,0.45); }
.gate--neutral { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.gate__num {
  font-size: 18px; font-weight: 800;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: currentColor;
}
.gate__num::after {
  content: attr(data-n);
  color: var(--bg-deeper);
  font-weight: 900;
}
