:root {
  --navy: #07182f;
  --navy-2: #0b2447;
  --blue-soft: #dbeafe;
  --white: #f8fafc;
  --muted: #b8c4d6;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(75, 124, 188, 0.32), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(12, 55, 100, 0.62), transparent 32%),
    linear-gradient(135deg, #061326 0%, #0b1f3d 50%, #04101f 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.06;
  z-index: -1;
}

.coming-soon-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.coming-soon-card {
  width: min(620px, 100%);
  text-align: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
    rgba(5, 18, 35, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

/* Clean logo treatment */
/* Force Metro logo to fill the badge instead of looking like a small sticker */
.logo-wrap {
  width: 96px !important;
  height: 96px !important;
  margin: 0 auto 20px !important;
  position: relative !important;
  display: block !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 42% 30%, #ffffff 0%, #eef3f8 58%, #d7dee8 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  overflow: hidden !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 -7px 16px rgba(7, 24, 47, 0.08) !important;
}

.logo-wrap::after {
  display: none !important;
}

.logo-wrap img {
  position: absolute !important;
  inset: 50% auto auto 50% !important;
  width: 180% !important;
  height: 187% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  border-radius: 999px !important;
  transform: translate(-50%, -50%) !important;
  filter: none !important;
}

@media (max-width: 520px) {
  .logo-wrap {
    width: 86px !important;
    height: 86px !important;
    margin-bottom: 18px !important;
  }

  .logo-wrap img {
    width:180% !important;
    height: 187% !important;
  }
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.1rem, 9vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.subtitle {
  margin: 22px auto 0;
  max-width: 520px;
  color: var(--white);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  line-height: 1.45;
  font-weight: 760;
}

.body-copy {
  margin: 13px auto 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 30px;
  color: rgba(215, 222, 232, 0.76);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-line span + span::before {
  content: "•";
  margin-right: 18px;
  color: rgba(215, 222, 232, 0.42);
}

@media (max-width: 520px) {
  .coming-soon-page {
    padding: 18px;
  }

  .coming-soon-card {
    border-radius: 24px;
    padding: 28px 20px;
  }

  .logo-wrap {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
  }

  .logo-wrap img {
    width: 92%;
    height: 92%;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .subtitle {
    font-size: 1rem;
  }

  .body-copy {
    font-size: 0.9rem;
  }

  .footer-line {
    display: grid;
    gap: 8px;
  }

  .footer-line span + span::before {
    content: "";
    margin: 0;
  }
  .coming-soon-card {
  width: min(560px, 100%);
  padding: clamp(26px, 4.5vw, 42px);
}

.logo-wrap {
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
}

.logo-wrap img {
  width: 108%;
  height: 108%;
  transform: scale(1.12);
}

.eyebrow {
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2.9rem, 8vw, 5rem);
}

.subtitle {
  margin-top: 18px;
}

.status-pill {
  margin-top: 22px;
}

.footer-line {
  margin-top: 26px;
}
}