/* ============================================================
   AWS CONNECT — Stella visit deck (29 Jun 2026)
   ============================================================ */

/* Phase row — Done / Live / Next */
.phase-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 32px;
}
.phase-tile {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(26,25,21,0.08);
  border-radius: 8px;
  padding: 24px 22px;
}
.dark .phase-tile {
  background: rgba(245,243,238,0.06);
  border: 1px solid rgba(245,243,238,0.10);
}
.dark .phase-tile.done {
  background: rgba(122,152,136,0.16);
  border-color: rgba(122,152,136,0.40);
}
.dark .phase-tile.live {
  background: rgba(224,182,110,0.14);
  border-color: rgba(224,182,110,0.40);
}
.phase-tile.done {
  background: rgba(122,152,136,0.18);
  border-color: rgba(61,93,74,0.30);
}
.phase-tile.live {
  background: rgba(224,182,110,0.18);
  border-color: rgba(201,154,74,0.40);
}
.ph-num {
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--ibp-ink-mut);
  font-weight: 700;
  margin-bottom: 12px;
}
.dark .ph-num { color: rgba(245,243,238,0.55); }
.ph-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ibp-ink);
  margin-bottom: 6px;
}
.dark .ph-name { color: var(--ibp-cream); }
.ph-detail {
  font-size: 13px;
  color: var(--ibp-ink-mut);
  line-height: 1.45;
  margin-bottom: 14px;
}
.dark .ph-detail { color: rgba(245,243,238,0.65); }
.ph-status {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ibp-forest);
}
.phase-tile.live .ph-status { color: #B57D27; }
.phase-tile.next .ph-status { color: var(--ibp-ink-mut); }
.dark .phase-tile.live .ph-status { color: #E0B66E; }
.dark .phase-tile.next .ph-status { color: rgba(245,243,238,0.55); }
.ph-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.phase-tile.live .ph-dot {
  background: #E0B66E;
  box-shadow: 0 0 0 3px rgba(224,182,110,0.18);
  animation: livePulse 2200ms ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(224,182,110,0.20); }
  50%      { box-shadow: 0 0 0 6px rgba(224,182,110,0.05); }
}
.phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(26,25,21,0.30);
  font-weight: 600;
}
.dark .phase-arrow { color: rgba(245,243,238,0.30); }

/* Architecture flow — legacy → connect + salesforce */
.arch-flow {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 28px 1.4fr;
  gap: 16px;
  align-items: stretch;
}
.arch-col {
  background: rgba(245,243,238,0.06);
  border: 1px solid rgba(245,243,238,0.10);
  border-radius: 8px;
  padding: 22px 22px;
}
.arch-col.legacy {
  background: rgba(245,243,238,0.04);
  opacity: 0.7;
}
.arch-col.new {
  background: rgba(122,152,136,0.12);
  border-color: rgba(122,152,136,0.35);
}
.arch-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245,243,238,0.55);
  margin-bottom: 12px;
}
.arch-col.new .arch-eyebrow { color: var(--ibp-sage); }
.arch-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ibp-cream);
  margin-bottom: 14px;
}
.arch-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.arch-points li {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(245,243,238,0.75);
  padding-left: 16px;
  position: relative;
}
.arch-points li::before {
  content: '·';
  position: absolute; left: 4px; top: -2px;
  color: var(--ibp-sage);
  font-weight: 700;
  font-size: 18px;
}
.arch-col.legacy .arch-points li::before { color: rgba(245,243,238,0.40); }
.arch-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--ibp-sage);
  font-weight: 700;
}

/* The ask block */
.ask-block {
  margin-top: 32px;
  background: var(--ibp-forest);
  border-radius: 8px;
  padding: 28px 32px;
  color: var(--ibp-cream);
}
.ask-eyebrow {
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(245,243,238,0.55);
  margin-bottom: 10px;
}
.ask-line {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ibp-cream);
  margin-bottom: 14px;
}
.ask-line strong { color: var(--ibp-sage); font-weight: 700; }
.ask-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.ask-points li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,243,238,0.85);
  padding-left: 22px;
  position: relative;
}
.ask-points li::before {
  content: '→';
  position: absolute;
  left: 0; top: 0;
  color: var(--ibp-sage);
  font-weight: 700;
}

/* Live-link bar */
.live-link-bar {
  margin-top: 22px;
  padding: 16px 22px;
  background: rgba(122,152,136,0.10);
  border: 1px dashed rgba(122,152,136,0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.live-link-bar .ll-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ibp-forest);
}
.dark .live-link-bar .ll-label { color: var(--ibp-sage); }
.live-link-bar .ll-url {
  font-size: 14px;
  font-weight: 600;
  color: var(--ibp-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ibp-forest);
  padding-bottom: 1px;
  transition: color 200ms;
}
.dark .live-link-bar .ll-url {
  color: var(--ibp-cream);
  border-bottom-color: var(--ibp-sage);
}
.live-link-bar .ll-url:hover { color: var(--ibp-forest); }
.dark .live-link-bar .ll-url:hover { color: var(--ibp-sage); }

/* CONTEXT/APPROACH/OUTCOMES three-col block */
.cao-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cao-col {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(26,25,21,0.08);
  border-radius: 8px;
  padding: 22px 22px;
}
.dark .cao-col {
  background: rgba(245,243,238,0.06);
  border-color: rgba(245,243,238,0.10);
}
.cao-eyebrow {
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ibp-forest);
  margin-bottom: 12px;
}
.dark .cao-eyebrow { color: var(--ibp-sage); }
.cao-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ibp-ink);
}
.dark .cao-text { color: rgba(245,243,238,0.78); }

@media (max-width: 980px) {
  .phase-row { grid-template-columns: 1fr; }
  .phase-arrow { transform: rotate(90deg); margin: 0 auto; }
  .arch-flow { grid-template-columns: 1fr; }
  .arch-arrow { transform: rotate(90deg); margin: 0 auto; }
  .cao-grid { grid-template-columns: 1fr; }
}
