:root {
  --bg: #eef5fd;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fbfdff;
  --surface-dark: #102654;
  --surface-darker: #0a1838;
  --text: #132744;
  --text-soft: #5b6f90;
  --line: rgba(30, 134, 238, 0.14);
  --accent: #22d0ea;
  --accent-strong: #1e86ee;
  --accent-soft: rgba(34, 208, 234, 0.14);
  --gold: #2f3ad8;
  --ink: #081936;
  --shadow: 0 30px 90px rgba(16, 38, 84, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(34, 208, 234, 0.18), transparent 36%),
    radial-gradient(circle at top right, rgba(47, 58, 216, 0.14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, #e4eefb 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 39, 68, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 39, 68, 0.03) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 82%);
  pointer-events: none;
  z-index: 0;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(18px);
  background: rgba(247, 251, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(18, 32, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  flex: none;
  width: 3.2rem;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy strong {
  font-size: 1.55rem;
  font-weight: 700;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--text-soft);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--accent-strong));
  color: #ffffff;
}

.nav-toggle {
  display: none;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding: 4rem 0 1.5rem;
}

.hero-copy,
.hero-panel,
.section,
.site-footer {
  position: relative;
}

.hero-copy,
.hero-panel {
  display: grid;
  align-content: start;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #137bdb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  color: var(--ink);
}

.lede {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 32, 48, 0.14);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent-strong));
  color: #ffffff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.hero-highlights {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.35rem;
}

.hero-highlights article,
.service-card,
.platform-card,
.engagement-card,
.journey-card,
.contact-panel,
.panel-surface {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-highlights article {
  padding: 1.15rem 1.25rem;
}

.hero-highlights span,
.panel-label,
.engagement-tag,
.service-index {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-label {
  color: #ffffff;
}

.hero-highlights p {
  margin: 0;
  color: var(--text-soft);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.panel-surface {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background:
    linear-gradient(160deg, rgba(10, 24, 56, 0.97), rgba(24, 58, 120, 0.94)),
    radial-gradient(circle at top right, rgba(34, 208, 234, 0.24), transparent 36%);
  color: #ffffff;
}

.panel-surface::after {
  content: "";
  position: absolute;
  inset: auto -14% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.36), transparent 62%);
}

.signal-list {
  display: grid;
  gap: 1rem;
}

.signal-list article {
  position: relative;
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 2px solid rgba(34, 208, 234, 0.48);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 18px 18px 0;
}

.signal-list h2 {
  margin: 0 0 0.3rem;
  font-size: 1.18rem;
  color: #ffffff;
}

.signal-list p,
.panel-metrics span {
  margin: 0;
  color: #ffffff;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.panel-metrics div {
  position: relative;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-metrics strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
  color: #ffffff;
}

.solution-marquee {
  display: flex;
  gap: 0.75rem;
  overflow: hidden;
  width: 100%;
  padding: 0.8rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(16, 38, 84, 0.08);
}

.solution-badges {
  display: flex;
  flex: none;
  width: max-content;
  gap: 0.75rem;
  animation: solution-scroll 28s linear infinite;
}

.solution-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
  padding: 0.8rem 0.95rem;
  border-radius: 22px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.solution-badge-wordmark {
  justify-content: center;
  padding: 0.55rem 0.8rem;
}

.solution-logo {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: none;
}

.solution-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.solution-wordmark {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 2rem;
  object-fit: contain;
  object-position: center;
}

.solution-wordmark-cloud {
  max-height: 2.1rem;
}

.solution-wordmark-vsphere {
  max-height: 2.05rem;
}

.solution-wordmark-openshift,
.solution-wordmark-kubernetes,
.solution-wordmark-nutanix,
.solution-wordmark-terraform {
  max-height: 1.92rem;
}

.solution-wordmark-morpheus {
  max-height: 1.96rem;
}

.solution-wordmark-ansible {
  max-height: 1.94rem;
}

.solution-badge strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
  white-space: nowrap;
}

.solution-badge-vcf strong {
  color: #2a4f8f;
  font-weight: 700;
}

.solution-badge-vsphere strong {
  color: #5d7287;
  font-weight: 700;
}

.solution-badge-nutanix strong {
  color: #74be45;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.solution-badge-openshift strong {
  color: #ee0000;
  font-weight: 700;
}

.solution-badge-ansible strong {
  color: #111111;
  font-weight: 800;
}

.solution-badge-terraform strong {
  color: #7b42bc;
  font-weight: 700;
}

.solution-badge-aria strong {
  color: #1e86ee;
  font-weight: 700;
}

.solution-badge-kubernetes strong {
  color: #326ce5;
  font-weight: 700;
}

@keyframes solution-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 0.75rem));
  }
}

.section {
  padding: 3.2rem 0;
}

.section-intro {
  display: grid;
  gap: 1.4rem;
}

.section-intro .section-heading {
  grid-template-columns: 1fr;
}

.section-intro .section-heading h2 {
  max-width: none;
}

.section-intro .section-support {
  max-width: none;
  justify-self: start;
}

#services .section-heading,
#delivery .section-heading,
#platforms .section-heading,
#engagements .section-heading {
  grid-template-columns: 1fr;
}

#services .section-heading h2,
#delivery .section-heading h2,
#platforms .section-heading h2,
#engagements .section-heading h2 {
  max-width: none;
}

#services .section-support,
#delivery .section-support,
#platforms .section-support,
#engagements .section-support {
  max-width: none;
  justify-self: start;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 0.85rem 1.6rem;
  align-items: start;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.section-support,
.section-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.section-support {
  max-width: 38ch;
  align-self: start;
  justify-self: end;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intro-card {
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(17, 33, 49, 0.08);
}

.intro-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.intro-card p {
  margin: 0;
  color: var(--text-soft);
}

.filter-bar {
  margin: 1.8rem 0 1.2rem;
}

.filter-button {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-soft);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: linear-gradient(135deg, var(--gold), var(--accent-strong));
  border-color: transparent;
  color: #ffffff;
}

.services-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.services-scroll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border: none;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gold), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 33, 49, 0.12);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.services-scroll-button:hover,
.services-scroll-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(17, 33, 49, 0.16);
}

.services-scroll-button[disabled] {
  opacity: 0.38;
  transform: none;
  box-shadow: none;
  cursor: default;
}

.services-grid,
.platform-grid,
.engagement-grid,
.journey-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(19rem, 23rem);
  grid-template-columns: none;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.15rem 0.15rem 0.8rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 134, 238, 0.32) transparent;
}

.services-grid::-webkit-scrollbar {
  height: 10px;
}

.services-grid::-webkit-scrollbar-thumb {
  background: rgba(30, 134, 238, 0.28);
  border-radius: 999px;
}

.services-grid::-webkit-scrollbar-track {
  background: transparent;
}

.services-grid:focus-visible {
  outline: 2px solid rgba(30, 134, 238, 0.5);
  outline-offset: 0.25rem;
}

.service-card {
  padding: 1.35rem;
  height: 100%;
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.platform-card:hover,
.engagement-card:hover,
.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(17, 33, 49, 0.14);
}

.service-card.is-hidden {
  display: none;
}

.service-card h3,
.journey-card h3,
.deliverables-strip h3,
.platform-card h3,
.engagement-card h3,
.contact-panel h2 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.service-card p,
.journey-card p,
.platform-card p,
.engagement-card p,
.contact-panel p,
.site-footer p {
  margin: 0;
  color: var(--text-soft);
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text);
}

.service-card li + li {
  margin-top: 0.55rem;
}

.section-slate {
  margin-top: 1rem;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(10, 24, 56, 0.96), rgba(30, 134, 238, 0.88)),
    radial-gradient(circle at top right, rgba(34, 208, 234, 0.18), transparent 32%);
  color: #ffffff;
  padding-inline: 1.5rem;
}

.section-slate .eyebrow {
  color: #ffffff;
}

.section-slate .section-heading h2,
.section-ink .section-heading h2,
.section-slate .journey-card h3,
.section-ink .engagement-card h3 {
  color: #ffffff;
}

.section-slate .section-support,
.section-ink .section-support {
  color: #ffffff;
}

.section-slate p,
.section-slate span,
.section-slate strong,
.section-ink p,
.section-ink span,
.section-ink strong {
  color: #ffffff;
}

.section-slate .journey-card,
.deliverables-strip div,
.section-ink .engagement-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.journey-grid {
  --journey-col-gap: 1.75rem;
  --journey-row-gap: 2.25rem;
  --journey-line: #b5f7ff;
  --journey-line-soft: rgba(181, 247, 255, 0.28);
  --journey-arrow-thickness: 4px;
  --journey-arrow-head: 0.78rem;
  --journey-arrow-glow: 0 0 0.85rem rgba(181, 247, 255, 0.4);
  --journey-flow-duration: 12s;
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--journey-col-gap);
  row-gap: var(--journey-row-gap);
  margin-top: 1.75rem;
}

.journey-card {
  --journey-delay: 0s;
  position: relative;
  overflow: visible;
  padding: 1.3rem;
  border-radius: var(--radius-sm);
  animation: journey-card-flow var(--journey-flow-duration) linear infinite;
  animation-delay: var(--journey-delay);
}

.journey-card:nth-child(1) {
  --journey-delay: 0s;
}

.journey-card:nth-child(2) {
  --journey-delay: 2s;
}

.journey-card:nth-child(3) {
  --journey-delay: 4s;
}

.journey-card:nth-child(4) {
  --journey-delay: 6s;
  grid-column: 3;
  grid-row: 2;
}

.journey-card:nth-child(5) {
  --journey-delay: 8s;
  grid-column: 2;
  grid-row: 2;
}

.journey-card:nth-child(6) {
  --journey-delay: 10s;
  grid-column: 1;
  grid-row: 2;
}

.journey-card:nth-child(1)::before,
.journey-card:nth-child(2)::before,
.journey-card:nth-child(4)::before,
.journey-card:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(var(--journey-col-gap) - 0.4rem);
  height: var(--journey-arrow-thickness);
  color: var(--journey-line-soft);
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
  animation: journey-connector-flow var(--journey-flow-duration) linear infinite;
  animation-delay: calc(var(--journey-delay) + 0.95s);
}

.journey-card:nth-child(1)::after,
.journey-card:nth-child(2)::after,
.journey-card:nth-child(4)::after,
.journey-card:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  color: var(--journey-line-soft);
  transform: translateY(-50%);
  animation: journey-arrowhead-flow var(--journey-flow-duration) linear infinite;
  animation-delay: calc(var(--journey-delay) + 0.95s);
}

.journey-card:nth-child(1)::before,
.journey-card:nth-child(2)::before {
  left: calc(100% + 0.2rem);
}

.journey-card:nth-child(1)::after,
.journey-card:nth-child(2)::after {
  left: calc(100% + var(--journey-col-gap) - var(--journey-arrow-head));
  border-left: var(--journey-arrow-head) solid currentColor;
  border-top: calc(var(--journey-arrow-head) * 0.62) solid transparent;
  border-bottom: calc(var(--journey-arrow-head) * 0.62) solid transparent;
}

.journey-card:nth-child(4)::before,
.journey-card:nth-child(5)::before {
  left: calc(-1 * var(--journey-col-gap) + 0.2rem);
}

.journey-card:nth-child(4)::after,
.journey-card:nth-child(5)::after {
  left: calc(-1 * var(--journey-col-gap) - 0.02rem);
  border-right: var(--journey-arrow-head) solid currentColor;
  border-top: calc(var(--journey-arrow-head) * 0.62) solid transparent;
  border-bottom: calc(var(--journey-arrow-head) * 0.62) solid transparent;
}

.journey-card:nth-child(3)::before {
  content: "";
  position: absolute;
  top: calc(100% + 0.18rem);
  left: 50%;
  width: var(--journey-arrow-thickness);
  height: calc(var(--journey-row-gap) - 0.3rem);
  color: var(--journey-line-soft);
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: journey-connector-flow var(--journey-flow-duration) linear infinite;
  animation-delay: calc(var(--journey-delay) + 0.95s);
}

.journey-card:nth-child(3)::after {
  content: "";
  position: absolute;
  top: calc(100% + var(--journey-row-gap) - var(--journey-arrow-head) + 0.08rem);
  left: 50%;
  color: var(--journey-line-soft);
  transform: translateX(-50%);
  border-top: var(--journey-arrow-head) solid currentColor;
  border-left: calc(var(--journey-arrow-head) * 0.62) solid transparent;
  border-right: calc(var(--journey-arrow-head) * 0.62) solid transparent;
  animation: journey-arrowhead-flow var(--journey-flow-duration) linear infinite;
  animation-delay: calc(var(--journey-delay) + 0.95s);
}

.journey-card span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(34, 208, 234, 0.14);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  animation: journey-node-flow var(--journey-flow-duration) linear infinite;
  animation-delay: var(--journey-delay);
}

@keyframes journey-card-flow {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
  6%,
  13% {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(181, 247, 255, 0.92);
    box-shadow:
      0 0 0 1px rgba(181, 247, 255, 0.16),
      0 18px 42px rgba(4, 16, 38, 0.2),
      0 0 1.15rem rgba(181, 247, 255, 0.24);
  }
  18%,
  100% {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
}

@keyframes journey-node-flow {
  0%,
  100% {
    background: rgba(34, 208, 234, 0.14);
    box-shadow: none;
  }
  6%,
  13% {
    background: rgba(181, 247, 255, 0.24);
    box-shadow:
      0 0 0 1px rgba(181, 247, 255, 0.3),
      0 0 1rem rgba(181, 247, 255, 0.3);
  }
  18%,
  100% {
    background: rgba(34, 208, 234, 0.14);
    box-shadow: none;
  }
}

@keyframes journey-connector-flow {
  0%,
  100% {
    color: var(--journey-line-soft);
    opacity: 0.5;
    box-shadow: none;
  }
  10%,
  18% {
    color: var(--journey-line);
    opacity: 1;
    box-shadow: var(--journey-arrow-glow);
  }
  24%,
  100% {
    color: var(--journey-line-soft);
    opacity: 0.5;
    box-shadow: none;
  }
}

@keyframes journey-arrowhead-flow {
  0%,
  100% {
    color: var(--journey-line-soft);
    opacity: 0.55;
    filter: none;
  }
  10%,
  18% {
    color: var(--journey-line);
    opacity: 1;
    filter: drop-shadow(0 0 0.7rem rgba(181, 247, 255, 0.42));
  }
  24%,
  100% {
    color: var(--journey-line-soft);
    opacity: 0.55;
    filter: none;
  }
}

.deliverables-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.deliverables-strip div {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.deliverables-strip h3 {
  color: #ffffff;
}

.platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.platform-card,
.engagement-card {
  padding: 1.35rem;
}

.section-clients {
  padding-top: 2.2rem;
  padding-bottom: 1.2rem;
}

#contact.section {
  padding-top: 1.2rem;
}

.customer-frame {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(8, 24, 55, 0.97), rgba(21, 57, 120, 0.94)),
    radial-gradient(circle at top right, rgba(34, 208, 234, 0.16), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.customer-frame::before {
  content: "";
  position: absolute;
  inset: -10% auto auto 74%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 208, 234, 0.22), transparent 66%);
  pointer-events: none;
}

.customer-heading,
.customer-rails {
  position: relative;
  z-index: 1;
}

.customer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 0.9rem 1.6rem;
  align-items: start;
}

.customer-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #ffffff;
}

.customer-heading h2 {
  margin: 0;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.customer-heading .section-copy {
  max-width: 40ch;
  justify-self: end;
  color: rgba(255, 255, 255, 0.84);
}

.section-clients .customer-heading {
  grid-template-columns: 1fr;
}

.section-clients .customer-heading h2,
.section-clients .customer-heading .section-copy {
  max-width: none;
}

.section-clients .customer-heading .section-copy {
  justify-self: start;
}

.customer-rails {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.65rem;
}

.customer-marquee {
  display: flex;
  gap: 0.85rem;
  overflow: hidden;
  width: 100%;
  padding: 0.85rem;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #ffffff;
}

.customer-track {
  display: flex;
  flex: none;
  width: max-content;
  gap: 0.85rem;
  animation: customer-scroll 42s linear infinite;
}

.customer-marquee-reverse .customer-track {
  animation-direction: reverse;
  animation-duration: 46s;
}

.customer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 12.5rem;
  height: 5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 24px;
  background: transparent;
  border: 1px solid transparent;
}

.customer-badge img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@keyframes customer-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 0.85rem));
  }
}

.section-ink {
  margin-top: 1rem;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(8, 24, 55, 0.97), rgba(18, 44, 98, 0.97)),
    radial-gradient(circle at top left, rgba(34, 208, 234, 0.18), transparent 36%);
  color: #ffffff;
  padding-inline: 1.5rem;
}

.section-ink .eyebrow {
  color: #ffffff;
}

.engagement-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 1.5rem;
  padding: 1.6rem;
}

.contact-panel > .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.contact-copy {
  grid-column: 1;
  grid-row: 2;
}

.contact-copy .button {
  margin-top: 1.2rem;
}

.contact-points {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.contact-points div {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-points strong {
  display: block;
  margin-bottom: 0.35rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding: 2rem 0 3rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel > .eyebrow,
  .contact-copy,
  .contact-points {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading,
  .customer-heading,
  .section-intro,
  .intro-points {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .journey-grid,
  .platform-grid,
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    --journey-col-gap: 1rem;
    --journey-row-gap: 1.9rem;
  }

  .services-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(18rem, 24rem);
  }

  .panel-metrics,
  .deliverables-strip {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .section-support {
    max-width: none;
    justify-self: start;
  }

  .customer-heading .section-copy {
    max-width: none;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.4rem;
  }

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

  .nav-cta {
    text-align: center;
  }

  .services-grid,
  .platform-grid,
  .engagement-grid,
  .journey-grid,
  .intro-points,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(17rem, 82vw);
  }

  .journey-grid {
    grid-template-columns: 1fr;
    row-gap: 1.45rem;
  }

  .journey-card:nth-child(4),
  .journey-card:nth-child(5),
  .journey-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .journey-card::before,
  .journey-card::after {
    content: none;
  }

  .journey-card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(100% + 0.18rem);
    left: 50%;
    width: var(--journey-arrow-thickness);
    height: 1rem;
    color: var(--journey-line-soft);
    background: currentColor;
    border-radius: 999px;
    transform: translateX(-50%);
    animation: journey-connector-flow var(--journey-flow-duration) linear infinite;
    animation-delay: calc(var(--journey-delay) + 0.95s);
  }

  .journey-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(100% + 1.02rem);
    left: 50%;
    color: var(--journey-line-soft);
    transform: translateX(-50%);
    border-top: var(--journey-arrow-head) solid currentColor;
    border-left: calc(var(--journey-arrow-head) * 0.62) solid transparent;
    border-right: calc(var(--journey-arrow-head) * 0.62) solid transparent;
    animation: journey-arrowhead-flow var(--journey-flow-duration) linear infinite;
    animation-delay: calc(var(--journey-delay) + 0.95s);
  }

  .section,
  .site-footer {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .section-slate,
  .section-ink {
    padding-inline: 1rem;
  }

  .customer-frame {
    padding: 1.2rem;
  }

  .customer-badge {
    width: 11rem;
    height: 4.55rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    margin-top: 0.7rem;
    padding: 0.8rem 0.85rem;
  }

  .hero {
    padding-top: 3rem;
    gap: 1.4rem;
  }

  .brand-copy strong {
    font-size: 1.3rem;
  }

  .brand-copy span {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-actions,
  .filter-bar {
    flex-direction: column;
  }

  .services-carousel {
    grid-template-columns: 2.7rem minmax(0, 1fr) 2.7rem;
    gap: 0.55rem;
  }

  .services-scroll-button {
    width: 2.7rem;
    height: 2.7rem;
  }

  .button,
  .filter-button {
    width: 100%;
  }

  .panel-surface,
  .service-card,
  .platform-card,
  .engagement-card,
  .journey-card,
  .contact-panel,
  .customer-frame {
    padding: 1.1rem;
  }

  .customer-rails {
    margin-top: 1.25rem;
  }

  .customer-marquee {
    padding: 0.7rem;
  }

  .customer-badge {
    width: 9.8rem;
    height: 4rem;
    padding: 0.7rem 0.85rem;
  }

  .services-grid {
    grid-auto-columns: minmax(16.25rem, 84vw);
  }

  .lede {
    font-size: 1rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}
