:root {
  --orange-main: #ff7a00;
  --orange-soft: #ffe1c2;
  --orange-light: #fff4e8;
  --orange-dark: #d65f00;
  --bg: #ffffff;
  --bg-alt: #f7f7f9;
  --text-main: #1f1f25;
  --text-muted: #7b7b8a;
  --border-subtle: #e3e3ec;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg);
  scroll-behavior: smooth;
}

/* Hide native cursor to showcase custom one */
body, a, button, input, textarea, select {
  cursor: auto;
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.16s ease, opacity 0.25s ease;
  display: none !important;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb26e, var(--orange-main));
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.45);
  transform: translate(-50%, -50%) scale(1);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 138, 63, 0.45);
  box-shadow: 0 0 22px rgba(255, 122, 0, 0.25);
  transform: translate(-50%, -50%) scale(1.05);
}

.cursor-ring.active {
  transform: translate(-50%, -50%) scale(0.9);
  border-color: rgba(255, 122, 0, 0.75);
  box-shadow: 0 0 28px rgba(255, 122, 0, 0.35);
}

@media (hover: none), (pointer: coarse) {
  body, a, button, input, textarea, select {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* Cursor variant for the Coming Soon page */
.coming-body .cursor-dot {
  background: radial-gradient(circle at 30% 30%, #ffd86a, #ff5f6d 80%);
  box-shadow: 0 0 18px rgba(255, 143, 82, 0.55), 0 0 28px rgba(99, 170, 255, 0.25);
}

.coming-body .cursor-ring {
  border: 2px solid rgba(126, 214, 255, 0.55);
  box-shadow: 0 0 32px rgba(126, 214, 255, 0.35), 0 0 20px rgba(255, 143, 82, 0.28);
}

.coming-body .cursor-ring.active {
  border-color: rgba(255, 143, 82, 0.85);
  box-shadow: 0 0 36px rgba(255, 143, 82, 0.45), 0 0 24px rgba(126, 214, 255, 0.35);
}

/* Themed scrollbars */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--orange-main) rgba(255, 138, 63, 0.08);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffe8d1, #ffb26e);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffd9af, var(--orange-main));
}

img,
video {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* CONTAINERS & GLOBALS */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (max-width: 540px) {
  .container {
    padding: 0 1rem;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2,
.section-head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

section {
  scroll-margin-top: 110px;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Floating Instagram button */
.floating-ig {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 320;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  overflow: hidden;
}

.floating-ig:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  filter: brightness(1.04);
}

.floating-ig svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.45));
}

@media (max-width: 640px) {
  .floating-ig {
    bottom: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .floating-ig svg {
    width: 24px;
    height: 24px;
  }
}

/* HEADER & NAVBAR */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(227,227,236,0.6);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.25) inset;
  transition: 0.45s cubic-bezier(.25,.6,.3,1);
  padding: 0.65rem 0;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-soft), var(--orange-main));
  filter: drop-shadow(0 0 6px rgba(255,122,0,0.6));
  opacity: .85;
  pointer-events: none;
}
.site-header.scrolled {
  background: linear-gradient(135deg, rgba(255,255,255,0.68), rgba(250,250,252,0.62));
  padding: 0.45rem 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07), 0 0 0 1px rgba(255,255,255,0.2) inset;
  backdrop-filter: blur(24px) saturate(170%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;
  width: 140px;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #6d6d7a;
  padding: 0.35rem 0.25rem 0.85rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  letter-spacing: 0.02em;
}

.nav-index {
  display: none;
}

.nav-label {
  position: relative;
  color: currentColor;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffb478, #ff8c3c 60%, #ffd5a8);
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(255, 138, 63, 0.55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: #2c2c33;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #1f1f25;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-item-has-children > .nav-link {
  padding-right: 1.35rem;
}

.nav-item-has-children > .nav-link::before {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  opacity: 0.7;
}

.nav-item-has-children:hover > .nav-link::before,
.nav-item-has-children:focus-within > .nav-link::before {
  transform: translateY(-50%) rotate(225deg);
  opacity: 1;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  transform: translateY(8px);
  min-width: 220px;
  padding: 0.65rem;
  list-style: none;
  margin: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,247,249,0.9));
  border: 1px solid rgba(227,227,236,0.7);
  box-shadow: 0 22px 55px rgba(0,0,0,0.18);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 50;
}

.nav-item-has-children:hover .nav-submenu,
.nav-item-has-children:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu li {
  border-radius: 14px;
}

.nav-submenu a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text-main);
  text-decoration: none;
  border-radius: 12px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(255,122,0,0.08);
  color: var(--orange-dark);
}

@media (max-width: 1200px) {
  .nav-list {
    gap: clamp(0.8rem, 1.4vw, 1.2rem);
  }
  .nav-link {
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.55rem 0;
  }
  .nav-container {
    padding: 0.55rem 0;
  }
  .logo-img {
    width: 120px;
  }
}

.nav-cta {
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 20px 42px rgba(255,122,0,0.45);
}

.nav-cta svg {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.3rem;
  transition: transform var(--transition-fast);
}

.nav-cta:hover svg {
  transform: translateX(4px);
}

/* Mobile Navigation Drawer */
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 1rem;
  gap: 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(255,122,0,0.55);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,187,110,0.35));
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18), 0 6px 18px rgba(255,122,0,0.25);
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-main);
  position: relative;
  z-index: 140;
}
.mobile-nav-toggle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.25);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.mobile-nav-toggle:focus-visible::after,
.mobile-nav-toggle:hover::after { opacity: 1; }
.mobile-nav-toggle:hover { transform: translateY(-1px); }
.mobile-nav-toggle:focus-visible { outline: 2px solid var(--orange-main); outline-offset: 3px; }

.menu-icon {
  position: relative;
  width: 22px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}

.mobile-nav-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
}

@media (max-width: 540px) {
  .mobile-nav-toggle {
    padding: 0 0.75rem;
    height: 44px;
    border-radius: 14px;
    padding-left:10px;
  }
  .menu-label {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(1,1,6,0.6);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-med);
  z-index: 110;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,140,52,0.4), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.12), transparent 45%);
  opacity: 0;
  transition: opacity var(--transition-med);
}
.mobile-menu.active::before { opacity: 1; }

.mobile-menu-inner {
  width: min(420px, 88%);
  height: 100%;
  background: linear-gradient(160deg, rgba(10,6,2,0.92), rgba(24,14,9,0.95));
  border-left: 1px solid rgba(255,255,255,0.12);
  box-shadow: -24px 0 55px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 2.5rem 2.5rem 3rem;
  position: relative;
  transform: translateX(60px);
  opacity: 0;
  transition: var(--transition-med);
  overflow-y: auto;
}
.mobile-menu.active .mobile-menu-inner { transform: translateX(0); opacity: 1; }
.mobile-menu-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 15%, rgba(255,160,80,0.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08), transparent 45%);
  opacity: 0.65;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  box-shadow: 0 18px 32px rgba(0,0,0,0.3);
}
.mobile-close:hover {
  transform: translateY(-2px) rotate(3deg);
  border-color: rgba(255,122,0,0.7);
}

.close-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.close-icon::before,
.close-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}
.close-icon::before { transform: rotate(45deg); }
.close-icon::after { transform: rotate(-45deg); }

.mobile-links {
  list-style: none;
  margin: 4.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-links li {
  opacity: 0;
  transform: translateX(32px);
}

.mobile-menu.active .mobile-links li {
  animation: mobileLinkIn 0.5s cubic-bezier(.18,.85,.35,1) forwards;
}
.mobile-menu.active .mobile-links li:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu.active .mobile-links li:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-links li:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-links li:nth-child(5) { animation-delay: 0.2s; }

@keyframes mobileLinkIn {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.98);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

.mobile-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,240,230,0.95);
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.mobile-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,122,0,0.6);
  box-shadow: 0 18px 38px rgba(0,0,0,0.35);
}

.mobile-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,122,0,0.45), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.mobile-links a:hover::after { opacity: 1; }

.mobile-index {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,205,180,0.85);
}

.mobile-label {
  flex: 1;
  color: inherit;
}

.mobile-item-has-children > a {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.mobile-submenu {
  list-style: none;
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.65rem;
  border-left: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-submenu li {
  opacity: 1;
  transform: none;
}

.mobile-submenu a {
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.15);
  color: rgba(255,235,220,0.9);
  font-weight: 400;
}

@media (max-width: 480px) {
  .mobile-menu-inner { padding: 2rem 1.75rem 2.25rem; }
  .mobile-close { top: 1rem; right: 1rem; }
}

.mobile-links .register-link {
  background: linear-gradient(135deg,var(--orange-main),var(--orange-dark));
  color: #fff;
  border: none;
  box-shadow: 0 14px 36px rgba(255,122,0,0.5);
}
.mobile-links .register-link:hover { filter: brightness(1.08); }

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  border: none;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 122, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(255, 122, 0, 0.55);
}

.btn-ghost {
  background: #fff;
  color: var(--orange-main);
  border: 2px solid var(--orange-main);
  font-size: 1rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  animation: marathonPulse 2s ease-in-out infinite;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, 
    var(--orange-main) 0%, 
    var(--orange-dark) 25%, 
    var(--orange-light) 50%, 
    var(--orange-main) 75%, 
    var(--orange-dark) 100%
  );
  background-size: 200% 100%;
  z-index: -1;
  animation: borderFlow 3s linear infinite;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #fff;
  border-radius: var(--radius-pill);
  z-index: -1;
}

.btn-ghost:hover {
  background: var(--orange-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
  animation: marathonPulse 1s ease-in-out infinite;
}

.btn-ghost:hover::after {
  background: var(--orange-light);
}

@keyframes marathonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 122, 0, 0);
  }
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.btn-secondary {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.btn-secondary:hover {
  background: var(--orange-light);
}

.btn.pulse {
  animation: btnPulse 0.7s ease;
}

@keyframes btnPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.btn-disabled {
  background: #f0f0f4;
  color: #b0b0c0;
  cursor: not-allowed;
}

.contact-status {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  min-height: 1.2rem;
  color: #5a250c;
  font-weight: 600;
}

.contact-status.success {
  color: #0f7b3a;
}

.contact-status.error {
  color: #b3261e;
}

.full-width {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 0px);
  padding: clamp(6rem, 10vw, 10rem) 0 5rem;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,140,60,0.12), transparent 65%),
    linear-gradient(135deg, rgba(10,10,16,0.35), rgba(10,8,3,0.15));
}

.hero-sponsor-logos {
  position: absolute;
  top: clamp(5.5rem, 7vw, 6.5rem);
  right: clamp(2.5rem, 3vw, 2.5rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.hero-sponsor-logo {
  width: clamp(130px, 20vw, 180px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgb(255, 255, 255));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-sponsor-logo:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

/* Marathon Route Card */
.marathon-route-card {
  width: 300px;
  padding: 1.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 122, 0, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide mobile version by default */
.marathon-route-card-mobile {
  display: none;
}

.marathon-route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 138, 63, 0.4);
}

.marathon-card-header {
  text-align: center;
  margin-bottom: 1rem;
}

.marathon-card-header h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.marathon-card-header p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.marathon-route-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.route-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.route-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-main) 0%, var(--orange-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.route-btn:hover::before {
  opacity: 0.15;
}

.route-btn:hover {
  transform: translateY(-3px);
  border-color: var(--orange-main);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.route-btn:active {
  transform: translateY(-1px);
}

.route-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.route-km {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.route-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Route Modal - Fullscreen */
.route-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.route-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.route-modal img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(255, 122, 0, 0.4);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.route-modal.active img {
  opacity: 1;
  transform: scale(1);
}

.route-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-main) 0%, var(--orange-dark) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.6);
  opacity: 0;
  transform: scale(0.8) rotate(90deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-modal.active .route-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.2s;
}

.route-close:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(255, 122, 0, 0.8);
}

.route-close svg {
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
  .marathon-route-card {
    width: 280px;
    padding: 1rem;
  }
  
  .route-btn {
    padding: 0.85rem 0.4rem;
  }
  
  .route-km {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .hero-sponsor-logos {
    top: 5rem;
    right: 1.2rem;
    gap: 0.8rem;
  }
  
  .hero-sponsor-logo {
    width: clamp(90px, 13vw, 130px);
  }
}

@media (max-width: 768px) {
  .hero-sponsor-logos {
    top: 4.5rem;
    right: 1rem;
  }
  
  .hero-sponsor-logo {
    width: clamp(75px, 14vw, 105px);
  }
  
  .marathon-route-card {
    width: 260px;
  }
  
  .marathon-route-buttons {
    gap: 0.5rem;
  }
  
  .route-btn {
    padding: 0.75rem 0.3rem;
  }
  
  .route-km {
    font-size: 1.5rem;
  }
  
  .route-label {
    font-size: 0.65rem;
  }
  
  .route-modal {
    padding: 1.5rem;
  }
  
  .route-close {
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 640px) {
  /* Keep logo at top-right, hide desktop card */
  .hero-sponsor-logos {
    position: fixed !important;
    margin-top: 4.5rem;
    right: 0.5rem;
    flex-direction: column;
    gap: 0;
    z-index: 150 !important;
    display: flex !important;
  }
  
  .hero-sponsor-logo {
    width: clamp(80px, 14vw, 100px);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Hide desktop card in top-right */
  .hero-sponsor-logos .marathon-route-card {
    display: none;
  }
  
  /* Show mobile card in content flow */
  .marathon-route-card-mobile {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 1.5rem 0;
  }
  
  .marathon-route-buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-sponsor-logos {
    top: 0.8rem;
    right: 0.6rem;
  }
  
  .hero-sponsor-logo {
    width: clamp(60px, 11vw, 75px);
  }
  
  .marathon-route-card-mobile {
    max-width: 300px;
    padding: 1rem;
  }
  
  .marathon-card-header h3 {
    font-size: 1rem;
  }
  
  .marathon-card-header p {
    font-size: 0.7rem;
  }
  
  .marathon-route-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .route-km {
    font-size: 1.6rem;
  }
  
  .route-close {
    width: 40px;
    height: 40px;
  }
  
  .route-modal img {
    max-width: 95%;
    max-height: 85%;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1080px;
  margin: 0 auto;
  justify-items: flex-start;
  width: 100%;
}

.hero-content {
  padding-right: 0;
  max-width: 720px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 26px rgba(0,0,0,0.25);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 16px 40px rgba(0,0,0,0.45);
  font-weight: 700;
}

.hero-content h1 span {
  display: block;
  margin-top: 0.6rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: rgba(255,255,255,0.88);
}

.hero-content p {
  margin: 0 0 2rem;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0,0,0,0.45);
  align-items: flex-start;
}

.hero-stats .stat {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 22px rgba(0,0,0,0.5);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
  font-weight: 500;
}

.hero-pillars {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.hero-pillars article {
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(7,4,2,0.45);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  min-height: 190px;
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-pillars h4 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

.hero-pillars p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}


@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* RISERS EXPERIENCE */

.experience {
  position: relative;
  padding: 4.5rem 0 4rem;
  background: radial-gradient(circle at 12% 10%, rgba(255, 191, 145, 0.25), transparent 58%),
    radial-gradient(circle at 85% 0%, rgba(255, 168, 120, 0.25), transparent 45%),
    linear-gradient(165deg, #fff4ea 0%, #f3d7c0 48%, #cf9570 100%);
  color: #2c150d;
  overflow: hidden;
}

.experience::before,
.experience::after {
  content: "";
  position: absolute;
  filter: blur(40px);
  opacity: 0.4;
  pointer-events: none;
}

.experience::before {
  width: 280px;
  height: 280px;
  top: -90px;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 198, 151, 0.5), transparent 70%);
}

.experience::after {
  width: 300px;
  height: 300px;
  bottom: -140px;
  left: 5%;
  background: radial-gradient(circle, rgba(212, 115, 73, 0.35), transparent 65%);
}

.experience-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.75rem;
}

.experience-eyebrow {
  display: inline-flex;
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,122,0,0.35);
  margin-bottom: 1rem;
  color: #5b2a16;
}

.experience-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1b0d08;
}

.experience-subhead {
  margin: 0;
  font-size: 1rem;
  color: #513123;
  line-height: 1.7;
}

.experience-subhead strong {
  display: block;
  margin-top: 0.5rem;
  color: #2a150d;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.experience-card {
  position: relative;
  perspective: 1200px;
  min-height: 240px;
  opacity: 0;
  transform: translateY(30px);
  animation: experienceFloat 0.9s ease forwards;
  cursor: pointer;
}

.experience-card:nth-child(1) { animation-delay: 0.05s; }
.experience-card:nth-child(2) { animation-delay: 0.15s; }
.experience-card:nth-child(3) { animation-delay: 0.25s; }
.experience-card:nth-child(4) { animation-delay: 0.35s; }

.experience-card-inner {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: #fffaf4;
  border: 1px solid rgba(255,122,0,0.22);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
  overflow: hidden;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
  text-align: center;
  backdrop-filter: none;
}

.experience-card-inner::before {
  content: none;
}

.experience-card-face {
  position: absolute;
  inset: clamp(1.1rem, 2.6vw, 1.6rem);
  border-radius: 20px;
  display: grid;
  gap: 0.7rem;
  align-content: center;
  justify-items: center;
  padding: 0.5rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  text-align: center;
  background: #fffaf4;
  transition: opacity 0.35s ease;
}

.experience-card-front {
  color: #2c130c;
}

.experience-card-back {
  transform: rotateY(180deg);
  color: #2a120b;
  background: #fff4e8;
  box-shadow: none;
}

.experience-card-back p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.18s, transform 0.3s ease 0.18s;
}

.experience-card:hover .experience-card-front,
.experience-card:focus-within .experience-card-front {
  opacity: 0;
}

.experience-card:hover .experience-card-inner,
.experience-card:focus-within .experience-card-inner {
  transform: rotateY(180deg) translateY(-4px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.18);
  border-color: rgba(255,122,0,0.4);
}

.experience-card:hover .experience-card-back p,
.experience-card:focus-within .experience-card-back p {
  opacity: 1;
  transform: translateY(0);
}

.experience-card.flipped .experience-card-front {
  opacity: 0;
}

.experience-card.flipped .experience-card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  box-shadow: 0 24px 52px rgba(0,0,0,0.18);
  border-color: rgba(255,122,0,0.4);
}

.experience-card.flipped .experience-card-back p {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none), (pointer: coarse) {
  .experience-card {
    -webkit-perspective: 1200px;
    perspective: 1200px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .experience-card-inner {
    transform: rotateY(0deg) translateZ(0);
    -webkit-transform: rotateY(0deg) translateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .experience-card:hover .experience-card-inner,
  .experience-card:focus-within .experience-card-inner {
    transform: rotateY(0deg) translateZ(0);
    -webkit-transform: rotateY(0deg) translateZ(0);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
    border-color: rgba(255,122,0,0.22);
  }

  .experience-card:hover .experience-card-front,
  .experience-card:focus-within .experience-card-front {
    opacity: 1;
  }

  .experience-card:hover .experience-card-back p,
  .experience-card:focus-within .experience-card-back p {
    opacity: 0;
  }

  .experience-card-front {
    transform: rotateY(0deg) translateZ(2px);
    -webkit-transform: rotateY(0deg) translateZ(2px);
    z-index: 1;
  }

  .experience-card-back {
    transform: rotateY(180deg) translateZ(2px);
    -webkit-transform: rotateY(180deg) translateZ(2px);
    opacity: 1;
    z-index: auto;
  }

  .experience-card-back p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.18s, transform 0.3s ease 0.18s;
  }

  .experience-card.flipped .experience-card-inner {
    transform: rotateY(180deg) translateZ(1px);
    -webkit-transform: rotateY(180deg) translateZ(1px);
    box-shadow: 0 24px 52px rgba(0,0,0,0.18);
    border-color: rgba(255,122,0,0.4);
  }

  .experience-card.flipped .experience-card-front {
    opacity: 0;
  }

  .experience-card.flipped .experience-card-back {
    opacity: 1;
  }

  .experience-card.flipped .experience-card-back p {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }

  .experience-card-face {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

.exp-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,230,205,0.95), rgba(255,205,170,0.85));
  border: 1px solid rgba(255,122,0,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--orange-dark);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.exp-icon svg {
  width: 28px;
  height: 28px;
}

.experience-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.experience-more {
  font-size: 0.9rem;
  color: #9b6446;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 6px 16px rgba(143, 68, 35, 0.12);
  border: 1px solid rgba(255, 187, 134, 0.55);
  backdrop-filter: blur(6px);
  transform: translateZ(18px);
}

.experience-card p {
  margin: 0;
  color: #583527;
  line-height: 1.6;
}

.experience-card:hover .exp-icon,
.experience-card:focus-within .exp-icon {
  transform: translateY(-6px) translateZ(24px);
  box-shadow: 0 10px 25px rgba(255, 173, 119, 0.45);
}

.experience-metrics {
  margin-top: 2.8rem;
  padding: 2.4rem;
  border-radius: 32px;
  border: 1px solid rgba(255,122,0,0.25);
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,239,225,0.92));
  box-shadow: 0 30px 60px rgba(177, 83, 43, 0.25);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  text-align: center;
}

.experience-metrics article {
  padding: 1rem;
}

.metric-value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--orange-dark);
}

.metric-label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes experienceFloat {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .experience-card {
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-stats {
    gap: 1.25rem;
  }
  .hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }
  .hero-content h1 span {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }
}

/* ABOUT FEATURE */

.about-feature {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, #fff9f4 0%, #f7e1d3 45%, #f2d3c2 100%);
  overflow: hidden;
}

.about-feature::before,
.about-feature::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 167, 117, 0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.about-feature::before {
  top: -140px;
  right: -120px;
}

.about-feature::after {
  bottom: -160px;
  left: -80px;
}

.about-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.about-collage {
  position: relative;
  border-radius: 46px;
  overflow: hidden;
  min-height: clamp(320px, 48vw, 520px);
  aspect-ratio: 4 / 3;
  box-shadow: 0 45px 85px rgba(44, 18, 4, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: aboutReveal 0.9s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  isolation: isolate;
  justify-self: start;
  width: 100%;
  max-width: 620px;
}

.about-hero {
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  filter: saturate(1.1) contrast(0.98);
  transition: transform 0.6s ease;
}

@media (max-width: 780px) {
  .about-hero img {
    object-position: center 50%;
  }
}

.about-collage:hover .about-hero img {
  transform: scale(1.03);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 4, 1, 0) 20%, rgba(9, 4, 1, 0.65) 100%);
}

.about-hero figcaption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #fff8f2;
  z-index: 1;
}

.about-hero figcaption strong {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1.2;
}

.about-hero figcaption span:last-child {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-hero-chip {
  align-self: flex-start;
  padding: 0.25rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(8, 4, 3, 0.85);
  color: #fff;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.about-content {
  animation: aboutReveal 0.9s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateY(40px);
}

.about-eyebrow {
  display: inline-flex;
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,122,0,0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #6f3a1f;
  margin-bottom: 1rem;
}

.about-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-family: "Playfair Display", "Times New Roman", serif;
  color: #1f0c05;
  line-height: 1.2;
}

.about-content p {
  margin: 0 0 1.6rem;
  color: #5f3926;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.about-highlights article {
  padding: 1rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,122,0,0.15);
  box-shadow: 0 16px 35px rgba(124, 68, 38, 0.18);
}

.about-highlights strong {
  display: block;
  font-size: 1rem;
  color: #2d1409;
  margin-bottom: 0.35rem;
}

.about-highlights span {
  font-size: 0.9rem;
  color: #6a4a3a;
}

.about-cta {
  box-shadow: 0 20px 40px rgba(255,122,0,0.35);
}

@media (max-width: 980px) {
  .about-feature-grid {
    grid-template-columns: 1fr;
  }
  .about-collage {
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .about-collage {
    max-width: 640px;
  }
  .about-content {
    justify-self: end;
  }
}

@media (max-width: 540px) {
  .about-collage {
    width: 100%;
    max-width: none;
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    margin: 0 auto;
    box-shadow: 0 24px 48px rgba(44, 18, 4, 0.2);
  }
  .about-pill {
    left: 16px;
    top: 16px;
  }
  .about-hero img {
    object-position: center;
  }
}

@keyframes aboutReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.02);
  }
}


/* EVENTS */

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #ffcfa7;
}

.events {
  padding: 5rem 0 4.6rem;
  background: radial-gradient(circle at 12% 10%, rgba(255, 191, 145, 0.25), transparent 58%),
    radial-gradient(circle at 85% 0%, rgba(255, 168, 120, 0.25), transparent 45%),
    linear-gradient(165deg, #fff4ea 0%, #f3d7c0 48%, #cf9570 100%);
  position: relative;
  overflow: hidden;
  color: #2c140b;
}

.events::before,
.events::after {
  content: "";
  position: absolute;
  filter: blur(40px);
  opacity: 0.4;
  pointer-events: none;
}

.events::before {
  width: 280px;
  height: 280px;
  top: -90px;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 198, 151, 0.5), transparent 70%);
}

.events::after {
  width: 300px;
  height: 300px;
  bottom: -140px;
  left: 5%;
  background: radial-gradient(circle, rgba(212, 115, 73, 0.35), transparent 65%);
}

.events .container {
  position: relative;
  z-index: 1;
}

.events-lede {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.events-lede-text {
  max-width: 620px;
}

.events-lede-text h2 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  color: #2d160b;
  text-shadow: none;
}

.events-lede-text h2 span {
  color: #40241a;
}

.events-lede-text p {
  margin: 0;
  color: rgba(47,23,12,0.72);
  line-height: 1.6;
  max-width: 520px;
}

.events-lede-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.events-lede-meta span {
  padding: 0.4rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(58,36,22,0.12);
  background: rgba(255,255,255,0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #452617;
  box-shadow: 0 12px 24px rgba(124,66,30,0.15);
}

.events-grid {
  position: relative;
  z-index: 1;
}

.events-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.events-night-grid {
  grid-auto-rows: 1fr;
}

@media (max-width: 720px) {
  .events-lede {
    flex-direction: column;
  }
  .events-grid-wide {
    grid-template-columns: 1fr;
  }
}

.event-card {
  position: relative;
  border-radius: 46px;
  overflow: visible;
  background: linear-gradient(180deg, #e6e0d8 0%, #c8b7a5 22%, #8e6244 65%, #2f1e15 100%);
  box-shadow: 0 30px 80px rgba(47, 29, 19, 0.32);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  isolation: isolate;
  padding-bottom: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
}

.event-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  top: -50px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 193, 132, 0.45), transparent 60%);
  filter: blur(18px);
  opacity: 0.4;
  pointer-events: none;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 110px rgba(63, 32, 14, 0.25);
}

.event-card:hover::after {
  opacity: 0.75;
}

.event-media {
  position: relative;
  height: clamp(220px, 28vw, 250px);
  overflow: hidden;
  border-radius: 40px 40px 32px 32px;
  margin: 1.25rem 1.25rem 0;
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.7s ease;
}

.event-card:hover .event-media img {
  transform: scale(1.05);
}

.event-media::after {
  content: none;
}

.event-media-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  color: #fffaf2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.event-body {
  position: relative;
  margin: -2.6rem 1.4rem 0;
  padding: 2.1rem 1.95rem 2.2rem;
  border-radius: 34px;
  background: #fffdfa;
  border: 1px dashed rgba(230, 176, 130, 0.8);
  box-shadow: 0 35px 70px rgba(70, 28, 8, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.event-header {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.event-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(143,87,48,0.95);
  font-weight: 600;
}

.event-body h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #201108;
}

.event-body > p {
  margin: 0;
  color: rgba(61,31,13,0.78);
  line-height: 1.65;
  font-size: 0.96rem;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  border: 1px solid rgba(229,166,120,0.45);
  background: rgba(255,245,233,0.95);
  color: #9a4e16;
}

.event-chip-live {
  background: linear-gradient(125deg, #ffb26e, #ff7a2f);
  border: none;
  color: #fffaf2;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  box-shadow: 0 14px 32px rgba(255,122,47,0.35);
}

.event-chip-closed {
  border-style: dashed;
  color: rgba(113,67,35,0.85);
  background: rgba(255,255,255,0.75);
}

.event-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.meta-block {
  flex: 1 1 180px;
  padding: 1rem 1.25rem;
  border-radius: 24px;
  background: rgba(255,250,243,0.95);
  border: 1px dashed rgba(233,182,138,0.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(140,78,40,0.85);
}

.meta-value {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: #251007;
}

.countdown-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, #ffe1b5, #ffb26e);
  border: 1px solid rgba(243,164,90,0.85);
  color: #4d2102;
  box-shadow: 0 20px 32px rgba(85,40,15,0.2);
}

.countdown-pill .cd-label {
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(38, 38, 38, 0.85);
  font-weight: 650;
}

.countdown-pill .cd-time {
  font-weight: 750;
  color: #2d1200;
}

.event-partner-badge {
  margin-top: 0.75rem;
  margin-inline: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem 0.6rem;
  min-width: 240px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fffaf3, #fff3e6 55%, #fffaf3);
  border: 1px solid rgba(214, 164, 118, 0.55);
  box-shadow: 0 14px 26px rgba(38, 16, 5, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  color: #4a2109;
  font-weight: 600;
  letter-spacing: 0.01em;
  width: fit-content;
  text-align: center;
}

.event-partner-badge img {
  height: 80px;
  width: auto;
  display: block;
}

.partner-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #5a250c;
  font-weight: 800;
}

.event-co-sponsors {
  margin-top: 1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 0.95rem;
  border-radius: 20px;
  background: linear-gradient(140deg, #fff8ef, #fffdf9 60%, #fff6ea);
  border: 1px solid rgba(214, 164, 118, 0.6);
  box-shadow: 0 18px 36px rgba(38, 16, 5, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  position: relative;
  overflow: hidden;
}

.event-co-sponsors::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(255, 189, 120, 0.35), transparent 55%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.co-sponsor-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #5a250c;
  font-weight: 800;
  text-shadow: 0 10px 18px rgba(90, 37, 12, 0.2);
  z-index: 1;
  text-align: center;
}

.co-sponsor-logos {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
}

.co-sponsor-logos img {
  height: 46px;
  width: auto;
  background: linear-gradient(135deg, #ffffff, #fff4e6);
  border-radius: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(214, 164, 118, 0.5);
  box-shadow: 0 12px 24px rgba(41, 18, 8, 0.16);
  object-fit: contain;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.co-sponsor-logos img:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 28px rgba(41, 18, 8, 0.18);
  border-color: rgba(214, 164, 118, 0.8);
}

@media (max-width: 640px) {
  .event-co-sponsors {
    gap: 0.55rem;
    padding: 0.8rem 0.95rem;
  }

  .co-sponsor-logos {
    gap: 0.5rem;
  }

  .co-sponsor-logos img {
    height: 36px;
    padding: 5px 12px;
  }
}


.event-sponsor-loop {
  margin-top: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 24px;
  border: 1px solid rgba(213,165,125,0.5);
  background: rgba(255,247,238,0.95);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.event-sponsor-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 0;
  animation: eventSponsorLoop 14s linear infinite;
  will-change: transform;
}

.event-sponsor-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.event-sponsor-group img {
  height: 30px;
  width: auto;
  border-radius: 12px;
  background: #fff;
  padding: 0.25rem 0.6rem;
  box-shadow: 0 8px 20px rgba(19,7,0,0.08);
  flex: none;
}

@keyframes eventSponsorLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.event-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.events .event-actions .btn-primary {
  background: linear-gradient(120deg, #ffb26e, #ff9452);
  color: #fffaf3;
  box-shadow: 0 22px 38px rgba(255,140,76,0.35);
  font-weight: 600;
}

.events .event-actions .btn-secondary {
  background: transparent;
  color: #a4530d;
  border: 1px solid rgba(226,156,111,0.8);
}

.events .event-actions .btn-secondary:hover {
  background: rgba(255,237,221,0.85);
}

.events .btn-disabled {
  background: rgba(240,229,219,0.9);
  border: 1px dashed rgba(188,139,108,0.9);
  color: rgba(124,85,63,0.9);
}

@media (max-width: 640px) {
  .events {
    padding: 3.5rem 0 3.1rem;
  }

  .events .container {
    padding: 0 1rem;
  }

  .events-grid-wide {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .event-card {
    border-radius: 32px;
    padding: 0 0.75rem 1.2rem;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .event-card::after {
    display: none;
  }

  .event-media {
    margin: 1rem 0 0;
    border-radius: 24px;
    height: 210px;
  }

  .event-body {
    margin: -1.5rem 0 0;
    padding: 1.4rem 1.1rem 1.5rem;
    border-radius: 22px;
    gap: 0.85rem;
  }

  .event-header {
    flex-direction: column;
    gap: 0.65rem;
  }

  .event-metadata {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-block,
  .countdown-pill {
    width: 100%;
  }

  .countdown-pill {
    justify-content: center;
  }

  .event-actions {
    flex-direction: column;
  }

  .event-actions .btn {
    width: 100%;
  }
}

/* STORIES OF RISE */

.stories {
  padding: 4.5rem 0 4.25rem;
  background: #fdf7f2;
  position: relative;
  overflow: hidden;
}

.stories::before,
.stories::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 168, 112, 0.25), transparent 70%);
  filter: blur(35px);
  pointer-events: none;
}

.stories::before {
  top: -80px;
  left: -40px;
}

.stories::after {
  bottom: -120px;
  right: -60px;
}

.stories-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.stories-head h2 {
  margin: 0.4rem 0 0.4rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #2a1509;
}

.stories-head p {
  margin: 0;
  color: #6b4a37;
  line-height: 1.7;
}

.stories-eyebrow {
  display: inline-flex;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 0, 0.35);
  background: rgba(255, 244, 232, 0.9);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--orange-dark);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.15);
}

.sponsor-eyebrow {
  background: rgba(5, 5, 15, 0.55);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  letter-spacing: 0.25em;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}

.story-card {
  position: relative;
  padding: 1.5rem 1.6rem 1.9rem;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(22, 16, 13, 0.08);
  box-shadow: 0 35px 70px rgba(19, 8, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}

.story-card > * {
  position: relative;
  z-index: 1;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.7), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 90px rgba(31, 9, 0, 0.16);
}

.story-card-highlight {
  background: linear-gradient(160deg, #1a0f05, #381909 60%, #1a0f05);
  color: #fff4ed;
  border-color: rgba(255, 255, 255, 0.2);
}

.story-card-highlight blockquote,
.story-card-highlight .story-copy,
.story-card-highlight .story-meta span,
.story-card-highlight .story-meta h4 {
  color: rgba(255, 248, 242, 0.95);
}

.story-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  width: 100%;
  height: clamp(220px, 32vw, 260px);
  box-shadow: 0 20px 45px rgba(15, 7, 0, 0.15);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.story-play {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: #1f1208;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.story-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.story-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card blockquote {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f1208;
}

.story-card-highlight blockquote {
  color: rgba(255, 248, 242, 0.98);
}

.story-copy {
  margin: 0;
  color: #6b4b37;
  font-size: 0.94rem;
  line-height: 1.65;
}

.story-card-highlight .story-copy {
  color: rgba(255, 244, 232, 0.9);
}

.stories-cta {
  margin-top: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fff, #fff3e6);
  border-radius: 30px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 25px 60px rgba(34, 16, 0, 0.08);
}

.story-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  text-align: center;
}

.story-meta-compact {
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(37, 16, 5, 0.12);
}

.story-card-highlight .story-meta-compact {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.story-meta h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #2b1207;
}

.story-card-highlight .story-meta h4 {
  color: #fff4ea;
}

.story-badges {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.story-badges span {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 0, 0.25);
  background: linear-gradient(120deg, rgba(255, 244, 232, 0.95), rgba(255, 237, 214, 0.85));
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.story-video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.story-video-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.story-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 2, 0.75);
  backdrop-filter: blur(3px);
}

.story-video-dialog {
  position: relative;
  width: min(90vw, 720px);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.story-video-dialog.portrait {
  width: min(90vw, 520px);
  aspect-ratio: 9 / 16;
  max-height: 90vh;
}

.story-video-frame iframe,
.story-video-frame video {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}

.story-video-frame .is-active {
  display: block;
}

.story-video-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #1f1208;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* SPONSOR INVITE */

.sponsor-invite {
  padding: 4.5rem 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 122, 0, 0.25), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(255, 231, 205, 0.55), transparent 60%),
    #120c1f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sponsor-invite::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
}

.sponsor-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.sponsor-content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #fff;
}

.sponsor-content p {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.sponsor-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.sponsor-benefits li {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sponsor-benefits h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #fff;
}

.sponsor-benefits span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.sponsor-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sponsor-showcase {
  position: relative;
  border-radius: 32px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 70px rgba(7, 2, 18, 0.45);
}

.sponsor-rings {
  position: absolute;
  inset: auto auto 0 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
}

.sponsor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: pulse 6s ease-in-out infinite;
}

.sponsor-ring:nth-child(1) {
  inset: 0;
}
.sponsor-ring:nth-child(2) {
  inset: 18px;
  animation-delay: 1s;
}
.sponsor-ring:nth-child(3) {
  inset: 36px;
  animation-delay: 2s;
}

.sponsor-loop {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.85rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.sponsor-loop-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: sponsorLoop 22s linear infinite;
  will-change: transform;
}

.sponsor-loop-group {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.sponsor-loop-group img {
  height: 42px;
  width: auto;
  flex: none;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.sponsor-loop-group img:hover {
  opacity: 1;
}

.sponsor-loop-group[aria-hidden="true"] img {
  opacity: 0.35;
}

.sponsor-card {
  padding: 1.1rem 1.3rem;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.sponsor-metric {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .sponsor-shell {
    grid-template-columns: 1fr;
  }

  .stories-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .sponsor-invite {
    padding: 3.5rem 0;
  }

  .sponsor-invite .container {
    padding: 0 1rem;
  }

  .sponsor-shell {
    gap: 1.25rem;
  }

  .sponsor-content h2 {
    font-size: 2rem;
  }

  .sponsor-showcase {
    padding: 1.2rem 1.3rem;
    border-radius: 22px;
    overflow: hidden;
  }

  .sponsor-loop {
    margin-bottom: 1rem;
    padding: 0.65rem 0;
    border-radius: 18px;
  }

  .sponsor-loop-track {
    gap: 1.2rem;
    animation-duration: 18s;
  }

  .sponsor-loop-group {
    gap: 1.2rem;
  }

  .sponsor-loop-group img {
    height: 30px;
  }

  .sponsor-rings {
    width: 150px;
    height: 150px;
    opacity: 0.55;
  }

  .sponsor-card {
    padding: 0.95rem 1rem;
    font-size: 0.88rem;
  }

  .sponsor-ctas {
    flex-direction: column;
  }

  .sponsor-ctas .btn {
    width: 100%;
    text-align: center;
  }
}

.event-card.feature-card .countdown {
  background: var(--orange-light);
  border: 1px solid rgba(255,122,0,0.2);
}

.event-card.feature-card .event-tag {
  background: rgba(0,0,0,0.7);
}

.event-card.feature-card .event-tag-open {
  background: linear-gradient(135deg,var(--orange-main),var(--orange-soft));
  color: #1a130b;
}

.event-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.75rem;
}

.event-tag-open {
  background: var(--orange-main);
}

.event-chip {
  display: inline-flex;
  padding: 0.25rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem;
  background: rgba(255,255,255,0.06);
}

.event-chip-open {
  background: linear-gradient(135deg,var(--orange-main),var(--orange-soft));
  color: #1a130b;
  border: none;
}

.event-chip-live {
  background: rgba(255,73,41,0.15);
  border-color: rgba(255,124,0,0.6);
  color: #fff3e4;
  padding-left: 1.9rem;
  box-shadow: 0 0 18px rgba(255,134,0,0.55), inset 0 0 12px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.event-chip-live::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb347, #ff5500 70%);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255,115,0,0.9), 0 0 25px rgba(255,100,0,0.6);
  animation: heroPulse 1.2s ease-in-out infinite;
}

.event-media,
.event-image {
  position: relative;
  overflow: hidden;
}

.event-media img,
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card-wide .event-media {
  min-height: 100%;
  height: 100%;
}

.event-card-wide:hover .event-media img {
  transform: scale(1.05);
}

.event-media-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 8, 2, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes cardIntro {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* sponsor marquee */

.sponsor-strip {
  background: rgba(255, 122, 0, 0.08);
  padding: 0.35rem 0;
  overflow: hidden;
}

.event-card.feature-card .sponsor-strip {
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(255, 122, 0, 0.25);
}
.event-card-wide .sponsor-strip {
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.2rem;
  margin-top: 0.6rem;
}
.event-card.feature-card .sponsor-marquee {
  color: var(--orange-soft);
}

.sponsor-marquee {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 15s linear infinite;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--orange-dark);
  padding-left: 1rem;
}

.sponsor-marquee-logos {
  align-items: center;
  padding-left: 0;
  gap: 1.5rem;
}

.sponsor-marquee-logos img {
  height: 34px;
  width: auto;
  flex: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  opacity: 0.9;
}

.sponsor-marquee-logos img[aria-hidden="true"] {
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sponsorLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.event-body {
  position: relative;
  padding: 1.5rem 1.7rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, #fff, #fff8f1 85%);
  border-radius: 24px;
  margin: -1.2rem 1rem 0;
  box-shadow: 0 18px 45px rgba(47, 29, 15, 0.06);
}

.event-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255, 122, 0, 0.25);
}

.event-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.62rem;
  color: rgba(109, 88, 72, 0.6);
}

.event-body h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #2b1a10;
}

.event-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #6d5848;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--text-muted);
}

.event-card.feature-card .event-body p {
  color: #6d5848;
}

.event-card.feature-card .dot {
  background: rgba(109, 88, 72, 0.4);
}

.event-metadata {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.meta-block {
  background: #fffdf9;
  border: 1px dashed rgba(255, 122, 0, 0.25);
  border-radius: 18px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px rgba(45, 22, 6, 0.07);
}

.meta-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(109, 88, 72, 0.65);
}

.meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: #2f1d12;
}

/* countdown */

.countdown {
  margin-top: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--orange-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.cd-label {
  font-weight: 500;
  color: var(--orange-dark);
}

.cd-time {
  font-weight: 500;
}

.event-card.feature-card .cd-label {
  color: var(--orange-soft);
}

.countdown-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.6rem 0.9rem;
}

.countdown-pill .cd-label {
  color: #f1e4d4;
  font-weight: 650;
}

.countdown-pill .cd-time {
  font-size: 1rem;
  font-weight: 600;
}

.event-card.feature-card .btn-secondary {
  background: rgba(255, 122, 0, 0.08);
  color: var(--orange-dark);
  border: 1px solid rgba(255, 122, 0, 0.35);
}

.event-card.feature-card .btn-secondary:hover {
  background: rgba(255, 122, 0, 0.15);
}

.event-card.feature-card .btn-disabled {
  background: rgba(0,0,0,0.04);
  color: rgba(47, 29, 18, 0.4);
}

.event-actions {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px dashed rgba(255, 122, 0, 0.2);
}

/* PAST EVENTS */


.past-events {
  padding: 4rem 0 4.5rem;
  background: radial-gradient(circle at 20% 10%, rgba(255,205,170,0.5), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255,161,112,0.35), transparent 60%), #faf6f1;
  position: relative;
  overflow: hidden;
}

.past-events::before,
.past-events::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,173,102,0.25), transparent 70%);
  filter: blur(25px);
  z-index: 0;
}

.past-events::before {
  top: -220px;
  right: -130px;
}

.past-events::after {
  bottom: -240px;
  left: -110px;
}

.past-events .section-head {
  position: relative;
  z-index: 1;
}

.past-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  position: relative;
  z-index: 1;
}

.past-scroll::-webkit-scrollbar {
  height: 6px;
}

.past-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.video-card {
  min-width: 270px;
  max-width: 320px;
  scroll-snap-align: start;
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(25, 18, 12, 0.9);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 24px 60px rgba(15,10,5,0.25);
  backdrop-filter: blur(6px);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.3);
}

.video-thumb {
  position: relative;
  height: 180px;
}

.video-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  display: block;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55));
}

.video-chip {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-duration {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 2;
}

.video-play {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}

.video-info {
  padding: 1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.video-year {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-info h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.video-cta {
  font-size: 0.85rem;
  color: var(--orange-soft);
  font-weight: 600;
}


/* CONTACT */

.contact {
  position: relative;
  padding: 4.75rem 0 4rem;
  background: radial-gradient(circle at 12% 18%, rgba(255, 122, 0, 0.25), transparent 55%),
    radial-gradient(circle at 82% 8%, rgba(255, 225, 194, 0.4), transparent 60%),
    linear-gradient(135deg, #fff8f1, #fdf3eb 65%, #fff);
  color: var(--text-main);
  overflow: hidden;
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .contact-shell {
    gap: 1.5rem;
  }
}

.contact-panel {
  background: linear-gradient(165deg, #fffdfa, #fff3e6 65%);
  border-radius: 34px;
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(255, 168, 92, 0.35);
  background-clip: padding-box;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 180deg,
    rgba(255, 153, 51, 0.6),
    rgba(255, 215, 179, 0.6),
    rgba(255, 255, 255, 0.7),
    rgba(255, 153, 51, 0.7)
  );
  z-index: -2;
  filter: blur(0.5px);
  animation: borderGlow 9s linear infinite;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.contact-panel-info h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--text-main);
}

.contact-panel-info p {
  margin: 0 0 1.2rem;
  color: rgba(31, 31, 37, 0.8);
  line-height: 1.6;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 0, 0.35);
  background: rgba(255, 244, 232, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 1rem;
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 540px) {
  .contact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-stat {
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 165, 97, 0.3);
  box-shadow: 0 16px 38px rgba(255, 156, 73, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-stat::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.contact-stat > * {
  position: relative;
  z-index: 1;
}

.contact-stat strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  color: var(--orange-dark);
}

.contact-stat span {
  font-size: 0.85rem;
  color: rgba(31, 31, 37, 0.65);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

@media (max-width: 720px) {
  .contact-channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.channel-card {
  padding: 0.95rem 1rem;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(255, 122, 0, 0.25);
  min-height: 120px;
  box-shadow: 0 18px 55px rgba(255, 170, 100, 0.18);
  position: relative;
  overflow: hidden;
}

.channel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 244, 232, 0.95), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.channel-card:hover::after {
  opacity: 1;
}

.channel-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.channel-card p {
  margin: 0 0 0.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--orange-dark);
}

.channel-card span {
  font-size: 0.78rem;
  color: rgba(31, 31, 37, 0.65);
}

.contact-marquee {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(31, 31, 37, 0.55);
}

.contact-marquee span {
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 0, 0.2);
  background: rgba(255, 244, 232, 0.9);
  animation: shimmer 6s linear infinite;
}

.contact-panel-form {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 122, 0, 0.18);
  backdrop-filter: blur(6px);
}

.form-head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.6rem;
}

.form-head p {
  margin: 0 0 1.2rem;
  color: rgba(31, 31, 37, 0.7);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: rgba(31, 31, 37, 0.65);
}

.field input,
.field textarea,
.contact-panel-form select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(225, 189, 140, 0.6);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.field input:focus,
.field textarea:focus,
.contact-panel-form select:focus {
  border-color: rgba(255, 122, 0, 0.8);
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.22);
  background: #fff;
}

.contact-panel-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(31, 31, 37, 0.6) 50%),
    linear-gradient(135deg, rgba(31, 31, 37, 0.6) 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(1.1rem), calc(100% - 16px) calc(1.1rem);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.form-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1;
  min-width: 200px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(31, 31, 37, 0.65);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: rgba(31, 31, 37, 0.6);
  text-align: center;
}

.contact-orb {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.contact-orb-1 {
  top: -40px;
  left: 6%;
  background: rgba(255, 189, 140, 0.55);
}

.contact-orb-2 {
  bottom: -80px;
  right: 10%;
  background: rgba(255, 225, 194, 0.65);
  animation-delay: 4s;
}

.contact-aurora {
  position: absolute;
  inset: 10% auto auto 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 65%);
  filter: blur(50px);
  opacity: 0.6;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

@keyframes shimmer {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0.9;
  }
}

@keyframes borderGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* FOOTER */

.site-footer {
  position: relative;
  padding: 3.5rem 0 1.8rem;
  background: linear-gradient(135deg, #fff5ec, #ffffff 70%);
  color: var(--text-main);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: auto auto 20% 50%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 180, 132, 0.4), transparent 70%);
  filter: blur(90px);
  transform: translateX(-50%);
  opacity: 0.6;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin: 0.75rem 0;
  color: rgba(31, 31, 37, 0.75);
}

.footer-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(31, 31, 37, 0.55);
}

.footer-links h4,
.footer-cta h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: rgba(31, 31, 37, 0.7);
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.footer-cta p {
  margin: 0 0 0.9rem;
  color: rgba(31, 31, 37, 0.65);
}

.footer-newsletter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.footer-newsletter input {
  flex: 1;
  min-width: 200px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.65rem 1rem;
  color: var(--text-main);
  font-family: inherit;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.footer-contact a,
.footer-contact span {
  color: rgba(31, 31, 37, 0.65);
  text-decoration: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(31, 31, 37, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(31, 31, 37, 0.65);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 0, 0.4);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--orange-dark);
  font-size: 0.8rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(255, 244, 232, 0.8);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* SCORES PAGE */

.scores-main {
  position: relative;
  padding: 6.5rem 0 4.5rem;
  background: radial-gradient(circle at 10% 15%, rgba(255,186,134,0.4), transparent 50%),
    radial-gradient(circle at 80% 0, rgba(255,225,194,0.35), transparent 60%),
    #fffdf8;
  overflow: hidden;
}

.scores-ambient {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.45) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
}

.score-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.6rem, 5vw, 2.5rem);
  align-items: stretch;
  margin-bottom: 3rem;
}

.score-hero-copy h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.score-hero-copy p {
  margin: 0 0 1.3rem;
  color: rgba(31, 31, 37, 0.75);
  max-width: 560px;
}

.score-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.score-hero-panel {
  background: rgba(255,255,255,0.82);
  border-radius: 28px;
  border: 1px solid rgba(255,122,0,0.25);
  box-shadow: 0 20px 55px rgba(255, 153, 84, 0.25);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.score-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.score-metrics article {
  padding: 0.85rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,122,0,0.25);
  background: linear-gradient(135deg, rgba(255,244,232,0.8), rgba(255,255,255,0.95));
}

.score-metrics span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.score-metrics strong {
  font-size: 1.9rem;
  margin-top: 0.2rem;
  display: block;
  color: var(--orange-dark);
}

.score-ticker {
  border-radius: 999px;
  border: 1px solid rgba(255,122,0,0.25);
  background: rgba(255,255,255,0.9);
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  animation: ticker 18s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ticker-track strong {
  color: var(--text-main);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scoreboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.score-card {
  background: rgba(255,255,255,0.9);
  border-radius: 28px;
  border: 1px solid rgba(255,122,0,0.25);
  padding: 1.5rem;
  box-shadow: 0 22px 60px rgba(255, 155, 90, 0.22);
}

.score-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.score-card-head h2 {
  margin: 0;
  font-size: 1.4rem;
}

.score-card-head span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.link-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,122,0,0.35);
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--orange-dark);
}

.subtext {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 1rem;
  padding-top: 0.5rem;
}

.podium-slot {
  border-radius: 24px 24px 12px 12px;
  padding: 1rem 1rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,244,232,0.85), rgba(255,255,255,0.95));
  border: 1px solid rgba(255,122,0,0.25);
  min-height: 220px;
}

.podium-slot::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 52px;
  border-radius: 12px 12px 8px 8px;
  background: rgba(255,122,0,0.15);
}

.podium-slot strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
}

.podium-slot span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.podium-slot p {
  margin: 0.6rem 0 0.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.podium-slot small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.medal-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.medal-icon.gold { background: linear-gradient(135deg, #ffcc3f, #f9a620); }
.medal-icon.silver { background: linear-gradient(135deg, #cfd2d7, #a9b0c1); }
.medal-icon.bronze { background: linear-gradient(135deg, #d58d4b, #a55322); }

.podium-first {
  transform: translateY(-12px);
}

.podium-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.table-card .scroll-x {
  border-radius: 18px;
  border: 1px solid rgba(255,122,0,0.2);
}

.scroll-x {
  overflow-x: auto;
}

.scroll-x::-webkit-scrollbar {
  height: 6px;
}

.scroll-x::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.score-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.92rem;
  min-width: 480px;
}

.score-table thead {
  background: rgba(255,244,232,0.8);
}

.score-table th,
.score-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(31,31,37,0.08);
  text-align: left;
}

.score-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}

.bar-graph {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  padding: 0.5rem 0;
  overflow-x: auto;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 70px;
}

.bar {
  width: 36px;
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(135deg, var(--bar-color, var(--orange-main)), rgba(255,255,255,0.85));
  box-shadow: 0 16px 38px rgba(255, 122, 0, 0.35);
  position: relative;
}

.bar-value {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
}

.bar-label {
  font-size: 0.78rem;
}

.updates-card {
  background: #101016;
  color: #f7f7fb;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 45px rgba(16,16,22,0.55);
}

.updates-card h2,
.updates-card span {
  color: #fff;
}

.update-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.update-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
}

.update-badge {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-badge.gold { background: rgba(255,204,63,0.15); color: #ffd15b; }
.update-badge.silver { background: rgba(207,210,215,0.2); color: #e0e4eb; }
.update-badge.bronze { background: rgba(213,141,75,0.2); color: #f6b18a; }

.update-list strong {
  display: block;
  margin-bottom: 0.1rem;
}

.update-list p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(247,247,251,0.9);
}

/* SCORES COMING SOON PLACEHOLDER */

.coming-main {
  position: relative;
  min-height: calc(100vh - 140px);
  padding: 7rem 0 5rem;
  background: radial-gradient(circle at 20% 10%, rgba(255,176,110,0.45), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(255,235,215,0.35), transparent 60%),
    #050505;
  /* ...existing code... */

  /* Hero Section Background - lighter with orange overlay */
  .hero-bg {
    position: relative;
    background: url('path/to/your/hero-image.jpg') center/cover no-repeat;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 140, 0, 0.5), rgba(255, 140, 0, 0.5)); /* orange with 50% opacity */
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  align-items: center;
  overflow: hidden;
}

.coming-main .container {
  width: 100%;
}

.coming-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(255,126,48,0.25), transparent 60%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.coming-card {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 32px;
  background: rgba(10,10,18,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 35px 90px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  text-align: center;
  color: #f5f5fa;
}

.coming-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.6);
}

.coming-card h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 3rem);
}

.coming-lede {
  margin: 0 auto 1.5rem;
  max-width: 540px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.coming-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.coming-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.coming-actions .btn {
  min-width: 220px;
  justify-content: center;
}

.coming-note {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.coming-note p {
  margin: 0 0 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.coming-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.coming-form input {
  flex: 1 1 240px;
  min-width: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 0.75rem 1rem;
}

.coming-form input::placeholder {
  color: rgba(255,255,255,0.55);
}

@media (max-width: 640px) {
  .coming-main {
    padding: 6rem 0 4rem;
  }
  .coming-actions .btn,
  .coming-form button {
    width: 100%;
  }
  .coming-form {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .score-hero {
    grid-template-columns: 1fr;
  }
  .score-metrics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .scoreboard-grid {
    grid-template-columns: 1fr;
  }
  .podium {
    grid-template-columns: 1fr;
  }
  .podium-slot {
    min-height: auto;
  }
  .ticker-track {
    animation-duration: 24s;
  }
  .score-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* RESPONSIVE POLISH */

@media (max-width: 900px) {
  .hero {
    padding: 5rem 0 3rem;
  }
  .hero-progress-panel {
    margin-top: 2rem;
  }
  .gallery-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .score-card {
    padding: 1.35rem;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .score-actions,
  .gallery-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-progress-panel,
  .score-hero-panel,
  .score-card,
  .gallery-showcase {
    padding: 1.3rem;
    border-radius: 24px;
  }
  .hero-actions .btn,
  .score-actions .btn,
  .gallery-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .score-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(2.4rem, 9vw, 2.9rem);
  }
  .score-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }
  .score-card,
  .gallery-showcase {
    padding: 1.05rem;
  }
  .score-metrics {
    grid-template-columns: 1fr;
  }
  .score-ticker {
    height: 42px;
  }
}

/* GALLERY PAGE */

.gallery-main {
  position: relative;
  padding: 6rem 0 4.5rem;
  background: radial-gradient(circle at 12% 18%, rgba(255, 186, 134, 0.35), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(255, 225, 194, 0.45), transparent 55%),
    #fff8f1;
  overflow: hidden;
}

.gallery-ambient {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.4;
  pointer-events: none;
}

.gallery-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.gallery-hero-copy h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
}

.gallery-hero-copy p {
  margin-bottom: 1.4rem;
  color: rgba(31, 31, 37, 0.75);
}

.hero-pill {
  display: inline-flex;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 0, 0.35);
  background: rgba(255, 244, 232, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: var(--orange-dark);
}

.gallery-hero .hero-stats {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.gallery-hero .hero-stats div {
  min-width: 120px;
}

.gallery-hero .hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--orange-dark);
}

.gallery-hero .hero-stats span {
  font-size: 0.85rem;
  color: rgba(31, 31, 37, 0.65);
}

.gallery-hero-preview {
  position: relative;
}

.preview-card {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px rgba(255, 160, 84, 0.35);
}

.preview-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.preview-video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.preview-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 12, 24, 0.75);
  color: #fff;
  font-size: 0.78rem;
}

.preview-meta {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: rgba(255, 255, 255, 0.85);
}

.preview-meta p {
  margin: 0 0 0.2rem;
}

.preview-floating {
  position: absolute;
  right: -24px;
  bottom: -18px;
  background: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
}

.gallery-showcase {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 22px 60px rgba(255, 159, 90, 0.25);
}

@media (max-width: 900px) {
  .gallery-hero {
    grid-template-columns: 1fr;
  }
  .preview-card img {
    height: 360px;
  }
  .gallery-showcase {
    padding: 1.5rem;
  }
}

@media (max-width: 560px) {
  .hero-stats {
    flex-direction: column;
  }
  .preview-floating {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
  }
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.gallery-control-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.gallery-badge {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(255, 122, 0, 0.4);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 0, 0.25);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast), border var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--orange-main);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.1rem;
}

.gallery-item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 122, 0, 0.15);
  min-height: 260px;
  isolation: isolate;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
  opacity: 0.85;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem;
  color: #fff;
  z-index: 1;
}

.gallery-chip {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  margin-bottom: 0.45rem;
}

.gallery-item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.gallery-item span:last-child {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.gallery-item.flash {
  animation: pulseGlow 1.2s ease-out;
}

/* Folder modal */
.folder-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.folder-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.folder-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 6, 2, 0.78);
  backdrop-filter: blur(4px);
}

.folder-dialog {
  position: relative;
  width: min(92vw, 980px);
  max-height: 88vh;
  background: #0a0604;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.75rem;
  z-index: 1;
}

.folder-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #1b0d08;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.folder-stage {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.folder-media {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: none;
}

.folder-media.is-active {
  display: block;
}

.folder-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.25rem 0.5rem;
  color: #f7ede4;
}

.folder-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.folder-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.folder-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0 1rem 1.1rem;
  color: #f3e7dc;
}

.folder-prev,
.folder-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.folder-prev:hover,
.folder-next:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.folder-counter {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gallery-spotlight {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}

.spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff, #fff3e5);
  border: 1px solid rgba(255, 122, 0, 0.15);
  box-shadow: 0 25px 70px rgba(255, 170, 100, 0.2);
}

@media (max-width: 900px) {
  .spotlight-card {
    grid-template-columns: 1fr;
  }
}

.spotlight-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.78rem;
}

.spotlight-body h3 {
  margin: 0 0 0.6rem;
}

.spotlight-body p {
  margin: 0 0 1rem;
  color: rgba(31, 31, 37, 0.75);
  line-height: 1.6;
}

.spotlight-meta {
  font-size: 0.85rem;
  color: rgba(31, 31, 37, 0.6);
  margin-bottom: 1.2rem;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(255, 122, 0, 0);
  }
}

/* TIMELINE */

.year-timeline {
  padding: 2.2rem 1.8rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 55px rgba(255, 170, 100, 0.2);
  position: relative;
  z-index: 1;
}

.timeline {
  margin-top: 1.2rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1rem;
  padding-left: 1.6rem;
  margin-bottom: 1rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange-dark);
  min-width: 52px;
}

.timeline-content {
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.18);
  font-size: 0.85rem;
}

.timeline-content h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.timeline-content p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
}

.timeline-date {
  font-size: 0.76rem;
  color: var(--orange-main);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange-main);
}

/* MODALS */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 16, 0.78);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(140px, 15vh, 200px) 1rem 1.5rem;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

@media (max-width: 640px) {
  .modal-backdrop {
    padding: 200px 0.9rem 1.25rem;
    margin-top: 2.5rem;
  }
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: 20px;
  width: min(420px, 90vw);
  padding: 1.3rem 1.3rem 1.5rem;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-panel {
  width: min(760px, 92vw);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent 70%),
    rgba(13,13,23,0.96);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 2.4rem 2.6rem 2.2rem;
  border-radius: 34px;
  box-shadow: 0 50px 120px rgba(0,0,0,0.55);
  overflow: hidden;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), opacity 0.35s ease;
}

.modal-backdrop.show .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,151,82,0.25), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.modal-header {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.modal-pill {
  display: inline-flex;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.modal-header h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.65rem;
}

.modal-lede {
  margin: 0;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}

.modal-body {
  position: relative;
  z-index: 1;
}

.modal-toolbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-right: 4.8rem;
}

.modal-toolbar .modal-tabs {
  flex: 1 1 auto;
}

.modal-close-pill {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  position: absolute;
  top: 10px;
  right: 0;
}

.modal-close-pill:hover,
.modal-close-pill:focus-visible {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.65);
  color: #0d0d17;
}

.modal-close-pill:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

.modal-close-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
}

.modal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.modal-tab {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.modal-tab.active {
  background: #fff;
  color: #0d0d17;
  font-weight: 600;
  border-color: rgba(13,13,23,0.12);
}

.modal-scroll-shell {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.modal-scroll-shell::-webkit-scrollbar {
  width: 6px;
}

.modal-scroll-shell::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

.modal-scroll-shell::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
}

.modal-panes {
  display: block;
}

.modal-pane {
  display: none;
  animation: fadeUp 0.35s ease;
}

.modal-pane.active {
  display: block;
}

.modal-pane + .modal-pane {
  margin-top: 1.5rem;
}

.modal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 0.4rem;
}

.modal-pane h4 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.modal-pane p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.modal-bullet-title {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.35rem;
}

.modal-bullet-list {
  margin: 0 0 1.2rem 1.1rem;
  color: rgba(255,255,255,0.95);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.2rem;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.modal-table thead th {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.05);
}

.modal-table tbody th,
.modal-table tbody td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}

.modal-table tbody tr:last-child th,
.modal-table tbody tr:last-child td {
  border-bottom: none;
}

.modal-table tbody th {
  width: 34%;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.modal-table tbody td {
  color: rgba(255,255,255,0.92);
}

.modal-table-list {
  margin: 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.modal-chip-row .modal-chip {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 640px) {
  .modal-toolbar {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

  .modal-close-pill {
    position: static;
    align-self: stretch;
    text-align: center;
    margin-top: 0.4rem;
  }

  .modal-scroll-shell {
    max-height: 420px;
  }

  .modal-tab {
    font-size: 0.78rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.modal-column.is-hidden {
  display: none;
}

.modal-column h4 {
  margin: 0 0 0.4rem;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.modal-list {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-list li {
  margin: 0;
  line-height: 1.4;
}

.modal-list-facts li::marker {
  color: var(--orange-main);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
  border: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(4px);
}

.modal-image {
  width: min(720px, 95vw);
  padding: 0.8rem;
  background: #fff;
  border-radius: 20px;
  color: var(--text-main);
}

.modal-image .modal-close {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-main);
}

.modal-image img {
  border-radius: 14px;
  max-height: 80vh;
  object-fit: cover;
}

@media (max-width: 640px) {
  /* Ensure modal close stays visible on mobile */
  .modal-backdrop {
    align-items: flex-start;
    padding: 1.25rem 0.85rem;
    overflow-y: auto;
  }

  .modal-panel {
    margin-top: 1rem;
    padding-top: 3.2rem;
  }

  .modal-close {
    top: 0.9rem;
    right: 0.9rem;
  }
}

/* COMING SOON PAGE */

.coming-body {
  background: radial-gradient(circle at 10% 20%, #1b0f2b, #0a0f1e 45%, #05070f);
  min-height: 100vh;
  color: #f3f3f6;
}

.coming-soon {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(2.2rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
}

.coming-mesh {
  position: absolute;
  inset: 8% 10% auto 10%;
  height: 72%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,143,82,0.12), transparent 45%),
    radial-gradient(circle at 80% 28%, rgba(126,214,255,0.12), transparent 42%),
    linear-gradient(120deg, rgba(255,143,82,0.05), rgba(126,214,255,0.05));
  filter: blur(26px);
  opacity: 0.9;
  pointer-events: none;
}

.coming-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.coming-blob {
  position: absolute;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle at 30% 30%, rgba(255,149,62,0.55), rgba(255,86,124,0));
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite;
}

.coming-blob.alt {
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle at 60% 60%, rgba(99,170,255,0.45), rgba(19,34,84,0));
  animation-duration: 22s;
  animation-delay: -6s;
  right: -10%;
  top: 10%;
}

.coming-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

.coming-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.coming-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: clamp(2rem, 4.5vw, 3.3rem);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

.coming-card::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto 40%;
  height: 70%;
  background: radial-gradient(circle at 30% 30%, rgba(255,136,86,0.25), rgba(255,255,255,0));
  filter: blur(30px);
  opacity: 0.6;
}

.coming-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  mix-blend-mode: screen;
  opacity: 0.25;
  transform: translateX(-60%);
  animation: sweep 7s ease-in-out infinite;
}

.coming-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}

/* no decorative dots; keep the label centered */

.coming-card h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0.4rem 0 0.6rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.coming-lede {
  margin: 0 0 1.8rem;
  color: rgba(245,245,250,0.86);
  max-width: 760px;
  line-height: 1.7;
}

.coming-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.coming-progress {
  flex: 1 1 180px;
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.coming-progress span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff9f48, #ff5f6d);
  width: 68%;
  animation: fill 3s ease-in-out infinite alternate;
}

.coming-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}

.coming-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  width: 100%;
}

.coming-cta-only {
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.coming-block {
  padding: 1.2rem 1.3rem;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.coming-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  margin: 0 0 0.6rem;
}

.coming-list {
  margin: 0;
  padding-left: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(255,255,255,0.9);
}

.coming-list li {
  line-height: 1.55;
}

.coming-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.25rem 0 0.6rem;
}

.coming-cta-row .btn {
  min-width: 170px;
  border-radius: 999px;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}

.coming-badge::before {
  content: "●";
  color: #ff9f48;
  font-size: 0.9rem;
}

.spark-line {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 1px dashed rgba(255,255,255,0.08);
  mask-image: radial-gradient(circle, rgba(0,0,0,0.35), transparent 65%);
  animation: rotateLine 30s linear infinite;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffd86a;
  border-radius: 999px;
  filter: drop-shadow(0 0 6px rgba(255,216,106,0.8));
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
}

.sparkle:nth-child(1) { top: 12%; left: 22%; animation-delay: 0.2s; }
.sparkle:nth-child(2) { top: 28%; right: 18%; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: 18%; left: 16%; animation-delay: 1.8s; }
.sparkle:nth-child(4) { bottom: 10%; right: 24%; animation-delay: 0.6s; }

.window-glow {
  position: absolute;
  inset: 1rem;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 10%, rgba(255,214,153,0.15), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(126,214,255,0.12), transparent 55%);
  filter: blur(26px);
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 720px) {
  .coming-card {
    padding: 1.4rem;
  }

  .coming-card h1 {
    font-size: clamp(2.1rem, 7vw, 2.6rem);
  }

  .coming-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes drift {
  0% { transform: translate3d(-8%, -2%, 0) scale(1); }
  50% { transform: translate3d(6%, 6%, 0) scale(1.05); }
  100% { transform: translate3d(-10%, 4%, 0) scale(1); }
}

@keyframes sweep {
  0% { transform: translateX(-70%); opacity: 0; }
  20% { opacity: 0.35; }
  50% { transform: translateX(60%); opacity: 0.18; }
  80% { opacity: 0.35; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes fill {
  from { width: 54%; }
  to { width: 82%; }
}

@keyframes rotateLine {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* MISC */

body {
  -webkit-font-smoothing: antialiased;
}
