:root {
  --brand-blue: #0d8aa8;
  --brand-gold: #f2c14a;
  --brand-ink: #13212c;
  --brand-soft: #f7f3ea;
  --card-border: rgba(19, 33, 44, 0.08);
  --shadow: 0 24px 60px rgba(19, 33, 44, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(242, 193, 74, 0.28), transparent 32%),
    radial-gradient(circle at right center, rgba(13, 138, 168, 0.2), transparent 28%),
    linear-gradient(135deg, #f7f3ea 0%, #ffffff 46%, #eef8fb 100%);
}

a {
  color: inherit;
}

.coming-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.hero-panel {
  width: min(1100px, 100%);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(13, 138, 168, 0.14), rgba(242, 193, 74, 0.22));
  border-radius: 50%;
}

.brand-mark {
  display: inline-flex;
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
  padding: 14px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(19, 33, 44, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(19, 33, 44, 0.78);
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-link {
  color: #0f1c26;
  background: var(--brand-gold);
  box-shadow: 0 14px 30px rgba(242, 193, 74, 0.35);
}

.secondary-link {
  background: transparent;
  border: 1px solid rgba(19, 33, 44, 0.15);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.info-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--card-border);
}

.highlight-card {
  background: linear-gradient(180deg, rgba(13, 138, 168, 0.08), rgba(255, 255, 255, 0.96));
}

.card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.info-card p {
  margin: 0;
  color: rgba(19, 33, 44, 0.76);
  line-height: 1.7;
}

.highlight-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand-ink);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero-panel {
    padding: 36px 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand-mark {
    width: 88px;
    height: 88px;
    margin-bottom: 22px;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }
}
