/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --bg-dark: #0b0c0e;
  --text-white: #ffffff;
  --text-gray: #b9bdc6;
  --gradient-start: #F4DC7C;
  --gradient-mid: #F06058;
  --gradient-end: #4044E8;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ===========================
   Video Background
   =========================== */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 14, 0.94);
}

/* Mountain-shaped gradient glow at bottom */
.video-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  pointer-events: none;
  background:
    /* Blue glow - left side */
    radial-gradient(ellipse 40% 50% at 20% 100%, rgba(64, 68, 232, 0.4) 0%, transparent 70%),
    /* Red/Orange glow - center, creates the peak */
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(240, 96, 88, 0.35) 0%, transparent 70%),
    /* Yellow/Orange glow - right side */
    radial-gradient(ellipse 35% 45% at 75% 100%, rgba(244, 220, 124, 0.3) 0%, transparent 70%);
  filter: blur(40px);
}

/* ===========================
   Main Container
   =========================== */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===========================
   Logo
   =========================== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.logo-icon {
  height: 80px;
  width: auto;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
}

/* ===========================
   Headline (Gradient Text)
   =========================== */
.headline {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(200deg,
      #F4DC7C 0%,
      #F06058 30%,
      #9B4DCA 60%,
      #4044E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   Subtext
   =========================== */
.subtext {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-gray);
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* ===========================
   Countdown Timer
   =========================== */
.countdown {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.countdown-box {
  background: rgba(20, 20, 25, 0.9);
  border-radius: 24px;
  padding: 24px 32px;
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-number {
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-white);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-gray);
}

/* Dash separator between Days and Hours */
.countdown-separator-bar {
  font-size: 56px;
  font-weight: 500;
  color: var(--text-white);
  margin-top: 35px;
  line-height: 1;
}

/* Colon separator between Hours:Minutes:Seconds */
.countdown-separator-colon {
  font-size: 56px;
  font-weight: 500;
  color: var(--text-white);
  margin-top: 35px;
  line-height: 1;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-text {
  font-size: 16px;
  color: var(--text-gray);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn span {
  width: 100%;
  text-align: left;
}

.btn-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 16px;
}



.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

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

/* Outlined Button (LinkedIn - White bg, dark text) */
.btn-outline {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1a1a1a;
}

.btn-outline:hover {
  background: #f0f0f0;
}

/* Gradient Button (Old Website - Transparent with border) */
.btn-gradient {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.btn-gradient:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

/* ===========================
   Footer
   =========================== */
.footer {
  padding: 24px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
}

.footer p {
  font-size: 14px;
  color: var(--text-gray);
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablet */
@media (max-width: 768px) {
  .video-background {
    display: none;
  }

  /* Tablet/Mobile gradient: pink/purple glow from bottom (when video hidden) */
  body::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 200% 80% at 50% 100%, rgba(120, 60, 160, 0.5) 0%, transparent 50%),
      radial-gradient(ellipse 180% 70% at 50% 100%, rgba(180, 80, 200, 0.35) 0%, transparent 40%);
  }

  .headline {
    font-size: 40px;
  }

  .countdown {
    gap: 24px;
  }

  .countdown-number {
    font-size: 48px;
  }

  .countdown-label {
    font-size: 12px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo-icon {
    height: 60px;
  }

  .logo-text {
    font-size: 14px;
  }

  .logo {
    margin-bottom: 16px;
  }

  .headline {
    font-size: 28px;
  }

  .subtext {
    font-size: 14px;
    margin-bottom: 32px;
  }

  /* Mobile gradient: pink/purple glow from bottom */
  body::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 200% 80% at 50% 100%, rgba(120, 60, 160, 0.6) 0%, transparent 50%),
      radial-gradient(ellipse 180% 70% at 50% 100%, rgba(180, 80, 200, 0.4) 0%, transparent 40%);
  }

  /* Countdown: 4 columns, no separators */
  .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 360px;
  }

  .countdown-separator-bar,
  .countdown-separator-colon {
    display: none;
  }

  .countdown-box {
    padding: 16px 8px;
    min-width: unset;
    width: 100%;
    border-radius: 8px;
  }

  .countdown-number {
    font-size: 32px;
  }

  .countdown-item {
    gap: 8px;
  }

  .countdown-label {
    font-size: 10px;
  }

  /* CTA Section */
  .cta-text {
    font-size: 14px;
  }

  .cta-buttons {
    max-width: 320px;
  }

  /* Hide button arrows on mobile */
  .btn-arrow {
    display: none;
  }

  /* Button icons on mobile */
  .btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .btn {
    padding: 4px 12px 4px 4px;
    border-radius: 20px;
  }

  /* Footer */
  .footer p {
    font-size: 12px;
    line-height: 1.5;
  }
}