/* ===== Praxis Awards - Refined Design System ===== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1D3A;
  --navy-light: #142D54;
  --navy-deep: #060F1F;
  --gold: #C9A84C;
  --gold-light: #E4C76B;
  --gold-dark: #A8882E;
  --gold-muted: rgba(201,168,76,.08);
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --gray-50: #F9FAFB;
  --gray-100: #ECEEF2;
  --gray-200: #D1D5DE;
  --gray-400: #8B92A5;
  --gray-600: #525A6E;
  --gray-800: #2D3342;
  --accent: #2E7DDB;
  --accent-light: #5B9DE8;
  --success: #2EAF6E;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(11,29,58,.06);
  --shadow-md: 0 4px 20px rgba(11,29,58,.08);
  --shadow-lg: 0 16px 48px rgba(11,29,58,.12);
  --shadow-xl: 0 24px 64px rgba(11,29,58,.16);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.2);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes pulse-ring {
  0% { transform: scale(.9); opacity: .6; }
  50% { transform: scale(1); opacity: .3; }
  100% { transform: scale(.9); opacity: .6; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}
h4 { font-family: var(--font-body); font-weight: 700; line-height: 1.3; color: var(--navy); }
h1 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.1rem; }
p { max-width: 68ch; }

.section-label {
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-label::before { display: none; }
.section-header .section-subtitle { margin: .75rem auto 0; }

/* --- Layout --- */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
section { padding: 6rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(201,168,76,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-sm { padding: .6rem 1.6rem; font-size: .82rem; }
.btn-lg { padding: 1.05rem 2.75rem; font-size: .95rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,29,58,.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -.5px;
}
.logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  letter-spacing: .2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta { margin-left: .75rem; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding-top: 72px;
}

/* Animated mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(20,45,84,.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,168,76,.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(46,125,219,.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, #0A1628 50%, #0D1F3D 100%);
  z-index: 0;
}

/* Grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
  animation: grain 8s steps(10) infinite;
  z-index: 0;
  pointer-events: none;
}

/* Decorative geometric elements */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-decor .line {
  position: absolute;
  background: linear-gradient(180deg, rgba(201,168,76,.12) 0%, transparent 100%);
}
.hero-decor .line-1 {
  width: 1px;
  height: 40vh;
  top: 0;
  left: 20%;
}
.hero-decor .line-2 {
  width: 1px;
  height: 30vh;
  top: 0;
  left: 50%;
  animation-delay: .3s;
}
.hero-decor .line-3 {
  width: 1px;
  height: 50vh;
  top: 0;
  left: 80%;
  animation-delay: .6s;
}
.hero-decor .orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.08);
  animation: pulse-ring 6s ease-in-out infinite;
}
.hero-decor .orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}
.hero-decor .orb-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  animation-delay: 2s;
}
.hero-decor .orb-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 20%;
  animation-delay: 4s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.15);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.05;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Hero Showcase: Animated Orbital Constellation === */
.hero-showcase {
  width: 480px;
  height: 480px;
  position: relative;
  perspective: 800px;
}

/* Canvas for particle constellation */
.showcase-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Orbital rings — 3D rotated ellipses */
.showcase-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.08);
  transform-style: preserve-3d;
}
.showcase-orbit::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(201,168,76,.3);
  border-right-color: rgba(201,168,76,.15);
}

.orbit-1 {
  inset: 10px;
  animation: orbitSpin1 20s linear infinite;
  border-color: rgba(201,168,76,.06);
}
.orbit-1::after {
  border-top-color: rgba(201,168,76,.25);
  animation: orbitSpin1 20s linear infinite reverse;
}
.orbit-2 {
  inset: 60px;
  animation: orbitSpin2 15s linear infinite reverse;
  border-color: rgba(46,125,219,.06);
}
.orbit-2::after {
  border-top-color: rgba(46,125,219,.25);
  animation: orbitSpin2 15s linear infinite;
}
.orbit-3 {
  inset: 110px;
  animation: orbitSpin3 25s linear infinite;
  border-color: rgba(201,168,76,.05);
}
.orbit-3::after {
  border-top-color: rgba(201,168,76,.2);
  animation: orbitSpin3 25s linear infinite reverse;
}

/* Orbit nodes — floating category labels */
.orbit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,.6), 0 0 24px rgba(201,168,76,.3);
  z-index: 2;
}
.orbit-node span {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  font-size: .65rem;
  font-weight: 600;
  color: rgba(201,168,76,.7);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.hero-showcase:hover .orbit-node span {
  opacity: 1;
}

/* Node positions along orbit circumferences */
.node-1 { top: 5%; left: 50%; transform: translate(-50%, -50%); }
.node-2 { bottom: 12%; right: 8%; }
.node-3 { top: 50%; left: -2%; transform: translateY(-50%); }
.node-3 span { left: auto; right: calc(100% + 10px); }
.node-4 { bottom: 5%; right: 40%; }
.node-5 { top: 15%; right: 10%; }
.node-6 { bottom: 20%; left: 5%; }
.node-6 span { left: auto; right: calc(100% + 10px); }

/* Accent color for alternate nodes */
.node-3, .node-4 {
  background: var(--accent-light);
  box-shadow: 0 0 12px rgba(46,125,219,.6), 0 0 24px rgba(46,125,219,.3);
}
.node-3 span, .node-4 span {
  color: rgba(46,125,219,.7);
}

/* Central core — logo and glow */
.showcase-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.core-pulse {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  animation: corePulse 4s ease-in-out infinite;
}
.core-pulse.pulse-2 {
  inset: -40px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  animation-delay: 2s;
}

.core-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.2);
  animation: coreRingSpin 12s linear infinite;
}
.core-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,.8);
}

.core-emblem {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(201,168,76,.4)) drop-shadow(0 0 40px rgba(201,168,76,.15));
  animation: emblemFloat 6s ease-in-out infinite;
}
.core-emblem svg {
  width: 90px;
  height: 90px;
}

.core-label {
  margin-top: .5rem;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-align: center;
  opacity: .8;
}

/* SVG arc overlays */
.showcase-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.arc {
  stroke-dasharray: 8 12;
  fill: none;
}
.arc-1 {
  transform-origin: center;
  animation: arcRotate1 30s linear infinite;
}
.arc-2 {
  transform-origin: center;
  animation: arcRotate2 24s linear infinite reverse;
}
.arc-3 {
  transform-origin: center;
  animation: arcRotate3 36s linear infinite;
}

/* === Showcase Keyframes === */
@keyframes orbitSpin1 {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to { transform: rotateX(70deg) rotateZ(360deg); }
}
@keyframes orbitSpin2 {
  from { transform: rotateX(55deg) rotateY(25deg) rotateZ(0deg); }
  to { transform: rotateX(55deg) rotateY(25deg) rotateZ(360deg); }
}
@keyframes orbitSpin3 {
  from { transform: rotateX(80deg) rotateY(-15deg) rotateZ(0deg); }
  to { transform: rotateX(80deg) rotateY(-15deg) rotateZ(360deg); }
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .6; }
}

@keyframes coreRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes emblemFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
}

@keyframes arcRotate1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes arcRotate2 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes arcRotate3 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-text {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* --- Intro Bar --- */
.intro-bar {
  background: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.intro-item { text-align: center; }
.intro-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,.15);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.intro-item:hover .intro-item-icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: scale(1.08);
}
.intro-item h4 { margin-bottom: .4rem; font-size: 1rem; }
.intro-item p { font-size: .86rem; color: var(--gray-600); margin: 0 auto; max-width: 220px; line-height: 1.6; }

/* --- Categories Preview --- */
.categories-preview {
  background: var(--gray-50);
  position: relative;
}
.categories-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.cat-card:hover .cat-icon {
  transform: scale(1.06) rotate(-3deg);
}
.cat-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.cat-card p { font-size: .86rem; color: var(--gray-600); line-height: 1.6; }
.cat-card .cat-count {
  margin-top: 1.25rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
}

/* --- How It Works --- */
.how-it-works {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 0% 50%, rgba(201,168,76,.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(46,125,219,.03) 0%, transparent 50%);
}
.how-it-works h2, .how-it-works h3 { color: var(--white); }
.how-it-works .section-subtitle { color: rgba(255,255,255,.5); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  counter-increment: step;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(201,168,76,.15);
  transform: translateY(-4px);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(201,168,76,.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.step-card:hover .step-number {
  background: rgba(201,168,76,.08);
  border-color: var(--gold);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: .65rem; }
.step-card p { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.65; }

.step-connector {
  display: none;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--white);
  position: relative;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-muted);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.testimonial-stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 1.25rem;
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-style: normal;
  position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .5px;
}
.testimonial-info strong { display: block; font-size: .88rem; color: var(--navy); }
.testimonial-info span { font-size: .78rem; color: var(--gray-400); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 60%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,.5); font-size: 1.05rem; margin: 0 auto 2.5rem; position: relative; max-width: 560px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; position: relative; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.5);
  padding: 5rem 0 2.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.15), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: .86rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  font-size: .86rem;
  padding: .35rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); transform: translateX(3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-links { display: flex; gap: 1.75rem; }
.footer-bottom-links a { transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--navy-deep);
  padding: 11rem 0 5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,168,76,.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(46,125,219,.03) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.15), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: .85rem; position: relative; }
.page-hero p { color: rgba(255,255,255,.5); font-size: 1.05rem; max-width: 560px; margin: 0 auto; position: relative; line-height: 1.7; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.75rem;
  position: relative;
  letter-spacing: .5px;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }

/* --- About Page --- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-content .section-label { text-align: left; }
.mission-content p { margin-bottom: 1.25rem; color: var(--gray-600); line-height: 1.75; }

/* Enhanced mission visual */
.mission-visual-enhanced {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.12);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201,168,76,.06) inset;
}
.mission-visual-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 90%, rgba(46,125,219,.06) 0%, transparent 50%);
  pointer-events: none;
}
/* Floating decorative shapes */
.mv-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mv-float-1 {
  width: 180px; height: 180px;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,.08);
}
.mv-float-2 {
  width: 100px; height: 100px;
  bottom: 30px; left: -30px;
  background: radial-gradient(circle, rgba(46,125,219,.06) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,.06);
}
.mv-float-3 {
  width: 60px; height: 60px;
  top: 40%; right: 10px;
  background: rgba(201,168,76,.04);
  border: 1px solid rgba(201,168,76,.1);
}
/* Hex wrapper */
.mv-hex-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-hex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hex-rotate 20s linear infinite;
}
@keyframes hex-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.mv-logo-center {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
}
.mv-logo-center svg { width: 100%; height: 100%; }
/* Definition block */
.mv-definition { position: relative; margin-bottom: 1.5rem; }
.mv-definition h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .15rem;
  letter-spacing: -.5px;
}
.mv-pronunciation {
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: .25rem;
}
.mv-pos {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-bottom: .6rem;
}
.mv-meaning {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}
/* Divider */
.mv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
  margin: 1.5rem 0;
}
/* Stats row */
.mv-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}
.mv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.mv-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.mv-stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
}
.value-card:hover::before { opacity: 1; }
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(201,168,76,.15);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(11,29,58,.15);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.value-card h3 { margin-bottom: .65rem; font-size: 1.05rem; }
.value-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; }

/* Methodology timeline */
.methodology-section { background: var(--gray-50); }
.methodology-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.method-card-enhanced {
  display: flex;
  gap: 2rem;
  position: relative;
}
.method-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.method-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,168,76,.3);
  position: relative;
  z-index: 1;
}
.method-connector {
  width: 2px;
  flex: 1;
  min-height: 2rem;
  background: linear-gradient(to bottom, rgba(201,168,76,.3), rgba(201,168,76,.06));
  margin: .35rem 0;
}
.method-body {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  flex: 1;
  transition: var(--transition);
}
.method-card-enhanced:hover .method-body {
  border-color: rgba(201,168,76,.15);
  box-shadow: var(--shadow-md);
}
.method-phase {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: .35rem;
}
.method-body h4 { margin-bottom: .5rem; color: var(--navy); font-size: 1rem; }
.method-body p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; margin: 0; }
/* Ensure methodology cards are visible */
.methodology-timeline .method-card-enhanced {
  animation: value-card-fallback .6s ease forwards;
  animation-delay: .3s;
}
.methodology-timeline .method-card-enhanced:nth-child(2) { animation-delay: .45s; }
.methodology-timeline .method-card-enhanced:nth-child(3) { animation-delay: .6s; }
.methodology-timeline .method-card-enhanced:nth-child(4) { animation-delay: .75s; }
.methodology-timeline .method-card-enhanced:nth-child(5) { animation-delay: .9s; }
.methodology-timeline .method-card-enhanced:nth-child(6) { animation-delay: 1.05s; }

/* --- Categories Page --- */
.categories-full { background: var(--gray-50); }
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.vertical-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.vertical-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.vertical-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.vertical-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,.3), transparent);
}
.vertical-icon { font-size: 1.5rem; }
.vertical-header h3 { color: var(--white); font-size: 1.15rem; }
.vertical-body { padding: 1.75rem 2rem; }
.vertical-body p { font-size: .86rem; color: var(--gray-600); margin-bottom: 1.25rem; line-height: 1.65; }
.award-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.award-tag {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.award-tag:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--cream);
}

.award-types { background: var(--white); }
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.type-card {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.type-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.type-badge {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.type-card h3 { margin-bottom: .5rem; }
.type-card p { font-size: .86rem; color: var(--gray-600); margin-bottom: 1.25rem; line-height: 1.6; }
.type-criteria { text-align: left; }
.type-criteria li {
  font-size: .84rem;
  color: var(--gray-600);
  padding: .4rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.type-criteria li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .8rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* --- Nominate Page --- */
.nominate-intro {
  background: var(--white);
}
.nominate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.eligibility-list li {
  padding: .8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: .92rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.eligibility-list li:last-child { border-bottom: none; }
.eligibility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--success);
}
.eligibility-list li:hover {
  color: var(--navy);
  padding-left: 2.25rem;
}

.timeline-section { background: var(--gray-50); }
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--gray-200), transparent);
}
.timeline-item {
  display: flex;
  gap: 1.75rem;
  padding-bottom: 2.75rem;
  position: relative;
}
.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--gray-50);
}
.timeline-content h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.timeline-content .timeline-date {
  font-size: .75rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
  font-family: var(--font-body);
}
.timeline-content p { font-size: .86rem; color: var(--gray-600); line-height: 1.65; }

/* --- Judging Page --- */
.judging-criteria { background: var(--white); }
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.criteria-card {
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.criteria-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.criteria-card .criteria-weight {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: .6rem;
  line-height: 1;
}
.criteria-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.criteria-card p { font-size: .84rem; color: var(--gray-600); line-height: 1.65; }

.judges-section { background: var(--gray-50); }
.judges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.judge-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.judge-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.judge-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  letter-spacing: .5px;
  border: 2px solid transparent;
  transition: var(--transition);
}
.judge-card:hover .judge-avatar {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.1);
}
.judge-card h4 { margin-bottom: .25rem; }
.judge-card .judge-title { font-size: .8rem; color: var(--gray-400); }
.judge-card .judge-company { font-size: .82rem; color: var(--gold-dark); font-weight: 600; }

.process-section { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-card {
  padding: 2.25rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  position: relative;
  padding-top: 3.25rem;
  background: var(--white);
  transition: var(--transition);
}
.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.process-phase {
  position: absolute;
  top: -13px;
  left: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: .35rem 1.15rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 8px rgba(201,168,76,.25);
}
.process-card h3 { margin-bottom: .65rem; }
.process-card p { font-size: .86rem; color: var(--gray-600); line-height: 1.65; }

/* --- Winners Page --- */
.winners-showcase { background: var(--gray-50); }
.winners-year-nav {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
.year-btn {
  padding: .65rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-600);
}
.year-btn.active, .year-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.winner-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.winner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.winner-badge-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.winner-badge.gold-badge { color: var(--gold); }
.winner-badge svg { flex-shrink: 0; }
.winner-badge.silver-badge { color: #C0C0C0; }
.winner-badge.bronze-badge { color: #CD7F32; }
.winner-category { color: rgba(255,255,255,.4); font-size: .75rem; }
.winner-body { padding: 1.75rem; }
.winner-body h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.winner-body .winner-company { font-size: .82rem; color: var(--gray-400); margin-bottom: .85rem; }
.winner-body p { font-size: .84rem; color: var(--gray-600); line-height: 1.65; }

/* --- Contact Page --- */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
  letter-spacing: .3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1.15rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-800);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,29,58,.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex;
  gap: 1.15rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h4 { margin-bottom: .2rem; }
.contact-card p { font-size: .86rem; color: var(--gray-600); }

/* --- FAQ Section --- */
.faq-section { background: var(--gray-50); }
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: .85rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.active { border-color: rgba(201,168,76,.2); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-toggle {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.75rem 1.5rem; }
.faq-answer p { font-size: .88rem; color: var(--gray-600); line-height: 1.75; }

/* --- Custom Cursor --- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform .15s ease, opacity .15s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201,168,76,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform .08s ease, width .3s ease, height .3s ease, border-color .3s ease, background .3s ease;
  transform: translate(-50%, -50%);
}
.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: var(--gold-light);
}
.cursor-outline.cursor-hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.cursor-dot.cursor-text {
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--gold);
}
.cursor-outline.cursor-text {
  width: 60px;
  height: 60px;
  border-color: transparent;
  background: rgba(201,168,76,.04);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 10001;
  width: 0%;
  transition: none;
  box-shadow: 0 0 10px rgba(201,168,76,.5);
}

/* --- Text Reveal Animation --- */
.text-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.text-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.text-reveal.revealed .word-inner {
  transform: translateY(0);
}
.text-reveal .word:nth-child(2) .word-inner { transition-delay: .05s; }
.text-reveal .word:nth-child(3) .word-inner { transition-delay: .1s; }
.text-reveal .word:nth-child(4) .word-inner { transition-delay: .15s; }
.text-reveal .word:nth-child(5) .word-inner { transition-delay: .2s; }
.text-reveal .word:nth-child(6) .word-inner { transition-delay: .25s; }
.text-reveal .word:nth-child(7) .word-inner { transition-delay: .3s; }
.text-reveal .word:nth-child(8) .word-inner { transition-delay: .35s; }
.text-reveal .word:nth-child(9) .word-inner { transition-delay: .4s; }
.text-reveal .word:nth-child(10) .word-inner { transition-delay: .45s; }

/* --- Button Magnetic & Ripple Effects --- */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple-effect .6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Button shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}
.btn:hover::after {
  animation: btn-shine .6s ease forwards;
}
@keyframes btn-shine {
  to { left: 125%; }
}

/* --- Card 3D Tilt Effect --- */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-card-inner {
  transition: transform .15s ease;
  transform-style: preserve-3d;
}
.tilt-card .tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.tilt-card:hover .tilt-shine {
  opacity: 1;
}

/* --- Counter Animation --- */
.stat-number {
  display: inline-block;
}

/* --- Enhanced Scroll Reveals --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .08s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .16s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .24s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .32s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .4s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: .48s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: .56s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}
/* Only apply visible styles when parent is visible */
.stagger-children:not(.visible) > * {
  opacity: 0;
  transform: translateY(24px);
}
/* Ensure value cards become visible even if IntersectionObserver doesn't fire */
.values-grid > .value-card {
  animation: value-card-fallback .6s ease forwards;
  animation-delay: .3s;
}
.values-grid > .value-card:nth-child(2) { animation-delay: .4s; }
.values-grid > .value-card:nth-child(3) { animation-delay: .5s; }
.values-grid > .value-card:nth-child(4) { animation-delay: .6s; }
.values-grid > .value-card:nth-child(5) { animation-delay: .7s; }
.values-grid > .value-card:nth-child(6) { animation-delay: .8s; }
@keyframes value-card-fallback {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Marquee / Infinite Scroll --- */
.marquee-section {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,.08);
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  flex-shrink: 0;
  padding: 0 3rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(255,255,255,.2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  letter-spacing: .5px;
}
.marquee-item .marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .4;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Parallax Elements --- */
.parallax-layer {
  will-change: transform;
  transition: none;
}

/* --- Glow on hover for gold elements --- */
.glow-hover {
  transition: box-shadow .4s ease, transform .3s ease;
}
.glow-hover:hover {
  box-shadow: 0 0 30px rgba(201,168,76,.25), 0 0 60px rgba(201,168,76,.1);
}

/* --- Smooth Section Dividers --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray-200) 25%, var(--gold) 50%, var(--gray-200) 75%, transparent 100%);
  background-size: 200% 100%;
  animation: divider-shimmer 3s ease-in-out infinite;
  margin: 0;
}
@keyframes divider-shimmer {
  0%, 100% { background-position: 200% center; }
  50% { background-position: -200% center; }
}

/* --- Floating Particles Background --- */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(201,168,76,.3);
  border-radius: 50%;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* --- Nav link underline animation --- */
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: left .3s cubic-bezier(.4,0,.2,1), right .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  left: 0;
  right: 0;
}

/* --- Hero label shimmer --- */
.hero-label {
  background-size: 200% 100%;
  animation: label-shimmer 3s ease-in-out infinite;
}
@keyframes label-shimmer {
  0%, 100% { background-position: 100% center; }
  50% { background-position: 0% center; }
}

/* --- Smooth image/card loading --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn .8s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-buttons { justify-content: center; }
  .hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .judges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  /* Navigation */
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6,15,31,.98);
    backdrop-filter: blur(24px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  /* Typography & text overflow */
  h1, h2, h3, h4, p, blockquote, li, span, a {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Section headers */
  .section-header { margin-bottom: 2rem; }
  .section-subtitle { font-size: .95rem; }

  /* Hero */
  .hero { min-height: auto; padding-top: 72px; padding-bottom: 2.5rem; }
  .hero-label { margin-bottom: 1.25rem; font-size: .7rem; padding: .4rem 1rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero-desc { margin-bottom: 1.75rem; font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; padding-top: 1.75rem; }
  .stat-number { font-size: 2rem; }
  .stat-text { font-size: .65rem; letter-spacing: 1px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 7rem 0 2.5rem; }
  .page-hero p { font-size: .95rem; }
  .breadcrumb { margin-bottom: 1.25rem; font-size: .75rem; }

  /* Grid layouts — single column */
  .intro-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .vertical-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .nominate-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .criteria-grid { grid-template-columns: 1fr; gap: 1rem; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .winners-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .methodology-timeline { max-width: 100%; }
  .method-card-enhanced { gap: 1rem; }
  .method-body { padding: 1.25rem 1.5rem; }

  /* Card padding reductions */
  .cat-card { padding: 1.5rem; }
  .step-card { padding: 1.75rem 1.25rem; }
  .testimonial-card { padding: 1.75rem; }
  .value-card { padding: 1.75rem 1.5rem; }
  .criteria-card { padding: 1.75rem 1.5rem; }
  .type-card { padding: 2rem 1.5rem; }
  .process-card { padding: 1.75rem; padding-top: 2.75rem; }
  .method-card { padding: 1.5rem; }
  .judge-card { padding: 1.5rem 1.25rem; }
  .vertical-body { padding: 1.25rem 1.5rem; }
  .vertical-header { padding: 1.25rem 1.5rem; }
  .winner-body { padding: 1.25rem; }
  .faq-question { padding: 1rem 1.25rem; font-size: .88rem; }
  .faq-answer { padding: 0 1.25rem; }
  .faq-item.active .faq-answer { padding: 0 1.25rem 1.25rem; }

  /* Winner badge strip — prevent overlap */
  .winner-badge-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    padding: .85rem 1.25rem;
  }

  /* CTA banner */
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner p { font-size: .95rem; margin-bottom: 1.75rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; text-align: center; justify-content: center; }

  /* Footer */
  .footer { padding: 3rem 0 2rem; }
  .footer-grid { margin-bottom: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Intro bar */
  .intro-bar { padding: 2.5rem 0; }

  /* Mission visual enhanced */
  .mission-visual-enhanced { padding: 2.25rem 1.75rem; }
  .mv-hex-wrapper { width: 110px; height: 110px; }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }

  /* Contact info card */
  .contact-card { padding: 1.15rem; }
}

@media (max-width: 480px) {
  section { padding: 2.5rem 0; }

  .container { width: 92%; }

  .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-desc { font-size: .92rem; }
  .hero-label { font-size: .65rem; letter-spacing: .5px; }

  .page-hero { padding: 6.5rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .page-hero p { font-size: .9rem; }

  .intro-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: .75rem; }

  .section-header { margin-bottom: 1.5rem; }
  .section-title { margin-bottom: .75rem; }

  .cta-banner { padding: 2.5rem 0; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-brand p { font-size: .82rem; }

  .cat-card { padding: 1.25rem; }
  .step-card { padding: 1.5rem 1rem; }
  .testimonial-card { padding: 1.5rem; }
  .value-card { padding: 1.5rem 1.25rem; }
  .criteria-card { padding: 1.5rem 1.25rem; }
  .method-card { padding: 1.25rem; gap: 1rem; }
  .process-card { padding: 1.5rem; padding-top: 2.5rem; }
  .winner-body { padding: 1rem; }
  .vertical-body { padding: 1rem 1.25rem; }
  .vertical-header { padding: 1rem 1.25rem; }

  /* Winners year nav wrap */
  .winners-year-nav { flex-wrap: wrap; }

  /* Intro item spacing */
  .intro-item p { font-size: .82rem; }
  .intro-item-icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: .75rem; }

  /* Mission visual enhanced */
  .mission-visual-enhanced { padding: 1.75rem 1.25rem; }
  .mv-hex-wrapper { width: 90px; height: 90px; margin-bottom: 1.25rem; }
  .mv-logo-center { width: 52px; height: 52px; }
  .mv-definition h3 { font-size: 1.6rem; }
  .mv-stats { gap: .5rem; }

  /* Timeline improvements */
  .timeline-dot { width: 40px; height: 40px; font-size: .95rem; }
  .timeline::before { left: 19px; }
  .timeline-item { gap: 1.25rem; padding-bottom: 2rem; }

  /* Marquee */
  .marquee-section { padding: 1.25rem 0; }
  .marquee-item { font-size: 1rem; padding: 0 2rem; gap: 1.75rem; }
}

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-outline { display: none !important; }
  body { cursor: auto !important; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .stagger-children > * { opacity: 1; transform: none; }
  .text-reveal .word-inner { transform: none; }
  .cursor-dot, .cursor-outline { display: none; }
}

/* ===== Winner Pages ===== */

/* Hub winner cards (2026) */
.winners-grid-2026 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .winners-grid-2026 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .winners-grid-2026 { grid-template-columns: 1fr; } }

.winner-card-2026 {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.winner-card-2026:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.winner-card-top {
  background: var(--navy);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.winner-card-logo-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.winner-card-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.winner-card-logo-text { font-size: 0.5rem; color: rgba(255,255,255,0.5); text-align: center; padding: 0.2rem; font-weight: 600; line-height: 1.3; }
.winner-card-badge-wrap { flex-shrink: 0; width: 52px; }
.winner-card-badge-wrap img { width: 100%; height: auto; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.35)); }
.winner-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.winner-card-cat {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.winner-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.winner-card-tagline {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
  max-width: none;
}
.winner-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.winner-card-link:hover { color: var(--navy); }

/* Winner profile hero */
.winner-hero { background: var(--navy); padding: 5rem 0 3.5rem; }
.winner-hero .container,
.identity-bar .container,
.winner-content .container { max-width: 900px; }

.winner-breadcrumb {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.winner-breadcrumb a { color: rgba(255,255,255,0.6); }
.winner-breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.award-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.winner-hero-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.winner-hero-text { flex: 1; }
.winner-hero-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(201,168,76,0.8);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.winner-hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}
.winner-hero-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 500px;
}
.winner-hero-badge { flex-shrink: 0; width: 110px; }
.winner-hero-badge img { width: 100%; height: auto; filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3)); }
@media (max-width: 600px) {
  .winner-hero-layout { flex-direction: column-reverse; gap: 1rem; }
  .winner-hero-badge { width: 80px; }
}

/* Identity bar */
.identity-bar { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 1.1rem 0; }
.identity-inner { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.company-logo-box {
  width: 56px; height: 56px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.company-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.company-logo-text { font-size: 0.58rem; color: var(--gray-400); text-align: center; padding: 0.2rem; font-weight: 600; line-height: 1.3; }
.company-meta { flex: 1; }
.company-meta-name { font-size: 1rem; font-weight: 700; color: var(--navy); }
.company-meta-url { font-size: 0.75rem; color: var(--gold-dark); margin-top: 0.15rem; display: block; }
.company-meta-url:hover { color: var(--navy); }
.verified-chip {
  margin-left: auto;
  display: flex; align-items: center; gap: 5px;
  background: #f0faf4; border: 1px solid #b8e8c8;
  padding: 0.3rem 0.85rem; border-radius: 20px;
  font-size: 0.68rem; font-weight: 600; color: #2a7a4a; white-space: nowrap;
}

/* Winner content */
.winner-content { background: var(--cream); padding: 4rem 0; }
.section-eyebrow { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
.why-won-title { font-family: var(--font-display); font-size: clamp(1.45rem, 2.8vw, 1.85rem); color: var(--navy); margin-bottom: 1.35rem; line-height: 1.25; }
.why-won-body p { font-size: 0.93rem; color: #444; line-height: 1.8; margin-bottom: 1rem; max-width: 72ch; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }
.stat-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 1.5rem 1rem; text-align: center; }
.stat-card-num { font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; font-family: var(--font-body); }
.stat-card-label { font-size: 0.72rem; color: var(--gray-400); line-height: 1.4; }

/* Gold rule */
.gold-rule { border: none; border-top: 1px solid var(--gray-200); margin: 2.5rem 0; position: relative; }
.gold-rule::after { content: '\25C6'; position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--cream); color: var(--gold); font-size: 0.65rem; padding: 0 8px; }

/* Resources CTA strip (on winner profile page) */
.resources-cta {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  padding: 1.35rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
}
@media (max-width: 600px) { .resources-cta { flex-direction: column; align-items: flex-start; } }
.resources-cta-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }
.resources-cta-text strong { color: var(--navy); display: block; margin-bottom: 0.2rem; font-size: 0.92rem; }
.resources-cta-btn {
  background: var(--navy); color: var(--white); padding: 0.6rem 1.35rem;
  border-radius: 100px; font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  flex-shrink: 0; transition: var(--transition); display: inline-block;
}
.resources-cta-btn:hover { background: var(--navy-light); }

/* Back links */
.back-to-winners, .back-to-profile { display: block; text-align: center; margin-top: 2.5rem; font-size: 0.78rem; color: var(--gray-400); }
.back-to-winners:hover, .back-to-profile:hover { color: var(--navy); }

/* Resources pages */
.resources-hero { background: var(--navy); border-bottom: 3px solid var(--gold); padding: 5rem 0 3rem; }
.resources-hero .container,
.resources-content .container { max-width: 900px; }
.resources-hero-layout { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.resources-eyebrow { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
.resources-hero-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--white); line-height: 1.2; margin-bottom: 0.5rem; }
.resources-hero-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 0.35rem; }
.resources-hero-badge { flex-shrink: 0; width: 100px; }
.resources-hero-badge img { width: 100%; height: auto; filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3)); }
@media (max-width: 600px) {
  .resources-hero-layout { flex-direction: column-reverse; gap: 1rem; }
  .resources-hero-badge { width: 72px; }
}

.resources-content { background: var(--cream); padding: 4rem 0; }
.resource-section { margin-bottom: 3rem; }
.resource-section-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-200); }
.resource-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 1.5rem; margin-bottom: 1rem; }
.resource-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.65rem; }
.resource-card-icon { width: 36px; height: 36px; background: var(--gold-muted); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.resource-card-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.resource-card-desc { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 1rem; max-width: none; }
.resource-download-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.resource-download-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  border: 1.5px solid var(--navy); color: var(--navy); transition: var(--transition);
}
.resource-download-btn:hover { background: var(--navy); color: var(--white); }

/* Copy box */
.copy-box-wrap { position: relative; margin-top: 0.75rem; }
.copy-box {
  width: 100%; font-family: var(--font-body); font-size: 0.78rem; color: var(--gray-600);
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 1rem 3.5rem 1rem 1rem; line-height: 1.65; resize: vertical; min-height: 160px;
}
.copy-btn {
  position: absolute; top: 0.5rem; right: 0.5rem;
  background: var(--navy); color: var(--white); border: none; border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem; font-size: 0.72rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.copy-btn:hover { background: var(--navy-light); }
.copy-btn.copied { background: var(--success); }

/* Trophy */
.trophy-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
@media (max-width: 600px) { .trophy-card { flex-direction: column; align-items: flex-start; } }
.trophy-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.trophy-info p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; max-width: 50ch; }
.trophy-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); padding: 0.65rem 1.4rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; transition: var(--transition);
}
.trophy-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
