:root {
  --ink: #17202a;
  --ink-strong: #08111b;
  --muted: #5b6570;
  --line: #dce3e8;
  --paper: #fbfcfd;
  --white: #ffffff;
  --teal: #087b79;
  --teal-dark: #055c5c;
  --blue: #1f6fb2;
  --green: #5d8f3a;
  --amber: #d98918;
  --rose: #b64b55;
  --shadow: 0 18px 60px rgba(8, 17, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 253, 0.9);
  border-bottom: 1px solid rgba(220, 227, 232, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  color: var(--ink-strong);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink-strong);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0.05em;
}

.brand small {
  margin-top: -3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.site-nav a {
  color: #24313d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--teal-dark);
}

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

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: 138px clamp(20px, 5vw, 72px) 82px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 17, 27, 0.88) 0%, rgba(8, 17, 27, 0.74) 38%, rgba(8, 17, 27, 0.26) 76%),
    linear-gradient(0deg, rgba(8, 17, 27, 0.42), rgba(8, 17, 27, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ddbd6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.34);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics div {
  min-height: 132px;
  padding: 28px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 28px;
}

.metrics span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.intro-copy {
  columns: 1;
}

.intro-copy p {
  font-size: 18px;
}

.service-band {
  background: #edf3f2;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 38px;
}

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

.service-card,
.industry-grid article {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(8, 17, 27, 0.04);
}

.service-card p,
.industry-grid p,
.capability-list p {
  margin-bottom: 0;
}

.icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--teal);
}

.icon.product {
  background:
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.45) 45% 55%, transparent 55%),
    var(--blue);
}

.icon.data {
  background:
    radial-gradient(circle at 32% 30%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 68% 68%, #fff 0 8%, transparent 9%),
    var(--green);
}

.icon.broadcast {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 3px, transparent 3px 10px),
    var(--amber);
}

.icon.managed {
  background:
    linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.45) 35% 45%, transparent 45%),
    var(--rose);
}

.cloud-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: var(--ink-strong);
}

.cloud-section h2,
.cloud-section .capability-list strong {
  color: var(--white);
}

.cloud-section p {
  color: rgba(255, 255, 255, 0.72);
}

.cloud-copy p {
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: #8ddbd6;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--white);
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-list span {
  display: block;
  margin-bottom: 12px;
  color: #8ddbd6;
  font-weight: 800;
}

.capability-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

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

.industry-grid article {
  min-height: 215px;
}

.delivery {
  background: #f8faf8;
}

.delivery h2 {
  width: min(760px, 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline li {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 24px;
}

.timeline p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(56px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: var(--teal-dark);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact .section-kicker {
  color: #b8ebe6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--ink-strong);
  color: rgba(255, 255, 255, 0.66);
}

.site-footer p {
  margin: 0;
  color: inherit;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(8, 123, 121, 0.34);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

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

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    border-bottom: 0;
  }

  .hero {
    min-height: 86vh;
    padding: 118px 20px 64px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 17, 27, 0.9) 0%, rgba(8, 17, 27, 0.74) 70%, rgba(8, 17, 27, 0.54) 100%),
      linear-gradient(0deg, rgba(8, 17, 27, 0.42), rgba(8, 17, 27, 0.08));
  }

  .split,
  .cloud-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .brand {
    min-width: auto;
  }

  .metrics,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: 112px;
  }

  .section {
    padding: 64px 20px;
  }

  .service-card,
  .industry-grid article,
  .timeline li {
    min-height: auto;
    padding: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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