:root {
  --blue: #0066d7;
  --blue-2: #005bc8;
  --blue-dark: #021f55;
  --text: #071d50;
  --muted: #20345f;
  --line: #dfe8f5;
  --soft: #f5f9ff;
  --card: #ffffff;
  --shadow: 0 14px 34px rgba(0, 78, 170, .12);
  --shadow-soft: 0 9px 24px rgba(0, 64, 150, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #fff;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell {
  position: relative;
  width: min(100%, 853px);
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 7%, rgba(0, 102, 215, .055), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fff 62%, #fdfefe 100%);
}

.hero {
  position: relative;
  min-height: 524px;
  padding: 42px 36px 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 26px;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0), rgba(248, 251, 255, .95));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 390px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 51px;
}

.brand-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 43px;
}

.brand svg { width: 38px; height: 38px; }

.hero h1 {
  margin: 0 0 21px;
  color: var(--blue-dark);
  font-size: 65px;
  line-height: .98;
  letter-spacing: -2.9px;
  font-weight: 900;
}

.hero-subline {
  margin: 0 0 25px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: -.7px;
}

.hero-text {
  margin: 0;
  color: var(--text);
  max-width: 350px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 463px;
  height: 540px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.about {
  position: relative;
  z-index: 3;
  padding: 22px 39px 0;
  background: linear-gradient(180deg, rgba(247, 251, 255, .88) 0%, rgba(255,255,255,.98) 72%);
}

.section-title,
.location-card h2,
.contact h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.75px;
}

.section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 13px;
  background: var(--blue);
  border-radius: 999px;
}

.person-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 22px;
  align-items: center;
  min-height: 178px;
  padding: 14px 0 15px;
  border-bottom: 1px solid var(--line);
}

.person-card:first-of-type { margin-top: 0; }
.person-card-last { border-bottom: 0; min-height: 169px; }

.person-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(160deg, #0878e7, #005ccc);
  box-shadow: 0 8px 16px rgba(0, 93, 205, .18);
}

.person-avatar svg {
  width: 37px;
  height: 37px;
  fill: currentColor;
}

.person-content h3 {
  margin: 0 0 2px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.55px;
}

.person-content h3 span { font-weight: 900; }

.role {
  margin: 0 0 13px;
  color: var(--blue-dark);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
}

.person-content p:not(.role) {
  margin: 0;
  max-width: 595px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: .02px;
}

.person-arrow { display: none; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  padding: 14px 31px 30px;
}

.feature-card {
  min-height: 276px;
  padding: 20px 20px 18px;
  text-align: center;
  border-radius: 13px;
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
  box-shadow: 0 9px 26px rgba(0, 69, 160, .075);
}

.feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(180deg, #e8f2ff, #dcecff);
}

.feature-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.feature-card h3 {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.48px;
}

.feature-card p {
  margin: 0 auto;
  color: var(--text);
  font-size: 15px;
  line-height: 1.52;
  font-weight: 500;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px;
  padding: 0 31px 24px;
}

.info-card {
  position: relative;
  min-height: 258px;
  padding: 27px 28px;
  overflow: hidden;
  border: 1px solid #dce9fa;
  border-radius: 13px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-soft);
}

.move-card { background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%); }

.info-card p {
  margin: 25px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.34;
  font-weight: 500;
}

.info-card p + p { margin-top: 20px; }

.watermark {
  position: absolute;
  left: 24px;
  bottom: -31px;
  color: rgba(0, 102, 215, .16);
  width: 124px;
  height: 124px;
  pointer-events: none;
}

.watermark svg { width: 100%; height: 100%; }

.location-card {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 26px;
  padding: 31px 27px 24px;
}

.location-icon {
  width: 44px;
  height: 55px;
  color: var(--blue);
}

.location-icon svg { width: 100%; height: 100%; fill: currentColor; }

.location-card h2 {
  color: var(--blue);
  font-size: 23px;
  margin: 8px 0 0;
}

.location-card p {
  margin-top: 28px;
  max-width: 260px;
  line-height: 1.43;
}

.location-card p + p { margin-top: 22px; }

.contact {
  margin: 0 25px 26px;
  padding: 22px 49px 15px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #0068de 0%, #0054bd 100%);
  box-shadow: 0 16px 30px rgba(0, 78, 180, .22);
}

.contact-head {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 74px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 9px 20px rgba(0, 0, 0, .08);
}

.contact-icon svg { width: 45px; height: 45px; }

.contact h2 {
  color: #fff;
  font-size: 27px;
}

.contact p {
  margin: 7px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.contact-divider {
  height: 1px;
  margin: 18px 0 14px 32px;
  background: rgba(255, 255, 255, .38);
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 29px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.contact-links svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 28px;
}

.vertical-divider {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .38);
}

@media (min-width: 980px) {
  .site-shell {
    width: min(100%, 1024px);
  }

  .hero {
    min-height: 610px;
    padding: 48px 52px 0;
  }

  .hero-copy {
    width: 450px;
  }

  .brand {
    margin-bottom: 58px;
  }

  .hero h1 {
    font-size: 72px;
    letter-spacing: -3.2px;
  }

  .hero-subline {
    font-size: 30px;
  }

  .hero-text {
    max-width: 410px;
    font-size: 19px;
  }

  .hero-art {
    width: 520px;
    height: auto;
  }

  .about {
    padding: 28px 52px 0;
  }

  .person-card {
    column-gap: 24px;
  }

  .person-content p:not(.role) {
    max-width: 760px;
  }

  .features {
    gap: 18px;
    padding: 18px 52px 34px;
  }

  .feature-card {
    min-height: 248px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .info-grid {
    gap: 32px;
    padding: 0 52px 28px;
  }

  .location-card p {
    max-width: 340px;
  }

  .contact {
    margin: 0 52px 34px;
  }

  .contact-links {
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .site-shell { width: 100%; }

  .hero {
    padding: 28px 24px 0;
    min-height: auto;
  }

  .hero-copy { width: 100%; }

  .brand { margin-bottom: 25px; }

  .hero h1 {
    font-size: clamp(46px, 12vw, 62px);
    letter-spacing: -2.2px;
    max-width: 430px;
  }

  .hero-subline { font-size: 24px; }
  .hero-text { max-width: 100%; font-size: 17px; }

  .hero-art {
    position: relative;
    display: block;
    width: calc(100% + 48px);
    height: auto;
    margin: 28px -24px 0;
  }

  .about { padding: 28px 24px 0; }

  .person-card {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 22px 0;
  }

  .person-avatar { width: 52px; height: 52px; }
  .person-content h3 { font-size: 23px; }
  .person-content p:not(.role) { font-size: 15px; }

  .features {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 24px 28px;
  }

  .feature-card { min-height: 230px; }
  .info-grid { grid-template-columns: 1fr; padding: 0 24px 24px; gap: 18px; }
  .info-card { min-height: auto; }

  .contact {
    margin: 0 18px 22px;
    padding: 22px 24px 20px;
  }

  .contact-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-left: 0;
  }

  .vertical-divider { display: none; }
  .contact-divider { margin-left: 0; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: 44px; }
  .section-title { font-size: 26px; }

  .features { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }

  .person-card { grid-template-columns: 52px 1fr; }

  .location-card { grid-template-columns: 44px 1fr; gap: 14px; }

  .contact-head { align-items: flex-start; gap: 16px; }
  .contact-icon { width: 62px; height: 62px; flex-basis: 62px; }
  .contact-links a { font-size: 17px; gap: 12px; white-space: normal; }
}
