/* =============================================================
   WHY WE EXIST PAGE STYLING
============================================================= */
.exist-video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  margin-top: 80px; /* Aligned flush right under the navbar */
}

.exist-video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full video frame with zero cropping */
  display: block;
}

.exist-content-wrapper {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.exist-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0b192c;
  margin-bottom: 40px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.exist-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 24px;
}

.exist-text.highlight {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0b192c;
  border-left: 3px solid #ff7b00;
  padding-left: 20px;
  margin: 40px 0;
}

/* Centered Call to Action */
.exist-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 25, 44, 0.08);
}

.btn-exist-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: #0b192c;
  color: #ffffff;
  border: 1px solid #0b192c;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(11, 25, 44, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.btn-exist-cta:hover {
  background-color: transparent;
  color: #0b192c;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(11, 25, 44, 0.1);
}

/* Responsive Rules */
@media (max-width: 768px) {
  .exist-video-container {
    margin-top: 64px;
    max-height: 50vh;
  }

  .exist-heading {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .exist-text {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .exist-text.highlight {
    font-size: 1.15rem;
    margin: 30px 0;
    padding-left: 16px;
  }

  .exist-content-wrapper {
    margin: 48px auto;
  }

  .btn-exist-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}
