:root {
  color-scheme: light;
  --ink: #061a3b;
  --muted: #53627a;
  --blue: #0874ff;
  --blue-dark: #054ab8;
  --line: rgba(6, 26, 59, 0.12);
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(6, 26, 59, 0.13);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(8, 116, 255, 0.14), transparent 27rem),
    linear-gradient(145deg, #f9fbff 0%, #eef5ff 48%, #ffffff 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 26, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 59, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 82%);
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.construction-page {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

.brand img {
  display: block;
  width: clamp(180px, 28vw, 360px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.contact-link,
.language-toggle,
.status-panel a {
  text-decoration: none;
  font-weight: 700;
}

.contact-link,
.language-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(6, 26, 59, 0.06);
  white-space: nowrap;
}

.language-toggle {
  width: 48px;
  padding: 0;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
}

.language-toggle:hover,
.contact-link:hover {
  border-color: rgba(8, 116, 255, 0.34);
  box-shadow: 0 10px 26px rgba(8, 116, 255, 0.12);
}

.contact-link:focus-visible,
.language-toggle:focus-visible,
.status-panel a:focus-visible {
  outline: 3px solid rgba(8, 116, 255, 0.34);
  outline-offset: 3px;
}

.construction-page {
  display: grid;
  align-items: center;
  padding: 42px 0 60px;
}

.hero {
  min-height: min(660px, calc(100vh - 172px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.status-panel {
  width: min(100%, 650px);
  margin-top: 34px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(18px);
}

.status-panel div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
}

.status-panel a {
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(8, 116, 255, 0.14);
  flex: 0 0 auto;
}

.visual {
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 255, 0.78)),
    #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 54px);
}

.visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(6, 26, 59, 0.14));
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 22px 0 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 780px) {
  .site-header,
  .site-footer,
  .construction-page {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 82px;
  }

  .brand img {
    width: clamp(160px, 56vw, 250px);
  }

  .contact-link,
  .language-toggle {
    min-height: 38px;
    font-size: 0.9rem;
  }

  .contact-link {
    padding-inline: 14px;
  }

  .language-toggle {
    width: 44px;
  }

  .construction-page {
    padding: 22px 0 34px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .intro {
    margin-top: 22px;
  }

  .status-panel {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
  }

  .visual {
    width: min(100%, 360px);
    justify-self: center;
    order: -1;
  }
}

@media (max-width: 480px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
  }

  .brand {
    width: calc(100% - 58px);
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-link {
    align-self: flex-start;
  }

  .language-toggle {
    position: absolute;
    top: 18px;
    right: 0;
  }

  .eyebrow {
    font-size: 0.76rem;
  }

  .visual {
    width: min(100%, 300px);
  }
}
