:root {
  color-scheme: light;
  --brand-red: #d71920;
  --ink: #17212b;
  --muted: #647080;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #111827;
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.hero-media {
  min-height: min(840px, 88vh);
}

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

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

@media (min-width: 768px) {
  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.glass-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  background: var(--brand-red);
  bottom: -0.5rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 150ms ease;
  width: 100%;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.focus-ring:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.35);
  outline-offset: 3px;
}

.image-frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(215, 25, 32, 0.35), rgba(28, 126, 214, 0.35));
  content: "";
  height: 2px;
  left: 3rem;
  position: absolute;
  right: -1rem;
  top: 1.5rem;
}

@media (max-width: 767px) {
  .process-step:not(:last-child)::after {
    height: calc(100% - 2rem);
    left: 1.5rem;
    right: auto;
    top: 3.25rem;
    width: 2px;
  }
}

[data-lang-panel] {
  display: none;
}

[data-lang-panel].is-active {
  display: block;
}

.cookie-panel {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}
