:root {
  --navy: #082b57;
  --blue: #1098e9;
  --cyan: #1aa8e8;
  --green: #2bc75a;
  --text: #15365b;
  --muted: #61738b;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.holding-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 38px 24px 120px;
  background:
    radial-gradient(circle at 50% 24%, rgba(21, 154, 234, .045), transparent 30%),
    linear-gradient(#fff, #fff);
  isolation: isolate;
  overflow: hidden;
}

.hero {
  position: relative;
  z-index: 3;
  width: min(920px, 100%);
  text-align: center;
  margin-top: -20px;
}

.brand-logo {
  display: block;
  width: min(520px, 72vw);
  max-height: 310px;
  object-fit: contain;
  margin: 0 auto 28px;
}

.accent-line {
  width: 138px;
  height: 4px;
  margin: 0 auto 28px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

h1 {
  margin: 0;
  color: #0b2d58;
  font-size: clamp(2rem, 4.1vw, 3.9rem);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.intro {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.48;
  font-weight: 450;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(630px, 100%);
  margin: 36px auto 0;
}

.capability {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  border-right: 1px solid #c7d1dd;
}
.capability:last-child { border-right: 0; }
.capability svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #0e91e5;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.capability span {
  color: #25466c;
  font-size: .83rem;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 37px;
  color: #0d315d;
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.contact:hover { color: #078fe2; transform: translateY(-1px); }
.contact:focus-visible { outline: 3px solid rgba(16, 152, 233, .25); outline-offset: 6px; border-radius: 5px; }
.contact svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wave {
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -138px;
  height: 300px;
  z-index: 1;
  border-radius: 48% 55% 0 0 / 42% 50% 0 0;
  transform: rotate(1deg);
  pointer-events: none;
}
.wave-one {
  background: linear-gradient(90deg, rgba(45, 160, 241, .15), rgba(37, 170, 241, .06) 47%, rgba(45, 203, 105, .12));
}
.wave-two {
  bottom: -190px;
  height: 330px;
  left: -12vw;
  right: -12vw;
  transform: rotate(-2deg);
  background: linear-gradient(90deg, rgba(56, 163, 239, .10), rgba(27, 159, 228, .03) 52%, rgba(59, 206, 107, .10));
}

@media (max-width: 700px) {
  .holding-page { padding: 24px 20px 105px; align-items: start; }
  .hero { margin-top: 0; }
  .brand-logo { width: min(430px, 88vw); margin-bottom: 24px; }
  .accent-line { margin: 0 auto 24px; width: 110px; }
  h1 { letter-spacing: .1em; white-space: normal; }
  .desktop-break { display: none; }
  .capabilities {
    grid-template-columns: repeat(2, 1fr);
    width: min(390px, 100%);
    gap: 0;
    margin-top: 28px;
  }
  .capability { border-bottom: 1px solid #d5dde6; }
  .capability:nth-child(2) { border-right: 0; }
  .capability:nth-child(3), .capability:nth-child(4) { border-bottom: 0; }
  .contact { margin-top: 28px; }
  .wave { bottom: -190px; }
}

@media (max-height: 760px) and (min-width: 701px) {
  .holding-page { padding-top: 20px; padding-bottom: 85px; }
  .brand-logo { width: min(430px, 60vw); max-height: 230px; margin-bottom: 20px; }
  .accent-line { margin: 0 auto 18px; }
  .intro { margin-top: 16px; }
  .capabilities { margin-top: 22px; }
  .contact { margin-top: 22px; }
}
