@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=IBM+Plex+Sans:wght@200;300;400;500;600&family=IBM+Plex+Mono:wght@300;400;500&display=swap");

:root {
  --bg: #fff;
  --surface: #181408 !important;
  --card: #1e1a0d !important;
  --card2: #231e10 !important;
  --border: #2e2810 !important;
  --border2: #3d3518 !important;
  --amber: #f59e0b !important;
  --amber-dim: #3d2800 !important;
  --amber-lite: #fef3c7 !important;
  --teal: #14b8a6 !important;
  --teal-dim: #042e2a !important;
  --teal-lite: #ccfbf1 !important;
  --coral: #f97316 !important;
  --coral-dim: #3a1000 !important;
  --violet: #8b5cf6 !important;
  --violet-dim: #1e0a3a !important;
  --green: #22c55e !important;
  --green-dim: #052212 !important;
  --text: #f5f0e0 !important;
  --muted: #7a7055 !important;
  --faint: #2a2415 !important;
  --gold: #d97706 !important;
  --white: #fffdf5 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  overflow-x: hidden !important;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 10% 50%,
      rgba(245, 158, 11, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 80% at 90% 50%,
      rgba(20, 184, 166, 0.07) 0%,
      transparent 55%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.012) 80px
    );
  pointer-events: none;
}

.hero-left {
  padding: 80px 56px 80px 56px;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: upIn 0.6s 0.1s ease forwards;
}
.hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -1.5px;
  /* color: var(--white); margin-bottom: 20px;*/
  color: #0a0f1e;
  margin-bottom: 20px;
  opacity: 0;
  animation: upIn 0.7s 0.2s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero h1 .t {
  color: var(--teal);
}

.hero-deck {
  font-size: 17px;
  color: #a09070;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: upIn 0.7s 0.3s ease forwards;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  animation: upIn 0.7s 0.4s ease forwards;
}
.hero-chip {
  padding: 6px 14px;
  border-radius: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-chip.a {
  color: var(--amber);
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.07);
}
.hero-chip.t {
  color: var(--teal);
  border-color: rgba(20, 184, 166, 0.35);
  background: rgba(20, 184, 166, 0.07);
}
.hero-chip.c {
  color: var(--coral);
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.07);
}
.hero-chip.v {
  color: var(--violet);
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.07);
}
.hero-chip.g {
  color: var(--green);
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.07);
}

.hero-right {
  height: 100%;
  min-height: 88vh;
  position: relative;
  z-index: 2;
  padding: 60px 40px 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: upIn 0.8s 0.5s ease forwards;
}

.mini-chart {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}

.mc-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-value {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
}
.mc-sub {
  font-size: 11px;
  color: var(--muted);
}

.bar-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin-top: 12px;
}
.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  animation: growBar 1.2s ease forwards;
  transform-origin: bottom;
}
.bar.b1 {
  background: var(--amber);
  opacity: 0.6;
  height: 30%;
  animation-delay: 0.1s;
}
.bar.b2 {
  background: var(--amber);
  opacity: 0.7;
  height: 50%;
  animation-delay: 0.15s;
}
.bar.b3 {
  background: var(--amber);
  opacity: 0.8;
  height: 40%;
  animation-delay: 0.2s;
}
.bar.b4 {
  background: var(--amber);
  opacity: 0.9;
  height: 70%;
  animation-delay: 0.25s;
}
.bar.b5 {
  background: var(--amber);
  height: 60%;
  animation-delay: 0.3s;
}
.bar.b6 {
  background: var(--amber);
  height: 85%;
  animation-delay: 0.35s;
}
.bar.b7 {
  background: var(--amber);
  height: 100%;
  animation-delay: 0.4s;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.bar.t1 {
  background: var(--teal);
  opacity: 0.5;
  height: 20%;
}
.bar.t2 {
  background: var(--teal);
  opacity: 0.6;
  height: 35%;
}
.bar.t3 {
  background: var(--teal);
  opacity: 0.7;
  height: 55%;
}
.bar.t4 {
  background: var(--teal);
  opacity: 0.8;
  height: 70%;
}
.bar.t5 {
  background: var(--teal);
  opacity: 0.9;
  height: 80%;
}
.bar.t6 {
  background: var(--teal);
  height: 90%;
}
.bar.t7 {
  background: var(--teal);
  height: 100%;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.4);
}

@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.lag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.lag-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--faint);
  overflow: hidden;
}
.lag-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  animation: lagGrow 2s ease forwards;
}
.lag-fill.s {
  width: 8%;
}
.lag-fill.m {
  width: 45%;
}
.lag-fill.h {
  width: 88%;
}
@keyframes lagGrow {
  from {
    width: 0;
  }
}

.lag-val {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  min-width: 60px;
  text-align: right;
}
.lag-val.good {
  color: var(--green);
}
.lag-val.warn {
  color: var(--amber);
}
.lag-val.bad {
  color: var(--coral);
}

.status-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse2 2s infinite;
}
.status-dot.live {
  background: var(--green);
  animation-delay: 0s;
}
.status-dot.sync {
  background: var(--amber);
  animation-delay: 0.5s;
}
.status-dot.idle {
  background: var(--muted);
  animation: none;
}
@keyframes pulse2 {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 4px currentColor;
  }
  50% {
    opacity: 0.4;
    box-shadow: none;
  }
}
.status-lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: var(--muted);
}

@keyframes upIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}
.section {
  padding: 84px 0;
}
.section-sm {
  padding: 56px 0;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 48px;
}

.section-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}
.section-tag.teal {
  color: var(--teal);
}
.section-tag.teal::before {
  background: var(--teal);
}
.section-tag.coral {
  color: var(--coral);
}
.section-tag.coral::before {
  background: var(--coral);
}
.section-tag.violet {
  color: var(--violet);
}
.section-tag.violet::before {
  background: var(--violet);
}
.section-tag.green {
  color: var(--green);
}
.section-tag.green::before {
  background: var(--green);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -1px;
  /* color: var(--white); margin-bottom: 20px; */
  color: #0a0f1e;
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: #8a8060;
  max-width: 680px;
  line-height: 1.85;
}

.pull-quote {
  border-left: 3px solid var(--amber);
  padding: 22px 30px;
  background: var(--card);
  border-radius: 0 12px 12px 0;
  margin: 44px 0;
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-style: italic;
  color: #d0c8a0;
  line-height: 1.6;
}
.pull-quote cite {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.pipeline-diagram {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-top: 48px;
  overflow-x: auto;
}
.pd-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}

.pd-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: 900px;
}

.pd-node {
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  min-width: 100px;
  max-width: 120px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--card2);
  position: relative;
}
.pd-node.oltp {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.07);
}
.pd-node.cdc {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.07);
}
.pd-node.stream {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.07);
}
.pd-node.stage {
  border-color: rgba(20, 184, 166, 0.35);
  background: rgba(20, 184, 166, 0.07);
}
.pd-node.dw {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.12);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.1);
}
.pd-node.lake {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.07);
}
.pd-node.bi {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.pd-icon {
  font-size: 22px;
  margin-bottom: 7px;
}
.pd-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--text);
}
.pd-desc {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

.pd-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  gap: 2px;
}
.pd-line {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.pd-line.a {
  background: rgba(245, 158, 11, 0.3);
}
.pd-line.t {
  background: rgba(20, 184, 166, 0.3);
}
.pd-line.v {
  background: rgba(139, 92, 246, 0.3);
}
.pd-line.g {
  background: rgba(34, 197, 94, 0.3);
}
.pd-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  animation: flowA 2s ease-in-out infinite;
}
.pd-line.a::after {
  background: var(--amber);
}
.pd-line.t::after {
  background: var(--teal);
  animation-delay: 0.5s;
}
.pd-line.v::after {
  background: var(--violet);
  animation-delay: 1s;
}
.pd-line.g::after {
  background: var(--green);
  animation-delay: 1.5s;
}
@keyframes flowA {
  0% {
    left: -60%;
  }
  100% {
    left: 110%;
  }
}

.pd-arro-head {
  font-size: 11px;
  color: var(--muted);
}
.pd-arro-lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.feat-card:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.feat-card:nth-child(1)::before {
  background: var(--amber);
}
.feat-card:nth-child(2)::before {
  background: var(--teal);
}
.feat-card:nth-child(3)::before {
  background: var(--coral);
}
.feat-card:nth-child(4)::before {
  background: var(--violet);
}
.feat-card:nth-child(5)::before {
  background: var(--green);
}
.feat-card:nth-child(6)::before {
  background: var(--gold);
}

.fc-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.fc-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.fc-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.fc-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  padding: 2px 9px;
  border-radius: 20px;
  border: 1px solid;
}
.fc-tag.a {
  color: var(--amber);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
}
.fc-tag.t {
  color: var(--teal);
  border-color: rgba(20, 184, 166, 0.3);
  background: rgba(20, 184, 166, 0.06);
}
.fc-tag.c {
  color: var(--coral);
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.06);
}
.fc-tag.v {
  color: var(--violet);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.06);
}
.fc-tag.g {
  color: var(--green);
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.06);
}

.arch-layers {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arch-tier {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: stretch;
}

.arch-tier-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 16px;
  border-right: 2px solid var(--border);
}

.atl-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.4;
}
.atl-name.a {
  color: var(--amber);
}
.atl-name.t {
  color: var(--teal);
}
.atl-name.v {
  color: var(--violet);
}
.atl-name.g {
  color: var(--green);
}
.atl-name.c {
  color: var(--coral);
}

.arch-tier-body {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  flex-wrap: wrap;
  align-items: center;
}

.atb-node {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 12px;
  color: #0a0f1e;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.atb-node.a {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
}
.atb-node.t {
  border-color: rgba(20, 184, 166, 0.3);
  background: rgba(20, 184, 166, 0.06);
}
.atb-node.v {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.06);
}
.atb-node.g {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.06);
}
.atb-node.c {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.06);
}
.atb-node.s {
  border-color: var(--border2);
  background: var(--card2);
  color: var(--muted);
}

.atb-sep {
  color: var(--border2);
  font-size: 18px;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  font-size: 14px;
}
.cmp-table th {
  background: var(--faint);
  color: var(--muted);
  padding: 14px 20px;
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
}
.cmp-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
  color: #6a6040;
}
.cmp-table tr:hover td {
  background: var(--card);
}
.cmp-table .col-m {
  font-weight: 500;
  color: var(--text);
}
.cmp-table .col-b {
  color: var(--coral);
}
.cmp-table .col-g {
  color: var(--teal);
  font-weight: 500;
}
.cmp-table .col-d {
  color: var(--amber);
  font-style: italic;
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.uc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  transition: border-color 0.2s;
}
.uc-card:hover {
  border-color: var(--border2);
}

.uc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.uc-icon-wrap.a {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.uc-icon-wrap.t {
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
}
.uc-icon-wrap.c {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
}
.uc-icon-wrap.v {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.uc-icon-wrap.g {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.uc-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}
.uc-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.uc-stat {
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--amber);
}

.metrics-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.ms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.ms-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.ms-item:last-child {
  border-right: none;
}
.ms-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}
.ms-num.a {
  color: var(--amber);
}
.ms-num.t {
  color: var(--teal);
}
.ms-num.c {
  color: var(--coral);
}
.ms-num.v {
  color: var(--violet);
}
.ms-num.g {
  color: var(--green);
}
.ms-lbl {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.closing {
  margin: 0 48px 80px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 55% at 15% 50%,
      rgba(245, 158, 11, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 65% at 85% 50%,
      rgba(20, 184, 166, 0.06) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.closing h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.closing p {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.8;
  position: relative;
}

.cs-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}
.cs-item {
  text-align: center;
}
.cs-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.cs-num .a {
  color: var(--amber);
}
.cs-num .t {
  color: var(--teal);
}
.cs-lbl {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .feature-grid,
  .uc-grid {
    grid-template-columns: 1fr;
  }
  .ms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ms-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }
  .container {
    padding: 0 24px;
  }
  .closing {
    padding: 40px 24px;
    margin: 0 16px 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 16px 40px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(28px, 9vw, 48px);
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-eyebrow {
    font-size: 10px;
  }

  .container {
    padding: 0 16px;
  }
  .section {
    padding: 40px 0;
  }
  .section-sm {
    padding: 32px 0;
  }
  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .section-body {
    font-size: 14px;
  }
  .divider {
    margin: 0 16px;
  }

  .feature-grid,
  .uc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ms-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }

  .feature-card,
  .uc-card {
    padding: 18px;
  }
  .fc-title,
  .uc-title {
    font-size: 15px;
  }
  .fc-body,
  .uc-body {
    font-size: 12px;
  }
  .fc-icon,
  .uc-icon {
    font-size: 26px;
  }

  .ms-num {
    font-size: 30px;
  }
  .ms-label {
    font-size: 12px;
  }

  .uc-table,
  .compare-table,
  table {
    display: block;
    overflow-x: auto;
    font-size: 12px;
  }
  th,
  td {
    padding: 10px 12px;
    white-space: nowrap;
  }

  .flow-diagram,
  .pipeline-diagram,
  .arch-diagram {
    overflow-x: auto;
  }

  .closing {
    padding: 32px 16px;
    margin: 0 12px 36px;
    border-radius: 16px;
  }
  .closing h2 {
    font-size: 24px;
  }
  .closing p {
    font-size: 14px;
  }
  .closing-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cs-num {
    font-size: 26px;
  }
}
