:root {
  color-scheme: dark;
  --background: #000918;
  --surface: #061222;
  --primary: #073785;
  --accent: #1a9292;
  --text: #f5f7fa;
  --muted: #9aafc3;
  --line: rgba(154, 175, 195, 0.3);
  --content-width: 92rem;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
}

a {
  color: inherit;
}

.holding-page {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  background: var(--background);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: 62% 45%;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  animation: settle 14s ease-out both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 9, 24, 0.98) 0%, rgba(0, 9, 24, 0.91) 34%, rgba(0, 9, 24, 0.48) 63%, rgba(0, 9, 24, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 9, 24, 0.94) 0%, transparent 31%, rgba(0, 9, 24, 0.28) 100%);
}

.site-header,
.hero-copy,
.service-route {
  width: min(calc(100% - 3rem), var(--content-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(1.25rem, 3vw, 2.75rem);
}

.brand {
  display: block;
  width: clamp(5.5rem, 8vw, 8rem);
  aspect-ratio: 1;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.build-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.build-status span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #55d9c4;
  box-shadow: 0 0 0 0.28rem rgba(85, 217, 196, 0.12);
}

.hero-copy {
  align-self: center;
  padding-block: clamp(2rem, 8vh, 6rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: #55d9c4;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.25rem, 7.4vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 span {
  display: inline-block;
  margin-top: 0.13em;
  background: linear-gradient(90deg, #55d9c4 0%, #26a6d7 48%, #3479ff 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-line {
  max-width: 43rem;
  margin: clamp(1.4rem, 3vw, 2.4rem) 0 0;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1.45;
}

.fact-line {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.8rem;
  margin-top: clamp(1.5rem, 3vw, 2.6rem);
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(85, 217, 196, 0.58);
  border-radius: 0.2rem;
  background: rgba(6, 18, 34, 0.72);
  font-size: 1rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-link span {
  color: var(--muted);
}

.contact-link strong {
  font-weight: 800;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: #55d9c4;
  background: rgba(6, 18, 34, 0.95);
  transform: translateY(-2px);
  outline: none;
}

.service-route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 9, 24, 0.95), rgba(6, 18, 34, 0.72));
}

.service-route span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 4.6rem;
  padding-inline: clamp(0.7rem, 2vw, 1.5rem);
  border-right: 1px solid var(--line);
  font-size: clamp(0.82rem, 1.25vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-route span:last-child {
  border-right: 0;
}

.service-icon {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  color: #55d9c4;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes settle {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@media (max-width: 720px) {
  .holding-page {
    min-height: 100svh;
  }

  .hero-media {
    object-position: 68% 42%;
    filter: saturate(0.78) contrast(1.08) brightness(0.64);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 9, 24, 0.96) 0%, rgba(0, 9, 24, 0.77) 68%, rgba(0, 9, 24, 0.32) 100%),
      linear-gradient(0deg, rgba(0, 9, 24, 0.98) 0%, rgba(0, 9, 24, 0.25) 52%, rgba(0, 9, 24, 0.32) 100%);
  }

  .site-header,
  .hero-copy,
  .service-route {
    width: min(calc(100% - 2rem), var(--content-width));
  }

  .brand {
    width: 5.75rem;
  }

  .build-status {
    font-size: 0.75rem;
  }

  .hero-copy {
    align-self: end;
    padding-block: 3rem 2.2rem;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  .trust-line {
    max-width: 31rem;
    font-size: 1rem;
  }

  .service-route {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-route span {
    min-height: 3.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
  }

  .service-route span:nth-child(2) {
    border-right: 0;
  }

  .service-route span:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    animation: none;
  }

  .contact-link {
    transition: none;
  }
}
