/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0A0A0F;
  --bg-card: #12121A;
  --bg-card-hover: #1A1A25;
  --bg-elevated: #16161F;
  --text: #F0EDE8;
  --text-muted: #8A8694;
  --text-dim: #5A5666;
  --accent: #C9A96E;
  --accent-light: #E8D5A8;
  --accent-dark: #A07D3F;
  --accent-glow: rgba(201, 169, 110, 0.4);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(201, 169, 110, 0.2);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --font-sans: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  height: -webkit-fill-available;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* ===== TEXT UTILITIES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-glow {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0A0A0F;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4);
  filter: brightness(1.1);
}

.btn-glow:active {
  transform: translateY(0);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-accent);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-light:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-label-line {
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
  padding-top: env(safe-area-inset-top, 0px);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.navbar-brand:hover { color: var(--accent); }

.navbar-brand-avatar-wrap {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.navbar-brand-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.navbar-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.navbar-links a.active {
  color: var(--accent);
  background: rgba(201, 169, 110, 0.1);
}

.navbar-cta { display: none; }

@media (min-width: 768px) {
  .navbar-cta { display: inline-flex; }
  .navbar-cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
  }
}

/* Hamburger */
.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

@media (min-width: 768px) { .navbar-toggle { display: none; } }

.navbar-toggle-bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.navbar-toggle-bar:nth-child(1) { transform: translateY(-5px); }
.navbar-toggle-bar:nth-child(3) { transform: translateY(5px); }

.navbar-toggle.open .navbar-toggle-bar:nth-child(1) { transform: rotate(45deg); }
.navbar-toggle.open .navbar-toggle-bar:nth-child(2) { opacity: 0; }
.navbar-toggle.open .navbar-toggle-bar:nth-child(3) { transform: rotate(-45deg); }

/* Mobile dropdown */
.navbar-dropdown {
  display: none;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0 1.25rem;
}

.navbar-dropdown.open { display: block; }

.navbar-dropdown-links { padding: 0 1.25rem; }

.navbar-dropdown-links li + li {
  border-top: 1px solid var(--border);
}

.navbar-dropdown-links a {
  display: block;
  padding: 0.875rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.navbar-dropdown-links a:hover { color: var(--accent); }

.navbar-dropdown-cta {
  margin: 1rem 1.25rem 0;
}

.navbar-dropdown-cta .btn { width: 100%; justify-content: center; }

.navbar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.navbar-overlay.open { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.85) 100%),
    linear-gradient(to bottom, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.9) 100%);
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; transform: scale(1); }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 3rem;
  width: 100%;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 9999px;
}

.badge-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.badge-dot.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(201, 169, 110, 0); }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-title-accent {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--text), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Countdown */
.hero-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.5rem;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.countdown-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.countdown-label {
  font-size: 0.625rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

/* Hero card (desktop) */
.hero-card {
  display: none;
  flex-shrink: 0;
  width: 380px;
}

@media (min-width: 1024px) {
  .hero-card { display: block; }
}

.hero-card-inner {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: scale(1.05);
}

.hero-card-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-card-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-badge-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-card-badge-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-card-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-card-dot:hover { background: rgba(255, 255, 255, 0.3); }

.hero-card-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== HERO ENTRANCE ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: animateIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes animateIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.5), transparent 40%);
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-bio {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about-quote {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 3rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}

.about-quote-mark {
  position: absolute;
  top: 0.5rem;
  left: 0.875rem;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.about-qualities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quality-tag {
  padding: 0.5rem 1rem;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  transition: all 0.3s ease;
}

.quality-tag:hover {
  background: rgba(201, 169, 110, 0.15);
  transform: translateY(-2px);
}

/* ===== IMPACT ===== */
.impact {
  background: var(--bg-card);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
}

.impact-card {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.impact-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.impact-card-featured {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.03));
  border-color: var(--border-accent);
}

.impact-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.impact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: var(--radius);
}

.impact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.impact-card-value {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.impact-card-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.impact-card-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ===== VOTE ===== */
.vote {
  background: var(--bg);
}

.vote-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vote-card-header {
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
  border-bottom: 1px solid var(--border);
}

.vote-deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border-accent);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.vote-number-circle {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.vote-number-circle span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A0F;
}

.vote-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.vote-country {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.vote-card-body {
  padding: 2rem;
}

.vote-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vote-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vote-step-num {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0A0A0F;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.vote-step h4 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.vote-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.vote-minimum {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.75rem;
}

.vote-card-footer {
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  text-align: center;
}

.vote-card-footer p {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.vote-card-footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== SUPPORT ===== */
.support {
  background: var(--bg-card);
}

.support-goal {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.support-goal-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.support-goal-amount {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
}

.support-goal-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.support-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .support-tiers { grid-template-columns: repeat(3, 1fr); }
}

.support-tier {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-accent);
}

.support-tier-popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
}

.support-tier-badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0A0A0F;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-tier-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.support-tier-amount span {
  font-size: 1rem;
  font-weight: 400;
}

.support-tier-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.25rem 0 0.75rem;
}

.support-tier-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-tier .btn,
.support-tier .btn-outline-light {
  width: 100%;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }

  .gallery-item-large {
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.8), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

/* ===== VIDEOS ===== */
.videos {
  background: var(--bg-card);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 110, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.3);
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.5);
}

.video-play-btn svg {
  width: 20px;
  height: 20px;
  color: #0A0A0F;
  margin-left: 2px;
}

.video-card-info {
  padding: 1rem 1.25rem;
}

.video-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.video-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0f0f3, #b6b6c0);
  color: #1a1a22;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

a.video-card-thumb,
a.video-card-thumb:link,
a.video-card-thumb:visited {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-card-ext-hint {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.85em;
  color: var(--accent);
  opacity: 0.85;
}

/* ===== SOCIAL ===== */
.social {
  background: var(--bg);
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-grid .social-card {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
}

@media (min-width: 768px) {
  .social-grid .social-card {
    flex: 0 1 180px;
    max-width: 180px;
  }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-accent);
}

.social-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.social-card-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: white;
}

.social-tiktok { background: #000; border: 1px solid rgba(255,255,255,0.1); }
.social-facebook { background: #1877F2; }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-whatsapp { background: #25D366; }

.social-card-name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.social-card-action {
  font-size: 0.8125rem;
  color: var(--accent);
}

/* Share */
.share-section {
  margin-top: 3rem;
  text-align: center;
}

.share-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.share-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-whatsapp { background: #25D366; }
.share-copy { background: var(--accent); color: #0A0A0F; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
}

.footer-social a:hover svg {
  color: #0A0A0F;
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-cta-box {
  text-align: center;
  padding: 2rem;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}

.footer-cta-box h4 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.footer-cta-box p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: var(--accent);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.sticky-cta.visible {
  bottom: 0;
}

@media (min-width: 768px) {
  .sticky-cta {
    left: auto;
    right: 1.5rem;
    bottom: -100px;
    width: auto;
    padding: 0;
  }

  .sticky-cta.visible {
    bottom: 1.5rem;
  }
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(18, 18, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
}

.sticky-cta-text { display: none; }

@media (min-width: 768px) {
  .sticky-cta-text { display: block; }
}

.sticky-cta-text strong {
  font-size: 0.875rem;
  display: block;
}

.sticky-cta-text span {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.sticky-cta .btn { flex-shrink: 0; }

@media (max-width: 767px) {
  .sticky-cta .btn { flex: 1; }
  .sticky-cta-inner { border-radius: var(--radius-lg); }
}

body {
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

/* ===== VIDEO MODAL ===== */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal-overlay.active { display: flex; }

.video-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201, 169, 110, 0.1);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.video-modal-close:hover { opacity: 1; }

/* ===== THANK YOU MODAL ===== */
.thanks-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: thanksFadeIn 0.25s ease;
}

.thanks-modal-overlay.active { display: flex; }

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

.thanks-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, rgba(30, 28, 38, 0.98), rgba(18, 16, 24, 0.98));
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 169, 110, 0.15);
  animation: thanksPop 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

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

.thanks-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.thanks-modal-close:hover { color: var(--accent); }

.thanks-modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

.thanks-modal-icon svg {
  width: 36px;
  height: 36px;
}

.thanks-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #fff;
}

.thanks-modal-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.5rem;
}

.thanks-modal .btn {
  width: 100%;
}

.thanks-modal-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.thanks-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 0.5rem;
  border-radius: var(--radius-md, 12px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.18);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.thanks-social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 110, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.thanks-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.thanks-social-icon svg {
  width: 22px;
  height: 22px;
}

.thanks-social-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .thanks-modal { padding: 2rem 1.25rem 1.5rem; }
  .thanks-modal-title { font-size: 1.35rem; }
  .thanks-modal-social { gap: 0.5rem; }
  .thanks-social-card { padding: 0.75rem 0.4rem; }
  .thanks-social-icon { width: 40px; height: 40px; }
  .thanks-social-name { font-size: 0.78rem; }
}

/* ===== HERO ACHIEVEMENT BANNER (Reine d'Argent) ===== */
.hero-achievement {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(220, 220, 230, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(220, 220, 230, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  max-width: 100%;
}

.hero-achievement-medal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f3, #b6b6c0);
  color: #1a1a22;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(220, 220, 230, 0.25);
}

.hero-achievement-medal svg {
  width: 26px;
  height: 26px;
}

.hero-achievement-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-achievement-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-achievement-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .hero-achievement { gap: 0.75rem; padding: 0.75rem 1rem; }
  .hero-achievement-medal { width: 44px; height: 44px; }
  .hero-achievement-medal svg { width: 22px; height: 22px; }
  .hero-achievement-title { font-size: 1.1rem; }
  .hero-achievement-sub { font-size: 0.75rem; }
}

/* ===== MODAL — Reine d'Argent silver variant ===== */
.thanks-modal-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(220, 220, 230, 0.85);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.thanks-modal-silver .thanks-modal {
  border-color: rgba(220, 220, 230, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(220, 220, 230, 0.18);
}

.thanks-modal-silver .thanks-modal-icon {
  background: linear-gradient(135deg, #f0f0f3, #b6b6c0);
  color: #1a1a22;
  box-shadow: 0 10px 30px rgba(220, 220, 230, 0.35);
}

.thanks-modal-silver .thanks-social-card {
  border-color: rgba(220, 220, 230, 0.2);
}

.thanks-modal-silver .thanks-social-card:hover {
  border-color: rgba(220, 220, 230, 0.55);
}

/* Prevent zoom on input focus for mobile devices */
@supports (-webkit-overflow-scrolling: touch) {
  input {
    font-size: 16px !important;
  }
}