/* ========================================================= */
/* GLOBAL TYPOGRAPHY — Premium Clarity                       */
/* ========================================================= */

body {
  letter-spacing: 0.3px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #0f1e3c;
}

h1, h2, h3 {
  letter-spacing: 0.5px;
  text-shadow: 0px 4px 12px rgba(0,0,0,0.45);
}

p {
  line-height: 1.65;
  opacity: 0.94;
}


/* ========================================================= */
/* GLOBAL SECTION RHYTHM — Cinematic Flow                    */
/* ========================================================= */

section {
  padding: 7rem 2rem;
  position: relative;
}


/* ========================================================= */
/* SECTION TRANSITION — Seamless Section Flow                */
/* ========================================================= */

.section-transition {
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.10) 40%,
    transparent 100%
  );
  opacity: 0.22;
}


/* ========================================================= */
/* GLOBAL GLOW TOKEN — Unified Lighting Language             */
/* ========================================================= */

.hps-glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,200,120,0.30) 0%,
    rgba(255,200,120,0.12) 40%,
    transparent 100%
  );
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.9;
}


/* ========================================================= */
/* GLOBAL CLARITY FRAME — Premium Silhouette                 */
/* ========================================================= */

.hps-frame {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(160%);
  border-radius: 28px;
  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.06),
    0 18px 48px rgba(0,0,0,0.45);
  padding: 3rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* ========================================================= */
/* FOOTER — Cinematic Clarity                                */
/* ========================================================= */

.hps-footer {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #142850 0%, #0f1e3c 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.footer-line {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  opacity: 0.95;
  letter-spacing: 0.4px;
}

.footer-copy {
  font-size: 1rem;
  opacity: 0.75;
}
/* Cinematic Fade-In for Partial Loading */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================== */
/* HPS Clarity Motion — Blur-In    */
/* =============================== */

.blur-in {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(16px);
  animation: blurIn 0.9s ease forwards;
}

@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(16px);
  }
  60% {
    opacity: 1;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

