/* TSLC Coming Soon Page
   Responsive, dependency-free and ready for static hosting.
*/

:root {
  --navy: #061c3f;
  --navy-soft: #0b2f63;
  --blue: #1687ed;
  --blue-deep: #0057ad;
  --text: #102442;
  --muted: #5d6b80;
  --line: rgba(6, 28, 63, 0.12);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 135, 237, 0.09), transparent 34%),
    radial-gradient(circle at 85% 85%, rgba(6, 28, 63, 0.07), transparent 32%),
    #f8fbff;
}

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.hero {
  width: 100%;
  max-width: 980px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(34px, 6vw, 72px) clamp(24px, 6vw, 70px);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(6, 28, 63, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(6, 28, 63, 0.10);
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--navy));
}

.logo {
  display: block;
  width: min(100%, 640px);
  height: auto;
  margin: 0 auto;
}

.rule {
  width: min(220px, 45%);
  height: 2px;
  margin: clamp(24px, 4vw, 36px) auto 22px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--navy-soft);
  font-size: clamp(0.72rem, 1.6vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.intro {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}


.service-description {
  color: var(--navy);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

.service-copy {
  max-width: 700px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.8vw, 1.08rem);
  line-height: 1.7;
}

.subtext {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 10px 15px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(22, 135, 237, 0.08);
  border: 1px solid rgba(22, 135, 237, 0.16);
  border-radius: 999px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(22, 135, 237, 0.10);
}


.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-1px);
}

.contact-button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: 0 10px 24px rgba(6, 28, 63, 0.16);
}

.contact-button.primary:hover,
.contact-button.primary:focus-visible {
  box-shadow: 0 13px 28px rgba(6, 28, 63, 0.22);
}

.contact-button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(6, 28, 63, 0.16);
}

.contact-button.secondary:hover,
.contact-button.secondary:focus-visible {
  background: rgba(22, 135, 237, 0.05);
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.contact-details a {
  color: var(--muted);
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--navy);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .page-shell {
    padding: 18px 14px;
  }

  .brand-card {
    padding: 34px 20px 38px;
    border-radius: 22px;
  }

  .logo {
    width: min(100%, 480px);
  }

  .eyebrow {
    letter-spacing: 0.12em;
  }

  .intro {
    line-height: 1.6;
  }


  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .contact-button {
    width: 100%;
  }

  .contact-details {
    flex-direction: column;
    gap: 5px;
  }

  .contact-details span {
    display: none;
  }

}

@media (max-height: 640px) and (orientation: landscape) {
  .page-shell {
    align-items: start;
  }

  .brand-card {
    margin: 12px 0;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .logo {
    width: min(72%, 500px);
  }

  .rule {
    margin-top: 18px;
    margin-bottom: 16px;
  }

  .status {
    margin-top: 18px;
  }
}
