* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(218, 178, 107, 0.20), transparent 34%),
    linear-gradient(145deg, #f4efe4 0%, #e8efe9 100%);
  color: #12393b;
}

.bt-hub {
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.bt-hub-card {
  width: 100%;
  max-width: 430px;
  padding: 30px 22px 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow:
    0 24px 70px rgba(20, 52, 50, 0.14),
    inset 0 0 0 1px rgba(12, 66, 67, 0.08);
  text-align: center;
}

.bt-hub-logo {
  width: 180px;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.bt-hub-kicker {
  margin: 0 0 10px;
  color: #bd7a24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bt-hub h1 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #12393b;
}

.bt-hub-actions {
  display: grid;
  gap: 13px;
}

.bt-hub-action {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.84);
  color: #12393b;
  box-shadow:
    0 12px 30px rgba(20, 52, 50, 0.08),
    inset 0 0 0 1px rgba(12, 66, 67, 0.08);
}

.bt-hub-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #08726f;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.bt-hub-action strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
  color: #12393b;
}

.bt-hub-action small {
  display: block;
  margin-top: 5px;
  color: rgba(18, 57, 59, 0.62);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 650;
}

.bt-hub-action:active {
  transform: scale(0.985);
}