:root {
  --navy: #002952;
  --navy-deep: #001c39;
  --steel: #496b88;
  --sky: #55a6d8;
  --ice: #eef6fb;
  --line: #dce7ef;
  --white: #ffffff;
  --ink: #10283e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-line {
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 0 76%, var(--sky) 76%);
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(270px, 29vw, 365px);
  height: auto;
}

.header-action {
  padding-bottom: 5px;
  color: var(--navy);
  border-bottom: 2px solid var(--sky);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 600px;
  margin: 0 auto;
  padding: 88px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 3px;
  background: var(--sky);
}

h1 {
  max-width: 750px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -4px;
}

h1 em {
  color: var(--sky);
  font-style: normal;
}

.intro {
  max-width: 690px;
  margin: 30px 0 0;
  color: #51697d;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-button:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.primary-button span {
  color: var(--sky);
  font-size: 20px;
}

.text-link {
  color: var(--navy);
  border-bottom: 1px solid #aac0d1;
  font-size: 13px;
  font-weight: 700;
}

.status-card {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 5px 42px 5px 5px;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 41, 82, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 41, 82, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.status-visual {
  height: 315px;
  position: relative;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border: 2px solid rgba(0, 41, 82, 0.14);
  border-radius: 50%;
}

.ring-one {
  width: 220px;
  height: 220px;
  border-right-color: var(--sky);
  transform: rotate(-25deg);
}

.ring-two {
  width: 150px;
  height: 150px;
  border-left-color: var(--navy);
  transform: rotate(35deg);
}

.hub {
  width: 128px;
  height: 128px;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(0, 41, 82, 0.12);
  border-radius: 100px;
  box-shadow: 0 16px 40px rgba(0, 41, 82, 0.18);
}

.hub img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.status-copy {
  position: absolute;
  inset: auto 30px 28px;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid #ccdde9;
}

.status-dot {
  width: 9px;
  height: 9px;
  margin-top: 4px;
  flex: 0 0 auto;
  background: #38a169;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.13);
}

.status-copy strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-copy p {
  margin: 5px 0 0;
  color: var(--steel);
  font-size: 12px;
}

.contact-section {
  padding: 82px max(24px, calc((100% - 1180px) / 2)) 90px;
  background: #f7fafc;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading .eyebrow {
  margin: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -1.4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-card {
  min-height: 108px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  transition:
    border 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-card:hover {
  border-color: #aac4d7;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 41, 82, 0.07);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.contact-card small,
.address-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--steel);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--navy);
  font-size: clamp(14px, 1.5vw, 18px);
}

.contact-arrow {
  margin-left: auto;
  color: var(--sky);
  font-size: 20px;
}

.address-card {
  min-height: 92px;
  margin-top: 14px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--navy);
  color: var(--white);
}

.address-card small {
  color: #9ec6df;
}

.address-card strong {
  max-width: 800px;
  display: block;
  font-size: 14px;
  line-height: 1.55;
}

.pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sky);
  border-radius: 50%;
  font-size: 11px;
}

.map-link {
  color: #c9e6f7;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

footer {
  width: min(1180px, calc(100% - 48px));
  min-height: 180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.7fr;
  align-items: center;
  gap: 30px;
  color: var(--steel);
}

.footer-brand {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
}

footer p {
  font-size: 12px;
  line-height: 1.7;
}

footer > span {
  text-align: right;
  font-size: 11px;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 62px;
  }

  .status-card {
    min-height: 330px;
  }

  .status-visual {
    height: 260px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  footer {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 86px;
  }

  .header-action {
    display: none;
  }

  .brand-logo {
    width: min(285px, 77vw);
  }

  .hero {
    padding: 52px 0 62px;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -2.8px;
  }

  .intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .primary-button {
    justify-content: space-between;
  }

  .text-link {
    align-self: flex-start;
  }

  .contact-section {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .contact-card {
    padding: 17px;
  }

  .contact-card strong {
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  .address-card {
    grid-template-columns: auto 1fr;
  }

  .map-link {
    grid-column: 2;
  }

  footer {
    padding: 45px 0;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  footer p {
    margin: 0;
  }

  footer > span {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
