:root {
  --ink: #10202b;
  --muted: #526372;
  --panel: #ffffff;
  --line: #dce6ec;
  --cloud: #f3f7f8;
  --deep: #071a27;
  --teal: #0b8f9a;
  --blue: #2459a6;
  --amber: #d88a1a;
  --shadow: 0 24px 70px rgba(16, 32, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 26, 39, 0.84), rgba(7, 26, 39, 0));
}

.brand,
.nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: 58px;
}

.nav {
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a,
.footer-links a,
.service-link {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover,
.service-link:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 26, 39, 0.94) 0%, rgba(7, 26, 39, 0.78) 32%, rgba(7, 26, 39, 0.16) 72%),
    linear-gradient(0deg, rgba(7, 26, 39, 0.82) 0%, rgba(7, 26, 39, 0.05) 42%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #061721;
  background: #ffffff;
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 84px);
}

.intro h2,
.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child,
.footer p,
.service-card p,
.focus article p {
  margin-bottom: 0;
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 4vw, 56px);
  background: #ffffff;
}

.section-head {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 88% 12%, rgba(11, 143, 154, 0.2), transparent 28%),
    linear-gradient(120deg, #f8fbfc, #eef5f7);
  box-shadow: var(--shadow);
}

.service-card.atlas {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 88% 12%, rgba(36, 89, 166, 0.18), transparent 28%),
    linear-gradient(120deg, #f8fbfc, #eef4fb);
}

.service-logo {
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.clearwarn-logo img {
  max-height: 150px;
}

.atlas-logo {
  min-width: 0;
}

.atlas-logo img {
  max-height: 150px;
}

.service-kicker {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atlas .service-kicker {
  color: var(--blue);
}

.service-card h3 {
  margin: 8px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.service-card p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-link {
  width: fit-content;
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  font-weight: 800;
}

.service-link:hover {
  color: var(--teal);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.focus article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.focus article span {
  display: block;
  margin-bottom: 44px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
}

.focus article h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.focus article p {
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
}

.footer strong {
  color: #fff;
}

.footer p {
  margin-top: 6px;
}

.footer-links {
  gap: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand img {
    height: 48px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 26, 39, 0.56) 0%, rgba(7, 26, 39, 0.86) 45%, rgba(7, 26, 39, 0.95) 100%);
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-inner {
    padding-bottom: 42px;
  }

  .intro,
  .service-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .focus article {
    min-height: auto;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .button {
    width: 100%;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
