:root {
  --ink: #1c1008;
  --nav: #2f201a;
  --panel: #4c3424;
  --panel-deep: #3a2117;
  --panel-burnt: #3d1c0f;
  --gold-a: #b37c51;
  --gold-b: #eedea0;
  --gold-c: #dab770;
  --cream: #fef8bc;
  --muted: #b7a58e;
  --rose: #d3a688;
  --flame: #da5a36;
  --red: #e8292f;
  --text: #ffffff;
  --max: 1180px;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
  position: fixed;
  inset: 0;
  width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-anchor {
  scroll-margin-top: 84px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(47, 32, 26, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(238, 222, 160, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  width: min(100%, 1280px);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-brand:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-logo:not(.site-logo--hero) {
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  object-fit: contain;
}

.site-logo--nav {
  width: 52px;
  height: 52px;
  padding: 6px;
}

.site-logo--hero {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.site-logo--about {
  width: clamp(110px, 16vw, 160px);
  height: clamp(110px, 16vw, 160px);
  padding: 10px;
  margin-bottom: 4px;
}

.site-logo--footer {
  width: 68px;
  height: 68px;
  padding: 8px;
  margin: 0 auto 20px;
}

.site-logo--modal {
  width: 46px;
  height: 46px;
  padding: 5px;
  margin: 0;
  flex-shrink: 0;
}

.site-logo--mobile {
  width: 46px;
  height: 46px;
  padding: 5px;
}

.site-logo--sticky {
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(238, 222, 160, 0.18);
  flex-shrink: 0;
}

.nav-link {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--gold-a);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--gold-b);
  background: rgba(179, 124, 81, 0.12);
}

.nav-link.active {
  color: var(--gold-b);
  background: rgba(179, 124, 81, 0.18);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-pill,
.login-button {
  min-height: 38px;
  border-radius: 120px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

a.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-pill:hover,
.login-button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.nav-pill-filled {
  color: var(--nav);
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b) 50%, var(--gold-a));
  background-size: 200% 100%;
  border: 1px solid var(--gold-a);
  animation: goldShift 4s linear infinite;
}

.nav-pill-outline {
  color: var(--gold-a);
  background:
    linear-gradient(var(--nav), var(--nav)) padding-box,
    linear-gradient(90deg, var(--gold-a), var(--gold-b), var(--gold-a)) border-box;
  border: 1px solid transparent;
  animation: textGoldShift 4s linear infinite;
}

.login-button {
  min-width: 108px;
  color: #fff;
  background: var(--red);
  text-transform: none;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: 8px;
  border-radius: 12px;
  border: 1px solid rgba(238, 222, 160, 0.22);
  background: rgba(28, 16, 8, 0.55);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 5px;
  background: var(--gold-b);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.menu-toggle span:last-child {
  width: 14px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 11px;
}

.site-nav.open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.open .menu-toggle span:last-child {
  width: 20px;
  margin-right: auto;
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-nav.open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  width: min(88vw, 340px);
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  padding: 18px 18px 24px;
  background:
    linear-gradient(180deg, rgba(179, 124, 81, 0.12), transparent 28%),
    rgba(47, 32, 26, 0.98);
  border-left: 1px solid rgba(238, 222, 160, 0.16);
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
}

.site-nav.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(238, 222, 160, 0.14);
}

.mobile-panel-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(238, 222, 160, 0.22);
  background: rgba(28, 16, 8, 0.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-panel-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-panel-links .nav-link {
  width: 100%;
  padding: 14px 14px;
  font-size: 16px;
  text-align: left;
}

.mobile-panel-links .nav-link::after {
  left: 14px;
  right: auto;
  width: 28px;
  transform: scaleX(0);
}

.mobile-panel-links .nav-link.active::after {
  transform: scaleX(1);
}

.mobile-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.mobile-panel-actions .nav-pill {
  width: 100%;
  min-height: 46px;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 56px 24px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(179, 124, 81, 0.35), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(28, 16, 8, 0.95), rgba(28, 16, 8, 0.75) 40%),
    linear-gradient(rgba(28, 16, 8, 0.78), rgba(28, 16, 8, 0.92)),
    url("https://images.unsplash.com/photo-1559223607-a43c990c692c?auto=format&fit=crop&w=1800&q=80") center / cover;
  opacity: 0.96;
}

.hero-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 222, 160, 0.18) 0%, transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: heroFadeIn 0.8s ease both;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.hero-logo-circle {
  width: clamp(148px, 22vw, 196px);
  height: clamp(148px, 22vw, 196px);
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    0 0 0 10px rgba(255, 255, 255, 0.08);
  animation: logoFloat 5s ease-in-out infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(238, 222, 160, 0.35);
  background: rgba(179, 124, 81, 0.2);
  color: var(--gold-b);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, var(--gold-b), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
}

.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 920px);
  margin-top: 6px;
}

.hero-meta-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(238, 222, 160, 0.2);
  background: rgba(47, 32, 26, 0.78);
  backdrop-filter: blur(12px);
  text-align: left;
  cursor: default;
  animation: heroFadeIn 0.65s ease both;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-meta-card:nth-child(1) {
  animation-delay: 0.15s;
}

.hero-meta-card:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-meta-card:nth-child(3) {
  animation-delay: 0.35s;
}

.hero-meta-card:nth-child(4) {
  animation-delay: 0.45s;
}

.hero-meta-card:hover,
.hero-meta-card:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(238, 222, 160, 0.5);
  background: rgba(76, 52, 36, 0.88);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  outline: none;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, 760px);
}

.hero-highlights span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(238, 222, 160, 0.22);
  background: rgba(28, 16, 8, 0.55);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-highlights span:hover {
  transform: translateY(-2px);
  background: rgba(179, 124, 81, 0.28);
  border-color: rgba(238, 222, 160, 0.42);
}

.hero-copy {
  max-width: 760px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(238, 222, 160, 0.14);
  background: rgba(28, 16, 8, 0.45);
  backdrop-filter: blur(8px);
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.hero-fee-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-fee-note strong {
  color: var(--gold-b);
}

.hero-rays {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    repeating-conic-gradient(
      from 240deg at 0% 78%,
      transparent 0deg,
      transparent 3deg,
      rgba(238, 222, 160, 0.48) 3.25deg,
      transparent 3.9deg
    ),
    repeating-conic-gradient(
      from 116deg at 100% 78%,
      transparent 0deg,
      transparent 3deg,
      rgba(238, 222, 160, 0.42) 3.25deg,
      transparent 3.9deg
    );
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.8) 18%,
    transparent 38%,
    transparent 62%,
    rgba(0, 0, 0, 0.8) 82%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.8) 18%,
    transparent 38%,
    transparent 62%,
    rgba(0, 0, 0, 0.8) 82%,
    #000 100%
  );
  pointer-events: none;
}

.award-name,
.award-title {
  position: relative;
  z-index: 1;
}

.award-name {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 2px;
}

.award-name span {
  width: 48px;
  height: 16px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold-a) 0,
    var(--gold-a) 2px,
    transparent 2px,
    transparent 5px
  );
  opacity: 0.72;
}

.award-name p,
.award-title {
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b) 50%, var(--gold-a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.award-name p {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
}

.award-title {
  margin-top: -4px;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-meta-card .meta-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(179, 124, 81, 0.22);
  font-size: 20px;
  line-height: 1;
  overflow: hidden;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.hero-meta-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-b);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-meta-card > div span {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 58px;
  padding: 14px 48px;
  border-radius: 120px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.72px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-primary {
  color: #000;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b) 50.9%, var(--gold-a));
  border: 2px solid #a77248;
  background-size: 200% 100%;
  animation: goldShift 4s linear infinite;
}

.btn-secondary {
  color: var(--gold-b);
  background: var(--ink);
  border: 1px solid var(--gold-a);
}

.btn-large {
  min-width: 400px;
  min-height: 68px;
  font-size: 30px;
}

.section-title {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0 0 8px;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.section-intro {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 38px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.section-intro .section-title {
  padding: 0;
}

.section-subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(238, 222, 160, 0.28);
  background: rgba(179, 124, 81, 0.16);
  color: var(--gold-b);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-badge-light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.photo-section,
.benefits-section,
.track-section,
.spotlight-section,
.category-section,
.winners-section {
  background: var(--ink);
}

.photo-section {
  padding-bottom: 32px;
  overflow: hidden;
  position: relative;
}

.photo-section::before,
.photo-section::after {
  content: "";
  position: absolute;
  top: 80px;
  bottom: 32px;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.photo-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.photo-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.photo-marquee {
  display: flex;
  gap: 22px;
  width: 100%;
  overflow: hidden;
}

.photo-track {
  display: flex;
  gap: 22px;
  min-width: max-content;
  animation: marquee 44s linear infinite;
}

.photo-marquee:hover .photo-track {
  animation-play-state: paused;
}

.photo-track figure {
  width: 310px;
  height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(179, 124, 81, 0.32);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.photo-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.4s ease;
}

.photo-track figure:hover img {
  transform: scale(1.05);
}

.benefits-section {
  padding: 0 42px 44px;
  overflow: hidden;
}

.benefits-slider {
  width: min(100%, 920px);
  margin: 0 auto;
}

.benefits-slider-viewport {
  --slide-width: min(74%, 640px);
  --slide-height: clamp(260px, 48vw, 400px);
  --slide-duration: 900ms;
  position: relative;
  width: 100%;
  height: var(--slide-height);
  overflow: hidden;
}

.benefits-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.benefits-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--slide-width);
  height: var(--slide-height);
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(238, 222, 160, 0.18);
  background: #120a06;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.68);
  transition:
    transform var(--slide-duration) cubic-bezier(0.4, 0.12, 0.2, 1),
    opacity var(--slide-duration) ease,
    filter var(--slide-duration) ease,
    box-shadow var(--slide-duration) ease;
  will-change: transform, opacity;
}

.benefits-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 3, 0.62);
  transition: opacity var(--slide-duration) ease;
  pointer-events: none;
}

.benefits-slide.is-prev {
  opacity: 1;
  z-index: 1;
  transform: translate(calc(-50% - 56%), -50%) scale(0.78);
  filter: brightness(0.62) saturate(0.85);
}

.benefits-slide.is-next {
  opacity: 1;
  z-index: 1;
  transform: translate(calc(-50% + 56%), -50%) scale(0.78);
  filter: brightness(0.62) saturate(0.85);
}

.benefits-slide.is-active {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
  border-color: rgba(238, 222, 160, 0.38);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(238, 222, 160, 0.1) inset;
}

.benefits-slide.is-active::after {
  opacity: 0;
}

.benefits-slide.is-hidden {
  opacity: 0;
  z-index: 0;
  transform: translate(-50%, -50%) scale(0.6);
  pointer-events: none;
}

.benefits-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.benefits-slider-controls {
  margin-top: 18px;
  gap: 14px;
  padding: 8px 14px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  border: 1px solid rgba(238, 222, 160, 0.2);
  background: rgba(28, 16, 8, 0.72);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefits-slider-controls .benefits-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(179, 124, 81, 0.55);
  border-radius: 50%;
  background: linear-gradient(145deg, #eedea0 0%, #c99862 52%, #b37c51 100%);
  color: var(--ink);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefits-slider-controls .benefits-slider-arrow svg {
  width: 20px;
  height: 20px;
}

.benefits-slider-controls .benefits-slider-arrow:hover {
  transform: scale(1.07);
  border-color: rgba(238, 222, 160, 0.65);
  box-shadow:
    0 8px 20px rgba(179, 124, 81, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.benefits-slider-controls .benefits-slider-arrow:active {
  transform: scale(0.96);
}

.benefits-slider-controls .benefits-slider-dots {
  max-width: min(100%, 280px);
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
  gap: 8px;
  padding: 4px 6px;
}

.benefits-slider-controls .benefits-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(238, 222, 160, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    width 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.benefits-slider-controls .benefits-slider-dots button:hover {
  background: rgba(238, 222, 160, 0.38);
  border-color: rgba(238, 222, 160, 0.5);
  transform: scale(1.08);
}

.benefits-slider-controls .benefits-slider-dots button.active {
  width: 24px;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b));
  border-color: rgba(238, 222, 160, 0.72);
  box-shadow: 0 0 12px rgba(238, 222, 160, 0.28);
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .benefits-slide {
    transition-duration: 0.01ms;
  }

  .benefits-slide::after {
    transition-duration: 0.01ms;
  }
}

.carousel-controls,
.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.circle-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-b), var(--gold-c));
  color: var(--ink);
  font-size: 35px;
  line-height: 1;
  cursor: pointer;
}

.dots,
.category-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dots button,
.category-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dots button.active,
.category-dots button.active {
  background: var(--red);
  transform: scale(1.2);
}

.track-section {
  padding: 28px 130px 40px;
  overflow: hidden;
}

.section-heading-block {
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section-heading-block h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
}

.section-heading-block p {
  margin: 0;
  color: var(--gold-a);
  font-size: 34px;
  line-height: 1.2;
}

.track-cards {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.audience-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 168px;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(238, 222, 160, 0.14);
  background: var(--nav);
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 222, 160, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.audience-card:nth-child(4n + 2) {
  background: var(--panel-deep);
}

.audience-card:nth-child(4n + 3) {
  background: var(--panel-burnt);
}

.audience-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(238, 222, 160, 0.22);
  background: rgba(179, 124, 81, 0.18);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold-b);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

.audience-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.audience-cta .btn {
  min-width: 280px;
  min-height: 54px;
  font-size: 20px;
}

.track-card {
  position: relative;
  flex: 1;
  min-height: 520px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(238, 222, 160, 0.12);
  background: var(--nav);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 222, 160, 0.28);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
}

.track-card:nth-child(2) {
  background: var(--panel-deep);
}

.track-card:nth-child(3) {
  background: var(--panel-burnt);
}

.track-card img {
  position: absolute;
  right: -34px;
  bottom: -20px;
  width: 275px;
  height: 210px;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.7);
}

.track-card h3 {
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b) 50%, var(--gold-a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
  line-height: 1.55;
}

.track-card p,
.track-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
}

.track-card p {
  min-height: 62px;
  margin: 0;
}

.criteria-label {
  position: relative;
  z-index: 1;
  margin-top: 2px;
  padding: 4px 0;
  background: #4b3223;
  color: #d9bb84;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
}

.track-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.track-card strong {
  color: #e4cd92;
}

.track-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--cream);
}

.apply-button {
  position: relative;
  z-index: 1;
  width: 145px;
  min-height: 48px;
  margin-top: auto;
  border-radius: 80px;
  background: linear-gradient(var(--gold-a), var(--gold-c));
  color: #000;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.nominate-section {
  width: 100%;
  padding: 32px 130px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background:
    radial-gradient(circle at top right, rgba(179, 124, 81, 0.12), transparent 34%),
    var(--ink);
  overflow: hidden;
}

.nominate-copy {
  width: 412px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(238, 222, 160, 0.14);
  background: rgba(47, 32, 26, 0.55);
}

.nominate-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 65px;
  line-height: 0.99;
}

.nominate-copy h2 span {
  display: block;
  font-size: 45px;
  font-weight: 400;
}

.nominate-copy p {
  margin: 0;
  color: var(--rose);
  font-size: 24px;
  line-height: 32px;
}

.nominate-copy strong {
  color: var(--cream);
  text-align: center;
  font-size: 16px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 260px);
  gap: 22px 24px;
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(238, 222, 160, 0.1);
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(238, 222, 160, 0.24);
}

.step-card:nth-child(1),
.step-card:nth-child(4) {
  border-radius: 40px 0;
}

.step-card:nth-child(2),
.step-card:nth-child(3) {
  border-radius: 0 40px;
}

.step-number {
  position: absolute;
  top: 4px;
  right: 12px;
  color: #fff;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
}

.line-icon {
  width: 70px;
  height: 72px;
  color: var(--gold-b);
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin: 24px 0 10px;
  color: var(--cream);
  font-size: 18px;
  line-height: 1.4;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.spotlight-section {
  padding: 32px 130px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(179, 124, 81, 0.14), transparent 42%),
    var(--ink);
}

.spotlight-copy {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.spotlight-copy p {
  margin: 0;
  color: var(--rose);
  font-size: 28px;
  line-height: 1.25;
}

.spotlight-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 56px;
  line-height: 1.05;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 860px);
  margin-top: 8px;
}

.about-stats article {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(238, 222, 160, 0.16);
  background: rgba(47, 32, 26, 0.72);
}

.about-stats strong {
  display: block;
  color: var(--gold-b);
  font-size: 28px;
  line-height: 1.1;
}

.about-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.spotlight-copy span {
  display: block;
  max-width: 976px;
  color: var(--rose);
  font-size: 24px;
  line-height: 32px;
}

.profile-stack {
  --stack-p1-w: 524px;
  --stack-p1-h: 263px;
  --stack-p1-top: 0;
  --stack-p2-w: 574px;
  --stack-p2-h: 297px;
  --stack-p2-top: 24px;
  --stack-p3-w: 614px;
  --stack-p3-h: 323px;
  --stack-p3-top: 49px;
  --stack-p4-w: 664px;
  --stack-p4-h: 360px;
  --stack-p4-top: 74px;
  position: relative;
  width: min(100%, 720px);
  height: 430px;
  margin: 20px auto 0;
  mix-blend-mode: lighten;
  overflow: hidden;
}

.profile-stack .profile-card {
  position: absolute;
  left: 50%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 1px solid rgba(238, 222, 160, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  transition:
    top 0.9s cubic-bezier(0.4, 0.12, 0.2, 1),
    width 0.9s cubic-bezier(0.4, 0.12, 0.2, 1),
    height 0.9s cubic-bezier(0.4, 0.12, 0.2, 1),
    opacity 0.9s ease,
    filter 0.9s ease,
    box-shadow 0.9s ease;
}

.profile-stack .p1 {
  width: var(--stack-p1-w);
  height: var(--stack-p1-h);
  top: var(--stack-p1-top);
  z-index: 1;
}

.profile-stack .p2 {
  width: var(--stack-p2-w);
  height: var(--stack-p2-h);
  top: var(--stack-p2-top);
  z-index: 2;
}

.profile-stack .p3 {
  width: var(--stack-p3-w);
  height: var(--stack-p3-h);
  top: var(--stack-p3-top);
  z-index: 3;
}

.profile-stack .p4 {
  width: var(--stack-p4-w);
  height: var(--stack-p4-h);
  top: var(--stack-p4-top);
  z-index: 4;
}

.profile-stack .spotlight-gallery-slide.p1 {
  opacity: 0.5;
  filter: brightness(0.68) saturate(0.88);
}

.profile-stack .spotlight-gallery-slide.p2 {
  opacity: 0.65;
  filter: brightness(0.76) saturate(0.92);
}

.profile-stack .spotlight-gallery-slide.p3 {
  opacity: 0.82;
  filter: brightness(0.88) saturate(0.96);
}

.profile-stack .spotlight-gallery-slide.p4 {
  opacity: 1;
  filter: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  border-color: rgba(238, 222, 160, 0.32);
}

.profile-stack .spotlight-gallery-slide.is-hidden {
  width: var(--stack-p1-w);
  height: var(--stack-p1-h);
  top: var(--stack-p1-top);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  filter: brightness(0.6);
}

@media (prefers-reduced-motion: reduce) {
  .profile-stack .profile-card {
    transition-duration: 0.01ms;
  }
}

.category-section {
  padding: 40px 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.category-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.category-header p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.category-header h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
}

.category-cta {
  display: none;
  margin-top: 18px;
  min-width: 100%;
  font-size: 20px;
}

.category-grid {
  width: min(100%, 820px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.category-card {
  width: 250px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px 18px;
  border-radius: 0 40px;
  border: 1px solid rgba(179, 124, 81, 0.3);
  background: var(--panel);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
  background: #331e12;
  border-color: rgba(179, 124, 81, 0.65);
  transform: translateY(-2px);
}

.category-card h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.category-card span {
  align-self: flex-end;
  color: var(--gold-b);
  font-size: 22px;
  font-weight: 700;
  opacity: 0.96;
}

.mobile-category-carousel,
.category-nav {
  display: none;
}

.evaluation-section {
  padding: 36px 130px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 222, 160, 0.08), transparent 38%),
    linear-gradient(180deg, var(--nav), var(--panel)), #0f0f0f;
}

.about-lead {
  max-width: 860px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.about-highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 980px);
  margin-bottom: 18px;
}

.about-highlight-cards article {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(238, 222, 160, 0.14);
  background: rgba(28, 16, 8, 0.42);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-highlight-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(238, 222, 160, 0.28);
}

.about-highlight-cards strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-b);
  font-size: 20px;
  line-height: 1.25;
}

.about-highlight-cards span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.about-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
}

.evaluation-section h2 {
  margin: 0;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b) 50%, var(--gold-a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 65px;
  font-weight: 700;
  letter-spacing: -0.42px;
  line-height: 1.1;
}

.evaluation-section p {
  max-width: 860px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 21px;
  line-height: 29px;
}

.evaluation-section h3 {
  margin: 0;
  color: #fff;
  font-size: 32px;
}

.evaluation-section > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
}

.criteria-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.criteria-pills div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid #a77248;
  background: linear-gradient(var(--gold-a) 6%, var(--gold-c));
  color: #000;
  font-size: 15px;
  line-height: 1.4;
  white-space: normal;
  text-align: left;
}

.criteria-pills b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: var(--gold-b);
  font-size: 13px;
}

.evening-section {
  position: relative;
  min-height: 320px;
  padding: 40px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--panel-deep);
}

.evening-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 18px;
}

.evening-details span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(28, 16, 8, 0.48);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.evening-copy {
  display: block;
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.evening-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(47, 32, 26, 0.84), rgba(47, 32, 26, 0.84)),
    url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?auto=format&fit=crop&w=1800&q=80") center / cover;
  opacity: 0.72;
}

.evening-section p,
.evening-section h2,
.evening-section span {
  position: relative;
  z-index: 1;
}

.evening-section p {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.evening-section h2 {
  margin: 6px 0 18px;
  color: var(--flame);
  font-size: 50px;
  line-height: 1.2;
}

.evening-section span {
  position: relative;
  z-index: 1;
}

.evening-section > span:not(.section-badge):not(.evening-copy) {
  display: block;
  max-width: 900px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.35;
}

.winners-section {
  padding: 40px 0;
  overflow: hidden;
  text-align: center;
}

.winners-section h2,
.speakers-section h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.winners-section p {
  margin: 14px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.logo-marquee {
  display: flex;
  overflow: hidden;
  gap: 24px;
}

.logo-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  animation: marquee 34s linear infinite;
}

.logo-track span {
  min-width: 180px;
  width: auto;
  max-width: 280px;
  height: auto;
  min-height: 88px;
  padding: 14px 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(238, 222, 160, 0.16);
  background: linear-gradient(135deg, #fff7de, #c59b5e);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.speakers-section {
  padding: 36px 84px 40px;
  background:
    radial-gradient(65% 60% at 95% 90%, rgba(89, 55, 33, 0.33), rgba(28, 20, 17, 0) 72%),
    linear-gradient(#1c1411, #1c1411 61%, #221712);
  text-align: center;
}

.speakers-section .section-intro {
  padding-top: 0;
  padding-bottom: 0;
}

.speaker-grid {
  width: min(100%, 1096px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 20px;
}

.speaker-card {
  padding: 14px 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(238, 222, 160, 0.1);
  background: rgba(47, 32, 26, 0.42);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.speaker-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 222, 160, 0.24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.speaker-grid article {
  min-width: 0;
}

.speaker-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(238, 222, 160, 0.12);
}

.speaker-grid h3 {
  margin: 10px 0 4px;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b), var(--gold-a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 28px;
  line-height: 1.08;
}

.speaker-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.3;
}

.faq-section {
  padding: 40px 130px;
  display: flex;
  justify-content: center;
  gap: 100px;
  background: #1c1411;
}

.faq-section h2 {
  width: 301px;
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 1.108;
}

.faq-list {
  width: min(100%, 722px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(140, 140, 140, 0.45);
  border-radius: 14px;
  background: rgba(47, 32, 26, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(179, 124, 81, 0.55);
}

.faq-item.open {
  background: var(--panel);
  border-color: rgba(179, 124, 81, 0.65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 14px;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item span {
  width: 24px;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
}

.faq-item p {
  max-height: 0;
  max-width: 100%;
  margin: 0;
  padding: 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
}

.faq-item.open p {
  max-height: 320px;
  padding: 0 14px 28px;
  opacity: 1;
}

.contact-section {
  padding: 32px 130px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink);
  text-align: center;
}

.contact-section h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.4;
}

.contact-section > p {
  max-width: 866px;
  margin: 10px 0 32px;
  color: var(--muted);
  font-size: 22px;
  line-height: 29px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.contact-cards article {
  width: 405px;
  min-height: 164px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(178, 123, 80, 0.65);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(179, 124, 81, 0.08), transparent),
    var(--nav);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-cards article:hover {
  transform: translateY(-3px);
  border-color: var(--gold-b);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.contact-cards h3 {
  margin: 0 0 16px;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b) 50%, var(--gold-a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
  line-height: 1.25;
}

.contact-cards a {
  color: #fff;
  font-size: 16px;
  line-height: 1.67;
}

footer {
  margin-top: 70px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer a {
  color: #fff;
  font-weight: 700;
}

footer span {
  margin: 0 14px;
}

footer p {
  margin: 18px 0 0;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  background: var(--gold-a);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta {
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-cta strong {
  color: #000;
  font-size: 24px;
  line-height: 1.4;
}

.sticky-cta button {
  min-width: 258px;
  min-height: 48px;
  padding: 10px 40px;
  border-radius: 120px;
  border: 1px solid var(--ink);
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b), var(--gold-a));
  background-size: 200% 100%;
  color: var(--nav);
  font-size: 22px;
  cursor: pointer;
  animation: goldShift 4s linear infinite;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 5, 3, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 540px);
  max-height: calc(100dvh - 40px);
  margin: auto;
  border: 1px solid rgba(238, 222, 160, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(179, 124, 81, 0.14) 0%, transparent 42%),
    linear-gradient(180deg, #3d2a1e 0%, var(--nav) 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(238, 222, 160, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  transform: scale(0.94) translateY(18px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

@media (max-width: 768px) {
  .modal {
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b), var(--gold-a));
  background-size: 200% 100%;
  animation: goldShift 4s linear infinite;
}

.modal-backdrop.open .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(238, 222, 160, 0.2);
  background: rgba(47, 32, 26, 0.9);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: rgba(179, 124, 81, 0.35);
  border-color: rgba(238, 222, 160, 0.45);
  transform: rotate(90deg);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 22px 52px 0 24px;
}

.modal-header-text {
  flex: 1;
  min-width: 0;
}

.modal-fee-tag {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(238, 222, 160, 0.28);
  background: rgba(179, 124, 81, 0.18);
  color: var(--gold-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.modal h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.modal p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.modal-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  margin-top: 12px;
  overflow: hidden;
}

.modal-form-body {
  flex: 1;
  min-height: 0;
  padding: 4px 24px 8px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-form-body::-webkit-scrollbar {
  display: none;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.modal-form-footer {
  flex-shrink: 0;
  padding: 14px 24px 22px;
  border-top: 1px solid rgba(238, 222, 160, 0.1);
  background:
    linear-gradient(180deg, rgba(47, 32, 26, 0) 0%, rgba(47, 32, 26, 0.88) 28%, var(--nav) 100%);
}

.modal-field {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid rgba(238, 222, 160, 0.12);
  background: rgba(12, 7, 4, 0.45);
  cursor: text;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.modal-field:hover {
  border-color: rgba(238, 222, 160, 0.24);
  background: rgba(12, 7, 4, 0.62);
}

.modal-field:focus-within {
  border-color: rgba(238, 222, 160, 0.48);
  background: rgba(12, 7, 4, 0.78);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.modal-field-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.modal-field:focus-within .modal-field-label {
  color: var(--gold-b);
}

.modal-field--full {
  grid-column: 1 / -1;
}

.modal-field--select {
  cursor: default;
  z-index: 1;
}

.modal-field.is-invalid {
  border-color: rgba(255, 120, 120, 0.55);
  background: rgba(60, 16, 16, 0.35);
}

.modal-field-error {
  color: #ffb4b4;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
}

.modal-field-hint {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
}

.modal-field-hint.is-success {
  color: #9fddb0;
}

.modal-field-hint.is-warning {
  color: #ffd89a;
}

.modal-field-hint.is-loading {
  color: var(--gold-b);
}

.modal-field.is-loading .modal-field-label::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  border: 1.5px solid rgba(238, 222, 160, 0.25);
  border-top-color: var(--gold-b);
  border-radius: 50%;
  vertical-align: -1px;
  animation: pincode-spin 0.7s linear infinite;
}

@keyframes pincode-spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-field--select:focus-within,
.modal-field--select.is-open {
  z-index: 5;
}

.modal-field input {
  width: 100%;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.custom-select-value.is-placeholder {
  color: rgba(183, 165, 142, 0.45);
  font-weight: 400;
}

.custom-select.has-value .custom-select-trigger {
  color: #fff;
}

.custom-select.is-invalid .custom-select-trigger,
.custom-select.is-invalid .custom-select-value.is-placeholder {
  color: #ffb4b4;
}

.custom-select-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  color: var(--gold-b);
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: min(220px, 38dvh);
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(238, 222, 160, 0.24);
  border-radius: 12px;
  background: #2f201a;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-select-options::-webkit-scrollbar {
  display: none;
}

.custom-select-options[hidden] {
  display: none;
}

.custom-select.is-open-up .custom-select-options {
  top: auto;
  bottom: calc(100% + 6px);
}

.custom-select.is-open-up .custom-select-chevron {
  transform: rotate(0deg);
}

.custom-select.is-open.is-open-up .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-options li {
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.custom-select-options li:hover,
.custom-select-options li:focus-visible {
  background: rgba(179, 124, 81, 0.28);
  outline: none;
}

.custom-select-options li[aria-selected="true"] {
  background: rgba(179, 124, 81, 0.38);
  color: var(--gold-b);
}

.modal-field input::placeholder {
  color: rgba(183, 165, 142, 0.45);
  font-weight: 400;
}

.modal-field input:invalid:not(:placeholder-shown) {
  color: #ffb4b4;
}

.modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 17px;
  letter-spacing: -0.2px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(179, 124, 81, 0.35);
}

.modal-submit:active {
  transform: translateY(0);
}

.modal-submit-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.22s ease;
}

.modal-submit:hover .modal-submit-icon {
  transform: translateX(3px);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 1300;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--gold-b);
  color: #000;
  font-weight: 700;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@keyframes emblemPulse {
  0%,
  100% {
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
  }
  50% {
    filter: drop-shadow(0 14px 34px rgba(238, 222, 160, 0.22));
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes goldShift {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0 center;
  }
}

@keyframes textGoldShift {
  0% {
    filter: brightness(0.9);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(0.9);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 22px));
  }
}

@media (max-width: 1180px) {
  .hero-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    gap: 2px;
  }

  .nav-link {
    padding: 10px 8px;
    font-size: 13px;
  }

  .nav-pill,
  .login-button {
    padding: 8px 12px;
    font-size: 12px;
  }

  .nav-right {
    gap: 12px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-highlight-cards {
    grid-template-columns: 1fr;
  }

  .track-section,
  .nominate-section,
  .spotlight-section,
  .evaluation-section,
  .faq-section,
  .contact-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq-section {
    gap: 32px;
  }
}

@media (min-width: 1081px) {
  .mobile-panel,
  .nav-overlay {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-inner {
    min-height: 64px;
    padding: 0 18px;
  }

  .mobile-panel {
    display: flex;
  }
}

@media (max-width: 900px) {
  .track-cards,
  .audience-grid,
  .nominate-section,
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .audience-card {
    min-height: 150px;
    padding: 18px 14px;
  }

  .audience-card h3 {
    font-size: 15px;
  }

  .audience-cta .btn {
    min-width: 100%;
    max-width: 420px;
  }

  .track-card,
  .nominate-copy {
    width: 100%;
    max-width: 420px;
  }

  .step-grid {
    width: 100%;
    max-width: 420px;
    grid-template-columns: 1fr;
  }

  .step-card {
    width: 100%;
    min-height: auto;
  }

  .logo-track span {
    min-width: 150px;
    max-width: 220px;
    min-height: 72px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-top: 28px;
  }

  .speaker-card {
    padding: 10px;
  }

  .speaker-grid h3 {
    font-size: 18px;
  }

  .speaker-grid p {
    font-size: 12px;
  }

  .criteria-pills div {
    padding: 8px 12px;
    font-size: 12px;
  }

  .faq-section {
    flex-direction: column;
  }

  .faq-section h2 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  main {
    padding-bottom: 76px;
  }

  .site-nav {
    background: rgba(47, 32, 26, 0.98);
  }

  .nav-inner {
    min-height: 62px;
    padding: 0 16px;
  }

  .nav-brand {
    max-width: 42vw;
  }

  .site-logo--nav {
    width: 46px;
    height: 46px;
    padding: 5px;
  }

  .site-logo--hero {
    width: 88%;
  }

  .hero-logo-circle {
    width: 132px;
    height: 132px;
    padding: 18px;
  }

  .hero-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 32px 16px 48px;
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-highlights span {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-copy {
    padding: 14px 16px;
  }

  .hero-meta-card {
    padding: 14px 16px;
  }

  .hero-meta-card > div span {
    font-size: 13px;
  }

  .hero-meta-card .meta-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .site-logo--about {
    height: 96px;
  }

  .site-logo--footer {
    width: 60px;
    height: 60px;
    padding: 7px;
  }

  .site-logo--sticky {
    width: 32px;
    height: 32px;
  }

  .section-intro {
    padding: 28px 0 14px;
  }

  .section-title {
    font-size: 27px;
  }

  .section-subtitle {
    font-size: 15px;
    padding: 0 8px;
  }

  .award-name {
    gap: 10px;
  }

  .award-name span {
    width: 28px;
  }

  .award-name p {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .award-title {
    font-size: 26px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-fee-note {
    font-size: 13px;
    padding: 0 8px;
  }

  .btn,
  .btn-large {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    min-height: 56px;
    padding: 14px 24px;
    font-size: 20px;
    letter-spacing: 0;
  }

  .section-title {
    padding: 0;
    font-size: 27px;
  }

  .photo-section::before,
  .photo-section::after {
    width: 48px;
  }

  .photo-track figure {
    width: 250px;
    height: 178px;
  }

  .benefits-section {
    padding: 0 12px 36px;
  }

  .benefits-slider-viewport {
    --slide-width: min(86%, 100%);
    --slide-height: clamp(210px, 56vw, 280px);
  }

  .benefits-slide {
    border-radius: 14px;
  }

  .benefits-slide.is-prev {
    transform: translate(calc(-50% - 48%), -50%) scale(0.72);
  }

  .benefits-slide.is-next {
    transform: translate(calc(-50% + 48%), -50%) scale(0.72);
  }

  .benefits-slider-controls {
    margin-top: 14px;
    gap: 10px;
    padding: 7px 12px;
  }

  .benefits-slider-controls .benefits-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .benefits-slider-controls .benefits-slider-arrow svg {
    width: 18px;
    height: 18px;
  }

  .benefits-slider-controls .benefits-slider-dots button {
    width: 8px;
    height: 8px;
  }

  .benefits-slider-controls .benefits-slider-dots button.active {
    width: 20px;
  }

  .track-section,
  .nominate-section,
  .spotlight-section,
  .evaluation-section,
  .faq-section,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading-block h2 {
    font-size: 34px;
  }

  .section-heading-block p {
    font-size: 24px;
  }

  .track-card {
    min-height: 500px;
  }

  .nominate-section {
    padding-top: 28px;
    gap: 20px;
  }

  .nominate-copy {
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    max-width: 100%;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .about-stats strong {
    font-size: 22px;
  }

  .about-stats span {
    font-size: 12px;
  }

  .spotlight-copy p {
    font-size: 18px;
  }

  .spotlight-copy h2 {
    font-size: 38px;
  }

  .about-highlight-cards article {
    text-align: center;
  }

  .evening-details span {
    font-size: 12px;
    padding: 8px 12px;
  }

  .evening-copy {
    font-size: 16px;
    line-height: 1.55;
    padding: 0 8px;
  }

  .nominate-copy h2 {
    font-size: 44px;
    line-height: 1.1;
  }

  .nominate-copy h2 span {
    font-size: 26px;
  }

  .nominate-copy p,
  .spotlight-copy span,
  .contact-section > p {
    font-size: 18px;
    line-height: 22px;
  }

  .about-lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .step-card h3 {
    margin-top: 16px;
    font-size: 16px;
  }

  .step-card p {
    font-size: 13px;
  }

  .spotlight-section {
    padding-top: 28px;
  }

  .spotlight-copy p {
    font-size: 18px;
  }

  .spotlight-copy h2 {
    font-size: 32px;
  }

  .profile-stack {
    --stack-p1-w: min(320px, 76vw);
    --stack-p1-h: clamp(140px, 34vw, 160px);
    --stack-p2-w: min(350px, 82vw);
    --stack-p2-h: clamp(155px, 38vw, 180px);
    --stack-p2-top: 14px;
    --stack-p3-w: min(380px, 88vw);
    --stack-p3-h: clamp(170px, 42vw, 200px);
    --stack-p3-top: 28px;
    --stack-p4-w: min(400px, 92vw);
    --stack-p4-h: clamp(185px, 46vw, 220px);
    --stack-p4-top: 42px;
    height: clamp(268px, 64vw, 300px);
    margin-top: 18px;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .category-section {
    padding: 28px 16px 36px;
    gap: 18px;
  }

  .category-header p {
    font-size: 18px;
    line-height: 22px;
  }

  .category-header h2 {
    font-size: 30px;
  }

  .category-cta {
    display: inline-flex;
  }

  .category-grid {
    display: none;
  }

  .mobile-category-carousel {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-category-carousel .category-card {
    width: 100%;
    min-height: 160px;
    border-radius: 0 20px;
  }

  .category-nav {
    display: flex;
    margin-top: -4px;
  }

  .category-nav button {
    background: transparent;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
  }

  .evaluation-section h2 {
    font-size: 34px;
  }

  .evaluation-section p {
    font-size: 18px;
    line-height: 22px;
  }

  .criteria-pills div {
    padding: 6px 12px;
    font-size: 12px;
  }

  .evening-section h2 {
    font-size: 34px;
  }

  .winners-section h2,
  .speakers-section h2,
  .contact-section h2 {
    font-size: 30px;
  }

  .speakers-section {
    padding: 28px 16px 36px;
  }

  .speaker-grid {
    gap: 16px 12px;
    margin-top: 28px;
  }

  .speaker-card {
    padding: 10px;
  }

  .speaker-grid h3 {
    font-size: 18px;
  }

  .speaker-grid p {
    font-size: 12px;
  }

  .faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 26px;
  }

  .faq-section h2 {
    font-size: 38px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-item button {
    padding: 16px 14px;
    gap: 14px;
    font-size: 18px;
  }

  .faq-item p {
    font-size: 14px;
  }

  .contact-cards article {
    width: 100%;
    max-width: 405px;
    min-height: 160px;
  }

  .contact-cards h3 {
    font-size: 26px;
  }

  footer {
    margin-top: 44px;
  }

  .sticky-cta {
    padding: 12px 16px;
    gap: 12px;
  }

  .sticky-cta div {
    gap: 10px;
    min-width: 0;
  }

  .sticky-cta strong {
    font-size: 13px;
    white-space: normal;
  }

  .sticky-cta button {
    min-width: 148px;
    min-height: 42px;
    padding: 9px 18px;
    font-size: 13px;
  }

  .modal-backdrop {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
    background: var(--nav);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
  }

  .modal-backdrop.open .modal {
    transform: translateY(0);
    opacity: 1;
  }

  .modal {
    width: 100%;
    max-width: 100%;
    height: 100svh;
    max-height: 100svh;
    min-height: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(100%);
    opacity: 1;
    overflow: hidden;
  }

  .modal::before {
    height: 3px;
    flex-shrink: 0;
  }

  .modal-close {
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .site-logo--modal {
    width: 40px;
    height: 40px;
    padding: 4px;
  }

  .modal-header {
    flex-shrink: 0;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding:
      max(12px, calc(env(safe-area-inset-top, 0px) + 8px))
      48px
      10px
      max(16px, env(safe-area-inset-left, 0px));
    border-bottom: 1px solid rgba(238, 222, 160, 0.12);
  }

  .modal-header-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .modal-fee-tag {
    display: none;
  }

  .modal h2 {
    font-size: 15px;
    line-height: 1.25;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .modal p {
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .modal-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .modal-form-body {
    flex: 1;
    min-height: 0;
    padding:
      10px
      max(16px, env(safe-area-inset-right, 0px))
      8px
      max(16px, env(safe-area-inset-left, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .modal-form-body::-webkit-scrollbar {
    display: none;
  }

  .modal-form-footer {
    flex-shrink: 0;
    padding:
      12px
      max(16px, env(safe-area-inset-right, 0px))
      max(12px, calc(env(safe-area-inset-bottom, 0px) + 8px))
      max(16px, env(safe-area-inset-left, 0px));
    border-top: 1px solid rgba(238, 222, 160, 0.12);
    background: var(--nav);
  }

  .modal-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .modal-field--full {
    grid-column: auto;
  }

  .modal-field {
    width: 100%;
    min-width: 0;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .modal-field:focus-within {
    transform: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }

  .modal-field-label {
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  .modal-field input,
  .custom-select-trigger {
    min-height: 44px;
    font-size: 16px;
    line-height: 1.2;
  }

  .custom-select-options li {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }

  .modal-submit {
    flex-shrink: 0;
    width: 100%;
    min-height: 46px;
    margin-top: 0;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 12px;
  }

  .modal-submit:hover {
    transform: none;
    box-shadow: none;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: max(88px, calc(env(safe-area-inset-bottom, 0px) + 72px));
    text-align: center;
  }
}

@media (max-width: 768px) and (max-height: 680px) {
  .modal-header {
    padding-top: max(8px, calc(env(safe-area-inset-top, 0px) + 4px));
    padding-bottom: 8px;
  }

  .site-logo--modal {
    height: 26px;
  }

  .modal h2 {
    font-size: 15px;
  }

  .modal-form-body {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .modal-form-footer {
    padding-top: 10px;
    padding-bottom: max(8px, calc(env(safe-area-inset-bottom, 0px) + 4px));
  }

  .modal-form-grid {
    gap: 8px;
  }

  .modal-field {
    padding: 6px 9px;
    gap: 3px;
  }

  .modal-field input,
  .custom-select-trigger {
    min-height: 40px;
    font-size: 16px;
  }

  .modal-submit {
    min-height: 42px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .profile-stack {
    --stack-p1-w: min(260px, 80vw);
    --stack-p1-h: clamp(120px, 32vw, 135px);
    --stack-p2-w: min(280px, 86vw);
    --stack-p2-h: clamp(135px, 36vw, 150px);
    --stack-p2-top: 12px;
    --stack-p3-w: min(300px, 90vw);
    --stack-p3-h: clamp(150px, 40vw, 165px);
    --stack-p3-top: 22px;
    --stack-p4-w: min(320px, 94vw);
    --stack-p4-h: clamp(165px, 44vw, 180px);
    --stack-p4-top: 32px;
    height: clamp(248px, 58vw, 268px);
    padding: 0 6px;
  }

  .speaker-grid {
    grid-template-columns: 1fr 1fr;
  }

  .speaker-grid h3 {
    font-size: 16px;
  }

  .evening-section h2 {
    font-size: 28px;
  }
}
