:root {
  --bg: hsl(0 0% 100%);
  --surface: hsl(0 0% 98%);
  --text: hsl(0 0% 10%);
  --muted: hsl(0 0% 38%);
  --line: hsl(0 0% 86%);
  --line-strong: hsl(0 0% 80%);
  --shadow: 0 18px 60px hsl(0 0% 0% / 0.08);
  --shadow-soft: 0 10px 30px hsl(0 0% 0% / 0.06);

  --radius: 16px;
  --radius-sm: 12px;

  --container: 1120px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 240ms;

  --focus: 0 0 0 3px hsl(0 0% 10% / 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: hsl(0 0% 100% / 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(145deg, hsl(0 0% 92%), hsl(0 0% 80%));
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.6);
  border: 1px solid var(--line-strong);
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}


.brand-name {
  font-weight: 650;
  letter-spacing: -0.02em;
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 12.5px;
  color: var(--muted);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.nav-btn:hover {
  color: var(--text);
  border-color: var(--line);
  background: hsl(0 0% 98%);
  transform: translateY(-1px);
}

.nav-btn.is-active {
  color: var(--text);
  border-color: var(--line-strong);
  background: hsl(0 0% 96%);
}

.nav-cta {
  color: var(--text);
  border-color: var(--line-strong);
  background: hsl(0 0% 96%);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle:focus-visible,
.nav-btn:focus-visible,
.btn:focus-visible,
.text-link:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-header.is-open .site-nav {
  display: grid;
  grid-auto-flow: row;
  justify-items: end;
  gap: 6px;
  padding: 8px 0 4px 0;
}

.site-header.is-open .header-inner {
  grid-template-columns: 1fr;
  align-items: start;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 34px 0 26px 0;
}

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

.kicker {
  margin: 0 0 12px 0;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-lead {
  margin: 14px 0 0 0;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 66ch;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: hsl(0 0% 12%);
  border-color: hsl(0 0% 12%);
  color: hsl(0 0% 100%);
}

.btn-primary:hover {
  background: hsl(0 0% 10%);
}

.btn-ghost {
  background: hsl(0 0% 98%);
}

.btn-small {
  padding: 10px 12px;
  box-shadow: none;
}

.hero-badges {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 640px;
}

.badge {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, hsl(0 0% 100%), hsl(0 0% 97%));
  padding: 12px 14px;
}

.badge-title {
  display: block;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.badge-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  max-width: 520px;
}

.panel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.panel-title {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.panel-links {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.panel-link {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.panel-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.icon svg {
  display: block;
  fill: currentColor;
  color: hsl(0 0% 18%);
}

.panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.panel-note {
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

.hero-divider {
  height: 1px;
  background: var(--line);
}

.section {
  padding: 44px 0;
}

.section-alt {
  background: linear-gradient(180deg, hsl(0 0% 100%), hsl(0 0% 98%));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
}

.section-title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 15.5px;
}

.cards-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.card-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

.card-tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  color: hsl(0 0% 20%);
  border: 1px solid var(--line);
  background: hsl(0 0% 98%);
  padding: 6px 10px;
  border-radius: 999px;
}

.note {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 16px;
}

.note-title {
  margin: 0;
  font-weight: 650;
}

.note-text {
  margin: 8px 0 0 0;
  color: var(--muted);
}

.team-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.person-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.person-top {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    margin-right: 29px;
}

.person-avatar {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    background: linear-gradient(145deg, hsl(0 0% 94%), hsl(0 0% 84%));
    color: hsl(0 0% 14%);
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-left: 0px;
}

.person-name {
    margin-top: 3px;
    margin-right: -27px;
    margin-left: 27px;
    margin-bottom: 17px;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.person-oab {
    margin-top: -23px;
    margin-right: 0;
    margin-left: 34px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13.5px;
}

.person-text {
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

.method-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.method-title {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.method-text {
  margin: 10px 0 0 0;
  color: var(--muted);
}

.timeline {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.timeline-k {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-v {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.contact-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-text {
  margin: 10px 0 16px 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.text-link {
  color: hsl(0 0% 12%);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.fineprint {
  margin: 14px 0 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

.map-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.footer-title {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.footer-sub {
  margin: 4px 0 0 0;
  color: var(--muted);
  font-size: 13.5px;
}

.footer-people p,
.footer-links a {
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 13.5px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 880px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    padding: 54px 0 34px 0;
  }

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

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .map-wrap,
  .map-frame {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1.4fr 0.8fr;
    align-items: start;
  }
}

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

  .reveal [data-reveal] {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .btn,
  .nav-btn,
  .panel-link,
  .card {
    transition: none;
  }


@charset "UTF-8";
/* CSS Document */
