: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;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

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

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.menu-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: 1700;
  width: 100%;
  max-width: 100%;
  background: rgba(47, 32, 26, 0.98);
  border-bottom: 1px solid rgba(238, 222, 160, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 1201px) {
  .site-nav {
    background: rgba(47, 32, 26, 0.94);
    backdrop-filter: blur(14px);
  }
}

.nav-inner {
  width: min(100%, 1280px);
  max-width: 100%;
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  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;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

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

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

.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 {
  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 {
  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;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2001;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(238, 222, 160, 0.22);
  background: rgba(28, 16, 8, 0.55);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

.menu-toggle span:last-child {
  width: 20px;
}

.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 {
  transform: translateY(-7px) rotate(-45deg);
}

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

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1600;
  display: flex;
  width: min(100%, 320px);
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  padding:
    max(18px, env(safe-area-inset-top, 0px))
    max(18px, env(safe-area-inset-right, 0px))
    max(24px, env(safe-area-inset-bottom, 0px))
    18px;
  background: 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%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s ease, visibility 0.32s ease;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

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

.mobile-panel-title {
  color: var(--gold-b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mobile-panel-close {
  margin-left: auto;
  flex-shrink: 0;
  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: 0;
  margin-top: 0;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.mobile-panel-links .nav-link {
  width: 100%;
  padding: 15px 12px;
  border-radius: 0;
  border-bottom: 1px solid rgba(238, 222, 160, 0.1);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-panel-links .nav-link::after {
  content: none;
  display: none;
}

.mobile-panel-links .nav-link:hover,
.mobile-panel-links .nav-link:focus-visible {
  color: var(--gold-b);
  background: rgba(179, 124, 81, 0.1);
  outline: none;
}

.mobile-panel-links .nav-link:active {
  background: rgba(179, 124, 81, 0.2);
}

.mobile-panel-links .nav-link.active {
  color: var(--gold-b);
  background: rgba(179, 124, 81, 0.14);
  box-shadow: inset 3px 0 0 var(--gold-b);
}

.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-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: 0.3px;
  text-transform: none;
}

.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-chief-guest {
  position: relative;
  width: min(100%, 820px);
  margin: 4px 0 2px;
  padding: clamp(18px, 3vw, 26px) clamp(20px, 4vw, 32px);
  border-radius: 20px;
  border: 1px solid rgba(238, 222, 160, 0.28);
  background:
    linear-gradient(135deg, rgba(76, 52, 36, 0.92), rgba(47, 32, 26, 0.88)),
    radial-gradient(circle at top right, rgba(238, 222, 160, 0.12), transparent 55%);
  backdrop-filter: blur(14px);
  text-align: center;
  cursor: default;
  overflow: hidden;
  animation: heroFadeIn 0.75s ease 0.1s both;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-chief-guest::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-b), var(--gold-a), transparent);
  opacity: 0.85;
}

.hero-chief-guest::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 55%;
  height: 140%;
  background: linear-gradient(120deg, transparent 42%, rgba(238, 222, 160, 0.14) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.hero-chief-guest:hover,
.hero-chief-guest:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(238, 222, 160, 0.52);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(238, 222, 160, 0.12);
  outline: none;
}

.hero-chief-guest:hover::after,
.hero-chief-guest:focus-visible::after {
  transform: translateX(220%);
}

.hero-chief-guest-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(238, 222, 160, 0.32);
  background: rgba(179, 124, 81, 0.24);
}

.hero-chief-guest-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(238, 222, 160, 0.18);
  color: var(--gold-b);
  font-size: 12px;
  line-height: 1;
  animation: chiefGuestPulse 2.4s ease-in-out infinite;
}

.hero-chief-guest-label {
  color: var(--gold-b);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-chief-guest-name {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(20px, 3.6vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #fff 0%, var(--gold-b) 45%, #fff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShift 6s linear infinite;
}

.hero-chief-guest-role,
.hero-chief-guest-ministry {
  margin: 0;
  color: var(--cream);
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.55;
}

.hero-chief-guest-role {
  max-width: 720px;
  margin-inline: auto;
}

.hero-chief-guest-ministry {
  margin-top: 6px;
  color: var(--gold-b);
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 700;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

@keyframes chiefGuestPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(238, 222, 160, 0.35);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(238, 222, 160, 0);
  }
}

.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;
}

.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-intro {
  width: min(100% - 32px, var(--max));
  max-width: 100%;
  margin: 0 auto;
  padding: 38px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-sizing: border-box;
}

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

.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,
.profile-connect-section,
.category-section,
.winners-section,
.faq-section,
.contact-section,
.evaluation-section,
.evening-section,
.nominate-section,
.hero {
  width: 100%;
  max-width: 100%;
}

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

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

.presence-intro {
  padding: 48px 0 32px;
  gap: 0;
}

.presence-title {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  cursor: default;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, var(--gold-b) 42%, var(--gold-c) 58%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.presence-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b));
  transform: translateX(-50%);
  transition: width 0.4s ease, box-shadow 0.4s ease;
}

.presence-title:hover,
.presence-title:focus-visible {
  transform: scale(1.04);
  animation: goldShift 2.5s ease infinite;
  outline: none;
}

.presence-title:hover::after,
.presence-title:focus-visible::after {
  width: 78%;
  box-shadow: 0 0 18px rgba(238, 222, 160, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .presence-title:hover,
  .presence-title:focus-visible {
    animation: none;
    transform: none;
  }
}

.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);
}

.presence-marquee .photo-track {
  align-items: center;
  animation-duration: 36s;
}

.presence-marquee .photo-track figure {
  flex: 0 0 auto;
  width: 240px;
  height: 160px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.presence-marquee .photo-track img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.presence-marquee .photo-track figure:hover img {
  transform: scale(1.04);
}

.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;
  }

  .video-track {
    animation: none;
  }
}

.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;
}

.policy-advocacy-section {
  padding: 24px 42px 48px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(179, 124, 81, 0.14), transparent 58%),
    var(--ink);
}

.policy-advocacy-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.policy-advocacy-head {
  width: 100%;
  padding: 32px 0 8px;
  gap: 14px;
}

.policy-advocacy-title {
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, rgba(238, 222, 160, 0.92) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.policy-advocacy-intro {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
}

.policy-advocacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  width: 100%;
  margin-top: 8px;
}

.policy-advocacy-card {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(238, 222, 160, 0.22);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(238, 222, 160, 0.06) inset;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.policy-advocacy-card:hover,
.policy-advocacy-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(238, 222, 160, 0.38);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(238, 222, 160, 0.12) inset;
  outline: none;
}

.policy-advocacy-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.policy-advocacy-card:hover .policy-advocacy-image,
.policy-advocacy-card:focus-visible .policy-advocacy-image {
  transform: scale(1.08);
}

.policy-advocacy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 7, 4, 0.82) 0%, rgba(12, 7, 4, 0.28) 48%, rgba(12, 7, 4, 0.12) 100%);
  transition: opacity 0.35s ease;
}

.policy-advocacy-card:not(.has-message) .policy-advocacy-overlay {
  background: linear-gradient(0deg, rgba(12, 7, 4, 0.45) 0%, transparent 55%);
}

.policy-advocacy-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(16px, 3vw, 24px);
  text-align: left;
}

.policy-advocacy-message {
  margin: 0;
  color: var(--cream);
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.5;
}

.policy-advocacy-section.reveal-on-scroll.is-visible .policy-advocacy-card {
  animation: policyAdvocacyIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--card-delay, 0ms);
}

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

.profile-connect-section {
  padding: 48px 42px 56px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(179, 124, 81, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(218, 90, 54, 0.1), transparent 50%),
    var(--ink);
  overflow: hidden;
}

.profile-connect-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.profile-connect-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(238, 222, 160, 0.14);
  background:
    linear-gradient(145deg, rgba(76, 52, 36, 0.72), rgba(47, 32, 26, 0.88));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.profile-connect-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(238, 222, 160, 0.45), rgba(179, 124, 81, 0.12), rgba(238, 222, 160, 0.28));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.profile-connect-card:hover {
  border-color: rgba(238, 222, 160, 0.28);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(238, 222, 160, 0.08);
  transform: translateY(-2px);
}

.profile-connect-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.profile-connect-photo-wrap {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
}

.profile-connect-photo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--gold-b), var(--gold-a), var(--flame), var(--gold-b));
  opacity: 0.85;
  animation: profile-ring-spin 10s linear infinite;
}

.profile-connect-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid rgba(28, 16, 8, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.profile-connect-photo-wrap:hover .profile-connect-photo {
  transform: scale(1.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.profile-connect-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.profile-social-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(238, 222, 160, 0.18);
  background: rgba(28, 16, 8, 0.55);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.profile-social-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.profile-social-link:hover,
.profile-social-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(238, 222, 160, 0.42);
  background: rgba(76, 52, 36, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  outline: none;
}

.profile-social-link:hover img,
.profile-social-link:focus-visible img {
  transform: scale(1.08);
}

.profile-connect-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.profile-connect-content .section-badge {
  margin-bottom: 2px;
}

.profile-connect-content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  background: linear-gradient(90deg, #fff 0%, var(--gold-b) 55%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.profile-connect-role {
  margin: 0;
  color: var(--gold-c);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.profile-connect-bio {
  margin: 0;
  color: var(--rose);
  font-size: 17px;
  line-height: 1.65;
  max-width: 58ch;
}

.profile-connect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.profile-connect-tags li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(238, 222, 160, 0.2);
  background: rgba(28, 16, 8, 0.45);
  color: var(--gold-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.profile-connect-tags li:hover {
  background: rgba(179, 124, 81, 0.28);
  border-color: rgba(238, 222, 160, 0.38);
  transform: translateY(-1px);
}

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

@media (prefers-reduced-motion: reduce) {
  .profile-connect-photo-ring {
    animation: none;
  }

  .profile-connect-card,
  .profile-connect-photo,
  .profile-social-link,
  .profile-connect-tags li {
    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-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;
}

.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 56px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

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

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

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

.winners-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;
  padding: 0 20px;
}

.video-marquee {
  --video-marquee-gap: 28px;
  display: flex;
  gap: var(--video-marquee-gap);
  width: 100%;
  overflow: hidden;
}

.video-track {
  display: flex;
  gap: var(--video-marquee-gap);
  min-width: max-content;
  animation: video-marquee 68s linear infinite;
}

.video-marquee.is-paused .video-track {
  animation-play-state: paused;
}

.video-marquee:not(.is-paused):hover .video-track {
  animation-play-state: paused;
}

.video-card {
  position: relative;
  flex: 0 0 auto;
  width: min(440px, 42vw);
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(238, 222, 160, 0.28);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(238, 222, 160, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  outline: none;
}

.video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #3a2117, #1c1008);
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.25s ease;
}

.video-card img.is-loading {
  opacity: 0.55;
}

.video-card:hover img,
.video-card:focus-visible img {
  transform: scale(1.05);
  filter: brightness(0.82);
}

.video-card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.video-card-play::before {
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232, 41, 47, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.video-card-play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
}

.video-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.video-modal {
  position: relative;
  width: min(100%, 960px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(238, 222, 160, 0.24);
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

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

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: rgba(232, 41, 47, 0.92);
  transform: scale(1.05);
  outline: none;
}

.video-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes video-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--video-marquee-gap)));
  }
}

body.video-modal-open {
  overflow: hidden;
}

.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: 40px 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;
}

.contact-section .site-footer {
  margin-top: 0;
}

.site-footer {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.site-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 1.5px solid rgba(238, 222, 160, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: rgba(12, 7, 4, 0.45);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--gold-b);
  border-color: var(--gold-b);
  background: rgba(179, 124, 81, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
  outline: none;
}

.site-footer-links a:active {
  transform: translateY(0);
}

.site-footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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;
  width: 100%;
  max-width: 100%;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  background: var(--gold-a);
  padding: 14px 32px;
  padding-bottom: max(14px, env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}

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

.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

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

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

.sticky-cta-label-short {
  display: none;
}

.sticky-cta button,
.sticky-cta a {
  flex-shrink: 0;
  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;
  font-weight: 700;
  cursor: pointer;
  animation: goldShift 4s linear infinite;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sticky-cta button:active,
.sticky-cta a:active {
  transform: scale(0.98);
  opacity: 0.92;
}

@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 {
    padding: 8px 12px;
    font-size: 12px;
  }

  .nav-right {
    gap: 12px;
  }

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

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

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

@media (min-width: 1201px) {
  .menu-toggle,
  .mobile-panel,
  .nav-overlay {
    display: none !important;
  }
}

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

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

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

  .mobile-panel {
    display: flex;
    width: min(100%, 300px);
  }

  .mobile-panel-close {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .mobile-panel-actions {
    border-top: 1px solid rgba(238, 222, 160, 0.12);
    padding-top: 16px;
    margin-top: 12px;
  }

  .mobile-panel-actions .nav-pill {
    min-height: 44px;
    font-size: 13px;
  }
}

@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;
  }

  .video-card {
    width: min(340px, 88vw);
    border-radius: 18px;
  }

  .video-card-play::before {
    width: 62px;
    height: 62px;
  }

  .video-card-play::after {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
    margin-left: 5px;
  }

  .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: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .site-nav,
  .nav-inner,
  .hero-inner,
  .section-intro,
  .section-title,
  .section-heading-block,
  .audience-grid,
  .nominate-copy,
  .step-grid,
  .profile-connect-inner,
  .category-header,
  .about-highlight-cards,
  .contact-cards,
  .faq-list,
  .benefits-slider {
    width: 100%;
    max-width: 100%;
  }

  .track-section,
  .nominate-section,
  .profile-connect-section,
  .evaluation-section,
  .faq-section,
  .contact-section,
  .category-section,
  .benefits-section {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding: 32px 16px 48px;
    box-sizing: border-box;
  }

  .benefits-slider-viewport {
    overflow: hidden;
  }

  .benefits-slide.is-prev,
  .benefits-slide.is-next {
    opacity: 0;
    pointer-events: none;
  }

  .profile-connect-inner {
    width: 100%;
    max-width: 100%;
  }

  .photo-marquee,
  .video-marquee {
    width: 100%;
    max-width: 100%;
  }

  .photo-track figure {
    width: min(250px, 72vw);
    height: auto;
    aspect-ratio: 310 / 220;
  }

  .presence-marquee .photo-track figure {
    width: min(200px, 52vw);
    height: min(140px, 36vw);
    padding: 14px;
  }

  .presence-intro {
    padding: 36px 0 24px;
  }

  .presence-title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .evening-section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .winners-section {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

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

  .nav-inner {
    min-height: 62px;
    padding:
      0
      max(16px, env(safe-area-inset-right, 0px))
      0
      max(16px, env(safe-area-inset-left, 0px));
    gap: 12px;
  }

  .nav-brand {
    max-width: calc(100% - 56px);
  }

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

  .hero-chief-guest {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .hero-chief-guest-name {
    font-size: clamp(18px, 5vw, 22px);
  }

  .hero-chief-guest-role,
  .hero-chief-guest-ministry {
    font-size: clamp(12px, 3.4vw, 14px);
  }

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

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

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

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

  .audience-card:active {
    transform: scale(0.98);
  }

  .contact-section {
    padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    gap: 14px;
  }

  .site-footer-links {
    gap: 10px;
    width: 100%;
  }

  .site-footer-links a {
    flex: 1 1 auto;
    min-width: min(100%, 160px);
    padding: 10px 16px;
    font-size: 13px;
  }

  footer {
    margin-top: 36px;
    padding: 0 8px;
  }

  footer p {
    font-size: 13px;
    line-height: 1.5;
  }

  .faq-item button:active {
    background: rgba(179, 124, 81, 0.12);
  }

  .benefits-slider-controls .benefits-slider-arrow,
  .btn,
  .nav-pill {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-inner {
    gap: 14px;
  }

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

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

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

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

  .site-logo--sticky {
    width: 28px;
    height: 28px;
    padding: 3px;
  }

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

  .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,
  .winners-section::before,
  .winners-section::after {
    width: 48px;
  }

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

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

  .benefits-slider-viewport {
    --slide-width: min(calc(100vw - 56px), 420px);
    width: var(--slide-width);
    margin-inline: auto;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .benefits-slide {
    width: 100%;
    height: 100%;
    border-radius: 14px;
  }

  .benefits-slide img {
    object-fit: contain;
  }

  .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,
  .policy-advocacy-section,
  .profile-connect-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-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,
  .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;
  }

  .profile-connect-section {
    padding: 28px 16px 40px;
  }

  .profile-connect-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 20px;
    text-align: center;
  }

  .profile-connect-content {
    align-items: center;
    text-align: center;
  }

  .profile-connect-bio {
    font-size: 16px;
    max-width: none;
  }

  .profile-connect-tags {
    justify-content: center;
  }

  .profile-connect-photo-wrap {
    width: min(240px, 68vw);
  }

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

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

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

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

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

  .category-grid .category-card:active {
    transform: scale(0.98);
    border-color: rgba(238, 222, 160, 0.42);
  }

  .criteria-pills {
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .criteria-pills.is-mobile-pyramid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  .criteria-pills.is-mobile-pyramid > div {
    width: fit-content;
    max-width: 100%;
  }

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

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

  .criteria-pills div {
    max-width: 100%;
    white-space: normal;
    padding: 6px 12px;
    font-size: 12px;
  }

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

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

  .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 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:
      10px
      max(14px, env(safe-area-inset-right, 0px))
      max(10px, env(safe-area-inset-bottom, 0px))
      max(14px, env(safe-area-inset-left, 0px));
    gap: 10px;
  }

  .sticky-cta-text,
  .sticky-cta div {
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .sticky-cta-label-full {
    display: none;
  }

  .sticky-cta-label-short {
    display: inline;
  }

  .sticky-cta strong {
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }

  .site-logo--sticky {
    width: 28px;
    height: 28px;
    padding: 3px;
  }

  .sticky-cta button,
  .sticky-cta a {
    min-width: 0;
    width: auto;
    max-width: 46%;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }

}

@media (max-width: 768px) and (max-height: 680px) {
}

@media (max-width: 420px) {
  main {
    padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding:
      10px 12px
      max(10px, env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta-text,
  .sticky-cta div {
    justify-content: center;
  }

  .sticky-cta strong {
    font-size: 13px;
    text-align: center;
  }

  .sticky-cta button,
  .sticky-cta a {
    width: 100%;
    max-width: none;
    min-height: 44px;
    font-size: 15px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-chief-guest {
    padding: 14px 12px;
  }

  .hero-chief-guest-head {
    margin-bottom: 10px;
    padding: 5px 12px;
  }

  .hero-chief-guest-label {
    font-size: 11px;
    letter-spacing: 1.1px;
  }

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

  .policy-advocacy-section {
    padding: 20px 16px 36px;
  }

  .policy-advocacy-head {
    padding-top: 20px;
  }

  .policy-advocacy-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .policy-advocacy-intro {
    font-size: 16px;
  }

  .policy-advocacy-grid {
    gap: 16px;
  }

  .policy-advocacy-card {
    min-height: 200px;
    border-radius: 18px;
  }
}
