:root {
  --navy-950: #010717;
  --navy-900: #061540;
  --navy-800: #092261;
  --navy-700: #0c357d;
  --blue-500: #0098dc;
  --blue-300: #62d8ff;
  --red-600: #d30000;
  --red-500: #f00f0f;
  --yellow-400: #ffc400;
  --ink: #07101f;
  --muted: #627086;
  --line: #d8e2ef;
  --paper: #ffffff;
  --mist: #f3f7fb;
  --shadow: 0 24px 70px rgba(3, 16, 47, 0.18);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Avenir Next", "Trebuchet MS", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: #fff;
  background: rgba(1, 7, 23, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-solid {
  background: rgba(1, 7, 23, 0.94);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 4px;
}

.brand-mark img {
  width: 30px;
}

.brand-lockup strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.brand-lockup small {
  color: var(--blue-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: #fff;
  background: rgba(0, 152, 220, 0.25);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(20px, 6vw, 86px) 34px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 7, 23, 0.86), rgba(1, 7, 23, 0.34) 52%, rgba(1, 7, 23, 0.18)),
    url("assets/ppt-media/image3.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 145px;
  background:
    linear-gradient(90deg, var(--red-600) 0 24%, var(--navy-800) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(1, 7, 23, 0.8));
  opacity: 0.92;
}

.hero-brand-panel {
  position: absolute;
  top: 76px;
  left: 0;
  width: min(580px, 55vw);
  z-index: 1;
}

.hero-brand-red {
  display: flex;
  align-items: center;
  min-height: 130px;
  padding: 28px 48px;
  background: var(--red-600);
}

.hero-brand-red img {
  width: min(410px, 100%);
}

.hero-brand-blue {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 16px 48px;
  background: var(--navy-800);
}

.hero-brand-blue img:first-child {
  width: 58px;
}

.hero-brand-blue img:last-child {
  width: 145px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-bottom: 48px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(50px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary {
  background: var(--red-500);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(105px, 1fr));
  gap: 1px;
  width: min(460px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div {
  padding: 16px;
  background: rgba(1, 7, 23, 0.64);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.section-light {
  background: var(--mist);
}

.intro-ribbon {
  border-top: 12px solid var(--red-600);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.visual-first {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.1;
}

.lead {
  color: var(--navy-700);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
}

.copy-stack {
  display: grid;
  gap: 16px;
}

.copy-stack p {
  margin: 0;
  color: #253044;
  font-size: 18px;
}

.copy-stack strong {
  color: var(--red-500);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.section-light .section-heading p:not(.section-kicker),
.proof-section .section-heading p:not(.section-kicker),
.product-section .section-heading p:not(.section-kicker),
.workflow-section .section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.compact-heading {
  max-width: 760px;
}

.proof-section {
  background:
    linear-gradient(180deg, #fff 0, #fff 62%, var(--navy-900) 62%),
    var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  display: grid;
  align-content: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 4px solid var(--red-600);
}

.proof-card div {
  padding: 18px;
}

.proof-card h3 {
  font-size: 18px;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.platform-section,
.federation-section,
.recap-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 152, 220, 0.28), transparent 30%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
}

.architecture-board {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(98, 216, 255, 0.32);
  border-radius: 6px;
}

.architecture-row {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.architecture-label {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

.architecture-cell,
.architecture-core {
  min-height: 88px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(98, 216, 255, 0.5);
}

.architecture-cell {
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
}

.architecture-cell.wide {
  grid-column: span 2;
}

.product-row {
  grid-template-columns: 170px 1fr;
}

.architecture-core {
  grid-column: span 2;
  display: grid;
  gap: 16px;
  border: 4px solid #ff6038;
}

.architecture-strip,
.architecture-products span {
  display: grid;
  place-items: center;
  min-height: 70px;
  color: #6e7580;
  background: #fff;
  border-radius: 5px;
  font-weight: 900;
}

.architecture-products {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 16px;
}

.architecture-products small,
.architecture-federation small {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.architecture-federation {
  display: grid;
  place-items: center;
  min-height: 82px;
  color: #5a6270;
  background: var(--yellow-400);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 900;
}

.engine-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(243, 247, 251, 0.92)),
    var(--paper);
}

.product-figure {
  margin: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red-600);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.check-list,
.recap-list,
.value-list,
.industry-grid ul,
.product-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.recap-list li,
.value-list li,
.industry-grid li,
.product-panel li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before,
.recap-list li::before,
.value-list li::before,
.industry-grid li::before,
.product-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--red-500);
  box-shadow: 0 0 0 4px rgba(240, 15, 15, 0.12);
  transform: translateY(-50%) rotate(45deg);
}

.performance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: stretch;
}

.bar-chart {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 110px 1fr;
  gap: 14px;
  align-items: center;
}

.bar-row span {
  font-weight: 900;
}

.bar-row strong {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.bar-row i {
  display: block;
  width: var(--bar-size);
  min-width: 8px;
  height: 22px;
  background: linear-gradient(90deg, var(--red-500), var(--blue-500));
  border-radius: 3px;
}

.bar-row:nth-child(2) i,
.bar-row:nth-child(5) i,
.bar-row:nth-child(6) i {
  background: linear-gradient(90deg, var(--blue-500), var(--navy-700));
}

.performance-callout {
  display: grid;
  align-content: center;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(211, 0, 0, 0.95), rgba(9, 34, 97, 0.98)),
    var(--navy-800);
  border-radius: 6px;
}

.performance-callout strong {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
}

.performance-callout p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.federation-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.dark-visual {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(98, 216, 255, 0.22);
  border-radius: 6px;
}

.dark-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-section,
.workflow-section {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-panel {
  display: grid;
  grid-template-rows: 190px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.product-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background: var(--mist);
}

.product-panel div {
  padding: 22px;
}

.product-panel p,
.product-panel li {
  color: #384458;
}

.ai-box {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 28px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(1, 7, 23, 0.92), rgba(9, 34, 97, 0.86)),
    url("assets/ppt-media/image3.png") center / cover;
  border-radius: 6px;
}

.value-list {
  columns: 2;
  column-gap: 28px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: start;
}

.workflow-grid p {
  color: #384458;
  font-size: 18px;
}

.metric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 6px;
}

.metric-tags span {
  padding: 7px 10px;
  color: var(--navy-900);
  background: #e7f5ff;
  border: 1px solid #bcecff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.workflow-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.workflow-visuals figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.workflow-visuals img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  background: #fff;
}

.workflow-visuals figcaption {
  color: var(--muted);
  background: var(--mist);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red-600);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(5, 22, 61, 0.08);
}

.industry-grid h3 {
  color: var(--navy-800);
  font-size: 23px;
}

.recap-list {
  margin-top: 0;
  columns: 2;
  column-gap: 38px;
}

.recap-list li {
  break-inside: avoid;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.contact-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(211, 0, 0, 0.96) 0 28%, rgba(9, 34, 97, 0.98) 28%),
    var(--navy-800);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
}

.contact-inner h2 {
  max-width: 820px;
}

.contact-inner p:not(.section-kicker) {
  margin: 22px 0 0;
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-card img {
  width: 280px;
}

.contact-card a {
  color: var(--red-600);
  font-size: 22px;
  font-weight: 900;
}

.contact-card span {
  color: var(--muted);
  font-size: 22px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.68);
  background: #000410;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .proof-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .federation-grid,
  .performance-layout,
  .workflow-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -70px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(1, 7, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 4px;
  }

  .hero {
    min-height: 78svh;
    padding-top: 280px;
  }

  .hero-brand-panel {
    top: 64px;
    width: min(100%, 560px);
  }

  .hero-brand-red {
    min-height: 104px;
    padding: 22px 24px;
  }

  .hero-brand-blue {
    min-height: 58px;
    padding: 14px 24px;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    margin-top: 0;
  }

  .split-grid,
  .visual-first,
  .ai-box {
    grid-template-columns: 1fr;
  }

  .architecture-row,
  .product-row {
    grid-template-columns: 1fr;
  }

  .architecture-core,
  .architecture-cell.wide {
    grid-column: auto;
  }

  .architecture-products {
    grid-template-columns: 1fr;
  }

  .architecture-label {
    min-height: auto;
    font-size: 18px;
  }

  .bar-row {
    grid-template-columns: 1fr 95px;
  }

  .bar-row i {
    grid-column: 1 / -1;
  }

  .value-list,
  .recap-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .proof-grid,
  .product-grid,
  .industry-grid,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 72px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .contact-card a,
  .contact-card span {
    font-size: 18px;
  }
}
