@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #2E4258;

  --primary: #2E4258;

  --border-main: #D9CDB3;

  --text-main: #D9CDB3;

  /* Fonts */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Background Image Placeholder */
  --hero-bg-image: url('../images/hero-bg-placeholder.svg');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow: hidden;
  line-height: 1.6;
  position: relative;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbars across all WebKit browsers */
::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(217, 205, 179, 0.08) 0%, rgba(46, 66, 88, 0) 70%);
  animation: ambientGlow 8s ease-in-out infinite alternate;
}

.page-container {
  height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
  max-width: 1092px;
  margin: 0 auto;
  transition: transform 0.4s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo {
  width: 392px;
  aspect-ratio: 1 / 1;
  display: block;
}

.vertical-divider {
  height: 100px;
  width: 1px;
  background-color: var(--border-main);
}


.main-content {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 302px;
}

.badge-pill {
  color: var(--text-main);
  font-size: var(--Scale-Body-XL, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-Height-Body-XL, 26px);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-main);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 2s infinite ease-in-out;
  box-shadow: 0 0 8px rgba(217, 205, 179, 0.6);
}

.main-title {
  color: var(--text-main);
  font-size: var(--Scale-Heading-H1, 56px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Line-Height-Heading-H1, 72px);
  margin-bottom: 20px;
}

.main-description {
  color: var(--text-main);
  font-size: var(--Scale-Body-Lg, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Line-Height-Body-Lg, 24px);
}

@media (max-width: 844px) {
  .page-container {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .vertical-divider {
    width: 100px;
    height: 1px;
  }

  .main-logo {
    width: 288px;
  }

  .main-content {
    align-items: center;
  }
}