* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #242628;
  background-image: url(assets/world.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  background-size: cover;
  background-attachment: scroll;
  color: #ffffff;
  line-height: 1.6;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 88vh;
  padding: 120px 24px;
}

.hero-inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platforms {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.platforms img {
  width: 36px;
  height: 36px;
  filter: invert(1) opacity(0.85);
}

.wordmark {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: block;
}

.tagline {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  color: #ff9e40;
  line-height: 1.4;
}

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: #c7ccd1;
}

/* Sections */
.content section {
  padding: 72px 0;
}

.content section:nth-child(odd) {
  background-color: #1d1f21;
}

.content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ff9e40;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content p {
  color: #c7ccd1;
  font-size: 17px;
}

/* About */
.about p {
  max-width: 1080px;
  margin-bottom: 16px;
}

.about h3 {
  font-size: 20px;
  color: #ffffff;
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Capabilities */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.cap {
  background: #2b2e31;
  border-left: 4px solid #f6821f;
  border-radius: 6px;
  padding: 24px;
}

.cap h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cap p {
  font-size: 15px;
  color: #c7ccd1;
}

/* Offices */
.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.office {
  background: #2b2e31;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.office h3 {
  font-size: 16px;
  color: #ff9e40;
  margin-bottom: 6px;
}

.office .entity {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.office .addr {
  font-size: 13px;
  color: #9aa0a6;
  flex-grow: 1;
}

.office .phone {
  margin-top: 12px;
}

.office .phone a {
  color: #f6821f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.office .phone a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 32px 0;
  background-color: #1d1f21;
  text-align: center;
  font-size: 14px;
  color: #9aa0a6;
}

.footer-contact {
  margin-bottom: 8px;
}

.footer-contact a {
  color: #f6821f;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .wordmark {
    font-size: 40px;
  }

  .tagline {
    font-size: 20px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .caps-grid {
    grid-template-columns: 1fr;
  }

  body {
    background-size: contain;
  }
}

@media screen and (max-width: 600px) {
  .wordmark {
    font-size: 32px;
  }

  .content section {
    padding: 48px 0;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }
}
