/* ============================================================
   AWARD
   ============================================================ */

/* === Award Section — Subtile Reveal === */

.award-section {
  position: relative;
  height: 250vh;
  z-index: 3;
}

.award-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phases */

.award-phase {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 60px;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.award-phase.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* === Phase 1: "Award-winning." text === */

.award-phase-text {
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 600;
  color: #111;
  line-height: 0.95;
  letter-spacing: -0.03em;
  
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: 
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-phase-text-em {
  background: linear-gradient(135deg, #818CF8 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.award-phase-1.is-visible .award-phase-text {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.award-phase-text-sub {
  font-size: 13px;
  font-weight: 500;
  color: #818CF8;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 32px;
  
  opacity: 0;
  transform: translateY(8px);
  transition: 
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.award-phase-1.is-visible .award-phase-text-sub {
  opacity: 1;
  transform: translateY(0);
}

/* === Phase 2: Award image === */

.award-image-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  
  transform: translateY(30px);
  opacity: 0;
  transition: 
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.award-phase-2.is-visible .award-image-wrap {
  transform: translateY(0);
  opacity: 1;
}

.award-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #818CF8 0%, #7C3AED 100%);
  color: white;
  text-align: center;
  padding: 40px;
}

.award-image-placeholder-icon {
  font-size: 64px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
}

.award-image-placeholder-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

/* === Phase 3: Caption === */

.award-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  
  transform: translateY(30px);
  opacity: 0;
  transition: 
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-phase-3.is-visible .award-caption {
  transform: translateY(0);
  opacity: 1;
}

.award-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #818CF8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 16px rgba(40,25,80,0.08);
  margin-bottom: 24px;
}

.award-title {
  font-size: 48px;
  font-weight: 600;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
}

.award-subtitle {
  font-size: 16px;
  color: #555;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.5;
}
