/*
Theme Name:  AI Festival 2027
Theme URI:   https://aifestival.com
Author:      AI Festival
Author URI:  https://aifestival.com
Description: Official theme for AI Festival 2027 — Where AI, XR and real-world impact come together.
Version:     1.0.5
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ai-festival
Tags:        full-width-template, custom-colors, custom-menu, featured-images, one-page
*/

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg-primary:     #0d0a2e;
  --bg-section-alt: #120d38;
  --accent-purple:  #6c3bdf;
  --accent-violet:  #7c4dff;
  --accent-bright:  #9d6eff;
  --text-white:     #ffffff;
  --text-muted:     #b0a8d0;
  --star-gold:      #f5c518;
  --card-border:    rgba(124, 77, 255, 0.35);
  --card-bg:        rgba(255, 255, 255, 0.04);
  --font-display:   'Poppins', sans-serif;
  --font-body:      'Poppins', sans-serif;
  --radius-card:    16px;
  --radius-btn:     999px;
  --max-width:      1200px;
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-white);
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-muted); }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.75rem;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section         { padding: 7rem 0; }
.section--alt    { background: var(--bg-section-alt); }
.section__header { margin-bottom: 3.5rem; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(108, 59, 223, 0.55);
}
.btn--primary {
  background: var(--accent-purple);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--accent-violet);
  color: #fff;
}

/* ============================================================
   NAVIGATION
============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
#site-header.scrolled {
  background: rgba(13, 10, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--accent-bright); }

#primary-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
#primary-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
#primary-menu a:hover { color: #fff; }

.nav-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #primary-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(13, 10, 46, 0.98);
    border-top: 1px solid var(--card-border);
    padding: 1rem 2rem 2rem;
  }
  #primary-menu.open { display: flex; }
  #primary-menu a { padding: 0.75rem 0; font-size: 1rem; width: 100%; }
}

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0e0650 0%, #1a0a6e 35%, #3d0fa8 70%, #6c0fd4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
#hero .hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,77,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,77,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(13,10,46,0.6) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero__title {
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
}
.hero__cta { margin-bottom: 3.5rem; }
.hero__rating .stars {
  font-size: 1.75rem;
  color: var(--star-gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.hero__rating p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   STATS SECTION
============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .stats-grid { grid-template-columns: 1fr; } }

.stat { text-align: center; }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--accent-bright);
  line-height: 1;
}
.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.testimonial-single {
  border-top: 1px solid var(--card-border);
  padding-top: 3rem;
  text-align: center;
}
.testimonial-single blockquote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-white);
  max-width: 680px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}
.testimonial-single cite { color: var(--text-muted); font-size: 0.875rem; }

/* ============================================================
   VALUED MOST
============================================================ */
.valued-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .valued-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .valued-grid { grid-template-columns: repeat(2, 1fr); } }

.valued-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease;
}
.valued-card:hover {
  transform: translateY(-5px);
  background: rgba(108,59,223,0.15);
}
.valued-card img,
.valued-card .img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255,255,255,0.06);
  display: block;
}
.valued-card__label {
  padding: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-white);
}
.section__footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   QUOTES
============================================================ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) { .quotes-grid { grid-template-columns: 1fr; } }

.quote-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: border-color 0.2s;
}
.quote-card:hover { border-color: var(--accent-violet); }
.quote-card__text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-white);
  line-height: 1.7;
}
.quote-card__author { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   WHY
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.why-card { text-align: center; padding: 2.5rem 1rem; }
.why-card__icon { font-size: 2.75rem; margin-bottom: 1.25rem; }
.why-card__title { font-weight: 700; font-size: 1rem; color: var(--text-white); line-height: 1.4; }

/* ============================================================
   AUDIENCE
============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  transition: background 0.25s ease, transform 0.25s ease;
}
.audience-card:hover {
  background: rgba(108,59,223,0.2);
  transform: translateY(-4px);
}
.audience-card__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* ============================================================
   WHAT'S NEW
============================================================ */
.whats-new-inner {
  display: flex;
  gap: 5rem;
  align-items: center;
}
.whats-new-inner .robot-wrap {
  flex-shrink: 0;
  width: 260px;
  text-align: center;
}
.whats-new-inner .robot-wrap img { max-width: 220px; margin: 0 auto; }

.new-list { display: flex; flex-direction: column; gap: 1.5rem; }
.new-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}
.new-list__number {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--accent-purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whats-new-inner { flex-direction: column; gap: 3rem; }
  .whats-new-inner .robot-wrap { width: 100%; }
}

/* ============================================================
   GET INVOLVED
============================================================ */
.involved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .involved-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .involved-grid { grid-template-columns: 1fr; } }

.involved-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.25s ease;
}
.involved-card:hover { transform: translateY(-5px); }
.involved-card img,
.involved-card .img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
  display: block;
}
.involved-card__label {
  padding: 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-white);
  line-height: 1.4;
}

.section__cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   FINAL CTA
============================================================ */
#section-cta-final {
  background: linear-gradient(135deg, #0e0650 0%, #1a0a6e 40%, #6c0fd4 100%);
  text-align: center;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}
#section-cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,77,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,77,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta-final__content { position: relative; z-index: 1; }
.cta-final__sub {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  display: block;
}
.cta-final__headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 2.5rem;
}
.cta-final__note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #080620;
  border-top: 1px solid var(--card-border);
  padding: 3rem 0;
  text-align: center;
}
#site-footer p { font-size: 0.85rem; color: var(--text-muted); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.footer-logo span { color: var(--accent-bright); }
#footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
#footer-menu a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
#footer-menu a:hover { color: #fff; }

/* ============================================================
   WORDPRESS SPECIFIC
============================================================ */
.wp-block-image { margin: 2rem 0; }
.aligncenter { text-align: center; margin: 0 auto; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; width: 1px;
  overflow: hidden;
  position: absolute;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.35s; }
.fade-up.delay-4 { animation-delay: 0.5s; }

/* ============================================================
   MAILCHIMP MODAL
============================================================ */
.mc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.mc-modal[hidden] { display: none; }

/* Backdrop */
.mc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 20, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

/* Panel */
.mc-modal__panel {
  position: relative;
  z-index: 1;
  background: #120d38;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* Close button */
.mc-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mc-modal__close:hover {
  background: rgba(108,59,223,0.25);
  color: #fff;
}

/* Body copy */
.mc-modal__body .eyebrow { margin-bottom: 0.4rem; }
.mc-modal__body h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.mc-modal__body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ── Override Mailchimp's default white-background styles ── */
#mc_embed_signup {
  background: transparent !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
}
#mc_embed_signup h2 { display: none; } /* we have our own heading */

#mc_embed_signup .mc-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  width: 100% !important;
  padding-bottom: 0 !important;
}
#mc_embed_signup label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white) !important;
  text-transform: none !important;
  letter-spacing: 0;
}
#mc_embed_signup .asterisk { color: #f87171; }

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 10px !important;
  padding: 0.875rem 1.125rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  color: var(--text-white) !important;
  width: 100% !important;
  height: auto !important;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  box-shadow: none !important;
}
#mc_embed_signup input[type="email"]::placeholder,
#mc_embed_signup input[type="text"]::placeholder {
  color: rgba(255,255,255,0.25) !important;
}
#mc_embed_signup input[type="email"]:focus,
#mc_embed_signup input[type="text"]:focus {
  border-color: var(--accent-violet) !important;
  background: rgba(108,59,223,0.1) !important;
}

/* Submit button */
#mc_embed_signup .button,
#mc-embedded-subscribe {
  background: var(--accent-purple) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border: none !important;
  border-radius: var(--radius-btn) !important;
  padding: 1rem 2rem !important;
  width: 100% !important;
  height: auto !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  margin-top: 0.5rem;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
#mc_embed_signup .button:hover,
#mc-embedded-subscribe:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 35px rgba(108,59,223,0.55) !important;
  background: var(--accent-purple) !important;
}

/* Mailchimp response messages */
#mce-error-response,
#mce-success-response {
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.875rem !important;
  margin: 0.75rem 0 !important;
}
#mce-error-response   { background: rgba(248,113,113,0.12) !important; color: #fca5a5 !important; border: 1px solid rgba(248,113,113,0.3) !important; }
#mce-success-response { background: rgba(52,211,153,0.12) !important;  color: #6ee7b7 !important;  border: 1px solid rgba(52,211,153,0.3) !important; }

#mc_embed_signup .indicates-required {
  font-size: 0.75rem;
  color: var(--text-muted) !important;
  margin-bottom: 1rem;
  text-align: right;
}

/* Trap focus ring within modal */
.mc-modal__panel:focus-within { outline: none; }

/* ============================================================
   SPONSORS SECTION
============================================================ */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 900px) { .sponsors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sponsors-grid { grid-template-columns: repeat(2, 1fr); } }

  grid-column: 1 / -1;
  max-width: 320px;
  margin: 0 auto;
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  min-height: 100px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
a.sponsor-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-violet);
  transform: translateY(-3px);
}

.sponsor-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
a.sponsor-card:hover img {
  opacity: 1;
}

/* Fallback text when no logo image */
.sponsor-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-white);
  text-align: center;
}

/* Placeholder state */
.sponsor-card--placeholder {
  border-style: dashed;
  border-color: rgba(124, 77, 255, 0.2);
  background: transparent;
  min-height: 90px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Scroll-in animation (reuses existing fade pattern) */
.sponsors-grid .sponsor-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease, border-color 0.25s ease;
}
.sponsors-grid .sponsor-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRIVACY POLICY PAGE
============================================================ */
.privacy-hero {
  background: linear-gradient(135deg, #0e0650 0%, #1a0a6e 60%, #2e0b8c 100%);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.privacy-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,77,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,77,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.privacy-hero .container { position: relative; z-index: 1; }
.privacy-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 0.75rem; }
.privacy-hero__meta { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* Content column */
.privacy-body {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-body h2 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
}
.privacy-body h3 {
  font-size: 1rem;
  color: var(--accent-bright);
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
  font-family: var(--font-body);
}
.privacy-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.privacy-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-body ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.privacy-body a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.privacy-body a:hover { opacity: 0.75; }
.privacy-body address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--card-border);
}
.privacy-controller {
  margin-top: 3rem;
  padding: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
}
.privacy-controller p { margin-bottom: 0.75rem; }
.privacy-controller p:last-child { margin-bottom: 0; }

/* Footer privacy link */
.footer-legal {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

/* ============================================================
   LOGO IMAGE
============================================================ */
.nav-logo__img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo a:hover img { opacity: 1; }



/* ============================================================
   2026 SPONSORS — MARQUEE
============================================================ */
.sponsors-marquee-section {
  padding: 3.5rem 0;
  overflow: hidden;
}
.sponsors-marquee-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.sponsors-marquee-header p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0.25rem 0 0;
}

/* Track scrolls continuously left */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sponsors-marquee {
  width: 100%;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.sponsors-marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.sponsors-marquee__track:hover {
  animation-play-state: paused;
}
.sponsors-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  height: 80px;
  border-right: 1px solid var(--card-border);
  flex-shrink: 0;
}
.sponsors-marquee__item img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  filter: brightness(1.15);
}
.sponsors-marquee__item:hover img { opacity: 1; }

/* ============================================================
   HERO META (date + location)
============================================================ */
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__meta-item svg { opacity: 0.7; flex-shrink: 0; }
.hero__meta-divider { opacity: 0.4; }

/* ============================================================
   WHY CARDS — expanded with description
============================================================ */
.why-card__icon svg { stroke: var(--accent-bright); }
.why-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.5rem;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   WHAT'S NEW — expanded with descriptions
============================================================ */
.new-list li div strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}
.new-list li div p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   BENEFIT CARD SVG ICONS
============================================================ */
.benefit-card__icon svg {
  stroke: var(--accent-bright);
  display: block;
}

/* ============================================================
   PARTNER STATS STRIP
============================================================ */
.partner-stats-strip {
  background: rgba(108, 59, 223, 0.12);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 2.5rem 0;
}
.partner-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 900px) { .partner-stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .partner-stats-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--accent-bright);
  line-height: 1;
}
.partner-stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ============================================================
   FIX SPONSOR MARQUEE GAP
============================================================ */
.sponsors-marquee-section {
  padding: 2.5rem 0 !important;
}
