:root {
  --navy-950: #091827;
  --navy-900: #10243a;
  --navy-800: #183047;
  --slate-700: #46596b;
  --slate-600: #607284;
  --slate-400: #9cabb7;
  --slate-200: #d9e2ea;
  --slate-100: #eef3f7;
  --paper: #ffffff;
  --surface: #f8fafc;
  --line: rgba(16, 36, 58, 0.14);
  --shadow: 0 24px 70px rgba(9, 24, 39, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--navy-950);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--navy-900);
  color: white;
  padding: .75rem 1rem;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  padding: .9rem max(1.25rem, calc((100vw - 1180px) / 2));
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 178px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--slate-700);
  font-size: .94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: .5rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .12rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--navy-800);
  transition: transform .2s ease;
}

.site-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: .2rem;
}

.lang-button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--slate-700);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
}

.lang-button.is-active {
  background: var(--navy-900);
  color: #fff;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy-900);
  color: white;
  padding: 0 1.1rem;
  font-size: .9rem;
  font-weight: 750;
}

.menu-button { display: none; }

main { overflow: hidden; }

.hero,
.section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 5rem;
  align-items: center;
  padding: 7.25rem 0 5.4rem;
}

.eyebrow {
  margin: 0 0 1.05rem;
  color: var(--slate-600);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  color: var(--navy-950);
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: .98;
  letter-spacing: -0.062em;
}

h2 {
  margin-bottom: 1rem;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 3.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: .55rem;
  color: var(--navy-950);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.lead,
.section-kicker p,
.approach-copy p,
.cta-card p {
  color: var(--slate-700);
  font-size: 1.08rem;
  line-height: 1.78;
}

.lead { max-width: 710px; }

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.15rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.35rem;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--navy-900);
  color: white;
  box-shadow: 0 16px 32px rgba(16, 36, 58, .18);
}

.button-primary:hover { background: var(--navy-950); }

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

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin: 2.8rem 0 0;
}

.proof-points div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.proof-points dt {
  margin-bottom: .5rem;
  color: var(--slate-400);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.proof-points dd {
  margin: 0;
  color: var(--navy-900);
  font-size: .95rem;
  font-weight: 680;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.94));
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(16, 36, 58, .08);
  border-radius: 24px;
  pointer-events: none;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #ffffff, #eef3f7);
  padding: 1.25rem;
}

.logo-tile img {
  width: min(460px, 100%);
  object-fit: contain;
}

.ops-card {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  border: 1px solid rgba(16, 36, 58, .12);
  border-radius: 24px;
  background: var(--navy-900);
  color: white;
  padding: 1.2rem;
}

.ops-card-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  font-weight: 750;
  margin-bottom: 1rem;
}

.status {
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: #7bc891;
  box-shadow: 0 0 0 6px rgba(123, 200, 145, .16);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
}

.ops-grid div {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  padding: .85rem;
}

.ops-grid strong {
  display: block;
  margin-bottom: .18rem;
  font-size: .94rem;
}

.ops-grid span {
  color: rgba(255,255,255,.62);
  font-size: .8rem;
  line-height: 1.4;
}

.section {
  padding: 5.2rem 0;
}

.section-kicker {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.feature-row,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 42px rgba(9, 24, 39, .06);
}

.feature-card {
  min-height: 270px;
  padding: 1.5rem;
}

.feature-number {
  display: block;
  margin-bottom: 4.8rem;
  color: var(--slate-400);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.feature-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--slate-700);
  line-height: 1.68;
}

.approach-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 4rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: .9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 1.25rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 1.15rem;
}

.process-list span {
  color: var(--navy-900);
  font-weight: 850;
}

.process-list p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.62;
}

.services-section {
  padding-top: 5.8rem;
}

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

.service-card {
  padding: 1.25rem;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.35rem;
  border-radius: 16px;
  background: var(--slate-100);
  color: var(--navy-800);
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confidence-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  border-radius: 30px;
  background: var(--navy-900);
  color: white;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  box-shadow: var(--shadow);
}

.confidence-card h2 { color: white; }

.confidence-card .eyebrow {
  color: #b8c7d3;
}

.confidence-points {
  display: grid;
  gap: .9rem;
}

.confidence-points p {
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  padding: 1rem;
  line-height: 1.62;
}

.confidence-points strong {
  color: white;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, #edf3f8);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 18px 60px rgba(9, 24, 39, .1);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(16, 36, 58, .08);
}

.cta-card > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  color: var(--slate-700);
}

.footer-brand img {
  width: 184px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: .55rem;
}

.site-footer p {
  margin-bottom: 0;
  line-height: 1.62;
}

.fine-print {
  max-width: 450px;
  text-align: right;
  font-size: .88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button:hover { transform: none; }
}

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

  .header-actions {
    gap: .5rem;
  }

  .header-cta { display: none; }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    gap: .25rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 48px rgba(9,24,39,.14);
    padding: .75rem;
  }

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

  .site-nav a {
    padding: .85rem 1rem;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--slate-100);
  }

  .site-nav a::after { display: none; }

  .menu-button {
    display: grid;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    justify-self: end;
    border: 0;
    border-radius: 50%;
    background: var(--navy-900);
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-top: 5.4rem;
  }

  .hero-panel {
    max-width: 640px;
  }

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

  .approach-section,
  .confidence-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .fine-print {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: .75rem 1rem;
  }

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

  .language-switch {
    padding: .16rem;
  }

  .lang-button {
    min-width: 34px;
    min-height: 31px;
    font-size: .72rem;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .proof-points,
  .feature-row,
  .services-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .logo-tile {
    min-height: 260px;
  }

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

  .feature-number {
    margin-bottom: 2.5rem;
  }

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

  .button {
    width: 100%;
  }
}
