/* ==========================================================================
   Mata Lokal Fest 2026 - Restore Indonesia
   Pure Vanilla CSS Stylesheet
   ========================================================================== */

/* --- Reset & Global Baseline --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poly', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1D234E;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #0D2135;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Lenis Smooth Scroll Integration --- */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

/* --- Keyframe Animations --- */
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(14px); opacity: 0.3; }
}

@keyframes journeyPulse {
  0% { box-shadow: 0 0 0 0 rgba(108, 76, 216, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(108, 76, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 76, 216, 0); }
}

@keyframes journeyPop {
  0% { opacity: 0; transform: scale(0.88) translateY(24px); }
  55% { opacity: 1; transform: scale(1.04) translateY(-3px); }
  80% { transform: scale(0.99) translateY(1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes floatOrn1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(3%, -3%) rotate(4deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatOrn2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-2.5%, 3%) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatOrn3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(2%, 2.5%) rotate(3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* Float classes */
.anim-float-1 { animation: floatOrn1 9s ease-in-out infinite; }
.anim-float-2 { animation: floatOrn2 8s ease-in-out infinite -2s; }
.anim-float-3 { animation: floatOrn3 11s ease-in-out infinite -4s; }

/* ==========================================================================
   Smooth Scroll Progress Bar & Section Reveal System
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #2974EC 0%, #6C4CD8 50%, #00C49F 100%);
  box-shadow: 0 0 10px rgba(41, 116, 236, 0.8), 0 0 18px rgba(108, 76, 216, 0.5);
  z-index: 1001;
  pointer-events: none;
  transition: width 0.08s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: width;
}

/* Base scroll reveal states (active when js-ready is on html) */
html.js-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.45s ease-out,
              transform 0.45s ease-out;
  will-change: opacity, transform;
}

html.js-ready .scroll-reveal.reveal-scale {
  transform: scale(0.93) translate3d(0, 30px, 0);
}

html.js-ready .scroll-reveal.reveal-left {
  transform: translate3d(-35px, 0, 0);
}

html.js-ready .scroll-reveal.reveal-right {
  transform: translate3d(35px, 0, 0);
}

/* When element scrolls into viewport - fluid majestic entrance */
html.js-ready .scroll-reveal.is-revealed {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger delay tokens for fluid cascaded reveals */
.delay-100 { transition-delay: 0.1s !important; }
.delay-150 { transition-delay: 0.15s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-250 { transition-delay: 0.25s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-350 { transition-delay: 0.35s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-450 { transition-delay: 0.45s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* Subtle Parallax on section decorative backgrounds */
.scroll-parallax {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Nav Link Active State during smooth section scroll */
.desktop-nav a.nav-link.active-section {
  color: #ffffff;
}
.desktop-nav a.nav-link.active-section::after {
  width: 100%;
}

/* Respect user's accessibility reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html.js-ready .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .scroll-progress-bar {
    display: none !important;
  }
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%)
}

.main-header.scrolled {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); */
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
}

.logo-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.fallback-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.fallback-logo .badge {
  background: #2974EC;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Nav Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  font-size: 14px;
}

.desktop-nav a.nav-link {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.desktop-nav a.nav-link:hover {
  color: #ffffff;
}

.desktop-nav a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2974EC;
  transition: width 0.25s ease;
}

.desktop-nav a.nav-link:hover::after {
  width: 100%;
}

.btn-make-impact {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-make-impact:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-make-impact img {
  height: 32px;
  width: auto;
}

.btn-impact-fallback {
  display: inline-block;
  background: #2974EC;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Right Tagline in Header */
.header-restore-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.header-restore-tag .title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.header-restore-tag .sub {
  font-size: 10.5px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

/* Mobile Hamburger Button */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  z-index: 120;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(19, 36, 66, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1.25rem;
  padding: 40px 24px;
  animation: fadeIn 0.25s ease-out;
}

.mobile-menu-drawer.active {
  display: flex;
}

.mobile-menu-drawer a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.mobile-menu-drawer a:hover {
  color: #2974EC;
}

.mobile-menu-drawer .drawer-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero_home {
  position: relative;
}

.hero-container {
  height: 100vh;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-container video {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  object-fit: cover;
}

.hero-container .caption-hero {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
  margin-bottom: 100px;
}

.hero-container .caption-hero h1 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  text-transform: uppercase;
}

.scroll-down {
  cursor: pointer;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  height: 50px;
  width: auto;
  -webkit-animation: bounce 2s ease infinite;
  animation: bounce 2s ease infinite;
}

.scroll-down img {
  width: auto;
  height: 50px;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-15px); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-15px); }
}

/* ==========================================================================
   Section: Video Slider Section (Swiper based) - Rising Sheet After Journey
   ========================================================================== */
#video_home {
  position: relative;
  z-index: 10;
  background: #1D234E;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 90px 0 110px 0;
  margin-bottom: 0;
  overflow: hidden;
  will-change: transform;
}

@media (max-width: 768px) {
  #video_home {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 70px 0 90px 0;
  }
}

#video_home .container-fluid {
  max-width: 1600px;
  margin: 0 auto;
  overflow: visible;
  padding: 0 15px;
}

.swiper-container,
.video-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.video-slider {
  padding-bottom: 120px;
  overflow: visible;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  box-sizing: content-box;
}

.video-slider .swiper-slide {
  height: auto;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}

.video-slider .swiper-slide .video-img {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-slider .swiper-pagination {
  bottom: 50px;
}

.video-slider .swiper-pagination-bullet {
  border-radius: 0px;
  width: 15px;
  height: 5px;
  background-color: #2974EC;
  opacity: 1;
}

.video-slider .swiper-pagination-bullet-active {
  background: #fff;
}

.video-bg {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background-color: #0b1026;
}

.video-card-interactive {
  cursor: pointer;
}

.video-card-interactive .video-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card-interactive:hover .video-img {
  transform: scale(1.025);
}

/* --- Video Hover Gradient Overlay & Quote --- */
.video-hover-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 2.8rem;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-hover-overlay.overlay-right {
  background: linear-gradient(90deg, rgba(7, 10, 28, 0) 0%, rgba(7, 10, 28, 0.18) 32%, rgba(9, 13, 36, 0.76) 58%, rgba(6, 8, 24, 0.96) 100%);
  align-items: flex-end;
  text-align: right;
}

.video-hover-overlay.overlay-left {
  background: linear-gradient(90deg, rgba(6, 8, 24, 0.96) 0%, rgba(9, 13, 36, 0.76) 42%, rgba(7, 10, 28, 0.18) 68%, rgba(7, 10, 28, 0) 100%);
  align-items: flex-start;
  text-align: left;
}

.video-card-interactive:hover .video-hover-overlay {
  opacity: 1;
}

/* --- Corner Festive Confetti Sticks --- */
.video-corner-sticks {
  position: absolute;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  width: 32%;
  max-width: 240px;
  height: auto;
  transition: opacity 0.4s ease, transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-corner-sticks.sticks-top-right {
  top: 0;
  right: 0;
  transform: translate(14px, -14px) scale(0.92);
}

.video-corner-sticks.sticks-top-left {
  top: 0;
  left: 0;
  transform: translate(-14px, -14px) scale(0.92);
}

.video-card-interactive:hover .video-corner-sticks {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* --- Quote and Author Typography --- */
.video-hover-content {
  position: relative;
  z-index: 7;
  max-width: 54%;
  transform: translateY(14px);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-hover-content.content-right {
  margin-left: auto;
}

.video-hover-content.content-left {
  margin-right: auto;
}

.video-card-interactive:hover .video-hover-content {
  transform: translateY(0);
}

.video-quote {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.42;
  color: #FFFFFF;
  margin: 0 0 1.25rem 0;
  padding: 0;
  border: none;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.video-speaker-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.video-speaker-name {
  font-size: clamp(0.92rem, 1.35vw, 1.15rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-speaker-title {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}

.video-btn-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card-interactive:hover .video-btn-play {
  opacity: 0.85;
}

.video-card-interactive .video-btn-play:hover {
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .video-hover-overlay {
    padding: 1.2rem 1.4rem;
  }
  .video-hover-content {
    max-width: 72%;
  }
  .video-corner-sticks {
    width: 36%;
    max-width: 160px;
  }
  .video-quote {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
  }
  .video-speaker-name {
    font-size: 0.82rem;
  }
  .video-speaker-title {
    font-size: 0.72rem;
  }
}

.video-btn-play img {
  width: 100px;
  height: 100px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  object-fit: contain;
  overflow: visible;
}

.video-btn-play img:hover {
  transform: scale(1.1);
  -webkit-filter: brightness(.8);
  filter: brightness(.8);
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0px;
}

.video-header-left h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
}

.video-header-right h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #2974EC;
  text-align: right;
}


/* Modal video */
.modal {
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: fixed;
  text-align: center;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.is-visible {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
  position: fixed;
  z-index: 9999;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
  max-width: 900px;
  width: 90%;
}

.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.modal-content {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.modal-content button {
  background: transparent;
  padding: 5px 10px;
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
}

.modal-close {
  position: absolute;
  top: -25px;
  right: -5px;
  border: 0;
  cursor: pointer;
  z-index: 10000;
}

.modal-close img {
  width: 20px;
}

.ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mlf-btn {
  display: block;
  width: fit-content;
  padding: 5px 15px;
  color: #fff;
  background-color: #2974EC;
  font-size: 20px;
  line-height: 30px;
  margin: 20px auto;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.mlf-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Section: Last time was something
   ========================================================================== */
#lasttime_home {
  position: relative;
  padding: 90px 0 110px 0;
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.lasttime-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.lasttime-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.video-thumb-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.video-thumb-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.video-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-thumb-card:hover img {
  transform: scale(1.06);
}

.video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.play-circle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.video-thumb-card:hover .play-circle-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #2974EC;
  border-color: #2974EC;
}

.play-circle-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  margin-left: 3px;
}

.video-thumb-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  pointer-events: none;
}

.video-thumb-caption .title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.video-thumb-caption .subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   Section: Slogan & Word-by-Word Scroll Reveal
   ========================================================================== */
#slogan {
  position: relative;
  padding: 100px 0 130px 0;
  overflow: hidden;
  background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2026/img/ornamen-2.png'), url('https://t-8.tstatic.net/matalokalfest/assets_2026/img/ornamen.png');
  background-repeat: no-repeat, no-repeat;
  background-position: bottom left, top right;
}

.floating-ornament {
  position: absolute;
  width: 420px;
  max-width: 45vw;
  pointer-events: none;
  opacity: 0.65;
  z-index: 1;
  user-select: none;
}

.ornament-left-bottom {
  left: -80px;
  bottom: 30px;
  transform: rotate(-12deg);
}

.ornament-right-top {
  right: -80px;
  top: 50px;
  transform: scaleX(-1) rotate(12deg);
}

.ticker-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 75px;
  text-align: center;
}

.ticker-dot {
  color: #2974EC;
}

.slogan-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px auto;
}

.slogan-block:last-of-type {
  margin-bottom: 70px;
}

.reveal-quote {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.scroll-word {
  display: inline-block;
  margin-right: 0.28em;
  transition: color 0.15s ease, opacity 0.15s ease, text-shadow 0.15s ease;
  will-change: color, opacity;
  opacity: 0.55;
}

.slogan-restore-center img {
  margin: 0 auto;
}

.slogan-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.slogan-restore-center {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
}

.restore-big-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.restore-big-title .serif-part {
  font-weight: 400;
  letter-spacing: normal;
}

.restore-tagline-sub {
  font-size: clamp(14px, 2vw, 18px);
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 6px;
}

.restore-event-date {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 32px;
  color: #ffffff;
}

.restore-event-venue {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ==========================================================================
   Section: The Speakers Are Here - Top Sheet Over Journey
   ========================================================================== */
#speakers_home {
  position: relative;
  z-index: 10;
  background-color: #1D234E;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.16); */
  /* box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65); */
  padding: 90px 0 130px 0;
  overflow: hidden;
  will-change: transform;
}

@media (max-width: 768px) {
  #speakers_home {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 70px 0 100px 0;
  }
}

.speakers-bg-pull {
  position: absolute;
  inset: -18% -5% -18% -5%;
  background-image: url('https://t-8.tstatic.net/matalokalfest/assets_2026/img/ornamen-3.png');
  background-repeat: no-repeat;
  background-position: center 320px;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  opacity: 0.95;
}

#speakers_home .container {
  position: relative;
  z-index: 2;
}

.btn-agenda-pill {
  display: inline-block;
  padding: 8px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-top: 20px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-agenda-pill:hover {
  background: #ffffff;
  color: #1D234E;
  border-color: #ffffff;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.speaker-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: #000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.speaker-card:hover, .speaker-card.active-touch {
  transform: translateY(-8px);
}

.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.speaker-card:hover .speaker-photo,
.speaker-card.active-touch .speaker-photo {
  transform: scale(1.1);
}

.speaker-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.65) 100%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.speaker-card:hover .speaker-vignette,
.speaker-card.active-touch .speaker-vignette {
  opacity: 0;
}

/* Speaker Hover Frame Overlay */
.speaker-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 10;
}

.speaker-card:hover .speaker-hover-overlay,
.speaker-card.active-touch .speaker-hover-overlay {
  opacity: 1;
  pointer-events: auto;
}
/* Warna background solid per speaker — sesuaikan hex-nya dengan brand palette kamu */
.card-agus .speaker-hover-overlay {
  background: linear-gradient(180deg,
    rgba(29, 35, 78, 0) 0%,
    rgba(29, 35, 78, 0.55) 35%,
    rgba(29, 35, 78, 0.92) 65%,
    rgba(29, 35, 78, 0.97) 100%);
}
.card-jumhur .speaker-hover-overlay {
  background: linear-gradient(180deg,
    rgba(107, 74, 47, 0) 0%,
    rgba(107, 74, 47, 0.55) 35%,
    rgba(107, 74, 47, 0.92) 65%,
    rgba(107, 74, 47, 0.97) 100%);
}
.card-melia .speaker-hover-overlay {
  background: linear-gradient(180deg,
    rgba(58, 63, 85, 0) 0%,
    rgba(58, 63, 85, 0.55) 35%,
    rgba(58, 63, 85, 0.92) 65%,
    rgba(58, 63, 85, 0.97) 100%);
}
.card-rano .speaker-hover-overlay {
  background: linear-gradient(180deg,
    rgba(74, 31, 31, 0) 0%,
    rgba(74, 31, 31, 0.55) 35%,
    rgba(74, 31, 31, 0.92) 65%,
    rgba(74, 31, 31, 0.97) 100%);
}
.card-iftitah .speaker-hover-overlay {
  background: linear-gradient(180deg,
    rgba(201, 139, 110, 0) 0%,
    rgba(201, 139, 110, 0.55) 35%,
    rgba(201, 139, 110, 0.92) 65%,
    rgba(201, 139, 110, 0.97) 100%);
}

/* opsional: sedikit zoom foto tetap jalan di belakang overlay */
.speaker-card:hover .speaker-photo,
.speaker-card.active-touch .speaker-photo {
  transform: scale(1.05);
}

.speaker-role, .speaker-category-pill{
  font-size: 12px;
}
.speakers-footer-caption {
  text-align: center;
  margin-top: 36px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}
/* ==========================================================================
   Section: Journey (Pinned 3-Step Version)
   ========================================================================== */
#journey_home {
  position: relative;
  height: 480vh;
  color: #FFFFFF;
  overflow: visible;
  z-index: 2;
}

.journey-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
  z-index: 2;
}

/* Floating background ornament pieces */
.journey-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Central brand watermark revealed as steps complete and next section rises (Image 4) */
.journey-bg-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 260px;
  max-width: 45vw;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 40px rgba(41, 116, 236, 0.5));
}

.journey-bg-center-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.journey-bg-piece {
  position: absolute;
  will-change: transform, opacity;
  pointer-events: none;
  transform-origin: center center;
}

/* Single Background Ornament Piece - Large, bold, and dynamic */
.journey-bg-piece.piece-single-arc {
  top: 50%;
  left: 50%;
  width: 76vw;
  max-width: 920px;
  min-width: 560px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 0;
}

@media (max-width: 991px) {
  .journey-bg-piece.piece-single-arc {
    width: 84vw;
    max-width: 680px;
    min-width: 440px;
  }
  .journey-bg-center-logo { width: 180px; }
}

@media (max-width: 576px) {
  .journey-bg-piece.piece-single-arc {
    width: 96vw;
    max-width: 480px;
    min-width: 320px;
  }
  .journey-bg-center-logo { width: 140px; }
}

.journey-bg-piece-inner {
  transform-origin: center center;
  will-change: transform;
}

.journey-bg-piece-inner img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.65));
}

/* Ambient floating animation for the single arc ornament */
.journey-float-arc {
  animation: floatOrnamArc 8s ease-in-out infinite alternate;
}

@keyframes floatOrnamArc {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(6px, -12px, 0) rotate(2deg); }
  100% { transform: translate3d(-6px, 8px, 0) rotate(-1.5deg); }
}

/* Foreground text content */
.journey-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 94vh;
}

.journey-step {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.journey-step.is-active {
  display: flex;
}

/* Animasi Kaget (Punchy Overshoot Spring Pop) on Active Step Switch */
.journey-step.pop-kaget {
  animation: journeyKagetPop 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes journeyKagetPop {
  0% {
    opacity: 0;
    transform: scale(0.76) translateY(32px);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) translateY(-6px);
  }
  72% {
    transform: scale(0.97) translateY(2px);
  }
  88% {
    transform: scale(1.02) translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Staggered punchy bounce on inner content items */
.journey-step.pop-kaget .journey-eyebrow {
  animation: kagetSubPop 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.journey-step.pop-kaget .manifesto-quote-title {
  animation: kagetSubPop 0.48s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.04s both;
}

.journey-step.pop-kaget .desc {
  animation: kagetSubPop 0.52s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.08s both;
}

.journey-step.pop-kaget .journey-cta {
  animation: kagetSubPop 0.58s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.18s both;
}

@keyframes kagetSubPop {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(18px);
  }
  65% {
    opacity: 1;
    transform: scale(1.05) translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes kagetPillsPop {
  0% {
    opacity: 0;
    transform: scale(0.82) translateY(22px);
  }
  60% {
    opacity: 1;
    transform: scale(1.06) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.journey-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.journey-eyebrow .line {
  width: 42px;
  height: 3px;
  border-radius: 2px;
}

.journey-step .manifesto-quote-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.16;
  margin-bottom: 12px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.step-summit-title {
  color: #F3C0A9;
}
.step-summit-title span.highlight {
  color: #F3C0A9;
}

.step-award-title {
  color: #9ECB5C;
}
.step-award-title span.highlight {
  color: #9ECB5C;
}

.step-festival-title {
  color: #74A7EF;
}
.step-festival-title span.highlight {
  color: #74A7EF;
}

.journey-content .desc {
  font-size: clamp(13.5px, 1.2vw, 15.5px);
  color: rgba(240, 235, 255, 0.88);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 12px auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.journey-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-kicker.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.journey-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 6px;
  max-width: 600px;
  width: 100%;
}

.journey-pills:last-of-type {
  margin-bottom: 12px;
}

.journey-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  max-height: 38px;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.68) translateY(18px);
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              transform 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              filter 0.22s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  will-change: opacity, transform;
}

.journey-pill.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.journey-pill:hover,
.journey-pill.is-revealed:hover {
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.journey-pill img {
  height: 38px;
  width: auto;
  max-height: 38px;
  display: block;
  object-fit: contain;
}

.journey-pill .pill-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.journey-pill .pill-icon-default {
  transition: opacity 0.22s ease;
}

.journey-pill:hover .pill-icon-default {
  opacity: 0;
}

.journey-pill:hover .pill-icon-hover {
  opacity: 1;
}

.journey-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}

.journey-cta:hover {
  background: #FFFFFF;
  color: #1C2463;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Compact rules for smaller heights and responsive viewports */
@media (max-height: 740px) {
  .journey-eyebrow { font-size: 12.5px; margin-bottom: 6px; gap: 8px; }
  .journey-eyebrow .line { width: 32px; height: 2px; }
  .journey-step .manifesto-quote-title { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-bottom: 6px; line-height: 1.15; }
  .journey-content .desc { font-size: 12px; margin-bottom: 6px; line-height: 1.4; }
  .journey-kicker { font-size: 11px; margin-top: 5px; margin-bottom: 4px; }
  .journey-pill { height: 28px; max-height: 28px; }
  .journey-pill img { height: 28px; max-height: 28px; }
  .journey-pills { gap: 6px 10px; margin-bottom: 4px; }
  .journey-pills:last-of-type { margin-bottom: 8px; }
  .journey-cta { margin-top: 6px; padding: 6px 20px; font-size: 11.5px; }
}

@media (max-width: 640px) {
  .journey-content { padding: 12px 16px; }
  .journey-eyebrow { font-size: 12.5px; margin-bottom: 6px; }
  .journey-step .manifesto-quote-title { font-size: 1.55rem; line-height: 1.18; margin-bottom: 6px; }
  .journey-content .desc { font-size: 12.5px; line-height: 1.45; margin-bottom: 8px; }
  .journey-kicker { font-size: 11px; margin-top: 5px; margin-bottom: 4px; }
  .journey-pill { height: 28px; max-height: 28px; }
  .journey-pill img { height: 28px; max-height: 28px; }
  .journey-pills { gap: 6px 8px; margin-bottom: 5px; }
  .journey-pills:last-of-type { margin-bottom: 8px; }
  .journey-cta { margin-top: 6px; padding: 6px 20px; font-size: 11.5px; }
}

/* ==========================================================================
   Section: Du Anyam Workshop Class
   ========================================================================== */
#workshop_duanyam,
.registration-section {
  position: relative;
  padding: 100px 0 130px 0;
  overflow: hidden;
  background: #1D234E;
  z-index: 100;
}

.registration-ornament-top {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(240px, 30vw, 380px);
  height: auto;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
  user-select: none;
}

.registration-ornament-left {
  position: absolute;
  left: -80px;
  top: 15%;
  width: 440px;
  max-width: 42vw;
  pointer-events: none;
  opacity: 0.72;
  z-index: 1;
  user-select: none;
  transform: rotate(-10deg);
}

.registration-ornament-right {
  position: absolute;
  right: -80px;
  top: 18%;
  width: 420px;
  max-width: 40vw;
  pointer-events: none;
  opacity: 0.72;
  z-index: 1;
  user-select: none;
  transform: scaleX(-1) rotate(14deg);
}

.registration-container {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.registration-header {
  text-align: center;
  margin-bottom: 58px;
}

.registration-title {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 400;
  color: #F05023;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.registration-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Session Card Block */
.session-card-block {
  margin-bottom: 70px;
}

.session-card-block:last-child {
  margin-bottom: 0;
}

/* Top Meta Row */
.session-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.session-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.session-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 400;
  color: #ffffff;
  background: transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.session-pill:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.session-venue-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.session-date-text {
  font-size: 14.5px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.session-venue-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3px;
  line-height: 1.3;
}

/* Image Wrap */
.session-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.6;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  background: #0f142e;
  margin-bottom: 24px;
  cursor: pointer;
}

.session-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.session-image-wrap:hover .session-banner-img,
.session-card-block:hover .session-banner-img,
.session-image-wrap.is-active .session-banner-img {
  transform: scale(1.035);
  filter: brightness(0.85);
}

/* Hover Overlay (Exact Reference Match) */
.session-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 35, 78, 0.74) 0%, rgba(15, 20, 50, 0.44) 45%, rgba(13, 18, 48, 0.7) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.36s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.36s ease;
  overflow: hidden;
}

.session-image-wrap:hover .session-hover-overlay,
.session-card-block:hover .session-hover-overlay,
.session-image-wrap.is-active .session-hover-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Top-Left Corner Sticks in Hover (ornamen-6) */
.hover-corner-sticks {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(280px, 36vw, 410px);
  max-width: 46%;
  height: auto;
  pointer-events: none;
  z-index: 2;
  user-select: none;
  opacity: 0.98;
  transform-origin: top left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.session-image-wrap:hover .hover-corner-sticks,
.session-card-block:hover .hover-corner-sticks {
  transform: scale(1.02);
}

/* Top-Left Session Badges */
.hover-session-badges {
  position: absolute;
  top: 26px;
  left: 36px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hover-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border: 1.5px solid #ffffff;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(13, 18, 48, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.hover-badge-time {
  font-size: 13.5px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

/* Top-Right Mata Lokal Fest '26 Brandmark */
.hover-brandmark {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.hover-brand-diamond {
  width: 32px;
  height: 32px;
  display: block;
}

.hover-brand-text {
  display: flex;
  flex-direction: column;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.14;
  color: #ffffff;
  text-align: center;
}

.hover-brand-year {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-top: 1px;
}

/* Bottom Dynamic Ribbons SVG */
.hover-ribbons-svg {
  position: absolute;
  left: 20%;
  bottom: -4px;
  width: 65%;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.session-image-wrap:hover .hover-ribbons-svg,
.session-card-block:hover .hover-ribbons-svg {
  transform: translateY(-2px) scale(1.02);
}

/* Bottom-Left Brand Title & Subtitle */
.hover-bottom-brand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 0 26px 36px;
  pointer-events: none;
}

.hover-text-block {
  max-width: 650px;
}

.hover-title-restore {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 8px 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.restore-circle-o {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.restore-title-indonesia {
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-left: 6px;
}

.hover-subtitle-restore {
  font-size: clamp(14px, 1.8vw, 17px);
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

/* Bottom Row */
.session-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.session-desc-content {
  flex: 1;
  max-width: 680px;
}

.session-desc-content p {
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.session-desc-content p:last-child {
  margin-bottom: 0;
}

.session-action-wrap {
  flex-shrink: 0;
}

.btn-book-spot,
.btn-duanyam-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-book-spot:hover,
.btn-duanyam-book:hover {
  background: #70283E;
  color: #FFFFFF;
  border-color: #70283E;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.btn-book-spot:active,
.btn-duanyam-book:active {
  transform: translateY(0);
}

/* Legacy support fallback classes */
.duanyam-top-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.duanyam-brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.duanyam-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
}

.duanyam-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  gap: 24px;
}
/* ==========================================================================
   Section: Articles (News)
   ========================================================================== */
#article_home {
  position: relative;
  padding: 90px 0 120px 0;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.35);
}

.article-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.article-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-thumb-wrap img {
  transform: scale(1.06);
}

.article-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(28, 36, 99, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

.article-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 10px;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .article-title {
  color: #6FA8E8;
}

.article-excerpt {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read-more {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #2974EC;
  transition: color 0.2s ease;
}

.article-card:hover .article-read-more {
  color: #ffffff;
}

.article-read-more span.arrow {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.article-card:hover .article-read-more span.arrow {
  transform: translateX(4px);
}

.articles-cta-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-articles-all {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-articles-all:hover {
  background: #ffffff;
  color: #1D234E;
  border-color: #ffffff;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
  background: rgba(0, 0, 0, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0 60px 0;
  font-size: 13px;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo-col img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer-partners-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  max-width: 640px;
}

.partner-heading {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.partner-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.partner-logos-row a {
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.partner-logos-row a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.partner-logos-row img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.partner-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* ==========================================================================
   Video Modal Popup
   ========================================================================== */
.video-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease-out;
}

.video-modal-backdrop.active {
  display: flex;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.08);
}

.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Fix: .modal-wrapper (position:fixed) and .video-modal-container (position:relative)
   sit on the same element and fight over position/width. Pin it down explicitly so the
   video box always gets a real, visible size inside the centered .modal flex container. */
#videoModal .modal-wrapper.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  height: auto;
}

#videoModal .modal-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Toast Notification Helper
   ========================================================================== */
.app-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(13, 33, 53, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 300;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}

.app-toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .burger-btn { display: flex; }
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .duanyam-top-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-partners-col { align-items: center; text-align: center; }
  .partner-logos-row { justify-content: center; }
  .articles-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .header-restore-tag { display: none; }
  .lasttime-grid { grid-template-columns: 1fr; }
  .lasttime-wide { aspect-ratio: 16 / 10; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .duanyam-bottom-row { flex-direction: column; align-items: flex-start; }
  .btn-duanyam-book { width: 100%; text-align: center; }
}

@media (max-width: 580px) {
  .speakers-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .container { padding-left: 18px; padding-right: 18px; }
  .ticker-bar { font-size: 14px; gap: 14px; }
  .article-grid{
  grid-template-columns: repeat(1, 1fr);

  }
  .session-bottom-row{flex-flow:column;}
}

/* ==========================================================================
   Journey Background — Single Arc Ornament (replaces the old 4-piece system)
   ========================================================================== */
/* Single Background Ornament Piece - Large, bold, and dynamic */
.journey-bg-piece.piece-single-arc {
  top: 50%;
  left: 50%;
  width: 76vw;
  max-width: 920px;
  min-width: 560px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 0;
}

@media (max-width: 991px) {
  .journey-bg-piece.piece-single-arc {
    width: 84vw;
    max-width: 680px;
    min-width: 440px;
  }
  .journey-bg-center-logo { width: 180px; }
}

@media (max-width: 576px) {
  .journey-bg-piece.piece-single-arc {
    width: 96vw;
    max-width: 480px;
    min-width: 320px;
  }
  .journey-bg-center-logo { width: 140px; }
}

/* Ambient floating animation for the single arc ornament */
.journey-float-arc {
  animation: floatOrnamArc 8s ease-in-out infinite alternate;
}

@keyframes floatOrnamArc {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(6px, -12px, 0) rotate(2deg); }
  100% { transform: translate3d(-6px, 8px, 0) rotate(-1.5deg); }
}

/* ==========================================================================
   Nomination Modal Popup (Mata Lokal Awards 2026)
   ========================================================================== */
.nominate-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
}

.nominate-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nominate-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 38, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.nominate-modal-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1040px;
  margin: auto;
  pointer-events: auto;
  overscroll-behavior: contain;
}

.nominate-modal-card {
  position: relative;
  width: 100%;
  background: #1D234E;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 38px 44px;
  color: #f1f3f9;
  transform: scale(0.96) translateY(14px);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overscroll-behavior: contain;
}

.nominate-modal-backdrop.active .nominate-modal-card {
  transform: scale(1) translateY(0);
}

.nominate-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1d5e3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.nominate-modal-close:hover {
  background: #E50914;
  border-color: #E50914;
  color: #ffffff;
  transform: rotate(90deg);
}

.nominate-modal-header {
  margin-bottom: 28px;
  padding-right: 48px;
}

.nominate-header-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: #ff3b30;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.nominate-modal-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.nominate-modal-subtitle {
  font-size: 14px;
  color: #9ea5b9;
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

/* Form Section Styling */
.nominate-form-section {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 24px;
}

.nominate-section-badge-wrap {
  margin-bottom: 20px;
}

.nominate-section-badge {
  display: inline-block;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Fields & Labels */
.nominate-field-row {
  margin-bottom: 20px;
}

.nominate-field-row:last-child {
  margin-bottom: 0;
}

.nominate-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #f3f5fa;
  margin-bottom: 7px;
}

.nominate-label .req {
  color: #ff3b30;
  font-weight: 700;
  margin-left: 2px;
}

.nominate-sublabel {
  display: block;
  font-size: 12px;
  color: #8c93a8;
  margin-top: 5px;
}

.nominate-helper-text {
  display: block;
  font-size: 12px;
  color: #8c93a8;
  margin-top: 6px;
  font-style: italic;
  line-height: 1.4;
}

.nominate-type-hint,
.nominate-hint-sub {
  display: block;
  font-size: 12px;
  color: #8c93a8;
  margin-bottom: 7px;
  font-style: italic;
  line-height: 1.4;
}

.nominate-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nominate-input,
.nominate-textarea,
.nominate-select {
  width: 100%;
  background: #141838;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}

.nominate-input::placeholder,
.nominate-textarea::placeholder {
  color: #7b84a0;
  font-size: 13px;
}

.nominate-input:focus,
.nominate-textarea:focus,
.nominate-select:focus {
  background: #191f48;
  border-color: #2974EC;
  box-shadow: 0 0 0 3px rgba(41, 116, 236, 0.28);
}

.nominate-input.input-error,
.nominate-textarea.input-error,
.nominate-select.input-error {
  border-color: #ff3b30;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
}

.nominate-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

/* Custom Select Dropdown */
.nominate-select-wrap {
  position: relative;
  width: 100%;
}

.nominate-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

.nominate-select option {
  background: #1D234E;
  color: #ffffff;
}

.nominate-select-wrap .select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c93a8;
  pointer-events: none;
  transition: transform 0.2s ease;
}

/* Section 2: Program Grid */
.nominate-program-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
}

.nominate-field-block {
  margin-bottom: 22px;
}

.nominate-field-block:last-child {
  margin-bottom: 0;
}

/* Form Actions */
.nominate-form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nominate-btn-cancel {
  padding: 12px 24px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #c5cad8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nominate-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.nominate-btn-submit {
  position: relative;
  padding: 13px 34px;
  border-radius: 8px;
  background: #E50914;
  border: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(229, 9, 20, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nominate-btn-submit:hover {
  background: #c80812;
  box-shadow: 0 6px 24px rgba(229, 9, 20, 0.45);
  transform: translateY(-1px);
}

.nominate-btn-submit:active {
  transform: translateY(1px);
}

.nominate-btn-submit.is-loading .btn-text {
  visibility: hidden;
}

.nominate-btn-submit.is-loading .btn-spinner {
  display: block;
}

.btn-spinner {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: nominateSpin 0.7s linear infinite;
}

@keyframes nominateSpin {
  to { transform: rotate(360deg); }
}

/* Success View */
.nominate-success-view {
  text-align: center;
  padding: 40px 20px 20px;
}

.nominate-success-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.14);
  border: 2px solid #27ae60;
  color: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.nominate-success-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.nominate-success-desc {
  font-size: 15px;
  color: #a4abbd;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 24px;
}

.nominate-success-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 24px;
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: left;
  font-size: 13.5px;
  color: #c9cedd;
  line-height: 1.65;
}

.nominate-success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Body lock */
html.nominate-modal-open,
body.nominate-modal-open {
  overflow: hidden !important;
  height: 100% !important;
  overscroll-behavior: none !important;
}

/* Modal Responsive */
@media (max-width: 860px) {
  .nominate-program-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nominate-modal-card {
    padding: 30px 24px;
  }
  .nominate-modal-title {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .nominate-modal-backdrop {
    padding: 12px;
  }
  .nominate-modal-card {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .nominate-name-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .nominate-form-section {
    padding: 20px 16px;
  }
  .nominate-form-footer {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .nominate-btn-cancel,
  .nominate-btn-submit {
    width: 100%;
    text-align: center;
  }
  .nominate-success-actions {
    flex-direction: column;
    width: 100%;
  }
  .nominate-success-actions button {
    width: 100%;
  }
}