
/* ===== about.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000;
  --blue: #423EFF;
  --dark-blue: #131052;
  --lemon: #B3FF00;
  --pink: #FF00D6;
  --red: #FF2A57;
  --orange: #FF6723;
  --bg: #0A0A0A;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  background: var(--bg);
  border-bottom: 0.833px solid rgba(255,255,255,0.10);
  padding: 16px 76px;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 1440px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 5px;
  border-radius: 6px;
}
.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.08); color:#fff; }
.nav-cta {
  background: var(--dark-blue);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 1440px;
  min-height: 640px;
  background: var(--bg);
  overflow: hidden;
  padding: 80px 76px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 9px 9px;
  pointer-events: none;
  z-index: 0;
}
.dot-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 65% at 50% 50%, transparent 20%, var(--bg) 85%);
}
.hero-left { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; padding-top: 16px; }

/* stacked big title */
.hero-big-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 108px;
  line-height: 0.88;
  letter-spacing: -5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-big-title .line-white { color: #fff; display: block; }
.hero-big-title .line-yellow { color: var(--yellow); display: block; }

.hero-right-desc {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 12px; align-items: center; }
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  transition: opacity .2s;
}
.btn-orange:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }

/* hero image */
.hero-img-container {
  position: relative;
  margin-top: 16px;
}
.hero-img-card {
  border: 1.5px solid rgba(255,176,0,0.35);
  border-radius: 12px;
  overflow: hidden;
  background: #1a1235;
}
.hero-img-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}
/* decoration arrow below image */
.hero-arrow-deco {
  position: absolute;
  bottom: -30px;
  left: 20px;
  opacity: 0.6;
}
/* swirl top right */
.hero-swirl {
  position: absolute;
  top: 30px;
  right: -20px;
  opacity: 0.75;
  pointer-events: none;
}

/* ─── VISION / MISSION ─── */
.vm-section {
  padding: 100px 76px;
  background: var(--bg);
}
.vm-inner {
  max-width: 1288px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vm-left {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 44px;
}
.vm-block { margin-bottom: 44px; }
.vm-block:last-child { margin-bottom: 0; }
.vm-block h3 {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 14px;
}
.vm-block p {
  font-size: 15px;
  line-height: 24px;
  color: rgba(255,255,255,0.55);
}
.vm-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 36px 0;
}
.vm-right {
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a2a;
  position: relative;
}
.vm-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/* ─── INNOVATION GAPS ─── */
.gaps-section {
  background: var(--dark-blue);
  padding: 96px 76px;
}
.gaps-inner { max-width: 1288px; margin: 0 auto; }
.gaps-heading {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}
.gaps-heading .acc { color: var(--orange); }
.gaps-subtext {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  line-height: 22px;
  margin-bottom: 56px;
}
.gaps-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gap-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
.gap-card:hover { border-color: rgba(255,255,255,0.15); }
.gap-card.lemon-fill {
  background: var(--lemon);
  border-color: var(--lemon);
  color: #000;
}
.gc-span-5 { grid-column: span 5; }
.gc-span-7 { grid-column: span 7; }
.gc-span-4 { grid-column: span 4; }
.gc-span-8 { grid-column: span 8; }

.gap-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 18px;
}
.gap-card.lemon-fill .gap-icon { background: rgba(0,0,0,0.12); }

.gap-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 10px;
}
.gap-card.lemon-fill .gap-title { color: #000; }

.gap-desc {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255,255,255,0.5);
}
.gap-card.lemon-fill .gap-desc { color: rgba(0,0,0,0.65); }

.gap-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 18px;
}
.gap-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}

/* network grid in gaps */
.network-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 100%;
}
.nsub-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 18px;
  text-align: center;
}
.ns-ghost { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.4); }
.ns-blue  { background: var(--blue); color: #fff; }
.ns-yellow { background: var(--yellow); color: #000; }

/* ─── WHY NOW SECTION ─── */
.whynow-section {
  background: var(--bg);
  padding: 96px 76px;
}
.whynow-inner {
  max-width: 1288px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wn-left {}
.wn-heading {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 36px;
}
.wn-heading .white { color: #fff; }
.wn-heading .lemon { color: var(--lemon); }

.wn-big-stat {
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  font-weight: 700;
  letter-spacing: -4px;
  color: var(--lemon);
  line-height: 1;
  margin-bottom: 10px;
}
.wn-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 22px;
  max-width: 380px;
  margin-bottom: 32px;
}
.wn-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.wn-bullet-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,103,35,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.wn-bullet-text {
  font-size: 13px;
  line-height: 21px;
  color: rgba(255,255,255,0.55);
}
.wn-bullet-text strong { color: #fff; font-weight: 700; display: block; margin-bottom: 3px; }

.wn-right { position: relative; }
.wn-img-wrapper {
  position: relative;
}
.wn-img-card {
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a2a;
  border: 1px solid rgba(255,255,255,0.08);
}
.wn-img-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(80%);
}
/* orange label card overlay */
.wn-label-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--orange);
  color: #000;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  line-height: 18px;
  max-width: 160px;
  letter-spacing: -0.3px;
}

/* ─── FOUNDERS SECTION ─── */
.founders-section {
  background: var(--bg);
  padding: 100px 76px;
}
.founders-inner { max-width: 1288px; margin: 0 auto; }
.founders-heading {
  text-align: center;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}
.founders-heading .acc { color: var(--orange); }
.founders-subtext {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 22px;
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.founder-card { }
.founder-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a2a;
  margin-bottom: 20px;
  aspect-ratio: 4/5;
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}
.founder-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.founder-bio {
  font-size: 13px;
  line-height: 21px;
  color: rgba(255,255,255,0.5);
}

/* ─── FINAL CTA ─── */
.cta-section {
  background: var(--bg);
  padding: 0 76px 96px;
}
.cta-inner { max-width: 1288px; margin: 0 auto; }
.cta-card {
  background: var(--dark-blue);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(66,62,255,0.2);
  filter: blur(70px);
  pointer-events: none;
}
.cta-card h2 {
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.cta-card h2 .acc { color: var(--yellow); }
.cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 24px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; }
.cta-btn-green {
  background: var(--lemon);
  color: #000;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: opacity .2s;
}
.cta-btn-green:hover { opacity: 0.88; }
.cta-btn-outline2 {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: border-color .2s;
}
.cta-btn-outline2:hover { border-color: rgba(255,255,255,0.4); }
.cta-footnote { font-size: 12px; color: rgba(255,255,255,0.3); }
.cta-footnote a { color: var(--yellow); text-decoration: none; }





 /* ─── FOOTER ─── */
  footer {
    background: var(--dark-blue);
    padding: 64px 76.25px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo-col .tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    max-width: 240px;
    line-height: 1.6;
  }

  .footer-links-cols {
    display: flex;
    gap: 64px;
  }

  .footer-links-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }

  .footer-links-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .footer-links-col a:hover { color: #fff; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  .footer-socials {
    display: flex;
    gap: 16px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
  }
  .footer-socials a:hover { background: rgba(255,255,255,0.1); color: #fff; }



/* ===== terms.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000; --blue: #423EFF; --dark-blue: #131052;
  --lemon: #B3FF00; --orange: #FF6723; --bg: #0A0A0A; --navy: #0D0B35;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #fff; font-family: 'Nunito', sans-serif; min-width: 1440px; overflow-x: hidden; }

/* NAV */
nav { background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 13px 76px; position: sticky; top: 0; z-index: 200; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.nav-links { display: flex; gap: 2px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); padding: 5px; border-radius: 7px; }
.nav-links a { display: flex; align-items: center; padding: 7px 15px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; transition: all .2s; }
.nav-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-cta { background: var(--dark-blue); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; padding: 10px 18px; border-radius: 6px; text-decoration: none; letter-spacing: 0.3px; }

/* HERO */
.legal-hero {
  background: var(--navy);
  padding: 88px 76px 100px;
  text-align: center;
}
.legal-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 24px;
}
.legal-title .white { color: #fff; }
.legal-title .italic-orange {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}
.legal-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 460px;
  margin: 0 auto;
  line-height: 22px;
}

/* CONTENT SECTION */
.legal-body {
  background: var(--bg);
  padding: 60px 76px 80px;
}
.legal-body-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Tab switcher */
.tab-bar {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.03);
  transition: all .2s;
  white-space: nowrap;
  border: none; cursor: pointer; font-family: 'Nunito', sans-serif;
}
.tab-btn:hover { color: #fff; background: rgba(255,255,255,0.07); }
.tab-btn.active { background: rgba(19,16,82,0.9); color: #fff; border-right: 1px solid rgba(255,255,255,0.1); }
.tab-btn:last-child.active { border-right: none; border-left: 1px solid rgba(255,255,255,0.1); }

/* Legal prose */
.legal-content h2 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 13px;
  line-height: 22px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}
.legal-content ul li {
  font-size: 13px;
  line-height: 22px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}

/* WAVE */
.colour-wave { width: 100%; height: 80px; overflow: hidden; background: var(--bg); }
.colour-wave svg { display: block; width: 100%; height: 100%; }

/* FOOTER */
footer { background: var(--dark-blue); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 56px 76px 32px; max-width: 1440px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 260px 140px 140px 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-brand p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.38); margin-top: 14px; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-connect h4 { color: var(--blue); }
.footer-nl h4 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; margin-bottom: 6px; }
.footer-nl p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-input-wrap { flex: 1; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 10px 14px; }
.nl-input-wrap svg { width: 16px; height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.nl-input-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Nunito', sans-serif; width: 100%; }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }


/* ===== partner.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000; --blue: #423EFF; --dark-blue: #131052;
  --lemon: #B3FF00; --pink: #FF00D6; --red: #FF2A57;
  --orange: #FF6723; --bg: #0A0A0A; --navy: #0D0B35;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #fff; font-family: 'Nunito', sans-serif; min-width: 1440px; overflow-x: hidden; }

/* NAV */
nav { background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 13px 76px; position: sticky; top: 0; z-index: 200; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.nav-links { display: flex; gap: 2px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); padding: 5px; border-radius: 7px; }
.nav-links a { display: flex; align-items: center; padding: 7px 14px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; transition: all .2s; }
.nav-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-links a.active { color: #fff; border-bottom: 2px solid var(--yellow); border-radius: 0; padding-bottom: 5px; }
.nav-cta { background: var(--dark-blue); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; padding: 10px 18px; border-radius: 6px; text-decoration: none; letter-spacing: 0.3px; }

/* ─── HERO ─── */
.partner-hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 80px 76px;
}
.dot-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.13) 1.5px, transparent 1.5px); background-size: 9px 9px; pointer-events: none; z-index: 0; }
.dot-grid::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 20%, rgba(10,10,10,0.9) 80%); }
/* Glowing orb center */
.hero-orb {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(40,30,80,0.8) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; width: 100%; }
.hero-big-title {
  font-weight: 900;
  font-size: 90px;
  line-height: 0.9;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-big-title .white { color: #fff; display: block; }
.hero-big-title .orange { color: var(--orange); display: block; }
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 22px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; }
.btn-orange { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 13px 24px; border-radius: 6px; font-weight: 800; font-size: 13px; text-decoration: none; letter-spacing: -0.3px; text-transform: uppercase; transition: opacity .2s; }
.btn-orange:hover { opacity: 0.88; }
.btn-ghost-white { display: inline-flex; align-items: center; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); padding: 13px 22px; border-radius: 6px; font-weight: 700; font-size: 13px; text-decoration: none; letter-spacing: -0.3px; text-transform: uppercase; transition: border-color .2s; }
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); }

/* Decorative swirls */
.swirl-left { position: absolute; left: 60px; bottom: 60px; z-index: 1; opacity: 0.7; }
.swirl-right { position: absolute; right: 60px; top: 60px; z-index: 1; opacity: 0.75; }
/* yellow arrow deco */
.arrow-deco { position: absolute; right: 180px; top: 80px; z-index: 1; opacity: 0.65; }

/* ─── WHY PARTNER ─── */
.why-section {
  background: var(--navy);
  padding: 80px 76px;
}
.why-inner {
  max-width: 1288px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.why-left h2 {
  font-size: 36px; font-weight: 800; letter-spacing: -1.2px; margin-bottom: 20px;
}
.why-left h2 .acc { color: var(--orange); }
.why-left .lead { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.why-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.why-bullets li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.why-bullets li::before { content: '•'; color: var(--orange); font-size: 18px; line-height: 1; flex-shrink: 0; }
.why-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 700; font-size: 14px; text-decoration: none; }
.why-link:hover { opacity: 0.8; }
.why-right { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.why-right img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }

/* ─── AUDIENCE ─── */
.audience-section { background: var(--bg); padding: 96px 76px; }
.audience-inner { max-width: 1288px; margin: 0 auto; }
.audience-title { text-align: center; font-size: 40px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 12px; }
.audience-sub { text-align: center; font-size: 14px; color: rgba(255,255,255,0.45); max-width: 460px; margin: 0 auto 56px; line-height: 22px; }
.audience-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.audience-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 32px 24px;
  text-align: center;
}
.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.stat-number { font-size: 56px; font-weight: 900; letter-spacing: -3px; line-height: 1; margin-bottom: 8px; }
.stat-number.c-lemon { color: var(--lemon); }
.stat-number.c-orange { color: var(--orange); }
.stat-number.c-pink { color: var(--pink); }
.stat-number.c-white { color: #fff; }
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ─── SPONSORSHIP TIERS ─── */
.tiers-section { background: var(--bg); padding: 0 76px 96px; }
.tiers-inner { max-width: 1288px; margin: 0 auto; }
.tiers-title { font-size: 36px; font-weight: 800; letter-spacing: -1.2px; color: #fff; margin-bottom: 40px; }
.tiers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tier-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color .2s;
}
.tier-card:hover { border-color: rgba(255,255,255,0.16); }
.tier-card.featured {
  background: rgba(66,62,255,0.12);
  border-color: rgba(66,62,255,0.35);
}
.tier-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.ti-blue { background: rgba(66,62,255,0.15); }
.ti-purple { background: rgba(120,60,200,0.15); }
.ti-orange { background: rgba(255,103,35,0.15); }
.ti-yellow { background: rgba(255,176,0,0.15); }
.tier-name { font-size: 16px; font-weight: 800; letter-spacing: -0.4px; color: #fff; margin-bottom: 8px; }
.tier-desc { font-size: 12px; line-height: 19px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.tier-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 24px; }
.tier-perks li {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,0.65);
}
.perk-check { width: 16px; height: 16px; border-radius: 50%; background: rgba(66,62,255,0.2); border: 1px solid rgba(66,62,255,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.perk-check svg { width: 9px; height: 9px; }
.tier-card:nth-child(3) .perk-check { background: rgba(255,103,35,0.2); border-color: rgba(255,103,35,0.4); }
.tier-card:nth-child(3) .perk-check svg path { stroke: var(--orange); }
.tier-card:nth-child(4) .perk-check { background: rgba(255,176,0,0.2); border-color: rgba(255,176,0,0.4); }
.tier-card:nth-child(4) .perk-check svg path { stroke: var(--yellow); }
.tier-star { color: var(--yellow); font-size: 13px; margin-right: 2px; }
.tier-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px;
  border-radius: 6px; border: none; cursor: pointer;
  font-weight: 800; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  font-family: 'Nunito', sans-serif; text-decoration: none;
  transition: opacity .2s;
}
.tier-btn:hover { opacity: 0.85; }
.tb-lemon { background: var(--lemon); color: #000; }
.tb-blue { background: var(--blue); color: #fff; }
.tb-orange { background: var(--orange); color: #fff; }
.tb-yellow { background: var(--yellow); color: #000; }

/* ─── CTA ─── */
.cta-wrap { padding: 80px 76px 96px; max-width: 1440px; margin: 0 auto; }
.cta-card {
  background: var(--dark-blue);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 80px 48px; text-align: center;
  position: relative; overflow: hidden; max-width: 1288px; margin: 0 auto;
}
.cta-orb { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; border-radius: 50%; background: rgba(66,62,255,0.18); filter: blur(80px); pointer-events: none; }
.cta-card h2 { font-weight: 800; font-size: 44px; letter-spacing: -1.5px; margin-bottom: 18px; }
.cta-card h2 .acc { color: var(--lemon); }
.cta-card > p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 40px; line-height: 24px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; margin-bottom: 18px; }
.btn-lemon { background: var(--lemon); color: #000; padding: 14px 32px; border-radius: 7px; font-weight: 800; font-size: 14px; text-decoration: none; transition: opacity .2s; }
.btn-lemon:hover { opacity: 0.88; }
.btn-outline-w { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 14px 32px; border-radius: 7px; font-weight: 700; font-size: 14px; text-decoration: none; transition: border-color .2s; }
.btn-outline-w:hover { border-color: rgba(255,255,255,0.5); }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.3); }
.cta-note a { color: var(--yellow); text-decoration: none; }

/* colour wave */
.colour-wave { width: 100%; height: 80px; overflow: hidden; position: relative; background: var(--bg); }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 56px 76px 32px; max-width: 1440px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 260px 140px 140px 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-brand p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.38); margin-top: 14px; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-connect h4 { color: var(--blue); }
.footer-nl h4 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; margin-bottom: 6px; }
.footer-nl p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-input-wrap { flex: 1; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 10px 14px; }
.nl-input-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Nunito',sans-serif; width: 100%; }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Nunito',sans-serif; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }


/* ===== faq.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000;  --blue: #423EFF;  --dark-blue: #131052;
  --lemon: #B3FF00;  --pink: #FF00D6;  --red: #FF2A57;
  --orange: #FF6723; --bg: #0A0A0A;   --navy: #0D0B35;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #fff; font-family: 'Nunito', sans-serif; min-width: 1440px; overflow-x: hidden; }

/* NAV */
nav { background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 13px 76px; position: sticky; top: 0; z-index: 200; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.nav-links { display: flex; gap: 2px; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); padding: 5px; border-radius: 7px; }
.nav-links a { display: flex; align-items: center; padding: 7px 14px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; transition: all .2s; }
.nav-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-links a.active { color: #fff; position: relative; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -5px; left: 14px; right: 14px; height: 2px; background: var(--orange); border-radius: 1px; }
.nav-cta { background: var(--dark-blue); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; padding: 10px 18px; border-radius: 6px; text-decoration: none; white-space: nowrap; letter-spacing: 0.3px; }

/* HERO */
.faq-hero {
  background: var(--navy);
  padding: 80px 76px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-hero-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.faq-hero-title .line1 { color: #fff; display: block; }
.faq-hero-title .line2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  display: block;
  font-size: 68px;
  letter-spacing: -2px;
}
.faq-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 22px;
}

/* FAQ BODY */
.faq-body {
  background: var(--bg);
  padding: 64px 76px 80px;
}
.faq-body-inner {
  max-width: 520px;
  margin: 0 auto;
}

/* Search */
.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 28px;
}
.faq-search svg { width: 18px; height: 18px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.faq-search input {
  background: none; border: none; outline: none;
  color: #fff; font-size: 14px; font-family: 'Nunito', sans-serif;
  width: 100%;
}
.faq-search input::placeholder { color: rgba(255,255,255,0.3); }

/* Accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(19,16,82,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-item.open { border-color: rgba(255,255,255,0.15); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 16px;
}
.faq-q-text {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.3px;
}
.faq-chevron {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  transition: transform .25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 13px;
  line-height: 21px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin: 0 24px;
  padding-left: 0; padding-right: 0;
}

/* colour wave */
.colour-wave {
  width: 100%; height: 80px;
  overflow: hidden; position: relative;
  background: var(--bg);
}

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 56px 76px 32px; max-width: 1440px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 260px 140px 140px 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-brand p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.38); margin-top: 14px; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-connect h4 { color: var(--blue); }
.footer-nl h4 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; margin-bottom: 6px; }
.footer-nl p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-input-wrap {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 10px 14px;
}
.nl-input-wrap svg { width: 16px; height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.nl-input-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Nunito',sans-serif; width: 100%; }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Nunito',sans-serif; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }

/* chat bubble */
.chat-fab { position: fixed; bottom: 32px; right: 32px; width: 52px; height: 52px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: 0 4px 20px rgba(255,103,35,0.4); }


/* ===== expo.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000;
  --blue: #423EFF;
  --dark-blue: #131052;
  --lemon: #B3FF00;
  --pink: #FF00D6;
  --red: #FF2A57;
  --orange: #FF6723;
  --bg: #0A0A0A;
  --text-muted: #C4C9AC;
  --text-light: #E2E4CF;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  min-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  background: var(--bg);
  border-bottom: 0.833px solid rgba(255,255,255,0.10);
  padding: 16px 76px;
  position: sticky;
  top: 0;
  z-index: 100;
  min-width: 1440px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { height: 28px; display: flex; align-items: center; }
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 5px;
  border-radius: 6px;
}
.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.08); color: #fff; }
.nav-cta {
  background: var(--dark-blue);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-width: 1440px;
  min-height: 620px;
  background: var(--bg);
  overflow: hidden;
  padding: 80px 76px 0;
}
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 9px 9px;
  pointer-events: none;
  z-index: 0;
}
.dot-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 20%, var(--bg) 80%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 1280px;
}
.hero-left {}
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 76px;
  line-height: 0.92;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title span {
  background: linear-gradient(to right, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; align-items: center; }
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  transition: opacity .2s;
}
.btn-blue:hover { opacity: 0.88; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  transition: border-color .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); }
.hero-right { position: relative; padding-top: 10px; }
/* swirl top-right */
.hero-swirl-tr {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0.8;
}
/* swirl bottom-left */
.hero-swirl-bl {
  position: absolute;
  bottom: 40px;
  left: -60px;
  width: 60px;
  height: 60px;
  pointer-events: none;
  opacity: 0.7;
}
.hero-img-card {
  border: 1.5px solid rgba(255,176,0,0.4);
  border-radius: 12px;
  overflow: hidden;
  background: #1a1235;
}
.hero-img-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ─── AGENDA SECTION ─── */
.agenda-section {
  padding: 96px 76px;
  background: var(--bg);
}
.agenda-inner { max-width: 1288px; margin: 0 auto; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 12px;
}
.section-heading .accent { color: var(--yellow); }
.section-subtext {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 22px;
  margin-bottom: 56px;
}

/* Agenda bento grid */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

.agenda-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
.agenda-card:hover { border-color: rgba(255,255,255,0.16); }

.agenda-card.lemon-bg {
  background: var(--lemon);
  border-color: var(--lemon);
  color: #0a0a0a;
}
.agenda-card.yellow-bg {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
}

/* layout spans */
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}
.agenda-card.lemon-bg .card-icon { background: rgba(0,0,0,0.12); }
.agenda-card.yellow-bg .card-icon { background: rgba(0,0,0,0.12); }

.card-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.agenda-card.lemon-bg .card-title,
.agenda-card.yellow-bg .card-title { color: #0a0a0a; }

.card-desc {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255,255,255,0.55);
}
.agenda-card.lemon-bg .card-desc,
.agenda-card.yellow-bg .card-desc { color: rgba(0,0,0,0.65); }

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}
.agenda-card.lemon-bg .card-tag { border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.6); }
.agenda-card.yellow-bg .card-tag { border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.6); }

.card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  opacity: 0.4;
}
.agenda-card.lemon-bg .card-arrow,
.agenda-card.yellow-bg .card-arrow { opacity: 0.5; color: #000; }

/* Right column network grid */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 100%;
}
.network-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  padding: 20px;
  text-align: center;
  min-height: 72px;
}
.nc-ghost { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.4); }
.nc-dark { background: rgba(19,16,82,0.6); border: 1px solid rgba(66,62,255,0.2); color: rgba(255,255,255,0.7); }
.nc-green { background: var(--dark-blue); border: 1px solid var(--blue); color: #fff; }
.nc-purple { background: rgba(66,62,255,0.15); border: 1px solid rgba(66,62,255,0.3); color: rgba(255,255,255,0.8); }
.nc-yellow { background: var(--yellow); color: #000; font-weight: 800; }
.nc-orange { background: var(--orange); color: #000; font-weight: 800; }

/* ─── TIMELINE SECTION ─── */
.timeline-section {
  background: var(--dark-blue);
  padding: 96px 76px;
}
.timeline-inner { max-width: 1288px; margin: 0 auto; }
.timeline-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.timeline-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.5px;
  color: #fff;
}
.timeline-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tab-pill {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .2s;
}
.tab-pill.active-tab { background: var(--yellow); color: #000; }
.tab-pill.ghost-tab { background: transparent; border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }
.tab-pill.ghost-tab:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.timeline-list { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.timeline-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.tl-time {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tl-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.tl-clock {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.tl-content {}
.tl-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255,255,255,0.45);
  max-width: 680px;
}
.tl-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.badge-lemon { background: var(--lemon); color: #000; }
.badge-yellow { background: var(--yellow); color: #000; }
.badge-orange { background: var(--orange); color: #000; }
.badge-pink { background: var(--pink); color: #000; }
.badge-blue { background: var(--blue); color: #fff; }

/* ─── TIME FRAME SECTION ─── */
.timeframe-section {
  background: var(--bg);
  padding: 100px 76px;
  position: relative;
  overflow: hidden;
}
.tf-inner {
  max-width: 1288px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tf-swirl-left {
  position: absolute;
  left: 60px;
  top: 80px;
  opacity: 0.7;
  width: 56px;
  height: 56px;
}
.tf-swirl-right {
  position: absolute;
  right: 80px;
  top: 60px;
  opacity: 0.7;
  width: 70px;
  height: 50px;
}
.tf-heading {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -2px;
  text-align: center;
}
.tf-heading .white { color: #fff; }
.tf-heading .yellow { color: var(--yellow); }
.tf-subtext {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: 480px;
  line-height: 22px;
}
.tf-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lemon);
  letter-spacing: -0.3px;
  margin: 8px 0;
}
.tf-date-pill svg { width: 18px; height: 18px; }
.tf-ticket-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.tf-ticket-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--orange); flex-shrink: 0; }
.tf-ticket-text {
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(to right, var(--yellow), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

/* ─── MENTORS SECTION ─── */
.mentors-section {
  background: var(--bg);
  padding: 0 76px 96px;
}
.mentors-inner { max-width: 1288px; margin: 0 auto; }
.mentors-heading {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}
.mentors-subtext {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 22px;
}
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mentor-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a1a2a;
}
.mentor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
}
.mentor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.mentor-name {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.3px;
}
.mentor-title {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ─── INNOVATION ZONES ─── */
.zones-section {
  background: var(--bg);
  padding: 96px 76px;
}
.zones-inner { max-width: 1288px; margin: 0 auto; }
.zones-heading {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 8px;
}
.zones-heading .accent { color: var(--red); }
.zones-subtext {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.zone-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px;
  transition: border-color .2s;
}
.zone-card:hover { border-color: rgba(255,255,255,0.16); }
.zone-card.span-6 { grid-column: span 6; }
.zone-card.span-12 { grid-column: span 12; }
.zone-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.zi-yellow { background: rgba(255,176,0,0.15); }
.zi-lemon { background: rgba(179,255,0,0.15); }
.zi-blue { background: rgba(66,62,255,0.15); }
.zi-pink { background: rgba(255,0,214,0.12); }
.zi-orange { background: rgba(255,103,35,0.15); }
.zone-title {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.4px;
  color: #fff;
  margin-bottom: 10px;
}
.zone-desc {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.zone-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.zone-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}
.zone-card.big-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  grid-column: span 6;
  grid-row: span 2;
  border: 1px dashed rgba(255,255,255,0.1);
  background: rgba(66,62,255,0.05);
}
.zone-placeholder-icon { font-size: 48px; opacity: 0.15; }

/* ─── FINAL CTA ─── */
.cta-section {
  background: var(--bg);
  padding: 0 76px 96px;
}
.cta-inner { max-width: 1288px; margin: 0 auto; }
.cta-card {
  background: var(--dark-blue);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(66,62,255,0.2);
  filter: blur(70px);
  pointer-events: none;
}
.cta-card h2 {
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.cta-card h2 span { color: var(--yellow); }
.cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 24px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; }
.cta-btn-green {
  background: var(--lemon);
  color: #000;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: opacity .2s;
}
.cta-btn-green:hover { opacity: 0.88; }
.cta-btn-outline2 {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: border-color .2s;
}
.cta-btn-outline2:hover { border-color: rgba(255,255,255,0.4); }
.cta-footnote { font-size: 12px; color: rgba(255,255,255,0.3); }
.cta-footnote a { color: var(--yellow); text-decoration: none; }


/* ===== signup.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000; --blue: #423EFF; --dark-blue: #131052;
  --lemon: #B3FF00; --pink: #FF00D6; --red: #FF2A57;
  --orange: #FF6723; --bg: #0A0A0A; --navy: #0D0B35;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #fff; font-family: 'Nunito', sans-serif; min-width: 1440px; overflow-x: hidden; }

/* ── NAV ── */
nav {
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 13px 76px;
  position: sticky; top: 0; z-index: 200;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.nav-links {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 5px; border-radius: 7px;
}
.nav-links a {
  display: flex; align-items: center; padding: 7px 15px; border-radius: 5px;
  text-decoration: none; font-weight: 700; font-size: 11px;
  color: rgba(255,255,255,0.65); letter-spacing: 0.4px; text-transform: uppercase;
  white-space: nowrap; transition: all .2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-cta {
  background: var(--dark-blue); color: #fff; font-weight: 800; font-size: 11px;
  text-transform: uppercase; padding: 10px 18px; border-radius: 6px;
  text-decoration: none; letter-spacing: 0.3px;
}

/* ── HERO BANNER ── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
}
/* Full-bleed background image placeholder */
.hero-bg {
  position: absolute; inset: 0;
  background: #1a1235;
  /* Replace with: background-image: url('your-conference-photo.jpg'); background-size: cover; background-position: center; */
  background-image: url('https://www.figma.com/api/mcp/asset/611ccf65-d1bc-4418-803b-9ae382aafd7d');
  background-size: cover;
  background-position: center top;
}
/* Dark gradient overlay bottom-to-top */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero-text {
  position: relative; z-index: 1;
  width: 100%;
  text-align: center;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: #fff;
}

/* ── FORM SECTION ── */
.form-section {
  background: var(--bg);
  padding: 60px 76px 80px;
}
.form-card {
  max-width: 400px;
  margin: 0 auto;
}
.form-title {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 28px;
}

/* Grid rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
}

/* Input styles */
.form-input,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus { border-color: rgba(255,255,255,0.32); }

/* Phone row */
.phone-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: border-color .2s;
}
.phone-row:focus-within { border-color: rgba(255,255,255,0.32); }
.phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.phone-flag .flag-emoji { font-size: 16px; }
.phone-flag .chevron { font-size: 10px; opacity: 0.8; }
.phone-flag .code { letter-spacing: 0.3px; }
.phone-row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
}
.phone-row input::placeholder { color: rgba(255,255,255,0.28); }

/* Password row */
.password-wrap {
  position: relative;
}
.password-wrap .form-input { padding-right: 44px; }
.pw-toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  cursor: pointer; color: rgba(255,255,255,0.4);
  font-size: 14px; padding: 4px;
  display: flex; align-items: center;
}
.pw-toggle:hover { color: rgba(255,255,255,0.7); }

/* Password hint */
.pw-hint {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  line-height: 16px;
  color: var(--orange);
}
.pw-hint svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }

/* Create Account button */
.btn-create {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  letter-spacing: -0.3px;
  margin-top: 24px;
  transition: opacity .2s;
}
.btn-create:hover { opacity: 0.88; }

/* OR divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.or-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

/* Social login buttons */
.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.btn-social:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.btn-social .provider-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Login link */
.login-prompt {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.login-prompt a { color: var(--orange); text-decoration: none; font-weight: 700; }
.login-prompt a:hover { text-decoration: underline; }

/* ── COLOUR WAVE ── */
.colour-wave { width: 100%; height: 80px; overflow: hidden; background: var(--bg); }
.colour-wave svg { display: block; width: 100%; height: 100%; }

/* ── FOOTER ── */
footer { background: var(--dark-blue); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 56px 76px 32px; max-width: 1440px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 260px 140px 140px 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-brand p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.38); margin-top: 14px; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-connect h4 { color: var(--blue); }
.footer-nl h4 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; margin-bottom: 6px; }
.footer-nl p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-input-wrap {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 10px 14px;
}
.nl-input-wrap svg { width: 16px; height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.nl-input-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Nunito', sans-serif; width: 100%; }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }


/* ===== contact.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000; --blue: #423EFF; --dark-blue: #131052;
  --lemon: #B3FF00; --pink: #FF00D6; --red: #FF2A57;
  --orange: #FF6723; --bg: #0A0A0A; --navy: #0D0B35;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #fff; font-family: 'Nunito', sans-serif; min-width: 1440px; overflow-x: hidden; }

/* NAV */
nav { background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 13px 76px; position: sticky; top: 0; z-index: 200; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.nav-links { display: flex; gap: 2px; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); padding: 5px; border-radius: 7px; }
.nav-links a { display: flex; align-items: center; padding: 7px 14px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; transition: all .2s; }
.nav-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-links a.active { color: #fff; border-bottom: 2px solid var(--orange); border-radius: 0; padding-bottom: 5px; }
.nav-cta { background: var(--dark-blue); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; padding: 10px 18px; border-radius: 6px; text-decoration: none; letter-spacing: 0.3px; }

/* HERO */
.contact-hero {
  background: var(--navy);
  padding: 80px 76px 90px;
  text-align: center;
}
.contact-hero-title {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.contact-hero-title .white { color: #fff; }
.contact-hero-title .italic-orange {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}
.contact-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 22px;
}

/* FORM SECTION */
.contact-form-section {
  background: var(--bg);
  padding: 80px 76px 96px;
}
.contact-form-inner {
  max-width: 800px;
  margin: 0 auto;
}
.form-section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}
.form-section-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 22px;
  max-width: 560px;
  margin: 0 auto 52px;
}

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(255,255,255,0.3); }
.form-select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: #1a1a2e; }
.form-textarea { resize: vertical; min-height: 140px; line-height: 22px; }

/* Checkbox */
.form-checkbox-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.form-checkbox {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  position: relative;
  transition: border-color .2s;
}
.form-checkbox:checked { background: var(--orange); border-color: var(--orange); }
.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 6px; height: 10px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.checkbox-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.checkbox-label a { color: var(--yellow); text-decoration: none; }

/* Submit */
.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  letter-spacing: -0.3px;
  transition: opacity .2s;
}
.submit-btn:hover { opacity: 0.88; }

/* colour wave */
.colour-wave {
  width: 100%; height: 80px;
  overflow: hidden; position: relative;
  background: var(--bg);
}

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 56px 76px 32px; max-width: 1440px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 260px 140px 140px 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-brand p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.38); margin-top: 14px; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-connect h4 { color: var(--blue); }
.footer-nl h4 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; margin-bottom: 6px; }
.footer-nl p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-input-wrap { flex: 1; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 10px 14px; }
.nl-input-wrap svg { width: 16px; height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.nl-input-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Nunito',sans-serif; width: 100%; }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Nunito',sans-serif; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }

.chat-fab { position: fixed; bottom: 32px; right: 32px; width: 52px; height: 52px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: 0 4px 20px rgba(255,103,35,0.4); }


/* ===== privacy.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000; --blue: #423EFF; --dark-blue: #131052;
  --lemon: #B3FF00; --orange: #FF6723; --bg: #0A0A0A; --navy: #0D0B35;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #fff; font-family: 'Nunito', sans-serif; min-width: 1440px; overflow-x: hidden; }

/* NAV */
nav { background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 13px 76px; position: sticky; top: 0; z-index: 200; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.nav-links { display: flex; gap: 2px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); padding: 5px; border-radius: 7px; }
.nav-links a { display: flex; align-items: center; padding: 7px 15px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; transition: all .2s; }
.nav-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-cta { background: var(--dark-blue); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; padding: 10px 18px; border-radius: 6px; text-decoration: none; letter-spacing: 0.3px; }

/* HERO */
.legal-hero {
  background: var(--navy);
  padding: 88px 76px 100px;
  text-align: center;
}
.legal-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 24px;
}
.legal-title .white { color: #fff; }
.legal-title .italic-orange {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}
.legal-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 460px;
  margin: 0 auto;
  line-height: 22px;
}

/* CONTENT SECTION */
.legal-body {
  background: var(--bg);
  padding: 60px 76px 80px;
}
.legal-body-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Tab switcher */
.tab-bar {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.03);
  transition: all .2s;
  white-space: nowrap;
  border: none; cursor: pointer; font-family: 'Nunito', sans-serif;
}
.tab-btn:hover { color: #fff; background: rgba(255,255,255,0.07); }
.tab-btn.active { background: rgba(19,16,82,0.9); color: #fff; border-right: 1px solid rgba(255,255,255,0.1); }
.tab-btn:last-child.active { border-right: none; border-left: 1px solid rgba(255,255,255,0.1); }

/* Legal prose */
.legal-content h2 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 13px;
  line-height: 22px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}
.legal-content ul li {
  font-size: 13px;
  line-height: 22px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}

/* WAVE */
.colour-wave { width: 100%; height: 80px; overflow: hidden; background: var(--bg); }
.colour-wave svg { display: block; width: 100%; height: 100%; }

/* FOOTER */
footer { background: var(--dark-blue); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 56px 76px 32px; max-width: 1440px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 260px 140px 140px 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-brand p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.38); margin-top: 14px; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-connect h4 { color: var(--blue); }
.footer-nl h4 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; margin-bottom: 6px; }
.footer-nl p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-input-wrap { flex: 1; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 10px 14px; }
.nl-input-wrap svg { width: 16px; height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.nl-input-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Nunito', sans-serif; width: 100%; }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }


/* ===== participate.html ===== */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFB000; --blue: #423EFF; --dark-blue: #131052;
  --lemon: #B3FF00; --pink: #FF00D6; --red: #FF2A57;
  --orange: #FF6723; --bg: #0A0A0A; --navy: #0D0B35;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: #fff; font-family: 'Nunito', sans-serif; min-width: 1440px; overflow-x: hidden; }

/* NAV */
nav { background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 13px 76px; position: sticky; top: 0; z-index: 200; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.nav-links { display: flex; gap: 2px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); padding: 5px; border-radius: 7px; }
.nav-links a { display: flex; align-items: center; padding: 7px 14px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; transition: all .2s; }
.nav-links a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-links a.active { color: #fff; border-bottom: 2px solid var(--yellow); border-radius: 0; padding-bottom: 5px; }
.nav-cta { background: var(--blue); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; padding: 10px 18px; border-radius: 6px; text-decoration: none; letter-spacing: 0.3px; }

/* ─── HERO ─── */
.participate-hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 80px 76px 0;
  min-height: 680px;
}
.dot-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.13) 1.5px, transparent 1.5px); background-size: 9px 9px; pointer-events: none; z-index: 0; }
.dot-grid::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 15%, rgba(10,10,10,0.88) 75%); }
/* dark oval glow */
.hero-oval { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-52%); width: 680px; height: 380px; border-radius: 50%; background: radial-gradient(ellipse, rgba(30,20,70,0.85) 0%, transparent 70%); pointer-events: none; z-index: 0; }

.hero-text-area { position: relative; z-index: 1; text-align: center; }
.hero-mega-title {
  font-weight: 900;
  font-size: 86px;
  line-height: 0.88;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #fff;
}
.hero-mega-title .future { color: var(--orange); }
.hero-sub {
  font-size: 14px; color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto 30px; line-height: 22px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; margin-bottom: 48px; }
.btn-orange { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 13px 24px; border-radius: 6px; font-weight: 800; font-size: 13px; text-decoration: none; letter-spacing: -0.3px; text-transform: uppercase; transition: opacity .2s; }
.btn-orange:hover { opacity: 0.88; }
.btn-ghost-white { display: inline-flex; align-items: center; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); padding: 13px 22px; border-radius: 6px; font-weight: 700; font-size: 13px; text-decoration: none; letter-spacing: -0.3px; text-transform: uppercase; transition: border-color .2s; }
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); }

/* hero image */
.hero-img-wrap {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  border: 1.5px solid rgba(255,176,0,0.3);
  border-radius: 12px; overflow: hidden;
  background: #1a1235;
}
.hero-img-wrap img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

/* decorative elements */
.swirl-left { position: absolute; left: 56px; bottom: 120px; z-index: 2; opacity: 0.65; }
.swirl-right { position: absolute; right: 60px; top: 70px; z-index: 2; opacity: 0.75; }
.arrow-top { position: absolute; right: 200px; top: 60px; z-index: 2; opacity: 0.65; }
/* yellow stripe bottom right */
.stripe-br { position: absolute; bottom: 16px; right: 80px; z-index: 2; opacity: 0.5; }

/* ─── PARTICIPATE CARDS ─── */
.participate-section { background: var(--navy); padding: 80px 76px; }
.participate-inner { max-width: 1288px; margin: 0 auto; }
.participate-title { font-size: 32px; font-weight: 800; letter-spacing: -1.2px; color: #fff; margin-bottom: 40px; }
.participate-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.part-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color .2s;
}
.part-card:hover { border-color: rgba(255,255,255,0.15); }
.part-card.featured-card {
  background: rgba(66,62,255,0.12);
  border-color: rgba(66,62,255,0.3);
}
.part-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.pi-blue { background: rgba(66,62,255,0.2); }
.pi-yellow { background: rgba(255,176,0,0.15); }
.pi-purple { background: rgba(120,60,200,0.2); }
.part-title { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: #fff; margin-bottom: 8px; }
.part-desc { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.part-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.part-perks li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.perk-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pk-green { background: rgba(0,222,124,0.15); }
.pk-green svg path { stroke: #00DE7C; }
.pk-star { color: var(--pink); font-size: 14px; }
.part-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px; border-radius: 7px; border: none; cursor: pointer;
  font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  font-family: 'Nunito',sans-serif; text-decoration: none; transition: opacity .2s;
}
.part-btn:hover { opacity: 0.88; }
.pb-lemon { background: var(--lemon); color: #000; }
.pb-orange { background: var(--orange); color: #fff; }
.pb-pink { background: var(--pink); color: #fff; }

/* ─── CTA ─── */
.cta-wrap { padding: 80px 76px 96px; max-width: 1440px; margin: 0 auto; }
.cta-card { background: var(--dark-blue); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 80px 48px; text-align: center; position: relative; overflow: hidden; max-width: 1100px; margin: 0 auto; }
.cta-orb { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; border-radius: 50%; background: rgba(66,62,255,0.18); filter: blur(80px); pointer-events: none; }
.cta-card h2 { font-weight: 800; font-size: 44px; letter-spacing: -1.5px; margin-bottom: 18px; }
.cta-card h2 .acc { color: var(--lemon); }
.cta-card > p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 40px; line-height: 24px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; margin-bottom: 18px; }
.btn-lemon { background: var(--lemon); color: #000; padding: 14px 32px; border-radius: 7px; font-weight: 800; font-size: 14px; text-decoration: none; transition: opacity .2s; }
.btn-lemon:hover { opacity: 0.88; }
.btn-outline-w { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 14px 32px; border-radius: 7px; font-weight: 700; font-size: 14px; text-decoration: none; transition: border-color .2s; }
.btn-outline-w:hover { border-color: rgba(255,255,255,0.5); }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.3); }
.cta-note a { color: var(--yellow); text-decoration: none; }

/* colour wave */
.colour-wave { width: 100%; height: 80px; overflow: hidden; position: relative; background: var(--bg); }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 56px 76px 32px; max-width: 1440px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 260px 140px 140px 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-brand p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.38); margin-top: 14px; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-connect h4 { color: var(--blue); }
.footer-nl h4 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0; text-transform: none; margin-bottom: 6px; }
.footer-nl p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 18px; }
.nl-form { display: flex; gap: 8px; }
.nl-input-wrap { flex: 1; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 10px 14px; }
.nl-input-wrap svg { width: 16px; height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.nl-input-wrap input { background: none; border: none; outline: none; color: #fff; font-size: 13px; font-family: 'Nunito',sans-serif; width: 100%; }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Nunito',sans-serif; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }

.chat-fab { position: fixed; bottom: 32px; right: 32px; width: 52px; height: 52px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: 0 4px 20px rgba(255,103,35,0.4); }


/* ===== index(1).html ===== */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --yellow: #FFB000;
    --blue: #423EFF;
    --dark-blue: #131052;
    --lemon: #B3FF00;
    --pink: #FF00D6;
    --red: #FF2A57;
    --orange: #FF6723;
    --bg: #0A0A0A;
    --text-muted: #C4C9AC;
    --text-light: #E2E4CF;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    min-width: 1440px;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    background: var(--bg);
    border-bottom: 0.833px solid rgba(255,255,255,0.10);
    padding: 16px 76.25px 16.833px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-inner {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-logo {
    height: 30.91px;
    width: 77.72px;
    display: flex;
    align-items: center;
  }

  .nav-logo svg { width: 100%; height: 100%; }

  .nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 4.833px;
    border-radius: 6px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .nav-links a:hover { background: rgba(255,255,255,0.08); }

  .nav-cta {
    background: var(--dark-blue);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* ─── HERO SECTION ─── */
  .hero-section {
    position: relative;
    width: 1440px;
    height: 1020px;
    overflow: hidden;
    background: var(--bg);
  }

  /* Dot grid background */
  .dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.25) 1.5px, transparent 1.5px);
    background-size: 9px 9px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 0;
  }

  /* Fade dot grid at edges */
  .dot-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, var(--bg) 100%);
  }

  .hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 82px 76.25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 896px;
    opacity: 0.97;
  }

  /* Badge */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7.99px;
    background: rgba(80,102,0,0.10);
    border: 1px solid rgba(80,102,0,0.20);
    padding: 4.833px 12.833px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(80,102,0,0.05);
    margin-bottom: 4px;
  }

  .hero-badge-icon {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
  }

  .hero-badge-text {
    font-size: 14px;
    color: var(--yellow);
    letter-spacing: -0.4px;
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .hero-badge-text span::before { content: ' • '; color: rgba(255,176,0,0.5); }
  .hero-badge-text span:first-child::before { content: ''; }

  /* Heading */
  .hero-heading-wrapper {
    position: relative;
    width: 798px;
    height: 182px;
  }

  .hero-heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 13.33px;
    text-align: center;
    white-space: nowrap;
    line-height: 0;
  }

  .hero-heading p {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -6px;
    display: block;
  }

  .hero-heading .line1 { color: #fff; }

  .hero-heading .line2 {
    background: linear-gradient(to right, var(--yellow), #FF2E56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Floating laptop icon near heading */
  .laptop-icon-left {
    position: absolute;
    left: -13px;
    top: 72.33px;
    width: 76.6px;
    height: 76.6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .laptop-icon-left img {
    width: 57px;
    height: 57px;
    opacity: 0.6;
    transform: rotate(-26.86deg);
  }

  /* Swirl decoration top-right */
  .hero-swirl {
    position: absolute;
    right: 76px;
    top: 100px;
    width: 99px;
    height: 113px;
    pointer-events: none;
  }

  .hero-swirl img { width: 100%; height: 100%; }

  /* Laptop icon right side */
  .laptop-icon-right {
    position: absolute;
    right: 76px;
    top: 380px;
    width: 76.6px;
    height: 76.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .laptop-icon-right img {
    width: 57px;
    height: 57px;
    opacity: 0.6;
    transform: rotate(-26.86deg);
  }

  /* Hero subtext */
  .hero-subtext {
    max-width: 672px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    letter-spacing: -0.8px;
    line-height: 19px;
    padding-bottom: 24px;
  }

  /* CTA buttons */
  .hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    text-decoration: none;
    filter: drop-shadow(0 4px 10px rgba(0,0,60,0.15));
    transition: opacity 0.2s;
  }
  .btn-primary:hover { opacity: 0.9; }

  .btn-primary .arrow-icon {
    width: 14px;
    height: 14px;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,60,0.05);
    border: 1px solid rgba(0,0,60,0.10);
    color: #fff;
    padding: 15px 24.833px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.06); }

  /* Location */
  .hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
  }

  .hero-location svg { width: 24px; height: 24px; color: var(--lemon); }

  .hero-location-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--lemon);
    letter-spacing: -0.8px;
  }

  /* Countdown */
  .hero-countdown {
    display: flex;
    gap: 44px;
    align-items: center;
    color: #fff;
  }

  .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .countdown-unit .number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
  }

  .countdown-unit .label {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    margin-top: 4px;
  }

  /* Ticket line */
  .hero-ticket {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
  }

  .hero-ticket img { width: 24px; height: 24px; }

  .hero-ticket-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.8px;
    background: linear-gradient(to right, var(--yellow), #FF2E56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Preview image card */
  .hero-image-card {
    backdrop-filter: blur(6px);
    background: var(--dark-blue);
    border: 1px solid var(--yellow);
    border-radius: 12px;
    box-shadow: 0 15px 15px rgba(0,0,30,0.05);
    max-width: 1024px;
    width: 1024px;
    padding: 25px;
    flex-shrink: 0;
  }

  .hero-image-card img {
    width: 100%;
    border-radius: 4px;
    display: block;
    aspect-ratio: 1376/768;
    object-fit: cover;
  }

  /* ─── PHOTO GALLERY ROW ─── */
  .gallery-section {
    background: var(--bg);
    padding: 80px 0;
  }

  .gallery-heading-row {
    max-width: 1280px;
    margin: 0 auto 48px;
    padding: 0 76.25px;
  }

  .gallery-heading-row h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.96px;
    color: var(--text-light);
    text-align: center;
  }

  .gallery-heading-row h2 span {
    background: linear-gradient(to right, var(--yellow), #FF2E56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .gallery-row {
    display: flex;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 76.25px;
  }

  .gallery-card {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 262px;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .gallery-card img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    position: absolute;
    top: -20%;
    left: 0;
  }

  .gallery-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,20,0.7) 0%, transparent 60%);
  }

  .gallery-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
  }

  /* ─── KEY HIGHLIGHTS ─── */
  .highlights-section {
    background: var(--dark-blue);
    padding: 96px 48px;
  }

  .highlights-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .section-title {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.96px;
    color: var(--text-light);
  }

  .section-title span {
    background: linear-gradient(to right, var(--yellow), #FF2E56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 258px 258px;
    gap: 24px;
  }

  .highlight-card {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    overflow: hidden;
  }

  .highlight-card.col-8 { grid-column: span 8; display: flex; gap: 32px; padding: 33px; align-items: center; }
  .highlight-card.col-4-yellow { grid-column: span 4; display: flex; flex-direction: column; justify-content: center; padding: 52.5px 32.5px 52.5px 34px; border-left: 4px solid var(--yellow); border-radius: 8px; }
  .highlight-card.col-4-pink { grid-column: span 4; display: flex; flex-direction: column; justify-content: center; padding: 52.5px 32.5px 52.5px 34px; border-left: 4px solid var(--pink); border-radius: 8px; }
  .highlight-card.col-8-b { grid-column: span 8; display: flex; gap: 32px; padding: 33px; align-items: center; }

  .highlight-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }

  .highlight-title {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
  }

  .highlight-title.lemon { color: var(--lemon); }
  .highlight-title.cream { color: var(--text-light); }
  .highlight-title.yellow { color: var(--yellow); }

  .highlight-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 24px;
  }

  .highlight-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .highlight-image {
    flex: 1;
    height: 192px;
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
    position: relative;
  }

  .highlight-image img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    position: absolute;
    top: -25%;
  }

  .highlight-image.desaturated img {
    filter: saturate(0);
  }

  /* ─── IMPACT NUMBERS ─── */
  .impact-section {
    background: var(--bg);
    padding: 80px 48px;
  }

  .impact-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .impact-heading {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -0.96px;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .impact-heading span {
    background: linear-gradient(to right, var(--yellow), #FF2E56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .impact-subtext {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    margin-bottom: 64px;
  }

  .impact-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1024px;
    margin: 0 auto;
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .impact-stat .number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    color: #fff;
    letter-spacing: -2px;
  }

  .impact-stat .label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    text-align: center;
  }

  /* ─── MISSION SECTION ─── */
  .mission-section {
    background: var(--bg);
    padding: 96px 80px;
  }

  .mission-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 0 128px;
  }

  .mission-text h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -0.96px;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
  }

  .mission-text h2 span {
    background: linear-gradient(to right, var(--yellow), #FF2E56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .mission-text p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
  }

  .mission-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: -0.4px;
    transition: opacity 0.2s;
  }
  .mission-link:hover { opacity: 0.8; }
  .mission-link svg { width: 16px; height: 16px; }

  .mission-image {
    position: relative;
  }

  .mission-image-glow {
    position: absolute;
    inset: -16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,176,0,0.15), rgba(66,62,255,0.15));
    filter: blur(16px);
    z-index: 0;
  }

  .mission-image-card {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,60,0.3);
  }

  .mission-image-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  /* ─── PARTNERS ─── */
  .partners-section {
    background: var(--bg);
    padding: 80px 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .partners-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 128px;
  }

  .partners-heading {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .partners-subtext {
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }

  .partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }

  .partner-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgba(255,255,255,0.35);
    letter-spacing: -0.5px;
    transition: color 0.2s;
    text-decoration: none;
  }
  .partner-logo:hover { color: rgba(255,255,255,0.7); }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section {
    background: var(--bg);
    padding: 80px 0;
    overflow: hidden;
  }

  .testimonials-heading-row {
    max-width: 1280px;
    margin: 0 auto 48px;
    padding: 0 76.25px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .testimonials-heading-row h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.96px;
    color: #fff;
    white-space: nowrap;
  }

  .niec-logo-inline {
    height: 40px;
    display: flex;
    align-items: center;
  }

  .testimonials-scroll {
    display: flex;
    gap: 24px;
    padding: 0 76.25px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 1440px;
    margin: 0 auto;
  }
  .testimonials-scroll::-webkit-scrollbar { display: none; }

  .testimonial-card {
    flex-shrink: 0;
    width: 340px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
  }

  .testimonial-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .testimonial-role {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 22px;
    color: rgba(255,255,255,0.75);
  }

  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 14px;
  }

  /* ─── FINAL CTA ─── */
  .cta-section {
    background: var(--bg);
    padding: 96px 80px;
  }

  .cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }

  .cta-card {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(19,16,82,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 77px 128px 72px;
    text-align: center;
    overflow: hidden;
  }

  /* Glow orb behind CTA */
  .cta-orb {
    position: absolute;
    top: -127px;
    left: 50%;
    transform: translateX(-50%);
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: rgba(66,62,255,0.25);
    filter: blur(60px);
    pointer-events: none;
  }

  .cta-card h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 24px;
  }

  .cta-card h2 span {
    background: linear-gradient(to right, var(--yellow), #FF2E56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cta-card p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 672px;
    margin: 0 auto 48px;
  }

  .cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
  }

  .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .cta-btn-primary:hover { opacity: 0.9; }

  .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .cta-btn-secondary:hover { background: rgba(255,255,255,0.08); }

  .cta-link {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .cta-link:hover { color: rgba(255,255,255,0.8); }
  .cta-link span { color: var(--yellow); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark-blue);
    padding: 64px 76.25px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo-col .tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    max-width: 240px;
    line-height: 1.6;
  }

  .footer-links-cols {
    display: flex;
    gap: 64px;
  }

  .footer-links-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }

  .footer-links-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .footer-links-col a:hover { color: #fff; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  .footer-socials {
    display: flex;
    gap: 16px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
  }
  .footer-socials a:hover { background: rgba(255,255,255,0.1); color: #fff; }



/* ===== Shared Footer ===== */
footer{
  width:100% !important;
  margin-top:auto;
}
.footer-inner{
  width:100%;
  max-width:1440px;
  margin:0 auto;
}
@media (max-width: 1440px){
  body{
    width:100% !important;
    min-width:0 !important;
  }
  nav,.hero,.hero-section,.contact-hero,.faq-hero,.legal-hero,
  .participate-hero,.partner-hero{
    width:100% !important;
    min-width:0 !important;
  }
  footer,.footer-inner{
    width:100% !important;
    max-width:100% !important;
  }
}


/* ===== FULL WIDTH FOOTER FIX ===== */
footer{
    width:100vw !important;
    max-width:none !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    left:auto !important;
    right:auto !important;
}

footer *{
    box-sizing:border-box;
}

.footer,
.footer-container,
.footer-inner{
    width:100% !important;
    max-width:none !important;
}

body{
    overflow-x:hidden;
}
