@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #050a12;
  --bg-elevated: #0c1524;
  --navy: #101c30;
  --navy-light: #162640;
  --orange: #f26522;
  --orange-dim: rgba(242, 101, 34, 0.14);
  --sky: #3db5e6;
  --sky-dim: rgba(61, 181, 230, 0.12);
  --white: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.18);
  --slide-w: min(1080px, 94vw);
  --slide-h: min(608px, 82vh);
  --radius: 18px;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--white);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% -10%, rgba(242, 101, 34, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 110%, rgba(61, 181, 230, 0.1), transparent 50%),
    linear-gradient(180deg, #050a12 0%, #0a1220 100%);
  pointer-events: none;
  z-index: 0;
}

.deck {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 4.5rem;
}

.slide {
  display: none;
  position: relative;
  width: var(--slide-w);
  min-height: var(--slide-h);
  background: linear-gradient(155deg, var(--navy-light) 0%, var(--bg-elevated) 42%, var(--navy) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem 2.25rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ff8c42 45%, var(--sky));
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black, transparent);
  pointer-events: none;
}

.slide.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide img {
  width: auto;
  max-width: min(260px, 60vw);
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slide-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.slide-header img {
  height: 30px;
  width: auto;
  opacity: 0.95;
}

.slide-num {
  position: absolute;
  top: 1.35rem;
  right: 1.75rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.slide-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
}

h1,
h2 {
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.45rem);
  line-height: 1.08;
  margin-bottom: 0.65rem;
}

h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.subtitle {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
  max-width: 44rem;
}

.lead {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 1rem;
}

.grid-2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  flex: 1;
}

.grid-3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.grid-4 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: rgba(242, 101, 34, 0.35);
}

.card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.45rem;
}

.card p,
.card li {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--white);
}

.card ul {
  list-style: none;
}

.card li {
  padding: 0.15rem 0;
}

.card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--sky);
  vertical-align: middle;
}

.stat {
  text-align: center;
  padding: 1rem 0.65rem;
}

.stat .num {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}

.stat .lbl {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.35;
}

.flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0.85rem 0;
}

.flow-node {
  background: var(--sky-dim);
  border: 1px solid rgba(61, 181, 230, 0.35);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  min-width: 5.75rem;
  line-height: 1.35;
}

.flow-node small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}

.flow-node.orange {
  background: var(--orange-dim);
  border-color: rgba(242, 101, 34, 0.45);
}

.flow-arrow {
  color: var(--sky);
  font-size: 0.95rem;
  font-weight: 700;
}

.pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0;
}

.pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--white);
}

.pill.orange {
  background: var(--orange-dim);
  border-color: rgba(242, 101, 34, 0.45);
  color: #ffb088;
}

.pill.sky {
  background: var(--sky-dim);
  border-color: rgba(61, 181, 230, 0.4);
  color: #7dd3fc;
}

.footer-note {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.footer-note a,
a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 500;
}

.footer-note a:hover,
a:hover {
  text-decoration: underline;
}

.title-slide {
  justify-content: center;
  padding-left: 2.75rem;
}

.title-slide::before {
  height: 100%;
  width: 5px;
  right: auto;
  background: linear-gradient(180deg, var(--orange), var(--sky));
}

.title-slide img {
  position: relative;
  z-index: 1;
  height: 48px;
  width: auto;
  max-width: min(280px, 65vw);
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.title-slide h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  max-width: 16ch;
}

.progress {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  transition: width 0.3s ease;
}

.controls {
  position: fixed;
  bottom: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(12, 21, 36, 0.94);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.controls button {
  background: linear-gradient(135deg, var(--orange), #e8551a);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.controls button:hover:not(:disabled) {
  opacity: 0.9;
}

.controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

.controls a {
  font-weight: 600;
  white-space: nowrap;
}

.co-brand {
  position: fixed;
  bottom: 1.35rem;
  right: 1.25rem;
  z-index: 20;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.85;
}

/* ── Infographics ── */

.infographic {
  position: relative;
  z-index: 1;
  width: 100%;
}

.icon-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.85rem 0.5rem !important;
}

.icon-stat .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  font-size: 1.1rem;
  background: var(--orange-dim);
  border: 1px solid rgba(242, 101, 34, 0.35);
  margin-bottom: 0.15rem;
}

.icon-stat .icon.sky {
  background: var(--sky-dim);
  border-color: rgba(61, 181, 230, 0.35);
}

.agenda-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 0.65rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.agenda-step {
  flex: 1;
  padding: 0.65rem 0.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid var(--border);
  position: relative;
}

.agenda-step:last-child {
  border-right: none;
}

.agenda-step .step-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.agenda-step .step-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.agenda-step.active-step {
  background: var(--orange-dim);
}

.hub-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
}

.hub-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  width: 100%;
}

.hub-node {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1.3;
  border: 1px solid rgba(61, 181, 230, 0.35);
  background: var(--sky-dim);
}

.hub-node.orange {
  border-color: rgba(242, 101, 34, 0.45);
  background: var(--orange-dim);
}

.hub-center {
  padding: 0.65rem 1.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #c44e12);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 28px rgba(242, 101, 34, 0.3);
}

.hub-center span {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.1rem;
}

.hub-connector {
  color: var(--muted);
  font-size: 0.75rem;
  opacity: 0.55;
}

.deploy-section {
  width: 100%;
  margin: 0.35rem 0 0.45rem;
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(242, 101, 34, 0.28);
  background: rgba(242, 101, 34, 0.06);
}

.infographic-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.45rem;
}

.deploy-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0;
}

.deploy-arch-stack {
  width: 100%;
  margin: 0.35rem 0 0.25rem;
}

.deploy-arch-view {
  margin: 0;
}

.deploy-arch-view[hidden] {
  display: none !important;
}

.deploy-arch-caption {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0 0 0.45rem;
  min-height: 2.1rem;
  transition: opacity 0.2s ease;
}

.arch-enclave {
  width: 100%;
  padding: 0.55rem 0.65rem 0.65rem;
  border-radius: 10px;
  border: 1px dashed rgba(242, 101, 34, 0.45);
  background: rgba(242, 101, 34, 0.05);
}

.arch-enclave-label,
.arch-zone-label {
  display: block;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.45rem;
}

.arch-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0.45rem;
}

.hub-node.sky {
  border-color: rgba(61, 181, 230, 0.55);
  background: rgba(61, 181, 230, 0.18);
}

.serverless-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  width: 100%;
}

.serverless-project {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.4rem 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.project-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.project-pill.o11y {
  background: linear-gradient(135deg, var(--sky), #2a8fc4);
  box-shadow: 0 0 18px rgba(61, 181, 230, 0.25);
}

.project-pill.security {
  background: linear-gradient(135deg, var(--orange), #c44e12);
  box-shadow: 0 0 18px rgba(242, 101, 34, 0.25);
}

.project-pill.search {
  background: linear-gradient(135deg, #7c6cf0, #5a4fd1);
  box-shadow: 0 0 18px rgba(124, 108, 240, 0.22);
}

.project-id {
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.project-capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
}

.project-capabilities .hub-node {
  font-size: 0.54rem;
  padding: 0.28rem 0.4rem;
}

.arch-footnote {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.ccs-bridge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.35rem;
}

.ccs-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 181, 230, 0.55), transparent);
}

.ccs-label {
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
  white-space: nowrap;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 181, 230, 0.35);
  background: var(--sky-dim);
}

.deploy-option {
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.deploy-option:hover {
  border-color: rgba(242, 101, 34, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.deploy-option:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

.deploy-option.highlight {
  border-color: rgba(242, 101, 34, 0.5);
  background: var(--orange-dim);
}

.deploy-option.highlight:hover {
  border-color: rgba(242, 101, 34, 0.65);
}

.deploy-option .deploy-icon {
  font-size: 1.15rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.deploy-option .deploy-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
}

.deploy-option .deploy-detail {
  font-size: 0.58rem;
  color: var(--muted);
  margin-top: 0.15rem;
  line-height: 1.3;
}

.zone-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.zone {
  text-align: center;
  padding: 0.65rem 0.4rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.zone .zone-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.zone-badge {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(242, 101, 34, 0.35);
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
  margin-bottom: 0.35rem;
}

.slide-caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin: -0.35rem 0 0.65rem;
  line-height: 1.4;
  max-width: 42rem;
}

.zone .zone-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
}

.zone .zone-detail {
  font-size: 0.58rem;
  color: var(--muted);
  margin-top: 0.15rem;
  line-height: 1.3;
}

.zone.highlight {
  border-color: rgba(242, 101, 34, 0.5);
  background: var(--orange-dim);
}

.track-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  position: relative;
}

.track-item {
  position: relative;
  padding: 0.75rem 0.65rem 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.track-item .track-num {
  position: absolute;
  top: -0.55rem;
  left: 0.65rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e8551a);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(242, 101, 34, 0.35);
}

.track-item h3 {
  margin-top: 0.35rem;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.track-item p {
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted);
}

.waterfall {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.5rem 0 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
}

.waterfall-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  align-items: center;
  gap: 0.5rem;
}

.waterfall-label {
  flex: 0 0 6.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}

.waterfall-bar {
  height: 1.25rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 0.45rem;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  min-width: 2rem;
}

.waterfall-bar.orange {
  background: linear-gradient(90deg, var(--orange), rgba(242, 101, 34, 0.5));
}

.waterfall-bar.sky {
  background: linear-gradient(90deg, var(--sky), rgba(61, 181, 230, 0.4));
}

.waterfall-bar.navy {
  background: linear-gradient(90deg, #2a5080, rgba(42, 80, 128, 0.4));
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.5rem 0 0.65rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
}

.bar-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.5rem;
}

.bar-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}

.bar-track {
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--sky));
}

.bar-value {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--orange);
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.roadmap-lane {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.roadmap-lane-header {
  padding: 0.45rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roadmap-lane-header.shipped {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
}

.roadmap-lane-header.flight {
  background: var(--sky-dim);
  color: var(--sky);
  border-bottom: 1px solid rgba(61, 181, 230, 0.25);
}

.roadmap-items {
  padding: 0.5rem 0.75rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--white);
}

.roadmap-dot {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  margin-top: 0.3rem;
}

.roadmap-dot.green {
  background: #4ade80;
}

.roadmap-dot.sky {
  background: var(--sky);
}

.k8s-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0;
  padding: 0.55rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px dashed var(--border);
}

.k8s-step {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
}

.split-infographic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  flex: 1;
}

@media (max-width: 720px) {
  .zone-map,
  .deploy-options,
  .serverless-projects {
    grid-template-columns: 1fr;
  }

  .split-infographic,
  .roadmap-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .slide {
    padding: 1.35rem 1.25rem;
    min-height: auto;
  }

  .title-slide {
    padding-left: 1.35rem;
  }

  .co-brand {
    display: none;
  }
}

@media print {
  body {
    overflow: visible;
  }

  body::before {
    display: none;
  }

  .slide {
    display: flex !important;
    break-after: page;
    min-height: auto;
    box-shadow: none;
  }

  .controls,
  .progress,
  .co-brand {
    display: none;
  }
}
