:root {
  --ink: #17202c;
  --muted: #667085;
  --line: #d9e0ea;
  --soft: #f4f7fb;
  --blue: #4778f5;
  --blue-dark: #2457d8;
  --cyan: #00a6c8;
  --green: #0e9f6e;
  --gold: #d89b23;
  --white: #ffffff;
  --panel: #222a36;
  --shadow: 0 20px 50px rgba(27, 44, 72, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(217, 224, 234, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 182px;
  height: 56px;
  object-fit: contain;
  border-radius: 7px;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 7px;
  color: #344054;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-dark);
  background: #edf3ff;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--blue);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: var(--white);
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 89px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 78px) 42px;
  background:
    linear-gradient(115deg, rgba(71, 120, 245, 0.12), rgba(0, 166, 200, 0.05) 44%, rgba(255, 255, 255, 0) 62%),
    var(--white);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.07;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(25px, 3.1vw, 38px);
  line-height: 1.12;
}

h3 {
  margin: 16px 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.lead,
.page-hero p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(71, 120, 245, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.light {
  color: var(--blue-dark);
  background: var(--white);
}

.hero-ecosystem {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #303b4d;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 48%, rgba(71, 120, 245, 0.34), transparent 32%),
    linear-gradient(145deg, rgba(71, 120, 245, 0.2), rgba(0, 166, 200, 0.08)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-ecosystem::before,
.hero-ecosystem::after {
  content: "";
  position: absolute;
  inset: 72px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hero-ecosystem::after {
  inset: 128px;
  border-style: dashed;
}

.ecosystem-core {
  position: relative;
  z-index: 2;
  width: min(280px, 78%);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 7px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(5, 12, 26, 0.28);
}

.ecosystem-core img {
  width: 168px;
  border-radius: 7px;
}

.ecosystem-core strong {
  font-size: 23px;
  line-height: 1.15;
}

.ecosystem-core span {
  color: var(--muted);
  font-size: 14px;
}

.ecosystem-ring {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.module {
  position: absolute;
  width: 154px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.module span {
  font-weight: 900;
}

.module small {
  color: #c8d2df;
}

.module-a {
  top: 42px;
  left: 46px;
}

.module-b {
  top: 42px;
  right: 46px;
}

.module-c {
  bottom: 92px;
  left: 46px;
}

.module-d {
  bottom: 92px;
  right: 46px;
}

.industry-ribbon {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-ribbon span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #edf3ff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.trust-band,
.cta-band,
.stats-band {
  margin: 0 clamp(18px, 5vw, 78px);
  border-radius: 8px;
}

.trust-band {
  padding: 22px clamp(20px, 4vw, 44px);
  background: #edf3ff;
}

.trust-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-band span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 5vw, 78px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card,
.industry-grid article,
.values-grid article,
.product-stack article,
.timeline article,
.contact-form,
.about-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(27, 44, 72, 0.07);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.icon,
.industry-grid span,
.timeline span,
.product-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--blue-dark);
  background: #edf3ff;
  font-weight: 900;
}

.feature-card p,
.industry-grid p,
.values-grid p,
.product-stack p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  background: var(--soft);
}

.split-section p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 850;
}

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

.industry-list span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 7px;
  background: var(--white);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: #1f2937;
}

.cta-band p {
  margin-bottom: 0;
  color: #c8d2df;
}

.page-hero {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 78px);
  background: var(--soft);
}

.page-hero.compact {
  min-height: 370px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 32px;
  align-items: end;
}

.about-panel {
  padding: 26px;
}

.about-panel strong,
.about-panel span {
  display: block;
}

.about-panel strong {
  font-size: 24px;
}

.about-panel span {
  margin-top: 10px;
  color: var(--muted);
}

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

.product-stack article,
.timeline article,
.industry-grid article,
.values-grid article {
  padding: 28px;
}

.product-stack ul {
  margin: 22px 0 0;
  padding-left: 19px;
  color: #344054;
}

.product-detail-section,
.service-lanes,
.focus-section,
.contact-support {
  background: var(--soft);
}

.detail-grid,
.focus-grid,
.lane-grid,
.support-grid,
.board-grid {
  display: grid;
  gap: 18px;
}

.detail-grid,
.focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lane-grid,
.support-grid,
.board-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-grid article,
.focus-grid article,
.lane-grid article,
.support-grid article,
.board-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(27, 44, 72, 0.07);
}

.detail-grid article,
.focus-grid article,
.lane-grid article {
  padding: 26px;
}

.detail-grid h3,
.focus-grid h3,
.lane-grid h3 {
  margin-top: 0;
}

.detail-grid p,
.focus-grid p,
.lane-grid p,
.support-grid span,
.board-grid span {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 7px;
  color: #2457d8;
  background: #edf3ff;
  font-size: 13px;
  font-weight: 800;
}

.module-comparison,
.implementation-board {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.module-comparison p,
.implementation-board p {
  color: var(--muted);
  font-size: 18px;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-table div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 1px;
  background: var(--line);
}

.comparison-table strong,
.comparison-table span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--white);
}

.comparison-table div:first-child strong {
  color: var(--white);
  background: #1f2937;
}

.focus-grid article {
  min-height: 320px;
}

.focus-grid ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: #344054;
}

.compact-cards article {
  min-height: 0;
}

.outcome-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 78px);
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.outcome-band div {
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: #1f2937;
}

.outcome-band span {
  color: #9ec3ff;
  font-weight: 900;
}

.outcome-band strong {
  display: block;
  margin-top: 14px;
  font-size: 23px;
}

.outcome-band p {
  margin-bottom: 0;
  color: #c8d2df;
}

.implementation-board {
  background: var(--white);
}

.board-grid article,
.support-grid article {
  padding: 22px;
}

.board-grid strong,
.support-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.board-grid span,
.support-grid span {
  display: block;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: clamp(18px, 4vw, 44px) clamp(18px, 5vw, 78px) 0;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(71, 120, 245, 0.28), rgba(0, 166, 200, 0.08)),
    #17202c;
}

.footer-cta h2 {
  max-width: 840px;
}

.footer-cta .eyebrow {
  color: #9ec3ff;
}

.footer-cta + .site-footer {
  margin-top: clamp(24px, 4vw, 42px);
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.timeline article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
}

.timeline article h2,
.timeline article p {
  grid-column: 2;
}

.timeline article h2 {
  font-size: 25px;
}

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

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.stats-band div {
  padding: 32px;
  background: #edf3ff;
}

.stats-band strong {
  display: block;
  color: var(--blue-dark);
  font-size: 44px;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: #344054;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  min-height: calc(100vh - 89px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 78px);
  background: var(--soft);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details div {
  padding: 18px;
  border-left: 5px solid var(--blue);
  border-radius: 7px;
  background: var(--white);
}

.contact-details strong,
.contact-details span {
  display: block;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: clamp(44px, 7vw, 82px);
  padding: 44px clamp(18px, 5vw, 78px);
  color: #d8e0ec;
  background: #121822;
}

.site-footer img {
  width: 155px;
  border-radius: 7px;
}

.site-footer p {
  max-width: 470px;
  margin: 14px 0 0;
  color: #aeb9c8;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  justify-content: flex-end;
}

.site-footer a {
  color: #edf3ff;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .about-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .industry-grid,
  .values-grid,
  .product-stack,
  .detail-grid,
  .focus-grid,
  .lane-grid,
  .support-grid,
  .board-grid,
  .outcome-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-comparison,
  .implementation-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 156px;
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .feature-grid,
  .industry-grid,
  .values-grid,
  .product-stack,
  .detail-grid,
  .focus-grid,
  .lane-grid,
  .support-grid,
  .board-grid,
  .outcome-band,
  .industry-list,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .comparison-table div {
    grid-template-columns: 1fr;
  }

  .hero-ecosystem {
    min-height: auto;
    display: grid;
    gap: 14px;
    place-items: stretch;
    padding: 18px;
  }

  .hero-ecosystem::before,
  .hero-ecosystem::after {
    display: none;
  }

  .ecosystem-core,
  .ecosystem-ring,
  .module,
  .industry-ribbon {
    position: static;
  }

  .ecosystem-core {
    width: 100%;
    min-height: 0;
  }

  .ecosystem-ring {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .module {
    width: 100%;
    min-height: 72px;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline article h2,
  .timeline article p {
    grid-column: auto;
  }
}
