* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: #2d2e2e;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* video backdrop */
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 46, 46, 0.55), rgba(45, 46, 46, 0.85));
}

/* content */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 720px;
}

.logo {
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto;
  display: block;
  max-width: 82vw;
}

.logo--desktop {
  height: clamp(52px, 9vw, 90px);
}

.logo--mobile {
  display: none;
  height: 44px;
}

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 20px;
  height: 20px;
  border: 3px solid #2bb3bc;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 3s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

.badge-text {
  font-size: 19px;
  font-weight: 500;
  color: #e6e7e7;
  white-space: nowrap;
}

/* contact bar */
.contact-bar {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #d5d7d7;
  text-align: left;
  flex: 0 1 320px;
}

.contact-text strong {
  color: #ffffff;
}

.cta-button {
  box-sizing: border-box;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: #ffffff;
  color: #2d2e2e;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #2bb3bc;
}

.cta-arrow {
  font-size: 16px;
}

/* footer */
.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #ffffff;
  text-align: center;
}

.footer-lines {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.footer-lines span,
.footer-lines strong {
  font-size: 13px;
  color: #ffffff;
}

.footer-lines strong {
  color: #ffffff;
}

/* responsive */
@media (max-width: 640px) {
  .logo--desktop {
    display: none;
  }

  .logo--mobile {
    display: block;
    height: 100px;
  }

  .badge {
    gap: 8px;
    margin-top: 28px;
    padding: 10px 18px;
  }

  .badge-dot {
    width: 13px;
    height: 13px;
  }

  .badge-text {
    font-size: 20px;
  }

  .footer-lines {
    flex-direction: column;
  }

  .contact-bar {
    margin-top: 40px;
    flex-direction: column;
    gap: 14px;
    padding: 24px 22px;
    border-radius: 28px;
  }

  .contact-text {
    text-align: center;
    flex: 1 1 90px;
  }

  .cta-button {
    width: 100%;
  }
}
