:root {
  --bx-navy: #001236;
  --bx-navy-deep: #000b22;
  --bx-red: #fe0002;
  --bx-red-dark: #d40002;
  --bx-wa: #25d366;
  --bx-text: #ebebeb;
  --bx-muted: #b6bcc9;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Catamaran", "Segoe UI", Arial, sans-serif;
  color: var(--bx-text);
  background: var(--bx-navy)
    radial-gradient(ellipse at 50% 100%, rgba(254, 0, 2, 0.14), transparent 60%)
    no-repeat;
  -webkit-font-smoothing: antialiased;
}

.soon {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.soon__logo {
  width: 340px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 56px;
}

.soon__title {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.soon__divider {
  display: block;
  width: 72px;
  height: 5px;
  margin: 24px 0 36px;
  border-radius: 3px;
  background: var(--bx-red);
}

.soon__text {
  margin: 0 0 48px;
  max-width: 640px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--bx-muted);
}

.soon__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 8px 24px 8px 8px;
  border-radius: 999px;
  background: var(--bx-wa);
  color: var(--bx-navy);
  text-decoration: none;
  transition: transform .2s ease;
}

.soon__btn:hover,
.soon__btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.soon__btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bx-navy);
  color: var(--bx-wa);
}

.soon__btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-grow: 1;
  text-align: left;
}

.soon__btn-label {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.soon__btn-arrow {
  flex: none;
  transition: transform .2s ease;
}

.soon__btn:hover .soon__btn-arrow { transform: translateX(4px); }

.soon__social {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.soon__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--bx-text);
  transition: border-color .2s ease, color .2s ease;
}

.soon__social a:hover,
.soon__social a:focus-visible {
  border-color: var(--bx-red);
  color: var(--bx-red);
  outline: none;
}

@media (max-width: 600px) {
  .soon__logo { margin-bottom: 40px; }
  .soon__title { font-size: 30px; }
  .soon__text { font-size: 16px; margin-bottom: 36px; }
  .soon__btn { width: 100%; }
}
