:root {
  --brand: #18a7ab;
  --brand-strong: #107f82;
  --brand-deep: #086166;
  --brand-soft: #e9f8f8;
  --brand-pale: #f5fbfb;
  --ink: #17282d;
  --ink-strong: #0e1e23;
  --muted: #607176;
  --quiet: #607176;
  --line: #dbe6e8;
  --line-strong: #bdd8da;
  --surface: #ffffff;
  --surface-alt: #f7fafb;
  --warning: #9b6815;
  --warning-bg: #fff8e8;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 12px 32px rgba(17, 50, 56, .07);
  --shadow-lg: 0 28px 80px rgba(17, 50, 56, .11);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--surface); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 1%, rgba(24, 167, 171, .09), transparent 26rem),
    radial-gradient(circle at 94% 18%, rgba(24, 167, 171, .05), transparent 29rem),
    var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(24, 167, 171, .18) 1px, transparent 1.25px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 44rem);
  opacity: .38;
}

a, button { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-weight: 600; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(24, 167, 171, .36);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 11px 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand-strong);
  font-weight: 800;
  transition: top .18s ease;
}
.skip-link:focus { top: 16px; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(219, 230, 232, .88);
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-logo {
  width: clamp(164px, 18vw, 205px);
  height: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: var(--brand-strong); }
.nav-links .nav-utility-link { color: inherit; font-weight: inherit; }
.nav-links a[aria-current="page"] { color: var(--brand-strong); font-weight: 850; }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
}
.language-switcher button {
  min-width: 42px;
  min-height: 34px;
  border-radius: 999px;
  color: var(--quiet);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.language-switcher button[aria-pressed="true"] {
  color: #fff;
  background: var(--brand-strong);
  box-shadow: 0 6px 16px rgba(24, 167, 171, .22);
}

.footer-service-links { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 12px; font-weight: 750; }
.footer-service-links a:hover { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 1040px) {
  .footer-service-links { display: none; }
}

main { overflow: hidden; }

.hero {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
  padding: clamp(62px, 10vw, 112px) 0 74px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -240px;
  top: 30px;
  width: 440px;
  height: 440px;
  z-index: -1;
  border: 1px solid rgba(24, 167, 171, .10);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(24, 167, 171, .028),
    0 0 0 108px rgba(24, 167, 171, .018);
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink-strong);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.01;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.brand-text { color: var(--brand-strong); }

.hero-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: var(--brand-strong);
  box-shadow: 0 12px 26px rgba(24, 167, 171, .20);
}
.button-primary:hover { background: var(--brand-deep); box-shadow: 0 15px 32px rgba(24, 167, 171, .24); }
.button-secondary { color: var(--brand-strong); background: #fff; }
.button-secondary:hover { background: var(--brand-pale); }
.button svg { width: 16px; height: 16px; }

.hero-board {
  position: relative;
  min-height: 440px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(24, 167, 171, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 167, 171, .035) 1px, transparent 1px),
    linear-gradient(145deg, #fff, #f5fbfb);
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-board::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(24, 167, 171, .11);
  filter: blur(4px);
}

.board-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.board-kicker {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.board-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}
.board-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(24, 167, 171, .10);
}

.board-team { position: relative; display: grid; gap: 11px; margin-top: 20px; }
.board-person {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .91);
  box-shadow: var(--shadow-sm);
}
.board-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand-strong);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
}
.board-person strong { display: block; color: var(--ink-strong); font-size: 13px; }
.board-person span span { display: block; margin-top: 3px; color: var(--quiet); font-size: 10px; }
.board-arrow { color: var(--brand-strong); font-size: 20px; line-height: 1; }

.board-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 16px;
}
.board-stat {
  padding: 14px 10px;
  border: 1px solid rgba(24, 167, 171, .16);
  border-radius: 13px;
  background: rgba(233, 248, 248, .74);
  text-align: center;
}
.board-stat strong { display: block; color: var(--brand-strong); font-size: 17px; }
.board-stat span { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
