:root {
  --navy-950: #050d16;
  --navy-900: #081522;
  --navy-800: #0c2134;
  --navy-700: #15344d;
  --orange: #ff9d1e;
  --orange-soft: #ffc36a;
  --cream: #f7f2e9;
  --white: #fff;
  --muted: #a9bac8;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 157, 30, 0.08), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  content: "";
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--orange);
  color: var(--navy-950);
  font-weight: 800;
  padding: 10px 16px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--content);
  margin-inline: auto;
}

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

.site-nav {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-nav.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 13, 22, 0.9);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand b {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d4dee6;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:not(.language-link) {
  padding-block: 8px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--orange);
  color: var(--white);
}

.language-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 160px 0 82px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--navy-950));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange-soft);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--orange);
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--cream);
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: #c9d5de;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--navy-950);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 180px 180px 18px 18px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 13, 22, 0.92));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-label span:last-child {
  color: var(--orange-soft);
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-block: 1px solid var(--line);
}

.proof-item {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--cream);
  font-size: 1rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--cream);
  color: var(--navy-900);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.7vw, 4.8rem);
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-soft .section-heading > p,
.section-soft .card p,
.section-soft .small-note {
  color: #4f6170;
}

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

.card {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.section-soft .card {
  border-color: rgba(8, 21, 34, 0.12);
  background: #fff;
  box-shadow: 0 18px 45px rgba(8, 21, 34, 0.08);
}

.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--orange);
  font-weight: 800;
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(8, 21, 34, 0.16);
}

.stat {
  padding: 34px 24px;
  border-right: 1px solid rgba(8, 21, 34, 0.16);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: #cf6f00;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.stat span {
  color: #354b5d;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.small-note {
  margin: 16px 0 0;
  font-size: 0.82rem;
}

.feature {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--navy-800);
}

.feature-image {
  min-height: 530px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.feature-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  letter-spacing: -0.055em;
}

.feature-copy > p:not(.eyebrow) {
  color: #c4d0da;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d8e1e8;
  font-size: 0.78rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 30px 28px 20px;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.process-step::before {
  position: absolute;
  top: -18px;
  left: 28px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-950);
  content: counter(steps, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-step h3 {
  margin-top: 16px;
  font-size: 1.18rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.person {
  overflow: hidden;
  border: 1px solid rgba(8, 21, 34, 0.14);
  border-radius: 18px;
  background: #fff;
}

.person img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.person:hover img {
  filter: grayscale(0.15);
  transform: scale(1.025);
}

.person-info {
  min-height: 128px;
  padding: 20px;
}

.person h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.person p {
  margin-bottom: 0;
  color: #5c6d79;
  font-size: 0.82rem;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--navy-800);
}

.contact-panel img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.contact-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-800) 45%, transparent 90%);
  content: "";
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
  padding: 74px;
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.055em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 32px;
  color: #c7d2da;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.error-card {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 60px;
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.error-card .brand {
  margin-bottom: 60px;
}

.error-card h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 20px;
    display: none;
    width: min(320px, calc(100% - 40px));
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background: var(--navy-900);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 10px;
  }

  .hero-grid,
  .section-heading,
  .feature {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 460px;
    border-radius: 160px 160px 18px 18px;
  }

  .section-heading {
    gap: 22px;
  }

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

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

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

@media (max-width: 640px) {
  :root {
    --content: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 0.78rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 0;
    padding-top: 126px;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-media {
    min-height: 400px;
  }

  .proof-strip,
  .card-grid,
  .stats,
  .process-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child,
  .stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .card {
    min-height: 0;
  }

  .feature-image {
    min-height: 320px;
  }

  .feature-copy,
  .contact-copy,
  .error-card {
    padding: 34px 26px;
  }

  .team-grid {
    gap: 20px;
  }

  .person {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
  }

  .person img {
    height: 100%;
    aspect-ratio: auto;
  }

  .person-info {
    align-self: center;
    min-height: 0;
  }

  .contact-panel img {
    width: 100%;
  }

  .contact-panel::after {
    background: rgba(8, 33, 52, 0.84);
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
