:root {
  --deep: #00162d;
  --navy: #001f42;
  --green: #5f8b2e;
  --gold: #d3a900;
  --mist: #f5f7f1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--deep);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.coming-soon {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  width: 100%;
}

.shade {
  background:
    linear-gradient(90deg, rgba(0, 22, 45, 0.98) 0%, rgba(0, 22, 45, 0.9) 46%, rgba(0, 22, 45, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 22, 45, 0.05), rgba(0, 22, 45, 0.75));
}

.panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 100vh;
  max-width: 1180px;
  padding: 36px 24px;
  position: relative;
  z-index: 1;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.logo {
  display: block;
  height: auto;
  width: 178px;
}

.ownership {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.ownership span {
  background: var(--white);
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.content {
  max-width: 780px;
  padding: 88px 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(58px, 12vw, 128px);
  letter-spacing: -0.055em;
  line-height: 0.86;
  margin: 0 0 34px;
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.45;
  margin: 0;
  max-width: 760px;
}

.status {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  gap: 12px;
  margin-top: 44px;
  padding: 12px 18px;
}

.status span {
  animation: pulse 1.7s ease-in-out infinite;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(95, 139, 46, 0.18);
  display: block;
  height: 11px;
  width: 11px;
}

.status p {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact a,
.contact span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 16px;
  text-decoration: none;
}

footer {
  align-items: center;
  border-top: 1px solid rgba(211, 169, 0, 0.22);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 24px;
}

footer p,
footer strong {
  margin: 0;
}

footer p {
  color: rgba(255, 255, 255, 0.72);
}

footer strong {
  color: #8aaf45;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

@media (max-width: 780px) {
  .panel {
    padding: 28px 20px;
  }

  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ownership {
    justify-content: flex-start;
  }

  .content {
    padding: 72px 0;
  }

  .contact {
    flex-direction: column;
  }
}
