/* ========================================================================
   HOMEPAGE CINEMATIC STYLING
   World-class Leadership Experience: Apple elegance + Netflix storytelling
   ======================================================================== */

/* ========================================================================
   REVEAL & ANIMATION SEQUENCES
   ======================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  animation: revealFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal--slow {
  animation: revealFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal[data-reveal-delay] {
  animation-delay: calc(var(--reveal-delay, 0) * 1ms);
}

.reveal[data-reveal-delay="40"] {
  animation-delay: 40ms;
}

.reveal[data-reveal-delay="60"] {
  animation-delay: 60ms;
}

.reveal[data-reveal-delay="80"] {
  animation-delay: 80ms;
}

.reveal[data-reveal-delay="120"] {
  animation-delay: 120ms;
}

.reveal[data-reveal-delay="160"] {
  animation-delay: 160ms;
}

.reveal[data-reveal-delay="180"] {
  animation-delay: 180ms;
}

.reveal[data-reveal-delay="200"] {
  animation-delay: 200ms;
}

/* Container utilities for premium layout */

.container-ultra-narrow {
  width: 100%;
  max-width: min(680px, 90vw);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.container-max {
  width: 100%;
  max-width: min(1440px, 96vw);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

:root {
  --home-section-space: clamp(2.2rem, 4.4vh, 4.2rem);
  --home-scene-transition: 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================================================
   SECTION 1: IMMERSIVE HERO
   ======================================================================== */

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: max(520px, 85vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-4);
  margin-bottom: clamp(2rem, 4vh, 4rem);
}

.home-hero__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.home-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(22, 16, 7, 0.96) 0%,
    rgba(42, 35, 20, 0.88) 25%,
    rgba(10, 10, 11, 0.92) 100%);
  background-size: 400% 400%;
  animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 800px 600px at 20% 20%, 
      rgba(243, 203, 114, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse 600px 400px at 80% 80%, 
      rgba(216, 181, 106, 0.08) 0%, transparent 35%);
  mix-blend-mode: screen;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vh, 2.5rem);
}

.home-hero__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #f8f4e8;
  letter-spacing: -0.02em;
  margin: 0;
}

.home-hero__statement {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: rgba(246, 238, 217, 0.92);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 0.8rem;
}

.btn--lg {
  padding: clamp(0.8rem, 1.2vw, 1.1rem) clamp(1.8rem, 3vw, 2.4rem);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  letter-spacing: 0.04em;
  border-radius: 0.8rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================================================
   SECTION 2: FEATURED GLOBAL LEADERS - HORIZONTAL SCROLL
   ======================================================================== */

.home-featured {
  padding: clamp(3rem, 5vh, 5rem) var(--space-4);
  margin-bottom: var(--home-section-space);
  border-top: 1px solid rgba(243, 203, 114, 0.08);
}

.home-featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.home-featured__header h2 {
  margin: 0;
}

.home-featured__description {
  font-size: var(--text-sm);
  color: rgba(233, 215, 173, 0.88);
  max-width: 380px;
  margin: 0;
  line-height: 1.5;
}

.home-featured__scroller {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
  scroll-snap-type: x mandatory;
}

.home-featured__scroller::-webkit-scrollbar {
  height: 6px;
}

.home-featured__scroller::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.home-featured__scroller::-webkit-scrollbar-thumb {
  background: rgba(236, 200, 124, 0.4);
  border-radius: 3px;
  transition: background 0.3s;
}

.home-featured__scroller::-webkit-scrollbar-thumb:hover {
  background: rgba(236, 200, 124, 0.7);
}

.home-featured__card {
  position: relative;
  flex: 0 0 min(320px, 70vw);
  border-radius: 1.2rem;
  border: 1px solid rgba(243, 203, 114, 0.14);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  scroll-snap-align: start;
  group: true;
  transition: transform var(--home-scene-transition),
              box-shadow var(--home-scene-transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.94), rgba(10, 10, 11, 0.97));
}

.home-featured__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.home-featured__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 16, 7, 0.8), rgba(10, 10, 11, 0.8));
}

.home-featured__card-image img,
.home-featured__card-fallback,
.home-doc-card__fallback,
.home-doc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-featured__card-image::before,
.home-doc-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 42%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.home-featured__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.06) 0%, rgba(10, 10, 11, 0.42) 100%);
  pointer-events: none;
}

.home-featured__card:hover .home-featured__card-image img {
  transform: scale(1.08);
}

.home-featured__card-content {
  flex: 1;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.94), rgba(10, 10, 11, 0.96));
  border-top: 1px solid rgba(212, 176, 105, 0.2);
}

.home-featured__card-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(243, 210, 133, 0.88);
}

.home-featured__card-content h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8f4e8;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-featured__card-summary {
  margin: 0;
  color: rgba(233, 215, 173, 0.84);
  line-height: 1.56;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-featured__card-meta {
  font-size: var(--text-xs);
  color: rgba(255, 236, 192, 0.8);
  margin: auto 0 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-featured__card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-featured__card:hover .home-featured__card-shine {
  opacity: 1;
}

/* ========================================================================
   SECTION 3: GLOBAL IMPACT - METRICS
   ======================================================================== */

.home-impact {
  padding: clamp(3rem, 5vh, 5rem) var(--space-4);
  margin-bottom: var(--home-section-space);
  border-top: 1px solid rgba(243, 203, 114, 0.08);
}

.home-impact__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.home-impact__header h2 {
  margin-top: 0.8rem;
}

.home-impact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: 2.5rem;
}

.home-impact__metric {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(243, 203, 114, 0.3);
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.8), rgba(10, 10, 11, 0.85));
  text-align: center;
  transition: transform var(--home-scene-transition), border-color var(--home-scene-transition), background var(--home-scene-transition);
}

.home-impact__metric:hover {
  border-color: rgba(243, 203, 114, 0.6);
  background: linear-gradient(160deg, rgba(32, 26, 12, 0.9), rgba(15, 15, 16, 0.92));
  transform: translateY(-4px);
}

.home-impact__metric-value {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.home-impact__metric-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #f8f4e8;
  margin: 0.8rem 0 0.4rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-impact__metric-desc {
  font-size: var(--text-xs);
  color: rgba(233, 215, 173, 0.7);
  margin: 0;
}

.home-impact__cta {
  text-align: center;
}

/* ========================================================================
   SECTION 4: DOCUMENTARIES - CINEMATIC GRID
   ======================================================================== */

.home-documentaries {
  padding: clamp(3rem, 5vh, 5rem) var(--space-4);
  margin-bottom: var(--home-section-space);
  border-top: 1px solid rgba(243, 203, 114, 0.08);
}

.home-documentaries__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.home-documentaries__header h2 {
  margin-top: 0.8rem;
}

.home-documentaries__subtitle {
  font-size: var(--text-sm);
  color: rgba(233, 215, 173, 0.88);
  max-width: 600px;
  margin: 0.8rem auto 0;
}

.home-documentaries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.home-doc-card {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--home-scene-transition),
              box-shadow var(--home-scene-transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: rgba(10, 10, 11, 0.8);
}

.home-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.home-doc-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(42, 35, 20, 0.8), rgba(10, 10, 11, 0.9));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-doc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-doc-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.04) 0%, rgba(10, 10, 11, 0.38) 100%);
  pointer-events: none;
}

.home-doc-card:hover .home-doc-card__image img {
  transform: scale(1.06);
}

.home-doc-card__play-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(243, 203, 114, 0.2);
  border: 2px solid rgba(243, 203, 114, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-doc-card:hover .home-doc-card__play-icon {
  background: rgba(243, 203, 114, 0.35);
  border-color: var(--gold-primary);
  transform: scale(1.15);
}

.home-doc-card__content {
  flex: 1;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.9), rgba(10, 10, 11, 0.94));
}

.home-doc-card__content h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8f4e8;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-doc-card__summary {
  margin: 0;
  color: rgba(233, 215, 173, 0.82);
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-doc-card__meta {
  font-size: var(--text-xs);
  color: var(--gold-primary);
  margin: auto 0 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-documentaries__cta {
  text-align: center;
}

/* ========================================================================
   SECTION 5: LEADERSHIP CATEGORIES
   ======================================================================== */

.home-categories {
  padding: clamp(3rem, 5vh, 5rem) var(--space-4);
  margin-bottom: var(--home-section-space);
  border-top: 1px solid rgba(243, 203, 114, 0.08);
}

.home-categories__header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.home-category-card {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(243, 203, 114, 0.25);
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.7), rgba(10, 10, 11, 0.8));
  text-decoration: none;
  color: inherit;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: transform var(--home-scene-transition), border-color var(--home-scene-transition), background var(--home-scene-transition);
}

.home-category-card:hover {
  border-color: rgba(243, 203, 114, 0.6);
  background: linear-gradient(160deg, rgba(32, 26, 12, 0.85), rgba(15, 15, 16, 0.9));
  transform: translateY(-4px);
}

.home-category-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  color: var(--gold-primary);
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-category-card:hover .home-category-card__icon {
  opacity: 1;
  transform: scale(1.2);
}

.home-category-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8f4e8;
}

.home-category-card__count {
  margin: 0;
  font-size: var(--text-xs);
  color: rgba(233, 215, 173, 0.8);
  letter-spacing: 0.05em;
}

/* ========================================================================
   SECTION 6: QUOTES & INSIGHTS
   ======================================================================== */

.home-quotes {
  padding: clamp(3.5rem, 6vh, 5.5rem) var(--space-4);
  margin-bottom: var(--home-section-space);
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.6), rgba(10, 10, 11, 0.75));
  border-top: 1px solid rgba(243, 203, 114, 0.15);
  border-bottom: 1px solid rgba(243, 203, 114, 0.15);
}

.home-quotes__container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-quotes__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.home-quotes__header h2 {
  margin-top: 0.8rem;
}

.home-quotes__scroller {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}

.home-quotes__scroller::-webkit-scrollbar {
  height: 4px;
}

.home-quotes__scroller::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

.home-quotes__scroller::-webkit-scrollbar-thumb {
  background: rgba(236, 200, 124, 0.3);
  border-radius: 2px;
}

.home-quote-card {
  flex: 0 0 min(380px, 100vw);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(243, 203, 114, 0.2);
  background: rgba(8, 8, 10, 0.6);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform var(--home-scene-transition), border-color var(--home-scene-transition), background var(--home-scene-transition);
}

.home-quote-card blockquote {
  margin: 0 0 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #f8f4e8;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-style: italic;
}

.home-quote-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(236, 200, 124, 0.9);
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ========================================================================
   SECTION 7: NOMINATION EXPERIENCE
   ======================================================================== */

.home-nomination {
  position: relative;
  padding: clamp(4rem, 7vh, 6rem) var(--space-4);
  margin-bottom: var(--home-section-space);
  background: linear-gradient(135deg, rgba(22, 16, 7, 0.95), rgba(42, 35, 20, 0.88), rgba(10, 10, 11, 0.92));
  border-top: 1px solid rgba(243, 203, 114, 0.2);
  border-bottom: 1px solid rgba(243, 203, 114, 0.2);
  overflow: hidden;
}

.home-nomination::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(243, 203, 114, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(216, 181, 106, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.home-nomination__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.home-nomination__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #f8f4e8;
  margin: 0.8rem 0;
  line-height: 1.2;
}

.home-nomination__description {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(246, 238, 217, 0.9);
  max-width: 600px;
  margin: 1.5rem auto 2rem;
  line-height: 1.6;
}

.home-nomination__actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ========================================================================
   SECTION 8: FOOTER EXPERIENCE
   ======================================================================== */

.home-footer-experience {
  padding: clamp(3.5rem, 6vh, 5rem) var(--space-4);
  background: linear-gradient(160deg, rgba(10, 10, 11, 0.95), rgba(15, 15, 18, 0.97));
  border-top: 1px solid rgba(243, 203, 114, 0.12);
}

.home-featured,
.home-impact,
.home-documentaries,
.home-categories,
.home-quotes,
.home-nomination,
.home-footer-experience {
  content-visibility: auto;
  contain-intrinsic-size: 1px 920px;
}

.home-footer-exp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 3rem;
}

.home-footer-exp__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-footer-exp__block h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8f4e8;
  letter-spacing: -0.01em;
}

.home-footer-exp__block p {
  margin: 0;
  color: rgba(233, 215, 173, 0.88);
  line-height: 1.6;
}

.home-footer-exp__accent {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.home-footer-exp__accent-svg {
  width: 100%;
  max-width: 400px;
  height: 80px;
  color: var(--gold-primary);
}

/* ========================================================================
   RESPONSIVE & BREAKPOINTS
   ======================================================================== */

@media (max-width: 767px) {
  :root {
    --home-section-space: clamp(1.6rem, 3vh, 2.4rem);
  }

  .home-hero {
    min-height: max(400px, 75vh);
    padding: var(--space-5) var(--space-3);
  }

  .home-hero__title {
    font-size: clamp(1.95rem, 8.5vw, 2.35rem);
  }

  .home-hero__statement {
    font-size: 1rem;
  }

  .home-hero__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .home-hero__actions .btn,
  .home-nomination__actions .btn {
    width: 100%;
  }

  .home-featured__header {
    flex-direction: column;
    gap: 1rem;
  }

  .home-featured__description {
    max-width: none;
  }

  .home-featured__card {
    flex: 0 0 min(280px, 85vw);
  }

  .home-featured,
  .home-impact,
  .home-documentaries,
  .home-categories,
  .home-quotes,
  .home-nomination,
  .home-footer-experience {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .home-impact__grid {
    grid-template-columns: 1fr;
  }

  .home-documentaries__grid {
    grid-template-columns: 1fr;
  }

  .home-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-quotes__scroller {
    gap: 1rem;
  }

  .home-quote-card {
    flex: 0 0 min(320px, 95vw);
    padding: 1.8rem;
    min-height: 200px;
  }

  .home-quote-card blockquote {
    font-size: 1.05rem;
  }

  .home-nomination__title {
    font-size: 1.8rem;
  }

  .home-nomination__description {
    font-size: 1rem;
  }

  .home-footer-exp__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .home-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-documentaries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-featured__scroller {
    gap: 1.6rem;
  }

  .home-categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-documentaries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__gradient,
  .home-featured__card,
  .home-impact__metric,
  .home-doc-card,
  .home-category-card,
  .home-quote-card {
    animation: none !important;
    transition: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .home-featured__card:hover,
  .home-impact__metric:hover,
  .home-doc-card:hover,
  .home-category-card:hover,
  .home-quote-card:hover {
    transform: none;
  }

  .home-featured__card:hover .home-featured__card-image img,
  .home-doc-card:hover .home-doc-card__image img {
    transform: none;
  }
}

/* Utility for button styling consistency */
.btn--outline {
  border: 1px solid var(--gold-primary);
  background: transparent;
  color: var(--gold-primary);
  padding: 0.8rem 1.8rem;
  border-radius: 0.8rem;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(243, 203, 114, 0.1);
  box-shadow: 0 0 20px rgba(243, 203, 114, 0.3);
}

.kicker--light {
  color: rgba(243, 210, 133, 0.95);
}

.text-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  position: relative;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link:hover {
  color: rgba(243, 210, 133, 0.95);
}

.text-link:hover::after {
  transform: scaleX(1);
}

/* ========================================================================
   AUTHORITY LAYER: SEARCH + AI
   ======================================================================== */

.home-authority-search {
  padding: clamp(2.8rem, 5vh, 4.6rem) var(--space-4);
}

.home-authority-search__header {
  max-width: 840px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.home-authority-search__header h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0.55rem 0 0;
}

.home-authority-search__header p {
  margin: 0.8rem 0 0;
  color: rgba(233, 215, 173, 0.86);
}

.home-authority-search__shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.home-authority-search__panel,
.home-authority-ai {
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(20, 16, 10, 0.8), rgba(11, 11, 13, 0.9));
  padding: clamp(1rem, 2vw, 1.4rem);
}

.home-authority-search__input {
  width: 100%;
  border: 1px solid rgba(243, 203, 114, 0.32);
  border-radius: 0.8rem;
  background: rgba(8, 8, 10, 0.7);
  color: #f8f4e8;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-authority-search__input:focus-visible {
  outline: none;
  border-color: rgba(243, 203, 114, 0.65);
  box-shadow: 0 0 0 3px rgba(243, 203, 114, 0.12);
}

.home-authority-search__results {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
  min-height: 2.2rem;
}

.home-authority-search__empty {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(233, 215, 173, 0.74);
}

.home-authority-search__result {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  text-decoration: none;
  color: #f8f4e8;
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.01);
  padding: 0.6rem 0.75rem;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-authority-search__result:hover,
.home-authority-search__result:focus-visible {
  border-color: rgba(243, 203, 114, 0.55);
  transform: translateY(-1px);
}

.home-authority-search__result.is-active,
.home-authority-search__result[aria-selected="true"] {
  border-color: rgba(243, 203, 114, 0.78);
  background: rgba(243, 203, 114, 0.1);
}

.home-authority-search__result-meta {
  color: rgba(233, 215, 173, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.home-authority-ai h3 {
  margin: 0;
  font-size: 1.05rem;
}

.home-authority-ai p {
  margin: 0.5rem 0 0.9rem;
  color: rgba(233, 215, 173, 0.86);
}

.home-authority-ai__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.home-authority-ai__chip {
  border: 1px solid rgba(243, 203, 114, 0.3);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(246, 238, 217, 0.9);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-authority-ai__chip.is-active,
.home-authority-ai__chip:hover,
.home-authority-ai__chip:focus-visible {
  border-color: rgba(243, 203, 114, 0.8);
  color: #0b0b0d;
  background: rgba(243, 203, 114, 0.9);
}

.home-authority-ai__results {
  display: grid;
  gap: 0.45rem;
}

.home-authority-ai__item {
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  color: #f8f4e8;
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-authority-ai__item span {
  font-size: 0.76rem;
  color: rgba(233, 215, 173, 0.76);
}

.home-authority-ai__item:hover,
.home-authority-ai__item:focus-visible {
  border-color: rgba(243, 203, 114, 0.52);
  background: rgba(243, 203, 114, 0.06);
}

/* ========================================================================
   AUTHORITY LAYER: GLOBAL MAP EXPERIENCE
   ======================================================================== */

.home-impact__map {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.home-impact__map-visual,
.home-impact__countries {
  border: 1px solid rgba(243, 203, 114, 0.2);
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.65), rgba(10, 10, 11, 0.86));
  border-radius: 1rem;
  padding: 0.9rem;
}

.home-impact__map-svg {
  width: 100%;
  height: auto;
  fill: rgba(243, 203, 114, 0.17);
  stroke: rgba(243, 203, 114, 0.5);
  stroke-width: 1;
}

.home-impact__map-dot {
  fill: rgba(243, 203, 114, 0.9);
  stroke: rgba(8, 8, 10, 0.9);
  stroke-width: 1.2;
  transition: transform 0.25s ease, r 0.25s ease, fill 0.25s ease;
  transform-origin: center;
}

.home-impact__map-dot:hover {
  r: 8;
  fill: rgba(255, 220, 138, 1);
}

.home-impact__countries-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  color: rgba(233, 215, 173, 0.84);
}

.home-impact__country-list {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.home-impact__country-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #f8f4e8;
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 0.6rem;
  padding: 0.38rem 0.55rem;
  font-size: 0.78rem;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-impact__country-chip strong {
  color: rgba(243, 203, 114, 0.95);
  font-size: 0.75rem;
}

.home-impact__country-chip:hover,
.home-impact__country-chip:focus-visible {
  border-color: rgba(243, 203, 114, 0.58);
  background: rgba(243, 203, 114, 0.06);
}

body.has-map-modal-open {
  overflow: hidden;
}

.home-map-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.home-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 20%, rgba(218, 177, 94, 0.14), rgba(2, 2, 3, 0.9) 48%);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-map-modal__panel {
  position: relative;
  width: min(1120px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border: 1px solid rgba(243, 203, 114, 0.34);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(20, 14, 7, 0.96), rgba(7, 7, 9, 0.98));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.6);
  padding: 1rem;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-map-modal.is-open .home-map-modal__backdrop {
  opacity: 1;
}

.home-map-modal.is-open .home-map-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-map-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(243, 203, 114, 0.42);
  background: rgba(7, 7, 9, 0.85);
  color: rgba(243, 203, 114, 0.95);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.home-map-modal__panel h3 {
  margin: 0;
  padding-right: 3rem;
}

.home-map-modal__hint {
  margin: 0.4rem 0 0.9rem;
  color: rgba(233, 215, 173, 0.86);
  font-size: 0.92rem;
}

.home-map-modal__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.9rem;
}

.home-map-modal__visual,
.home-map-modal__sidebar {
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 0.85rem;
  background: rgba(8, 8, 10, 0.62);
  padding: 0.8rem;
}

.home-map-modal__visual {
  position: relative;
  overflow: hidden;
  --map-tilt-x: 0deg;
  --map-tilt-y: 0deg;
  --map-glow-x: 50%;
  --map-glow-y: 50%;
}

.home-map-modal__visual::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at var(--map-glow-x) var(--map-glow-y), rgba(243, 203, 114, 0.2), rgba(243, 203, 114, 0) 44%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.25s ease;
}

.home-map-modal__visual::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -35%;
  width: 80%;
  height: 180%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 237, 182, 0.13), rgba(255, 255, 255, 0));
  transform: rotate(9deg);
  animation: home-map-sweep 6.8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.home-map-modal__svg {
  width: 100%;
  height: auto;
  fill: rgba(243, 203, 114, 0.16);
  stroke: rgba(243, 203, 114, 0.5);
  stroke-width: 1;
  position: relative;
  z-index: 1;
  transform: perspective(800px) rotateX(var(--map-tilt-x)) rotateY(var(--map-tilt-y));
  transform-origin: center;
  transition: transform 0.16s ease;
}

.home-map-modal__svg path {
  fill: rgba(243, 203, 114, 0.14);
  stroke: rgba(243, 203, 114, 0.42);
  stroke-width: 1.1;
}

.home-map-modal__point-link {
  text-decoration: none;
}

.home-map-modal__point {
  fill: rgba(243, 203, 114, 0.9);
  stroke: rgba(8, 8, 10, 0.95);
  stroke-width: 1.3;
  transition: transform 0.2s ease, fill 0.2s ease;
  cursor: pointer;
  filter: drop-shadow(0 0 6px rgba(243, 203, 114, 0.35));
  animation: home-map-point-pulse 2.2s ease-in-out infinite;
}

.home-map-modal__point-link:hover .home-map-modal__point,
.home-map-modal__point-link:focus-visible .home-map-modal__point,
.home-map-modal__point-link.is-active .home-map-modal__point {
  fill: rgba(255, 224, 146, 1);
  transform: scale(1.2);
}

.home-map-modal__point-link.is-filtered-out {
  opacity: 0.16;
  pointer-events: none;
}

.home-map-modal__point-link.is-filtered-out .home-map-modal__point {
  animation: none;
  filter: none;
}

.home-map-modal__selected {
  margin: 0 0 0.62rem;
  color: rgba(233, 215, 173, 0.9);
  font-size: 0.88rem;
  border: 1px solid rgba(243, 203, 114, 0.28);
  border-radius: 0.65rem;
  background: linear-gradient(120deg, rgba(243, 203, 114, 0.16), rgba(243, 203, 114, 0.04));
  padding: 0.5rem 0.6rem;
}

.home-map-modal__search {
  width: 100%;
  border: 1px solid rgba(243, 203, 114, 0.32);
  border-radius: 0.65rem;
  background: rgba(8, 8, 10, 0.72);
  color: #f8f4e8;
  padding: 0.52rem 0.62rem;
  font-size: 0.84rem;
  margin: 0 0 0.55rem;
}

.home-map-modal__search:focus-visible {
  outline: none;
  border-color: rgba(243, 203, 114, 0.62);
  box-shadow: 0 0 0 3px rgba(243, 203, 114, 0.15);
}

.home-map-modal__empty {
  margin: 0 0 0.55rem;
  color: rgba(233, 215, 173, 0.76);
  font-size: 0.78rem;
}

.home-map-modal__countries {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.home-map-modal__country {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(243, 203, 114, 0.24);
  border-radius: 0.62rem;
  text-decoration: none;
  color: #f8f4e8;
  padding: 0.42rem 0.55rem;
  background: rgba(20, 16, 8, 0.45);
  font-size: 0.8rem;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.home-map-modal__country strong {
  color: rgba(243, 203, 114, 0.96);
  font-size: 0.75rem;
}

.home-map-modal__country:hover,
.home-map-modal__country:focus-visible,
.home-map-modal__country.is-active {
  border-color: rgba(243, 203, 114, 0.62);
  background: rgba(243, 203, 114, 0.08);
  transform: translateY(-2px);
}

.home-map-modal__leaders {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  max-height: 44vh;
  overflow: auto;
  padding-right: 0.2rem;
}

.home-map-modal__leaders-empty {
  margin: 0;
  grid-column: 1 / -1;
  color: rgba(233, 215, 173, 0.78);
  font-size: 0.82rem;
  border: 1px dashed rgba(243, 203, 114, 0.3);
  border-radius: 0.65rem;
  padding: 0.65rem;
  background: rgba(243, 203, 114, 0.04);
}

.home-map-modal__leader {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.5rem;
  border: 1px solid rgba(243, 203, 114, 0.24);
  border-radius: 0.68rem;
  text-decoration: none;
  color: #f8f4e8;
  background: rgba(20, 16, 8, 0.45);
  padding: 0.42rem;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.home-map-modal__leader:hover,
.home-map-modal__leader:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 203, 114, 0.62);
  background: rgba(243, 203, 114, 0.08);
}

.home-map-modal__leader-media {
  width: 56px;
  height: 56px;
  border-radius: 0.55rem;
  overflow: hidden;
  display: block;
  background: rgba(243, 203, 114, 0.06);
}

.home-map-modal__leader-media img,
.home-map-modal__leader-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-map-modal__leader-fallback {
  background: radial-gradient(circle at 30% 20%, rgba(243, 203, 114, 0.25), rgba(35, 26, 12, 0.9));
}

.home-map-modal__leader-meta {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
  align-content: center;
}

.home-map-modal__leader-meta strong {
  font-size: 0.79rem;
  line-height: 1.25;
}

.home-map-modal__leader-meta small {
  color: rgba(233, 215, 173, 0.76);
  font-size: 0.72rem;
  line-height: 1.2;
}

@keyframes home-map-point-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes home-map-sweep {
  0% {
    transform: translateX(-26%) rotate(9deg);
  }
  100% {
    transform: translateX(165%) rotate(9deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-map-modal__backdrop,
  .home-map-modal__panel,
  .home-map-modal__svg,
  .home-map-modal__point,
  .home-map-modal__country {
    transition: none;
    animation: none;
  }

  .home-map-modal__visual::after {
    animation: none;
  }
}

/* ========================================================================
   AUTHORITY LAYER: NEWSLETTER / MEDIA / TRUST / PARTNERS
   ======================================================================== */

.home-authority {
  padding: clamp(3rem, 5vh, 4.8rem) var(--space-4);
}

.home-authority__header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.home-authority__header h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0.55rem 0 0;
}

.home-authority__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-authority__panel {
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(22, 16, 7, 0.65), rgba(10, 10, 11, 0.86));
}

.home-authority__panel h3 {
  margin: 0;
}

.home-authority__panel p {
  margin: 0.5rem 0 0;
  color: rgba(233, 215, 173, 0.86);
}

.home-authority-newsletter {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.home-authority-newsletter input[type="email"] {
  border: 1px solid rgba(243, 203, 114, 0.32);
  border-radius: 0.8rem;
  background: rgba(8, 8, 10, 0.7);
  color: #f8f4e8;
  padding: 0.78rem 0.82rem;
  font-size: 0.9rem;
}

.home-authority-newsletter input[type="email"]:focus-visible {
  outline: none;
  border-color: rgba(243, 203, 114, 0.62);
}

.home-authority-newsletter__status {
  margin: 0.55rem 0 0;
  min-height: 1rem;
  font-size: 0.75rem;
  color: rgba(233, 215, 173, 0.78);
}

.home-authority-newsletter__status.is-error {
  color: rgba(255, 153, 153, 0.95);
}

.home-authority-newsletter__status.is-success {
  color: rgba(160, 244, 198, 0.95);
}

.home-authority-newsletter__status.is-pending {
  color: rgba(243, 203, 114, 0.95);
}

.home-authority__tag-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-authority__tag-list li {
  border: 1px solid rgba(243, 203, 114, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  font-size: 0.73rem;
  letter-spacing: 0.03em;
}

.home-authority__trust-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.home-authority__trust-item {
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 0.68rem;
  padding: 0.58rem;
  display: grid;
  gap: 0.18rem;
}

.home-authority__trust-item strong {
  color: rgba(243, 203, 114, 0.95);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.home-authority__trust-item span {
  font-size: 0.72rem;
  color: rgba(233, 215, 173, 0.8);
}

.home-authority__partners {
  margin-top: 1rem;
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 1rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.01);
}

.home-authority__partners-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: rgba(233, 215, 173, 0.82);
}

.home-authority__partner-list {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.home-authority__partner-item {
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 0.68rem;
  padding: 0.48rem 0.54rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(246, 238, 217, 0.92);
}

/* ========================================================================
   PREMIUM MOBILE EXPERIENCE
   ======================================================================== */

.home-mobile-authority-bar {
  position: fixed;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  z-index: 120;
  width: min(95vw, 470px);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.5rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(243, 203, 114, 0.24);
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(14px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-mobile-authority-bar.is-hidden {
  transform: translate(-50%, 120%);
  opacity: 0;
}

.home-mobile-authority-bar a {
  text-decoration: none;
  color: #f8f4e8;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.5rem 0.35rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(243, 203, 114, 0.2);
  background: rgba(255, 255, 255, 0.01);
}

.home-mobile-authority-bar a:focus-visible,
.home-mobile-authority-bar a:hover {
  border-color: rgba(243, 203, 114, 0.58);
  color: rgba(243, 203, 114, 0.96);
}

@media (max-width: 1024px) {
  .home-authority-search__shell,
  .home-impact__map {
    grid-template-columns: 1fr;
  }

  .home-map-modal__layout {
    grid-template-columns: 1fr;
  }


@media (max-width: 767px) {
  .home-map-modal {
    padding: 0.65rem;
  }

  .home-map-modal__panel {
    width: calc(100vw - 1.3rem);
    max-height: calc(100vh - 1.3rem);
    padding: 0.8rem;
  }

  .home-map-modal__countries {
    grid-template-columns: 1fr;
  }

  .home-map-modal__leaders {
    grid-template-columns: 1fr;
  }
}
  .home-authority__grid {
    grid-template-columns: 1fr;
  }

  .home-authority__partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-authority-search {
    padding: clamp(2.2rem, 4vh, 2.8rem) var(--space-3);
  }

  .home-authority-search__header h2,
  .home-authority__header h2 {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
    line-height: 1.22;
  }

  .home-authority-search__panel,
  .home-authority-ai,
  .home-authority__panel {
    padding: 0.9rem;
    border-radius: 0.85rem;
  }

  .home-authority-search__input,
  .home-authority-newsletter input[type="email"] {
    min-height: 2.8rem;
  }

  .home-authority-search__result {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.65rem 0.7rem;
  }

  .home-authority-search__result-meta {
    white-space: normal;
    line-height: 1.3;
  }

  .home-authority__partner-list {
    grid-template-columns: 1fr;
  }

  .home-impact__country-list {
    grid-template-columns: 1fr;
  }

  .home-authority-newsletter {
    grid-template-columns: 1fr;
  }

  .home-mobile-authority-bar {
    display: grid;
  }
}

