@font-face {
  font-family: ChunkPrint;
  src: url("fonts/Chunk Five Print.ttf");
}

@font-face {
  font-family: Montserrat;
  src: url("fonts/Montserrat-VariableFont_wght.ttf");
}

@font-face {
  font-family: Heathergreen;
  src: url("fonts/Heathergreen.otf");
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  color: white;
  font-family: Montserrat, sans-serif;
  padding-top: 76px;
  background: url("logos/bg.jpg") center top / 120% no-repeat fixed;
}

/* HEADER / NAV */
.site-header {
  height: 76px;
  width: 100%;
  background: rgba(2, 11, 24, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logos img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  letter-spacing: 3px;
  font-size: 0.95rem;
  font-weight: 900;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #28c64d;
}

.main-nav a.active {
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #28c64d;
}

/* HOME HERO */
.hero-content {
  width: min(1500px, 92%);
  margin: 50px auto 0;
  text-align: center;
}

.top-area {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 0;
  margin-bottom: 80px;
}

.main-logo {
  width: 80%;
  max-width: 600px;
  justify-self: center;
}

.event-info {
  text-align: center;
  max-width: 1050px;
  justify-self: center;
}

.event-info h1 {
  font-family: ChunkPrint, serif;
  font-size: clamp(140px, 8vw, 165px);
  line-height: 0.86;
  text-transform: uppercase;
  color: white;
  font-weight: lighter;
  margin: 0;
}

.event-info h2 {
  font-family: ChunkPrint, serif;
  color: #27c653;
  font-size: clamp(48px, 3.6vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1px;
  font-weight: lighter;
}

.venue-line {
  display: block;
  font-family: ChunkPrint, serif;
  color: white;
  font-size: clamp(28px, 2vw, 36px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* COUNTDOWN */
.countdown {
  width: auto;
  margin: 70px auto 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.countdown div {
  text-align: center;
  padding: 0 32px;
  border-right: 2px solid #28c64d;
}

.countdown div:last-child {
  border-right: none;
}

.countdown span {
  display: block;
  font-family: Heathergreen;
  font-size: 150px;
  line-height: 0.9;
  color: white;
}

.countdown p {
  font-family: Heathergreen;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 5px;
  margin-top: 14px;
  color: white;
}

/* ABOUT */
.about {
  width: min(1320px, 92%);
  margin: 0 auto 30px;
}

.about-card {
  background: rgba(3, 10, 24, 0.72);
  border: 1px solid rgba(40, 198, 77, 0.28);
  border-radius: 28px;
  padding: 70px;
  text-align: left;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(40, 198, 77, 0.18), transparent 35%);
  pointer-events: none;
}

.about-card h3 {
  max-width: 950px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  color: white;
  margin-bottom: 34px;
}

.about-card p {
  max-width: 980px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 22px;
}

/* FEATURES */
.features {
  width: min(1700px, 96%);
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.features div {
  position: relative;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(35px);
  animation: featureRise 0.7s ease forwards;
}

.features div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: -20%;
  height: 130%;
  width: 2px;
  background: rgba(40, 198, 77, 0.6);
}

.features h4 {
  font-family: ChunkPrint;
  color: #28c64d;
  text-transform: uppercase;
  font-size: 100px;
  line-height: 0.8;
  letter-spacing: 1px;
  font-weight: lighter;
}

.features h5 {
  font-family: ChunkPrint, serif;
  color: white;
  text-transform: uppercase;
  font-size: clamp(32px, 3vw, 60px);
  line-height: 0.9;
  margin-top: 8px;
}

.features div:hover h4 {
  transform: scale(1.05);
  transition: 0.25s ease;
}

.features div:nth-child(1) {
  animation-delay: 0.2s;
}

.features div:nth-child(2) {
  animation-delay: 0.55s;
}

.features div:nth-child(3) {
  animation-delay: 0.9s;
}

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

/* EXPERIENCE */
.experience {
  background: transparent;
  padding: 100px 0;
  overflow: hidden;
}

.experience-content {
  width: 100%;
  text-align: center;
}

.experience h2 {
  font-family: ChunkPrint, serif;
  font-size: clamp(50px, 5vw, 90px);
  color: #28c64d;
  text-transform: uppercase;
  margin-bottom: 55px;
}

.media-marquee {
  width: 100%;
  overflow: hidden;
}

.media-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: mediaScroll 92s linear infinite;
}

.media-track img,
.media-track video {
  width: 430px;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(40, 198, 77, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.media-marquee:hover .media-track {
  animation-play-state: paused;
}

@keyframes mediaScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* HOME SPONSORS */
.sponsors {
  text-align: center;
}

.sponsors-content {
  text-align: center;
}

.sponsors h2 {
  font-family: ChunkPrint, serif;
  font-size: clamp(60px, 6vw, 120px);
  font-weight:normal;
  color: #28c64d;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  margin-bottom: 20px;
  font-weight: normal;
}

.sponsor-sub {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.sponsor-grid {
  width: min(1100px, 90%);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 80px;
  align-items: center;
  justify-items: center;
}

.sponsor img {
  width: 100%;
  max-width: 1200px;
  max-height: 120px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: scale(0.9);
  animation: logoPop 0.4s ease forwards;
  transition: 0.3s ease;
}

.sponsor img:hover {
  transform: scale(1.08);
}

@keyframes logoPop {
  to {
    transform: scale(1);
  }
}

.sponsor-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  background: transparent;
  color: #4db8ff;
  border: 2px solid #4db8ff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  transition: all .3s ease;
}

.sponsor-cta:hover {
  background: #4db8ff;
  color: #ffffff;
  border-color: #4db8ff;
  box-shadow: none !important;
}
.contact-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 40px !important;
  font-size: 1.2rem !important;
  font-weight: 700;
  background: #007BFF !important;
  color: #ffffff !important;
  border: 2px solid #007BFF !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  transform: scale(1.05);
}

.contact-cta:hover {
  background: #0066dd !important;
  color: #ffffff !important;
  border-color: #0066dd !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}

/* SPONSORSHIP PAGE */
.sponsor-page,
.sponsor-stats,
.why-sponsor,
.tiers,
.sponsor-final-cta {
  background: transparent;
}

.sponsor-hero-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 90px;
  background: url("logos/bg.jpg") center top / cover no-repeat;
}

.sponsor-hero-inner {
  width: min(1200px, 92%);
  text-align: center;
}

.eyebrow {
  color: #28c64d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 10px;
}

.sponsor-hero-page h1,
.tiers h2,
.why-sponsor h2,
.sponsor-final-cta h2 {
  font-family: ChunkPrint, serif;
	font-weight: normal;
  color: #28c64d;
  text-transform: uppercase;
  line-height: 0.9;
}

.sponsor-hero-page h1 {
  font-size: clamp(60px, 8vw, 140px);
  margin-bottom: 30px;
}

.sponsor-hero-page p {
  max-width: 900px;
  margin: 0 auto 10px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.sponsor-hero-buttons {
  margin-top: 45px;
  margin-bottom: -70px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.tier-card a {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.primary-btn,
.tier-card a {
  background: #28c64d;
  color: #000;
}

.secondary-btn {
  border: 1px solid #28c64d;
  color: #28c64d;
}

.primary-btn:hover,
.tier-card a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.secondary-btn:hover {
  background: #28c64d;
  color: #000;
}

.sponsor-stats {
  width: min(1300px, 92%);
  margin: 0 auto;
  padding: 50px 0 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sponsor-stats div,
.why-grid div {
  position: relative;
  text-align: left;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(40, 198, 77, 0.35);
  background:
    radial-gradient(circle at top right, rgba(40, 198, 77, 0.14), transparent 42%),
    rgba(3, 10, 24, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.sponsor-stats h3,
.why-grid h3 {
  font-family: Montserrat, sans-serif;
  color: #28c64d;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 14px;
}

.sponsor-stats p,
.why-grid p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  font-size: 18px;
}

.why-sponsor {
  width: min(1300px, 92%);
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

.why-sponsor h2,
.tiers h2,
.sponsor-final-cta h2 {
  font-size: clamp(50px, 6vw, 105px);
  margin-bottom: 50px;
}

.sponsor-benefits {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: center;
  justify-items: center;
  gap: 100px;
  margin: 10px auto -40px;
  width: 100%;
  max-width: 1200px;
}

.sponsor-benefit-card {
  min-height: 240px;
  padding: 40px 14px;
  border-radius: 22px;
  border: 1px solid rgba(30, 255, 92, 0.25);
  background:
    radial-gradient(circle at top right, rgba(30, 255, 92, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(2, 10, 28, 0.92), rgba(1, 35, 30, 0.82));
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
  width: 300px;
}

.sponsor-benefit-card h3 {
  margin: 0 0 22px;
  color: #20d84f;
  font-size: 1.35rem;
  font-weight: normal;
  text-transform: uppercase;
}

.sponsor-benefit-card p {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.55;
}

.tiers {
  width: min(1450px, 92%);
  margin: 0 auto;
  padding: 90px 0;
  text-align: center;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.tier-card {
  position: relative;
  text-align: left;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(40, 198, 77, 0.35);
  background: rgba(3, 10, 24, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.featured-tier {
  grid-column: span 3;
  background:
    radial-gradient(circle at top right, rgba(40, 198, 77, 0.16), transparent 40%),
    rgba(3, 10, 24, 0.88);
  border-color: #28c64d;
}

.tier-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #28c64d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
}

.tier-card h3 {
  font-family: ChunkPrint, serif;
  color: white;
  text-transform: uppercase;
  font-size: clamp(30px, 3vw, 58px);
  line-height: 0.95;
	font-weight: normal;
  margin-bottom: 12px;
}

.tier-card h4 {
  color: #28c64d;
  font-size: clamp(32px, 3vw, 56px);
  margin-bottom: 22px;
  font-weight: 900;
}

.tier-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.tier-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.tier-card li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.tier-card li::before {
  content: "•";
  color: #28c64d;
  position: absolute;
  left: 0;
}

.custom-note {
  margin-top: 45px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.sponsor-final-cta {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 100px 0 130px;
  text-align: center;
}

.sponsor-final-cta p {
  max-width: 850px;
  margin: 0 auto 35px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  text-align: center;
  margin: 0 auto;
  line-height: 0.9;
}

.no-wrap {
  display: block;
  width: 100%;
  text-align: center;
}

/* VENDOR PAGE */
.vendor-page {
  min-height: 100vh;
  width: 100%;
  background: url("logos/bg.jpg") center top / cover no-repeat scroll;
}

.vendor-page .top-area {
  display: flex;
  justify-content: center;
  text-align: center;
}

.vendor-page .left {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.vendor-page h1 {
  text-align: center;
}

.vendor-title {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-family: ChunkPrint, serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
	font-weight: 100;
  letter-spacing: 2px;
  margin: 0 auto;
  color: #28c64d;
  text-transform: uppercase;
}

.vendor-form {
  margin-top: 40px;
  margin-bottom: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.vendor-form iframe {
  width: 100%;
  max-width: 900px;
  height: 1400px;
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.payment-note {
  text-align: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.vendor-payment {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.pay-btn {
  display: block;
  width: 650px;
  max-width: 95%;
  margin: 0 auto;
  padding: 28px 0;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #2ee66b, #00b84d);
  border-radius: 80px;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 184, 77, 0.5);
  transition: all 0.25s ease;
}

.pay-btn:hover {
  transform: translateY(-5px) scale(1.04);
  background: linear-gradient(135deg, #38ff7a, #00cc55);
  box-shadow: 0 25px 70px rgba(0, 204, 85, 0.7);
}



/* FOOTER */
.site-footer {
  background: #000;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-content {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.footer-brand {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.footer-links {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
  color: #28c64d;
  text-decoration: none;
  margin: 0 6px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* TABLET */
@media (max-width: 1000px) {
  .sponsor-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .sponsor-stats,
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .featured-tier {
    grid-column: span 1;
  }

  .tier-card {
    padding: 28px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  body {
    padding-top: 78px;
    background:
      linear-gradient(rgba(3, 18, 45, 0.86), rgba(3, 18, 45, 0.92)),
      url("logos/bg.jpg") center top / cover no-repeat fixed;
  }

  .site-header {
    height: 78px;
    padding: 0 18px;
  }

  .brand-logos {
    gap: 10px;
  }

  .brand-logos img {
    height: 30px;
  }

  .main-nav {
  position: fixed;
  top: 78px;
  left: 0;

  width: 100%;
  background: rgba(2, 11, 24, 0.98);

  backdrop-filter: blur(14px);

  display: none;
  flex-direction: column;
  align-items: center;

  padding: 15px 0;

  z-index: 9999;
}

.main-nav.open {
  display: flex;
}

.main-nav a {
  width: 100%;
  text-align: center;

  padding: 18px 0;

  font-size: 14px;
  letter-spacing: 3px;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.main-nav a:last-child {
  border-bottom: none;
}

  section,
  .hero,
  .hero-content,
  .sponsor-hero-page,
  .vendor-page {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    margin-top: 20px;
    padding: 0 16px;
    display: block;
    text-align: center;
  }

  .top-area {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .main-logo {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 24px;
    display: block;
  }

  .event-info {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .event-info h1 {
    font-size: clamp(58px, 18vw, 78px);
    line-height: 0.88;
  }

  .event-info h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .venue-line {
    font-size: clamp(16px, 5vw, 22px);
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
    margin: 60px auto;
  }

  .countdown div:nth-child(2) {
    border-right: none;
  }

  .countdown span {
    font-size: 95px;
  }

  .countdown p {
    font-size: 28px;
  }

  .about {
    margin: 60px auto;
    padding: 38px 20px 28px;
  }

  .about-card {
    padding: 38px 26px;
    border-radius: 20px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features div::after {
    display: none;
  }

  .media-track img,
  .media-track video {
    width: 260px;
    height: 260px;
  }

  .sponsor-hero-page,
  .vendor-page {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .sponsor-benefits,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-benefits {
    padding: 0 22px;
  }

  .sponsor-benefit-card {
    width: 100%;
  }

  .vendor-title,
  .sponsor-hero-page h1 {
    max-width: 92vw;
    font-size: clamp(38px, 14vw, 68px);
    line-height: 0.9;
    overflow-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
  }

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

  .pay-btn {
    font-size: 1.1rem;
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 12px;
  }

  .brand-logos img {
    height: 24px;
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 10px;
    letter-spacing: 1.4px;
  }
}

/* SPONSOR PAGE MOBILE CLEANUP */
@media (max-width: 768px) {
  .sponsor-hero-page {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .sponsor-hero-inner {
    width: 92%;
  }

  .sponsor-hero-page h1 {
    font-size: clamp(42px, 12vw, 68px);
    line-height: 0.9;
  }

  .no-wrap {
    white-space: normal;
  }

  .sponsor-hero-buttons {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .sponsor-stats {
    padding-top: 30px;
  }

  .why-sponsor,
  .tiers,
  .sponsor-final-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}



/* SPONSOR PAGE DESKTOP TIGHTEN */
@media (min-width: 769px) {
  .sponsor-hero-page {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .sponsor-hero-inner {
    width: min(1050px, 90%);
  }

  .sponsor-hero-page p {
    max-width: 950px;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.35;
  }

  .sponsor-hero-buttons {
    margin-top: 38px;
    margin-bottom: 0;
  }

  .primary-btn {
    padding: 18px 42px;
    font-size: 17px;
  }

  .sponsor-stats {
    width: min(1300px, 86%);
    padding: 0 0 80px;
    margin-top: 0;
    gap: 32px;
  }

  .sponsor-stats div {
    min-height: 150px;
    padding: 34px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sponsor-stats h3 {
    font-size: 25px;
    margin-bottom: 14px;
  }

  .sponsor-stats p {
    font-size: 20px;
    line-height: 1.4;
  }
}

.menu-toggle {
  display: none;
}

/* MOBILE NAV ONLY */
@media (max-width: 768px) {
  .site-header {
    height: 78px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #28c64d;
    font-size: 34px;
    font-weight: 900;
    cursor: pointer;
    z-index: 10001;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: rgba(2, 11, 24, 0.98);
    backdrop-filter: blur(14px);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 22px 0;
    border-bottom: 1px solid rgba(40, 198, 77, 0.3);
    z-index: 10000;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    font-size: 15px;
    letter-spacing: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a.active::after {
    display: none;
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;

    background: none;
    border: none;

    color: #28c64d;

    font-size: 34px;
    font-weight: 900;

    cursor: pointer;

    margin-left: auto;

    z-index: 10000;
  }

}