:root {
  --blue: #0047b8;
  --blue-dark: #073b9f;
  --yellow: #f4b400;
  --ink: #0b182f;
  --muted: #526078;
  --line: #dde3ec;
  --surface: #ffffff;
  --soft: #f7f9fc;
  --shell: 1548px;
  --radius: 10px;
  --shadow: 0 14px 34px rgba(0, 71, 184, 0.16);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 96px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  color: white;
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  height: 105px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 302px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.language-pill {
  display: inline-grid;
  place-items: center;
  min-width: 70px;
  height: 42px;
  border: 1px solid #d7dde7;
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #fff;
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 48% 52%, rgba(88, 138, 222, 0.12), rgba(255, 255, 255, 0) 28%),
    linear-gradient(90deg, #fff 0%, #fff 44%, #f8faff 54%, #fff 100%);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  min-height: 608px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 24px 54px 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 26px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--yellow);
}

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

h1 {
  margin-bottom: 25px;
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(56px, 4.35vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 850;
}

h1 span {
  color: var(--blue);
}

h1 i {
  color: var(--yellow);
  font-style: normal;
}

.hero__lead,
.hero__support {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero__lead {
  margin-bottom: 24px;
}

.hero__support {
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg .fill {
  fill: currentColor;
  stroke: none;
}

.button--primary {
  min-width: 268px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0c3db8);
  box-shadow: var(--shadow);
}

.button--secondary {
  min-width: 240px;
  color: var(--blue);
  background: #fff;
}

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

.button--primary:hover {
  box-shadow: 0 18px 38px rgba(0, 71, 184, 0.22);
}

.button--secondary:hover {
  color: white;
  background: var(--blue);
}

.button:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.hero__visual {
  position: relative;
  min-width: 0;
  margin-right: calc((100vw - min(100vw - 96px, var(--shell))) / -2);
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 24%;
  pointer-events: none;
  background: linear-gradient(90deg, #f8faff 0%, rgba(248, 250, 255, 0.88) 24%, rgba(248, 250, 255, 0) 100%);
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: center;
}

.values {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.values__grid {
  min-height: 144px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px 44px;
}

.value-card + .value-card::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 1px;
  background: var(--line);
}

.value-card__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
}

.value-card__icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card__icon--personal svg circle,
.value-card__icon--personal svg path:last-child,
.value-card__icon--tech svg .accent {
  stroke: var(--yellow);
}

.value-card h2 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.2;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.site-footer {
  background: #fff;
}

.site-footer__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c7789;
  font-size: 14px;
}

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

@media (max-width: 1180px) {
  .shell {
    width: min(calc(100% - 56px), var(--shell));
  }

  .hero__grid {
    grid-template-columns: 52% 48%;
  }

  h1 {
    font-size: clamp(50px, 5.6vw, 68px);
  }

  .hero__copy {
    padding-right: 18px;
  }

  .value-card {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding-inline: 26px;
  }

  .hero__visual {
    margin-right: calc((100vw - min(100vw - 56px, var(--shell))) / -2);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 88px;
  }

  .brand {
    width: 250px;
  }

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

  .hero__copy {
    padding: 54px 0 38px;
  }

  .hero__visual {
    min-height: 470px;
    margin: 0 calc((100vw - min(100vw - 56px, var(--shell))) / -2);
  }

  .hero__visual::before {
    inset: 0 0 auto;
    width: auto;
    height: 20%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .hero__visual img {
    object-position: center;
  }

  .values__grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .value-card {
    min-height: 126px;
  }

  .value-card + .value-card::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: 78px;
  }

  .brand {
    width: 215px;
  }

  .language-pill {
    min-width: 54px;
    height: 36px;
    font-size: 13px;
  }

  .hero__copy {
    padding: 42px 0 32px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 13px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1.03;
  }

  .hero__lead,
  .hero__support {
    font-size: 16px;
  }

  .hero__support {
    margin-bottom: 26px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
  }

  .button,
  .button--primary,
  .button--secondary {
    width: 100%;
    min-width: 0;
  }

  .hero__visual {
    min-height: 335px;
    margin-inline: -16px;
  }

  .hero__visual img {
    object-fit: cover;
    object-position: 54% center;
  }

  .value-card {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px 6px;
  }

  .value-card__icon,
  .value-card__icon svg {
    width: 54px;
    height: 54px;
  }

  .site-footer__inner {
    min-height: 80px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
