:root {
  --navy: #061b4d;
  --navy-deep: #031135;
  --orange: #ff8500;
  --white: #ffffff;
  --text: #13213f;
  --muted: #657086;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 133, 0, 0.16), transparent 28%),
    radial-gradient(circle at 85% 72%, rgba(6, 27, 77, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fc 100%);
}

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

.panel {
  width: min(100%, 760px);
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 27, 77, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(6, 27, 77, 0.16);
}

.logo {
  width: clamp(104px, 18vw, 154px);
  height: auto;
  margin: 0 auto 22px;
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.02;
  font-weight: 900;
}

.intro {
  max-width: 610px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 30px rgba(255, 133, 0, 0.24);
}

.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(6, 27, 77, 0.2);
}

.details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 32px;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
}

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

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

  .panel {
    border-radius: 20px;
  }

  .button {
    width: 100%;
  }

  .details {
    display: grid;
  }
}
