:root {
  --ink: #06233b;
  --muted: #5d6c76;
  --teal: #00a8bd;
  --wash: #f4f7fb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--wash);
}

.coming-soon {
  width: min(760px, calc(100% - 32px));
  padding: 48px 24px;
  text-align: center;
}

.logo {
  width: min(340px, 82vw);
  height: auto;
  margin-bottom: 36px;
  mix-blend-mode: multiply;
}

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

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.tagline {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.65;
}

.services {
  width: min(620px, 100%);
  margin: 28px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
  list-style-position: inside;
  text-align: left;
}

.contact {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
}

.contact a,
.contact span {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 520px) {
  body {
    align-items: start;
  }

  .coming-soon {
    width: min(100% - 28px, 390px);
    min-height: 100svh;
    padding: 14px 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .logo {
    width: min(250px, 74vw);
    margin: 0 auto 12px;
  }

  .eyebrow {
    margin-bottom: 7px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.15rem, 13vw, 3rem);
  }

  .tagline {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    gap: 5px 12px;
    font-size: 0.82rem;
    line-height: 1.2;
    list-style-position: outside;
    padding-left: 18px;
  }

  .contact {
    margin-top: 15px;
    display: flex;
    gap: 6px 12px;
    font-size: 0.78rem;
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  .logo {
    width: min(220px, 72vw);
  }

  h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.84rem;
  }

  .services {
    font-size: 0.76rem;
    gap: 4px 10px;
  }

  .contact {
    font-size: 0.72rem;
  }
}
