@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,200;0,400;0,700;0,900;1,300&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,600;1,8..60,400&family=Fira+Code:wght@300;400;500&display=swap");

:root {
  --void: #f0f4fb;
  --deep: #e8eef8;
  --surface: #f8faff;
  --card: #ffffff;
  --card2: #f2f6fd;
  --border: #d0daf0;
  --border2: #a8bce0;
  --sky: #0284c7;
  --sky-dim: #e0f2fe;
  --teal: #0d9488;
  --teal-dim: #ccfbf1;
  --lime: #65a30d;
  --lime-dim: #ecfccb;
  --orange: #ea580c;
  --orange-dim: #fff7ed;
  --pink: #db2777;
  --pink-dim: #fce7f3;
  --slate: #475569;
  --text: #1e2a3a;
  --muted: #64748b;
  --faint: #e8eef8;
  --white: #1e2a3a;
  --onprem: #0284c7;
  --aws: #ea580c;
  --azure: #2563eb;
  --gcp: #65a30d;
  --oracle: #db2777;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--text);
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 244, 251, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tb-logo {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tb-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.tb-logo span {
  color: var(--sky);
}

.tb-breadcrumb {
  font-family: "Fira Code", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tb-breadcrumb .sep {
  color: var(--border2);
}
.tb-breadcrumb .current {
  color: var(--sky);
}

.tb-badges {
  display: flex;
  gap: 6px;
}
.tb-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Fira Code", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid;
}
.tb-badge.sky {
  color: var(--sky);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.07);
}
.tb-badge.teal {
  color: var(--teal);
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(13, 148, 136, 0.05);
}
.tb-badge.lime {
  color: var(--lime);
  border-color: rgba(163, 230, 53, 0.3);
  background: rgba(163, 230, 53, 0.07);
}

.hero {
  min-height: calc(100vh - 58px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--sky) 20%,
    var(--teal) 80%,
    transparent 100%
  );
  opacity: 0.25;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 15% 55%,
      rgba(2, 132, 199, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 70% at 85% 45%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 55%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 59px,
      rgba(0, 0, 0, 0.015) 60px
    );
  pointer-events: none;
}

.hero-left {
  padding: 72px 60px 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.h-eyebrow {
  font-family: "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: slideIn 0.6s 0.1s ease forwards;
}
.h-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 8px var(--sky);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0;
  animation: slideIn 0.7s 0.2s ease forwards;
}
.hero h1 .sky {
  color: var(--sky);
}
.hero h1 .teal {
  color: var(--teal);
}
.hero h1 .lime {
  color: var(--lime);
}

.hero-sub {
  font-family: "Source Serif 4", serif;
  font-size: 17px;
  color: #4a6080;
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 40px;
  font-style: italic;
  opacity: 0;
  animation: slideIn 0.7s 0.3s ease forwards;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 440px;
  opacity: 0;
  animation: slideIn 0.7s 0.4s ease forwards;
}

.h-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 3px solid;
}
.h-stat.sky {
  border-left-color: var(--sky);
}
.h-stat.teal {
  border-left-color: var(--teal);
}
.h-stat.lime {
  border-left-color: var(--lime);
}
.h-stat.orange {
  border-left-color: var(--orange);
}

.hs-num {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 3px;
}
.hs-num.sky {
  color: var(--sky);
}
.hs-num.teal {
  color: var(--teal);
}
.hs-num.lime {
  color: var(--lime);
}
.hs-num.orange {
  color: var(--orange);
}
.hs-lbl {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.hero-right {
  padding: 60px 48px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: slideIn 0.8s 0.5s ease forwards;
}

.cloud-map-title {
  font-family: "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  text-align: center;
}

.infra-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.infra-node {
  flex: 1;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.infra-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.infra-node.onprem::before {
  background: var(--onprem);
}
.infra-node.aws::before {
  background: var(--aws);
}
.infra-node.azure::before {
  background: var(--azure);
}
.infra-node.gcp::before {
  background: var(--gcp);
}
.infra-node.oracle::before {
  background: var(--oracle);
}
.infra-node.multi::before {
  background: linear-gradient(90deg, var(--sky), var(--teal), var(--lime));
}

.in-icon {
  font-size: 18px;
}
.in-name {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
}
.in-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.4;
}

.infra-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 40px;
  flex-shrink: 0;
}
.ia-line {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.ia-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  animation: flowRight 1.8s ease-in-out infinite;
}
.ia-line.sky {
  background: rgba(56, 189, 248, 0.2);
}
.ia-line.sky::after {
  background: var(--sky);
}
.ia-line.teal {
  background: rgba(45, 212, 191, 0.2);
}
.ia-line.teal::after {
  background: var(--teal);
  animation-delay: 0.6s;
}
.ia-line.lime {
  background: rgba(163, 230, 53, 0.2);
}
.ia-line.lime::after {
  background: var(--lime);
  animation-delay: 1.2s;
}
@keyframes flowRight {
  0% {
    left: -60%;
  }
  100% {
    left: 110%;
  }
}
.ia-head {
  font-size: 10px;
  color: var(--muted);
}
.ia-lbl {
  font-family: "Fira Code", monospace;
  font-size: 8px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

.migdb-centre {
  background: linear-gradient(135deg, var(--sky-dim), var(--teal-dim));
  border: 2px solid var(--sky);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  flex-shrink: 0;
  min-width: 100px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.15);
}
.mc-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.mc-name {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: var(--sky);
  letter-spacing: 1px;
}
.mc-sub {
  font-size: 9px;
  color: var(--teal);
  margin-top: 2px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
.section {
  padding: 88px 0;
}
.section-sm {
  padding: 56px 0;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 48px;
}

.sec-tag {
  font-family: "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-tag::before {
  content: "//";
  opacity: 0.4;
}
.sec-tag.sky {
  color: var(--sky);
}
.sec-tag.teal {
  color: var(--teal);
}
.sec-tag.lime {
  color: var(--lime);
}
.sec-tag.orange {
  color: var(--orange);
}
.sec-tag.pink {
  color: var(--pink);
}

.sec-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 18px;
}

.sec-body {
  font-size: 16px;
  color: #475569;
  max-width: 680px;
  line-height: 1.85;
}

.pull-quote {
  border-left: 3px solid var(--sky);
  padding: 22px 30px;
  background: var(--card);
  border-radius: 0 12px 12px 0;
  margin: 44px 0;
  font-family: "Source Serif 4", serif;
  font-size: 20px;
  font-style: italic;
  color: #4a6080;
  line-height: 1.6;
}
.pull-quote cite {
  display: block;
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 1px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.sc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.sc-card:hover {
  border-color: var(--border2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.sc-card::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.06;
}
.sc-card:nth-child(1)::after {
  background: var(--sky);
  width: 130px;
  height: 130px;
}
.sc-card:nth-child(2)::after {
  background: var(--orange);
  width: 130px;
  height: 130px;
}
.sc-card:nth-child(3)::after {
  background: var(--teal);
  width: 130px;
  height: 130px;
}
.sc-card:nth-child(4)::after {
  background: var(--lime);
  width: 130px;
  height: 130px;
}
.sc-card:nth-child(5)::after {
  background: var(--pink);
  width: 130px;
  height: 130px;
}
.sc-card:nth-child(6)::after {
  background: var(--azure);
  width: 130px;
  height: 130px;
}

.sc-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.sc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid;
}
.sc-icon-wrap.sky {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
}
.sc-icon-wrap.orange {
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.3);
}
.sc-icon-wrap.teal {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.3);
}
.sc-icon-wrap.lime {
  background: rgba(163, 230, 53, 0.1);
  border-color: rgba(163, 230, 53, 0.3);
}
.sc-icon-wrap.pink {
  background: rgba(244, 114, 182, 0.1);
  border-color: rgba(244, 114, 182, 0.3);
}
.sc-icon-wrap.azure {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.sc-scenario-num {
  font-family: "Fira Code", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.sc-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  line-height: 1.2;
}

.sc-body {
  font-size: 13px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 18px;
}

.sc-arch {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  font-family: "Fira Code", monospace;
  font-size: 11px;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sc-arch .node {
  padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid;
  font-size: 10px;
}
.sc-arch .node.on {
  color: var(--sky);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.07);
}
.sc-arch .node.aws {
  color: var(--orange);
  border-color: rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.07);
}
.sc-arch .node.az {
  color: var(--azure);
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.07);
}
.sc-arch .node.gcp {
  color: var(--lime);
  border-color: rgba(163, 230, 53, 0.3);
  background: rgba(163, 230, 53, 0.07);
}
.sc-arch .node.orc {
  color: var(--pink);
  border-color: rgba(244, 114, 182, 0.3);
  background: rgba(244, 114, 182, 0.07);
}
.sc-arch .arr {
  color: var(--muted);
  font-size: 12px;
}
.sc-arch .cdc {
  color: var(--teal);
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(13, 148, 136, 0.05);
  border: 1px solid;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 10px;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.sc-tag {
  font-family: "Fira Code", monospace;
  font-size: 10px;
  padding: 2px 9px;
  border-radius: 20px;
  border: 1px solid;
}
.sc-tag.sky {
  color: var(--sky);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.06);
}
.sc-tag.teal {
  color: var(--teal);
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(45, 212, 191, 0.06);
}
.sc-tag.lime {
  color: var(--lime);
  border-color: rgba(163, 230, 53, 0.3);
  background: rgba(163, 230, 53, 0.06);
}
.sc-tag.orange {
  color: var(--orange);
  border-color: rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.06);
}
.sc-tag.pink {
  color: var(--pink);
  border-color: rgba(244, 114, 182, 0.3);
  background: rgba(244, 114, 182, 0.06);
}
.sc-tag.azure {
  color: var(--azure);
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.06);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.provider-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.provider-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}
.provider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.provider-card:nth-child(1)::before {
  background: var(--onprem);
}
.provider-card:nth-child(2)::before {
  background: var(--aws);
}
.provider-card:nth-child(3)::before {
  background: var(--azure);
}
.provider-card:nth-child(4)::before {
  background: var(--gcp);
}
.provider-card:nth-child(5)::before {
  background: var(--oracle);
}

.pc-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.pc-name {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
}
.pc-subs {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.pc-badge {
  display: inline-block;
  margin-top: 10px;
  font-family: "Fira Code", monospace;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid;
}
.provider-card:nth-child(1) .pc-badge {
  color: var(--onprem);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.06);
}
.provider-card:nth-child(2) .pc-badge {
  color: var(--aws);
  border-color: rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.06);
}
.provider-card:nth-child(3) .pc-badge {
  color: var(--azure);
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.06);
}
.provider-card:nth-child(4) .pc-badge {
  color: var(--gcp);
  border-color: rgba(163, 230, 53, 0.3);
  background: rgba(163, 230, 53, 0.06);
}
.provider-card:nth-child(5) .pc-badge {
  color: var(--oracle);
  border-color: rgba(244, 114, 182, 0.3);
  background: rgba(244, 114, 182, 0.06);
}

.migration-map {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-top: 48px;
  overflow-x: auto;
}
.mm-title {
  font-family: "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}

.mm-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: 880px;
  margin-bottom: 14px;
}

.mm-node {
  border-radius: 12px;
  padding: 14px 14px;
  text-align: center;
  min-width: 108px;
  max-width: 128px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}
.mm-node.on {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.07);
}
.mm-node.aws {
  border-color: rgba(251, 146, 60, 0.4);
  background: rgba(251, 146, 60, 0.07);
}
.mm-node.az {
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(96, 165, 250, 0.07);
}
.mm-node.gcp {
  border-color: rgba(163, 230, 53, 0.4);
  background: rgba(163, 230, 53, 0.07);
}
.mm-node.orc {
  border-color: rgba(244, 114, 182, 0.4);
  background: rgba(244, 114, 182, 0.07);
}
.mm-node.cdc {
  border-color: rgba(45, 212, 191, 0.5);
  background: rgba(45, 212, 191, 0.1);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.1);
}
.mm-node.sky-n {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.1);
}

.mm-icon {
  font-size: 20px;
  margin-bottom: 6px;
}
.mm-name {
  font-family: "Fira Code", monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--text);
}
.mm-desc {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

.mm-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  gap: 2px;
}
.mm-line {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.mm-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  animation: flowRight 2s ease-in-out infinite;
}
.mm-line.sky {
  background: rgba(56, 189, 248, 0.2);
}
.mm-line.sky::after {
  background: var(--sky);
}
.mm-line.teal {
  background: rgba(45, 212, 191, 0.2);
}
.mm-line.teal::after {
  background: var(--teal);
  animation-delay: 0.5s;
}
.mm-line.lime {
  background: rgba(163, 230, 53, 0.2);
}
.mm-line.lime::after {
  background: var(--lime);
  animation-delay: 1s;
}
.mm-line.orange {
  background: rgba(251, 146, 60, 0.2);
}
.mm-line.orange::after {
  background: var(--orange);
  animation-delay: 1.5s;
}
.mm-arr-head {
  font-size: 11px;
  color: var(--muted);
}
.mm-arr-lbl {
  font-family: "Fira Code", monospace;
  font-size: 8px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

.mm-fanout {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s;
}
.benefit-card:hover {
  border-color: var(--border2);
}
.bc-num {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.bc-num.sky {
  color: var(--sky);
}
.bc-num.teal {
  color: var(--teal);
}
.bc-num.lime {
  color: var(--lime);
}
.bc-num.orange {
  color: var(--orange);
}
.bc-num.pink {
  color: var(--pink);
}
.bc-num.azure {
  color: var(--azure);
}
.bc-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}
.bc-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  font-size: 14px;
}
.cmp-table th {
  background: var(--faint);
  color: var(--muted);
  padding: 13px 18px;
  text-align: left;
  font-family: "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
}
.cmp-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
  color: #3a5070;
}
.cmp-table tr:hover td {
  background: var(--card);
}
.cmp-table .col-m {
  font-weight: 600;
  color: var(--text);
}
.cmp-table .col-b {
  color: var(--orange);
}
.cmp-table .col-g {
  color: var(--teal);
  font-weight: 500;
}
.cmp-table .col-n {
  color: var(--sky);
  font-style: italic;
}

.checklist {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.checklist li::before {
  content: "▸";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.metrics-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.mb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mb-item {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.mb-item:last-child {
  border-right: none;
}
.mb-num {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}
.mb-lbl {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.closing {
  margin: 0 48px 88px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 15% 50%,
      rgba(56, 189, 248, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 70% at 85% 50%,
      rgba(45, 212, 191, 0.06) 0%,
      transparent 55%
    ),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 49px,
      rgba(0, 0, 0, 0.015) 50px
    );
  pointer-events: none;
}
.closing h2 {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  line-height: 1.1;
}
.closing h2 em {
  font-style: italic;
  color: var(--sky);
}
.closing p {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.85;
  position: relative;
  font-family: "Source Serif 4", serif;
  font-style: italic;
}

.closing-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}
.cc {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid;
  font-family: "Fira Code", monospace;
  font-size: 11px;
}
.cc.sky {
  color: var(--sky);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.07);
}
.cc.teal {
  color: var(--teal);
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(13, 148, 136, 0.05);
}
.cc.lime {
  color: var(--lime);
  border-color: rgba(163, 230, 53, 0.3);
  background: rgba(163, 230, 53, 0.07);
}
.cc.orange {
  color: var(--orange);
  border-color: rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.07);
}
.cc.pink {
  color: var(--pink);
  border-color: rgba(244, 114, 182, 0.3);
  background: rgba(244, 114, 182, 0.07);
}
.cc.azure {
  color: var(--azure);
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.07);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 56px 40px 48px;
  }
  .scenario-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .provider-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mb-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }
  .container {
    padding: 0 24px;
  }
  .closing {
    padding: 40px 24px;
    margin: 0 16px 48px;
  }
  .checklist {
    grid-template-columns: 1fr;
  }
  .migration-map {
    padding: 28px 20px;
  }
}

@media (max-width: 640px) {
  /* Topbar */
  .topbar {
    padding: 0 16px;
    height: auto;
    min-height: 58px;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .tb-breadcrumb {
    font-size: 10px;
    display: none;
  }
  .tb-badges {
    flex-wrap: wrap;
    gap: 5px;
  }
  .tb-badge {
    font-size: 8px;
    padding: 3px 7px;
  }
  .tb-logo {
    font-size: 15px;
  }
  .tb-logo-mark {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 40px 20px 36px;
  }
  .hero::after {
    display: none;
  }
  .h-eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(28px, 9vw, 44px);
    letter-spacing: -0.5px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .hero-stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .h-stat {
    padding: 12px 14px;
  }
  .hs-num {
    font-size: 20px;
  }
  .hs-lbl {
    font-size: 10px;
  }

  .container {
    padding: 0 16px;
  }
  .section {
    padding: 48px 0;
  }
  .section-sm {
    padding: 36px 0;
  }
  .divider {
    margin: 0 16px;
  }

  .sec-title {
    font-size: clamp(22px, 6vw, 36px);
    letter-spacing: -0.5px;
  }
  .sec-body {
    font-size: 14px;
  }
  .sec-tag {
    font-size: 9px;
  }

  .pull-quote {
    padding: 16px 18px;
    font-size: 16px;
    margin: 28px 0;
  }

  .provider-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .provider-card {
    padding: 16px 12px;
  }
  .pc-icon {
    font-size: 24px;
  }
  .pc-name {
    font-size: 12px;
  }
  .pc-subs {
    font-size: 10px;
  }

  .migration-map {
    padding: 20px 14px;
    overflow-x: auto;
  }
  .mm-row {
    min-width: 700px;
  }
  .mm-node {
    min-width: 90px;
    max-width: 110px;
    padding: 10px;
  }
  .mm-icon {
    font-size: 16px;
  }
  .mm-name {
    font-size: 9px;
  }
  .mm-desc {
    font-size: 9px;
  }
  .mm-arrow {
    width: 32px;
  }
  .mm-arr-lbl {
    font-size: 7px;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  .sc-card {
    padding: 22px;
  }
  .sc-header {
    gap: 12px;
    margin-bottom: 14px;
  }
  .sc-icon-wrap {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .sc-title {
    font-size: 16px;
  }
  .sc-body {
    font-size: 12px;
  }
  .sc-arch {
    font-size: 10px;
    flex-wrap: wrap;
    gap: 4px;
  }
  .sc-arch .node,
  .sc-arch .cdc {
    font-size: 9px;
    padding: 2px 7px;
  }

  .metrics-bar {
    padding: 32px 0;
  }
  .mb-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .mb-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 16px;
  }
  .mb-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .mb-item:last-child,
  .mb-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .mb-num {
    font-size: 32px;
  }
  .mb-lbl {
    font-size: 12px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .benefit-card {
    padding: 20px;
  }
  .bc-num {
    font-size: 32px;
  }
  .bc-title {
    font-size: 14px;
  }
  .bc-body {
    font-size: 12px;
  }

  .checklist {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }
  .checklist li {
    font-size: 13px;
  }

  .cmp-table {
    display: block;
    overflow-x: auto;
    font-size: 12px;
  }
  .cmp-table th,
  .cmp-table td {
    padding: 10px 12px;
    white-space: nowrap;
  }

  .closing {
    padding: 32px 18px;
    margin: 0 12px 48px;
    border-radius: 16px;
  }
  .closing h2 {
    font-size: 26px;
    letter-spacing: -0.5px;
  }
  .closing p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .closing-chips {
    gap: 8px;
  }
  .cc {
    font-size: 10px;
    padding: 6px 12px;
  }

  footer {
    padding: 20px 16px;
    font-size: 10px;
    line-height: 2.2;
  }
  footer a {
    display: inline-block;
    margin: 2px 0;
  }
}
