:root {
  /* Premium palette: Navy #0b1724, Anthracite #101418, Cyan #10b8c7, Deep Green #123c35, Warm Gold #d8a24a */
  --ink: #111827;
  --muted-ink: #53616d;
  --paper: #f5f7f9;
  --surface: #ffffff;
  --line: #d8e1e8;
  --teal: #10b8c7;
  --teal-dark: #087f8c;
  --amber: #d8a24a;
  --navy: #0b1724;
  --anthracite: #101418;
  --green: #123c35;
  --shadow: 0 24px 64px rgba(11, 23, 36, 0.16);
  --container: 1180px;
  --section-y: clamp(72px, 8vw, 108px);
  --font-main: Aptos, Calibri, "Segoe UI", Candara, Arial, sans-serif;
  --font-display: Aptos Display, Aptos, Calibri, "Segoe UI", Candara, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.56;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: common-ligatures;
}

section[id] {
  scroll-margin-top: 92px;
}

[hidden] {
  display: none !important;
}

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

b,
strong {
  font-weight: 600;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 248, 246, 0.94);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.1);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: flex;
  width: 248px;
  aspect-ratio: 625 / 200;
  padding: 1px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(120, 220, 235, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(16, 184, 199, 0.06)),
    rgba(5, 14, 20, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(16, 184, 199, 0.1);
  backdrop-filter: blur(14px) saturate(1.15);
}

.site-header.is-scrolled .brand-mark,
body.section-page .brand-mark {
  border-color: rgba(120, 220, 235, 0.34);
  background:
    linear-gradient(135deg, rgba(7, 14, 20, 0.98), rgba(13, 25, 31, 0.94)),
    rgba(5, 14, 20, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(23, 33, 38, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 1px;
  min-height: 1px;
  display: block;
  margin: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) brightness(1.06) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.24));
}

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

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .brand-text,
body.section-page .brand-text {
  border-left-color: rgba(11, 23, 36, 0.18);
}

.brand strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.08;
  white-space: nowrap;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a {
  opacity: 0.82;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

.site-nav a.is-active {
  color: var(--teal);
}

body.section-page .site-header {
  color: var(--ink);
  background: rgba(247, 248, 246, 0.96);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.1);
  backdrop-filter: blur(12px);
}

body.section-page main {
  padding-top: 96px;
}

body.section-page main > section:not(.hero) {
  min-height: calc(100vh - 150px);
}

body.section-page .section,
body.section-page .section-band {
  padding-top: clamp(78px, 8vw, 118px);
}

.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .language-switch {
  border-color: var(--line);
  background: #ffffff;
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  color: currentColor;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #06111a;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  filter: blur(1.1px) brightness(0.76) saturate(0.98);
  transform: scale(1.025);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 13, 22, 0.96), rgba(6, 13, 22, 0.72) 45%, rgba(6, 13, 22, 0.22)),
    radial-gradient(circle at 72% 20%, rgba(16, 184, 199, 0.25), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(216, 162, 74, 0.11), transparent 28%),
    linear-gradient(0deg, rgba(6, 13, 22, 0.76), rgba(6, 13, 22, 0.08) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92vh;
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 54px;
  flex-direction: column;
  justify-content: flex-end;
  animation: heroContentIn 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-statement {
  width: fit-content;
  max-width: min(100%, 760px);
  margin: 0 0 18px;
  border: 1px solid rgba(120, 220, 235, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  color: #eafcff;
  background:
    linear-gradient(135deg, rgba(16, 184, 199, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(5, 14, 20, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px) saturate(1.12);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.14;
  animation: heroStatementPulse 4.8s ease-in-out infinite;
}

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

h1,
h2,
h3,
.brand strong,
.button,
.site-nav,
.language-switch button,
.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 600;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-value-grid {
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.hero-value-grid article {
  min-height: 116px;
  border: 1px solid rgba(120, 220, 235, 0.22);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(16, 184, 199, 0.06)),
    rgba(6, 13, 22, 0.28);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-value-grid article:hover {
  border-color: rgba(120, 220, 235, 0.45);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(16, 184, 199, 0.1)),
    rgba(6, 13, 22, 0.32);
  transform: translateY(-2px);
}

.hero-value-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-value-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.45;
}

.hero-video-card {
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr);
  gap: 16px;
  margin: 0 0 24px;
  align-items: stretch;
  border: 1px solid rgba(120, 220, 235, 0.26);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(10, 102, 194, 0.14), rgba(16, 184, 199, 0.08)),
    rgba(6, 13, 22, 0.32);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.hero-video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 2px 4px 6px;
}

.hero-video-copy span {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-video-copy strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.1;
}

.hero-video-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.48;
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 232, 255, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 184, 217, 0.12), rgba(41, 171, 135, 0.1)),
    rgba(5, 14, 20, 0.84);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.hero-video-poster,
.hero-video-embed,
.hero-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.hero-video-poster {
  object-fit: cover;
  filter: brightness(0.9) saturate(1.08);
}

.hero-video-embed {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-video-embed iframe {
  border: 0;
  aspect-ratio: 16 / 9;
}

.hero-video-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(6, 13, 22, 0.04), rgba(6, 13, 22, 0.5));
  cursor: pointer;
  font: inherit;
  transition: opacity 180ms ease, background 180ms ease;
}

.hero-video-start span {
  position: relative;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: linear-gradient(135deg, #00b8d9, #29ab87);
  box-shadow: 0 22px 46px rgba(0, 184, 217, 0.28);
}

.hero-video-start span::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid #ffffff;
}

.hero-video-start strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(4, 18, 28, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero-video-start:hover {
  background: linear-gradient(180deg, rgba(0, 184, 217, 0.08), rgba(6, 13, 22, 0.42));
}

.hero-video-frame.is-playing .hero-video-start {
  opacity: 0;
  pointer-events: none;
}

.hero-video-channel {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(6, 13, 22, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease, border-color 180ms ease;
}

.hero-video-channel:hover {
  border-color: rgba(0, 184, 217, 0.72);
  color: #ffffff;
}

.hero-video-frame.is-playing .hero-video-channel {
  opacity: 0;
  pointer-events: none;
}

.hero-video-frame.is-playing .hero-video-poster {
  visibility: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, #10b8c7, #087f8c);
  box-shadow: 0 16px 34px rgba(16, 184, 199, 0.24);
}

.button.primary:hover {
  background:
    linear-gradient(135deg, #13c9d9, #087f8c);
  transform: translateY(-2px);
}

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

.button.secondary:hover {
  border-color: rgba(120, 220, 235, 0.55);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.button.ghost {
  color: #ffffff;
  border-color: transparent;
  background: transparent;
}

.button.ghost:hover {
  color: var(--teal);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 500;
}

.hero-metrics {
  display: grid;
  width: min(820px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-12px, -8px, 0);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroStatementPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      0 14px 34px rgba(0, 0, 0, 0.16),
      0 0 0 rgba(16, 184, 199, 0);
  }

  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      0 14px 34px rgba(0, 0, 0, 0.16),
      0 0 28px rgba(16, 184, 199, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-content,
  .hero-statement {
    animation: none;
  }
}

.hero-metrics div {
  padding: 18px;
  background: rgba(10, 20, 25, 0.34);
}

.hero-metrics dt {
  margin-bottom: 6px;
  font-weight: 600;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section,
.section-band {
  padding: var(--section-y) 0;
}

.section-inner {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  background: linear-gradient(135deg, var(--navy), var(--anthracite));
  color: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.two-column p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.about-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(16, 184, 199, 0.16), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--anthracite));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: stretch;
}

.about-main h2 {
  max-width: 780px;
}

.about-main p,
.founder-card p,
.vision-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.68;
}

.founder-card,
.vision-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.founder-card h3 {
  color: #ffffff;
  font-size: clamp(26px, 2.8vw, 34px);
}

.about-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  margin-top: 28px;
}

.about-capabilities {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.about-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-chip-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 500;
}

.vision-card strong {
  display: block;
  margin-top: 20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.section-heading.compact {
  max-width: 880px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted-ink);
  font-size: 18px;
  line-height: 1.68;
}

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

.seo-keyword-panel {
  margin: 0 0 20px;
  border: 1px solid rgba(16, 184, 199, 0.18);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(16, 184, 199, 0.08), rgba(41, 171, 135, 0.05)),
    rgba(255, 255, 255, 0.03);
}

.seo-keyword-panel p {
  max-width: 980px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

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

.seo-keyword-grid span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(6, 13, 22, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.service-card {
  min-height: 258px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.platform-grid article:hover,
.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(11, 23, 36, 0.12);
}

.service-icon {
  display: inline-grid;
  min-width: 46px;
  height: 32px;
  padding: 0 10px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.service-card p,
.application-list p,
.process-list p,
.cta p,
.platform-grid p,
.growth-grid p,
.legal-card p {
  color: var(--muted-ink);
}

.muted {
  background: #e8eef2;
}

.value-section {
  padding-top: 0;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
  padding-top: clamp(54px, 8vw, 86px);
  border-top: 1px solid var(--line);
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-list div {
  padding: 24px 0 24px 28px;
  border-left: 4px solid var(--teal);
}

.value-list p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-ink);
}

.expertise-section {
  background:
    linear-gradient(135deg, rgba(16, 184, 199, 0.1), rgba(18, 60, 53, 0.08)),
    #ffffff;
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: stretch;
}

.lead {
  max-width: 640px;
  color: var(--muted-ink);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.62;
}

.expertise-section .section-inner > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expertise-section h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.2vw, 54px);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.expertise-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(11, 23, 36, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}

.expertise-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(16, 184, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 252, 0.88)),
    #ffffff;
  box-shadow: var(--shadow);
}

.expertise-panel h3 {
  margin-bottom: 22px;
  font-size: clamp(22px, 2.2vw, 30px);
}

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

.outcome-grid div {
  min-height: 145px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.outcome-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.outcome-grid p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.42;
}

.references-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 23, 36, 0.95), rgba(18, 60, 53, 0.94)),
    var(--navy);
}

.references-section .section-heading p,
.references-section .kpi-card p {
  color: rgba(255, 255, 255, 0.74);
}

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

.kpi-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.kpi-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.kpi-card h3 {
  margin-bottom: 18px;
}

.kpi-card p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.58;
}

.kpi-card p:last-child {
  margin-bottom: 0;
}

.kpi-card strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.technologies-section {
  background: #ffffff;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-cloud span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--navy);
  background: #f7fafb;
  font-weight: 500;
}

.platform-section {
  background: #eef4f6;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.platform-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(11, 23, 36, 0.12);
  border-radius: 8px;
  background: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.platform-grid span {
  display: inline-grid;
  min-width: 48px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  color: #06111a;
  background: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.platform-grid p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.growth-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.growth-grid article {
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(11, 23, 36, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.growth-grid h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.growth-grid p {
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 15px;
  line-height: 1.5;
}

.application-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(23, 33, 38, 0.15);
}

.application-list div {
  display: flex;
  min-height: 190px;
  padding: 28px 24px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(23, 33, 38, 0.15);
}

.application-list h3 {
  margin-bottom: 12px;
}

.application-list p {
  margin-bottom: 0;
  line-height: 1.45;
}

.application-list div:last-child {
  border-right: 0;
}

.application-list div:nth-child(3) {
  border-right: 0;
}

.application-list div:nth-child(-n + 3) {
  border-bottom: 1px solid rgba(23, 33, 38, 0.15);
}

.process-section {
  background: #ffffff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 33, 38, 0.15);
  background: rgba(23, 33, 38, 0.15);
}

.process-list li {
  display: flex;
  min-height: 190px;
  padding: 28px 24px;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.process-list span {
  display: grid;
  width: 44px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  color: #06111a;
  background: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.process-list h3 {
  margin-bottom: 12px;
}

.process-list p {
  margin-bottom: 0;
  line-height: 1.45;
}

.cta {
  background:
    linear-gradient(135deg, rgba(11, 23, 36, 0.96), rgba(18, 60, 53, 0.96)),
    var(--green);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.cta h2 {
  max-width: 720px;
}

.cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.66;
}

.contact-response {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid rgba(16, 184, 199, 0.38);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(16, 184, 199, 0.1);
  font-size: 14px;
  font-weight: 500;
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(120, 220, 235, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(16, 184, 199, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.contact-form {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-profile {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 0 18px;
  border: 1px solid rgba(148, 232, 255, 0.42);
  border-radius: 50%;
  padding: 4px;
  background:
    linear-gradient(135deg, rgba(16, 184, 199, 0.42), rgba(41, 171, 135, 0.18)),
    rgba(6, 13, 22, 0.58);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.24),
    0 0 0 7px rgba(255, 255, 255, 0.04);
}

.contact-profile::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 184, 199, 0.2), transparent 64%);
}

.contact-profile img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
}

.contact-form .form-wide {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 13px;
  color: #ffffff;
  background: rgba(6, 13, 22, 0.42);
  font: inherit;
  line-height: 1.45;
  outline: none;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  background: rgba(6, 13, 22, 0.58);
  box-shadow: 0 0 0 3px rgba(16, 184, 199, 0.16);
}

.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form option {
  color: var(--ink);
}

.contact-form .form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .form-consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.contact-form .form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status.is-pending,
.form-status.is-success,
.form-status.is-error {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 13, 22, 0.44);
}

.form-status.is-success {
  border-color: rgba(45, 212, 191, 0.52);
  color: #b9fff0;
}

.form-status.is-error {
  border-color: rgba(255, 145, 130, 0.52);
  color: #ffd0ca;
}

.contact-link {
  display: grid;
  gap: 4px;
  width: 100%;
  overflow-wrap: anywhere;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.contact-link span {
  color: rgba(190, 235, 242, 0.7);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.contact-panel p {
  margin: 18px 0 0;
  font-size: 15px;
}

.contact-panel .contact-name {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-role {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.contact-panel .contact-note {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.contact-address {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.linkedin-profile-button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 220, 235, 0.42);
  border-radius: 8px;
  padding: 0;
  color: #eafcff;
  background:
    linear-gradient(135deg, rgba(10, 102, 194, 0.28), rgba(16, 184, 199, 0.14)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 12px 26px rgba(0, 0, 0, 0.14);
  font-weight: 600;
  line-height: 1.25;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.linkedin-profile-button:hover {
  border-color: rgba(120, 220, 235, 0.62);
  background:
    linear-gradient(135deg, rgba(10, 102, 194, 0.42), rgba(16, 184, 199, 0.2)),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.linkedin-profile-icon {
  display: inline-grid;
  width: 100%;
  height: 100%;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #ffffff;
  background: #0a66c2;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.legal-section {
  background: #f0f4f2;
}

.legal-section .section-heading p {
  max-width: 820px;
}

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

.legal-card {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.legal-card address {
  margin-bottom: 18px;
  font-style: normal;
}

.legal-card p {
  color: var(--muted-ink);
}

.legal-card a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-label {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: #111b1f;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a,
.footer-consent-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.footer-consent-button:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

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

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  width: min(1080px, 100%);
  border: 1px solid rgba(148, 232, 255, 0.28);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(16, 184, 199, 0.12), rgba(41, 171, 135, 0.08)),
    rgba(6, 13, 22, 0.96);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  color: #ffffff;
  pointer-events: auto;
  backdrop-filter: blur(16px);
}

.cookie-copy h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.cookie-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.cookie-option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.cookie-option strong,
.cookie-option em {
  display: block;
}

.cookie-option strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 14px;
}

.cookie-option em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.cookie-option.is-required {
  opacity: 0.86;
}

.cookie-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1120px) {
  .site-nav {
    position: absolute;
    inset: 92px 18px auto;
    display: none;
    padding: 14px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: block;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    min-height: 820px;
  }

  .two-column,
  .about-layout,
  .about-bottom,
  .value-layout,
  .expertise-layout,
  .tech-layout,
  .platform-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .application-list div:nth-child(2),
  .application-list div:nth-child(4) {
    border-right: 0;
  }

  .application-list div:nth-child(3) {
    border-right: 1px solid rgba(23, 33, 38, 0.15);
  }

  .application-list div {
    border-bottom: 1px solid rgba(23, 33, 38, 0.15);
  }

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

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

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

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 10px 18px;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }

  .brand-mark {
    width: 178px;
    padding: 1px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
  }

  .brand-text {
    padding-left: 10px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    min-height: 780px;
    padding-top: 128px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-metrics,
  .hero-value-grid,
  .hero-video-card,
  .service-grid,
  .application-list,
  .kpi-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .seo-keyword-grid {
    grid-template-columns: 1fr;
  }

  .hero-value-grid {
    gap: 8px;
  }

  .hero-value-grid article {
    min-height: auto;
    padding: 14px;
  }

  .hero-video-card {
    gap: 12px;
    padding: 12px;
  }

  .hero-video-copy {
    padding: 0;
  }

  .hero-video-poster,
  .hero-video-embed,
  .hero-video-embed iframe {
    min-height: 190px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 16px;
  }

  .service-card {
    min-height: auto;
  }

  .application-list div,
  .application-list div:nth-child(2),
  .application-list div:nth-child(3),
  .application-list div:nth-child(4) {
    border-right: 0;
  }

  .process-list li {
    min-height: auto;
    padding: 24px;
  }

  .process-list span {
    width: 44px;
    height: 34px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

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

  .site-footer div {
    flex-wrap: wrap;
  }

  .cookie-banner {
    inset: auto 10px 10px;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 16px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 100%;
  }
}
