:root {
  --ink: #17202a;
  --muted: #5f6b7a;
  --line: #dbe3ea;
  --paper: #f8fbfd;
  --white: #ffffff;
  --blue: #1269b0;
  --teal: #149a9a;
  --green: #78a22f;
  --navy: #0f273f;
  --shadow: 0 18px 44px rgba(15, 39, 63, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 58px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 227, 234, .85);
  backdrop-filter: blur(16px);
}

.site-header > * {
  min-width: 0;
}

.brand img {
  width: 245px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  min-width: 0;
  max-width: 100%;
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.header-action {
  color: var(--white);
  background: var(--blue);
}

.language-selector {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.language-selector a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.language-selector a[aria-current="true"] {
  color: var(--white);
  background: var(--blue);
}

.language-selector img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px clamp(22px, 5vw, 72px) 82px;
  color: var(--white);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 20, 34, .86), rgba(10, 20, 34, .55) 48%, rgba(10, 20, 34, .14)),
    linear-gradient(0deg, rgba(10, 20, 34, .45), rgba(10, 20, 34, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

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

.hero-strip {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 32px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-strip span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
}

.anniversary-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 39, 63, .04);
}

.anniversary-bar a {
  display: grid;
  grid-template-columns: 42px minmax(250px, .78fr) minmax(260px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px clamp(22px, 5vw, 72px);
  color: inherit;
  text-decoration: none;
}

.anniversary-bar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.anniversary-bar strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 16px;
  white-space: nowrap;
}

.anniversary-bar span {
  color: var(--muted);
  font-size: 15px;
}

.anniversary-copy {
  min-width: 0;
}

.anniversary-copy span {
  display: block;
  line-height: 1.38;
}

.anniversary-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.anniversary-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(120, 162, 47, .28);
  border-radius: 4px;
  background: #f4f8ed;
  color: #435f20;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.anniversary-bar em {
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.anniversary-bar a:hover em {
  color: var(--teal);
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(560px, calc(100vw - 40px));
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(219, 227, 234, .92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 39, 63, .14);
  backdrop-filter: blur(14px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.cookie-notice a {
  color: var(--blue);
  font-weight: 800;
}

.cookie-notice button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-notice button:hover {
  background: #0f5c9a;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(22px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .82fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
  hyphens: none;
  overflow-wrap: break-word;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.24;
  hyphens: auto;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  overflow-wrap: anywhere;
}

.lead-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.services {
  background: var(--white);
}

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

.service {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 39, 63, .06);
}

.service img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 24px;
}

.service p {
  margin-top: 13px;
  color: var(--muted);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tech-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(18, 105, 176, .18);
  border-radius: 4px;
  background: #f1f7fb;
  color: #28516e;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.service-more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.service-more:hover {
  color: var(--teal);
}

.service .service-more {
  margin-top: auto;
  padding-top: 20px;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.detail-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.process {
  background: #eef6f8;
}

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

.timeline li {
  min-height: 252px;
  padding: 30px;
  background: var(--paper);
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
}

.timeline img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 24px;
}

.timeline p {
  margin-top: 12px;
  color: var(--muted);
}

.process-architecture {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 39, 63, .16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    var(--navy);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
}

.architecture-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.architecture-node {
  position: relative;
  min-height: 164px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
}

.architecture-node:last-child {
  border-right: 0;
}

.architecture-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 14px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-right: 1px solid rgba(255, 255, 255, .24);
  background: var(--navy);
  transform: rotate(45deg);
}

.flow-code {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.architecture-node strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.architecture-node span:last-child {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.48;
}

.references {
  background: var(--white);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.logo-grid img {
  width: 100%;
  height: 112px;
  padding: 18px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 9vw, 112px) clamp(22px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

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

.contact-band p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.contact-panel {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
}

.contact-panel p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
}

.contact-panel p:last-child {
  margin-bottom: 0;
}

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

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer img {
  width: 210px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-weight: 700;
}

.legal-page {
  padding-top: 96px;
}

.legal-hero {
  padding: 72px clamp(22px, 5vw, 72px) 42px;
  background: var(--navy);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
}

.legal-content {
  max-width: 1000px;
  padding: 54px clamp(22px, 5vw, 72px) 88px;
}

.legal-content h2,
.legal-content h3 {
  margin: 34px 0 12px;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-node {
    min-height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .architecture-node:nth-child(2n) {
    border-right: 0;
  }

  .architecture-node:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .architecture-node:not(:last-child)::after {
    display: none;
  }

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

  .anniversary-bar a {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .anniversary-copy {
    grid-column: 2 / 4;
  }

  .anniversary-facts {
    grid-column: 2 / 3;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    padding: 14px 18px;
    gap: 14px;
  }

  .brand img {
    width: 218px;
  }

  .header-action {
    display: none;
  }

  .language-selector {
    justify-self: end;
  }

  .hero {
    min-height: 720px;
    padding: 104px 22px 120px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 20, 34, .88), rgba(10, 20, 34, .54));
  }

  .hero-strip {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .split,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .logo-grid,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-node,
  .architecture-node:nth-child(2n) {
    border-right: 0;
  }

  .architecture-node:last-child {
    border-bottom: 0;
  }

  .anniversary-bar a {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 14px 22px 16px;
  }

  .anniversary-bar img {
    width: 34px;
    height: 34px;
  }

  .anniversary-copy,
  .anniversary-facts,
  .anniversary-bar em {
    grid-column: 2;
  }

  .anniversary-bar strong,
  .anniversary-copy span {
    white-space: normal;
  }

  .anniversary-facts {
    gap: 6px;
  }

  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 11px 12px;
  }

  .cookie-notice p {
    font-size: 12px;
  }

  .cookie-notice button {
    min-height: 36px;
    padding: 0 13px;
  }

  .service,
  .timeline li {
    min-height: auto;
  }

  .process-architecture {
    margin-top: 22px;
  }

  .logo-grid img {
    height: 104px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (hover: hover) {
  .service {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  .service:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 105, 176, .26);
    box-shadow: 0 18px 42px rgba(15, 39, 63, .11);
  }

  .architecture-node {
    transition: background .18s ease;
  }

  .architecture-node:hover {
    background: rgba(255, 255, 255, .055);
  }
}
