/* ─── CSS Custom Properties ─────────────────────────── */
:root {
  --PrimaryColor: #FF6A4D;
  --SecondaryColor: #0ABCC5;
  --WhiterColor: #FFFFFF;
  --BlackColor: #000000;

  --color-muted: #A1A1AA;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-accent: #22C55E;

  /* --gradient-hero: linear-gradient(135deg, #1A2A2F 0%, #0B0B0D 50%, #1a120e 100%);
  --gradient-primary: linear-gradient(135deg, #FF6A4D 0%, #e04a2c 100%);
  --gradient-section: linear-gradient(180deg, #0f1d22 0%, #0B0B0D 60%, #14100d 100%);
  --gradient-cta: linear-gradient(135deg, #FF6A4D 0%, #c93f20 40%, #8a2a10 100%); */

  /* --radius-sm: 0.75rem;
  --radius-md: 1rem; */
  /* --radius-lg: 1.25rem;
  --radius-pill: 2rem; */

  /* --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(255, 106, 77, 0.18);
  --shadow-teal: 0 0 40px rgba(111, 231, 221, 0.12);

  --transition: 0.3s ease; */
  /* --font: 'Plus Jakarta Sans'; */
}

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


@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Regular.eot');
  src: url('../fonts/PlusJakartaSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlusJakartaSans-Regular.woff2') format('woff2'),
    url('../fonts/PlusJakartaSans-Regular.woff') format('woff'),
    url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-SemiBold.eot');
  src: url('../fonts/PlusJakartaSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlusJakartaSans-SemiBold.woff2') format('woff2'),
    url('../fonts/PlusJakartaSans-SemiBold.woff') format('woff'),
    url('../fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Bold.eot');
  src: url('../fonts/PlusJakartaSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlusJakartaSans-Bold.woff2') format('woff2'),
    url('../fonts/PlusJakartaSans-Bold.woff') format('woff'),
    url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-ExtraBold.eot');
  src: url('../fonts/PlusJakartaSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2'),
    url('../fonts/PlusJakartaSans-ExtraBold.woff') format('woff'),
    url('../fonts/PlusJakartaSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-ExtraLight.eot');
  src: url('../fonts/PlusJakartaSans-ExtraLight.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlusJakartaSans-ExtraLight.woff2') format('woff2'),
    url('../fonts/PlusJakartaSans-ExtraLight.woff') format('woff'),
    url('../fonts/PlusJakartaSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Light.eot');
  src: url('../fonts/PlusJakartaSans-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlusJakartaSans-Light.woff2') format('woff2'),
    url('../fonts/PlusJakartaSans-Light.woff') format('woff'),
    url('../fonts/PlusJakartaSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Medium.eot');
  src: url('../fonts/PlusJakartaSans-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PlusJakartaSans-Medium.woff2') format('woff2'),
    url('../fonts/PlusJakartaSans-Medium.woff') format('woff'),
    url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  background-color: #000;
  color: var(--WhiterColor);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.same-section {
  padding: clamp(8rem, 7vw, 8rem) 0;
}

.same-heading {
  margin-bottom: 3rem;
}

.same-heading h2 {
  font-size: 5rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1rem;

}

.same-heading h3 {
  font-size: 2.9rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 4%;
  margin-bottom: 1rem;

}

.same-heading h4 {
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 1rem;

}

.same-heading p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;

}

.same-heading.white-text h2 {
  color: var(--WhiterColor);
}

.max-width-80 {
  max-width: 80%;

}

.max-width-50 {
  max-width: 50%;

}

.same-heading.text-center :is(.max-width-50, .max-width-80) {
  margin: 0 auto;
}

/* ===== Wrapper ===== */
.cta-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ===== Button Base ===== */
.cta-wrap .cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0.3rem 0.3rem 1.8rem;
  min-width: max-content;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  /* Glass base */
  backdrop-filter: blur(0.75rem);
  /* Border */
  /* border: 1px solid rgba(255, 255, 255, 0.5); */

  /* Figma light-dark edge */
  box-shadow:
    inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.8),
    inset 0 -0.0625rem 0.125rem rgba(164, 164, 164, 0.25),
    inset 0.0625rem 0 0.125rem rgba(255, 255, 255, 0.4),
    inset -0.0625rem 0 0.125rem rgba(255, 255, 255, 0.2);

  transition: all 0.3s ease;
}

/* ===== Text ===== */
.cta-wrap .cta-text {
  display: flex;
  flex-direction: column;
  color: var(--BlackColor);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}

.cta-wrap .cta-text span {
  display: inline-block;
  line-height: 1.4;
}

.cta-wrap .cta .lg {
  font-weight: 600;
}

/* ===== Icon Circle ===== */
.cta-wrap .cta-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--BlackColor);
  position: relative;
  background: #ffffff80;
  /* Outer border */
  /* border: 1px solid rgba(255, 255, 255, 0.6); */

  /* Inner light-dark */
  box-shadow:
    inset 0 0.125rem 0.25rem rgba(255, 255, 255, 0.8),
    inset 0 -0.125rem 0.25rem rgba(255, 255, 255, 0.2);
}

/* Attend (glass peach) */
.cta-attend {
  background: rgba(255, 255, 255, 0.25);
}

/* Sponsor (solid teal) */
.cta-sponsor {
  background: #0abdc7b3;
}


.btn-primary{background: var(--PrimaryColor); color: var(--BlackColor); border: solid 1px var(--PrimaryColor);    border-radius: 50px;    font-size: 0.9rem;
        font-weight: 500; text-transform: uppercase;padding: 0.5rem 1.5rem;    transition: all 0.3s ease;}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{background: var(--BlackColor)!important; color: var(--WhiterColor)!important; border-color:var(--WhiterColor) !important;transform: translateY(-0.25rem);
}

/* ===== Hover ===== */
.cta:hover {
  transform: translateY(-0.25rem);
  box-shadow:
    inset 0 0.125rem 0.25rem rgba(255, 255, 255, 0.9),
    inset 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.3),
    0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}

/* ─── Typography ─────────────────────────────────────── */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
}

.text-primary {
  color: var(--PrimaryColor) !important;
}




.site-header {
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
}

.site-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .mobile-logo-bx {
  display: none;
}
.site-header .nav-menu{display: flex; align-items: center; flex-wrap: nowrap;}

.site-header .nav-menu a:not(.btn) {
  color: var(--WhiterColor);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  transition: all .2s ease;
}

.site-header .nav-menu a svg {
  width: 1.5rem;
  height: 1.3rem;
  vertical-align: text-bottom;
}

.site-header .nav-menu a:not(.btn):hover {
  color: var(--PrimaryColor);
}

.site-header .nav-menu .btn {
  margin-left: 0.5rem;
}

/* Summits Dropdown */
.dropdown-summit {
  position: relative;
  display: inline-block;
}

.dropdown-summit .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-summit .dropdown-toggle::after {
  display: none;
}

.dropdown-summit .dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  min-width: 210px;
  padding: 0.8rem 0;
  border-radius: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-summit:hover .dropdown-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-summit .dropdown-menu-list li a {
  display: block;
  padding: 0.6rem 1rem !important ;
  font-size: 0.9rem ;
  color: #fff ;
  text-transform: none ;
  font-weight: 500 ;
  transition: all 0.2s ease;
}

.dropdown-summit .dropdown-menu-list li a:hover {
  color: var(--PrimaryColor) ;
  padding-left: 1.2rem !important ;
}

.dropdown-summit .dropdown-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.dropdown-summit:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}



.site-header :is(.menu-toggle, .close-menu) {
  display: none;
  border: solid 1px var(--PrimaryColor);
  background: var(--PrimaryColor);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  color: #fff;
}

.site-header :is(.menu-toggle, .close-menu) svg {
  width: 1.2rem;
  height: 1.2rem;
}

.site-header.fixed-header {
  position: fixed;

  animation: headerfixdown 0.7s;
  background: var(--BlackColor);
  padding: 0.75rem 0;
}

.site-header.fixed-header .logo img {
  max-height: 50px;
}

@keyframes headerfixdown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.site-header .glass-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.5rem 1.5rem;
  /* 14px 40px */
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--WhiterColor);
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  /* Glass background */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);

  box-shadow:
    inset 0 0.0625rem 0.125rem rgb(255 255 255 / 6%),
    inset 0 -0.0625rem 0.125rem rgb(255 242 242 / 8%), 0 0.5rem 2rem rgb(0 0 0 / 0%);

  transition: all 0.3s ease;
}

.site-header .glass-register-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* top light shine */
  border: 0.0625rem solid rgba(255, 255, 255, 0.5);
  mask: linear-gradient(to bottom, white 40%, transparent 100%);
  -webkit-mask: linear-gradient(to bottom, white 40%, transparent 100%);

  pointer-events: none;
}

.site-header .glass-register-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-0.125rem);

  box-shadow:
    inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.6),
    0 0.75rem 2.5rem rgba(0, 0, 0, 0.4);
}


.site-header .mobile-logo-bx {
  display: none;
}


/* ─── HERO SECTION ───────────────────────────────────── */

.hero-sec {
  position: relative;
  padding: 13rem 0 7rem;
  background:
    url(../images/banner-top-shape-img.png) no-repeat top left 30% / 300px,
    /* top small */
    url(../images/shape-icon.png) no-repeat 55% 40% / 400px,
    /* center big */
    url(../images/speakers-ng.jpg) no-repeat center top / cover;

  color: var(--WhiterColor);
  overflow: hidden;
  display: flex;
  align-items: center;

}

.hero-sec .heading-with-title {
  display: flex;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.hero-sec .heading-with-title h1 {
  font-size: 5.6rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0;
}

.hero-sec .cta-wrap .cta {
  min-width: 13rem;
}

.hero-sec .sub-heading {
  font-size: 0.82rem;
}

.hero-sec .cta-wrap .cta-attend {
  background: #ff6a4de6;
  box-shadow: none;
}

.hero-sec .cta-wrap .cta-sponsor {
  background: rgba(255, 255, 255, 0.25);
  color: var(--WhiterColor);
  justify-content: center;
  padding: 0.3rem 0.3rem;
}

.hero-sec .cta-wrap .cta-sponsor .cta-text {
  color: var(--WhiterColor);
  text-align: center;
}

.hero-sec .btn-glass {
  background: rgb(19 68 69);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-weight: 400;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  flex-direction: column;
  align-items: self-start;
}

.hero-sec .btn-glass .lg {
  font-weight: 600;
  text-transform: uppercase;

}

.hero-sec .btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.03);
  color: #fff;
}




/* ─── framework ───────────────────────────────────── */
.life-sec {
  position: relative;
}

.life-sec::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  background: url(../images/life-sec-shape-bg.png)no-repeat left center;
  background-size: 80%;
  filter: grayscale(1);
  width: 30%;
  height: 100%;
  transform: translateY(-50%);
}

.life-sec .global-event-cards {
  margin-top: 8rem;
}

/* Big Letter */
.life-sec .life-box .letter {
  font-size: 3.5rem;
  line-height: normal;
  font-weight: 800;
  color: var(--PrimaryColor);
  display: block;
  margin-bottom: 0.3rem;
}

/* Title */
.life-sec .life-box h4 {
  font-size: 1.2rem;
  color: var(--WhiterColor);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 9%;
}

/* Text */
.life-sec .life-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}



.life-sec .global-left {
  position: relative;
  padding: 4rem 3rem;
  border-radius: 30px;
  background: var(--PrimaryColor);
  overflow: hidden;
}


.life-sec .global-left h2 {
  font-size: 4rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.life-sec .global-left h2 span {
  color: var(--BlackColor);
}

/* Desc */
.life-sec .global-left .desc {
  font-size: 0.9rem;
  margin: 1rem 0 2rem;
  max-width: 25rem;
  position: relative;
  z-index: 2;
}

/* Event cards */
.life-sec .event-cards {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.life-sec .event-box {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(3px);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  border-radius: 30px;
  padding: 0.9rem 1.25rem;
  min-width: 17rem;
}

.life-sec .event-box .date {
  font-size: 0.8em;
  background: var(--WhiterColor);
  color: var(--BlackColor);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.life-sec .event-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--BlackColor);
  margin-bottom: 0.2rem;
}

.life-sec .event-box p {
  font-size: 0.8rem;
  color: var(--BlackColor);
  margin-bottom: 0;
}

/* Globe image */
.life-sec .global-left .globe {
  position: absolute;
  right: 1rem;
  top: 3rem;
  width: 18rem;
  z-index: 1;
}

/* ===== RIGHT CARD ===== */
.life-sec .global-right {
  padding: 2.2rem;
  border-radius: 2rem;
  background: url(../images/speakers-ng.jpg)no-repeat center center/cover;

}

/* Title */
.life-sec .global-right h4 {
  margin-bottom: 0.5rem;
}

/* Desc */
.life-sec .global-right .desc {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

/* Pills */
.life-sec .global-right .tags {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.life-sec .global-right .tags span {
  display: inline-block;
  width: max-content;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0.05rem 0.1rem rgba(255, 255, 255, 0.3), inset 0 -0.05rem 0.1rem rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}



/* ─── SCHEDULE SECTION ───────────────────────────────── */

.days-sec {
  color: #fff;
  background:
    radial-gradient(circle at 20% 60%, rgb(10 188 197 / 90%), transparent 50%), radial-gradient(circle at 80% 60%, rgb(255 80 50), transparent 60%), #000
}

.days-sec .days-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5rem;
}

.days-sec .day-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.days-sec .day-card:hover {
  transform: translateY(-5px);
}

.days-sec .day-card .day-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--SecondaryColor);
  margin-bottom: 0.25rem;
}

.days-sec .day-card .day-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--SecondaryColor);
  margin-bottom: 1rem;
  line-height: 1;
}

.days-sec .day-card .event-title {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--BlackColor);
  margin-bottom: 0.2rem;
}

.days-sec .day-card .event-loc {
  font-size: 0.8rem;
  color: var(--BlackColor);
  font-weight: 400;
}

.days-sec .day-card .event-desc {
  font-size: 0.9rem;
  color: var(--BlackColor);
  line-height: 1.6;
  margin-bottom: 0;
  width: 100%;
  max-width: 60%;

}





/* ─── PATHS SECTION ──────────────────────────────────── */
.tracks-sec {
  background: #0E0E0E;
}

.sub-heading {
  font-size: 0.8rem;
  color: var(--WhiterColor);
  font-weight: 400;
  letter-spacing: 39%;
  text-transform: uppercase;
}

/* ===== Card ===== */
.tracks-sec .tracks-cards-list {
  margin-top: 4rem;
}

.tracks-sec .track-card {
  padding: 2rem;
  border-radius: 1.5rem;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    inset 0 0.1rem 0.2rem rgba(255, 255, 255, 0.1),
    inset 0 -0.1rem 0.2rem rgba(0, 0, 0, 0.4);
}

.tracks-sec .track-card .track-content {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
}

/* Title */
.tracks-sec .track-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--WhiterColor);
}

.tracks-sec .track-card h3.blue-text {
  color: var(--SecondaryColor);
}

/* Description */
.tracks-sec .track-card p {
  font-size: 0.85rem;
  color: var(--WhiterColor);
  margin-bottom: 1rem;
}

/* Topic title */
.tracks-sec .track-card .topic-title {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.5;
  letter-spacing: 0.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* List */

.tracks-sec .track-card ul li {
  font-size: 0.9rem;
  color: var(--PrimaryColor);
  padding: 0.2rem 0;
}

/* Icon */
.tracks-sec .track-card .icon {
  display: flex;
  justify-content: flex-end;
}

.track-card .icon img {
  width: 5rem;
}

/* ─── SPEAKERS SECTION ───────────────────────────────── */

/* ===== Section ===== */
.speakers-sec {
  position: relative;

  overflow: hidden;
  color: #fff;
  background: url(../images/speakers-ng.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ===== Tags (Glass Pills) ===== */
.speakers-sec .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.speakers-sec .tags span {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  /* Glass */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    inset 0 0.05rem 0.1rem rgba(255, 255, 255, 0.3),
    inset 0 -0.05rem 0.1rem rgba(0, 0, 0, 0.2);

  transition: 0.3s;
}

/* Hover */
.speakers-sec .tags span:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Bottom Text ===== */
.speakers-sec .bottom-text {
  text-align: center;
  margin-top: 6rem;
  font-weight: 500;
  font-size: 1.1rem;

  color: var(--WhiterColor);
}

/* ─── LOCATION SECTION ───────────────────────────────── */

.locations-top-heading {
  border-bottom: solid 1px #ffffff33;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}

/* Parent Section */
.locations-sec {
  background: #0E0E0E;
  padding-bottom: 0;
  color: var(--WhiterColor);
}

/* Tab Buttons */
.locations-sec .loc-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.locations-sec .loc-btn {
  background: none;
  border: none;
  color: var(--WhiterColor);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 1px;
  text-align: left;
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
  width: fit-content;
}

/* Active Tab Gradient (Same as Design) */
.locations-sec .loc-btn.active {
  opacity: 1;
  font-weight: 600;
  background: linear-gradient(90deg, #0ABCC5 15%, rgba(18, 184, 194, 0) 50%);
}




/* Image Grid */
.locations-sec .loc-grid {
  display: flex;
  gap: 5px;
}

.locations-sec .loc-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.locations-sec .loc-img {
  overflow: hidden;
  border-radius: 0;
  width: 100%;
}

.locations-sec .loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Aspect Ratios to match Figma proportions precisely */
.locations-sec .img-1 {
  aspect-ratio: 1.2 / 1;
}

.locations-sec .img-6 {
  aspect-ratio: 2 / 1;
}

.locations-sec .img-3 {
  aspect-ratio: 1.4 / 1;
}

.locations-sec .img-4 {
  aspect-ratio: 2 / 1;
}

.locations-sec .img-5 {
  aspect-ratio: 1 / 1;
}

.locations-sec .img-2 {
  aspect-ratio: 2 / 1;
}

.locations-sec .img-7 {
  aspect-ratio: 1 / 1;
}

.locations-sec .img-8 {
  aspect-ratio: 1 / 1;
}


/* ─── SPONSORS SECTION ───────────────────────────────── */

/* ===== Logos ===== */
.sponsors-sec {
  background:
    radial-gradient(circle at 20% 180%, #0abcc587 0%, transparent 50%), radial-gradient(circle at 80% 180%, #fc6c504a 0%, transparent 60%), #0E0E0E;
}


.sponsors-sec .sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 4rem 0;
}

.sponsors-sec .sponsor-logos img {
   max-height: 3rem; max-width: 135px;
  filter: grayscale(100%);       width: auto;
    object-fit: contain;
  transition: filter 0.3s ease;  
}

.sponsors-sec .note {
  font-size: 0.8rem;
  color: var(--PrimaryColor);
  letter-spacing: 0.1rem;
  text-align: center;
}

/* .sponsors-sec .sponsor-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
} */


/* ─── CTA SECTION ────────────────────────────────────── */
.join-summit {
  position: relative;

  background:
    radial-gradient(circle at 20% 105%, #0abcc582 0%, transparent 50%), radial-gradient(circle at 80% 120%, #000000bd 0%, transparent 60%), #FC6C50
}

.join-summit .shape-img-top {
  position: absolute;
  top: -10vw;
  right: 11vw;
  width: 24vw;

}

.join-summit .shape-img-top img {
  width: 24vw;
  filter: hue-rotate(124deg);
  mix-blend-mode: luminosity;
}

.join-summit .heading-with-title {
  display: flex;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.join-summit .heading-with-title h2 {
  margin-bottom: 0;
}

.join-summit .same-heading p {
  max-width: 32rem;

}

.join-summit .summit-content {
  border-radius: 60px;
  /* Glass effect */
  padding: 3rem 3rem 3rem 14rem;
  border-radius: 3.75rem;

  /* REAL GLASS */
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(0.05rem);
  -webkit-backdrop-filter: blur(0.05rem);

  /* Border (important) */
  /* border: 1px solid rgba(255, 255, 255, 0.35); */

  /* Figma edge lighting */
  box-shadow:
    inset 0 0.08rem 0.2rem rgba(255, 255, 255, 0.3),
    inset 0 -0.08rem 0.2rem rgba(0, 0, 0, 0.15);

  overflow: hidden;
  z-index: 1;
  position: relative;
}

/* ===== Glass Shine (Figma highlight) ===== */
.join-summit .summit-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.05),
      transparent 60%);

  pointer-events: none;
}


.join-summit .summit-content p {
  max-width: 80%;
}

.join-summit .shape-img-wrap {
  position: relative;
}

.join-summit .shape-img-wrap .shape-img {
  z-index: 0;
  position: absolute;
  left: -17%;
  bottom: -51%;

}

.join-summit .shape-img-wrap .shape-img img {
  width: 70%;
  filter: hue-rotate(124deg);
}


/* .join-summit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 10% 30%, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
  pointer-events: none;
} */


/* ─── FOOTER ─────────────────────────────────────────── */
#footer {
  background: #000000;
  padding: 6.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  color: var(--WhiterColor);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 20rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.footer-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
  color: var(--PrimaryColor);
  opacity: 1;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: solid 1px #323232;
}

.footer-bottom-links {
  display: flex;
  justify-content: end;

}

.footer-bottom-links a {
  padding: 0 0.5rem;
}

.footer-bottom-links a:first-child {
  border-right: 1px solid var(--WhiterColor);


}

.footer-bottom-text,
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--WhiterColor);
  transition: color 0.3s ease;
  line-height: normal;
}

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










/* utah-life summit page */
.utah-hero {
  background: radial-gradient(circle at 20% 100%, var(--SecondaryColor) 0%, transparent 40%), radial-gradient(circle at 80% 100%, var(--PrimaryColor) 0%, transparent 40%), url(../images/utah-summit-banner.jpg)no-repeat center top/cover !important;
  position: relative;
}
.sponsor-hero-bg{ background: radial-gradient(circle at 20% 100%, var(--SecondaryColor) 0%, transparent 40%), radial-gradient(circle at 80% 100%, var(--PrimaryColor) 0%, transparent 40%), url(../images/sponsor-bg.jpg)no-repeat center top/cover !important;}


.utah-hero>* {
  position: relative;
  z-index: 2;
}

.utah-hero .identity-text {
  font-size: 1.4rem;
  line-height: normal;
  color: var(--WhiterColor);
  margin: 3rem 0 5rem;
}

.utah-hero .cta-wrap {
  position: relative;
  left: -90px;
  bottom: 22px;
}
.utah-hero .heading-with-title h1 {
      max-width: 8ch;
    word-break: keep-all;
    text-wrap: balance;
}


.day-card-listwrap {
  background: var(--BlackColor);
}

.day-card-listwrap .day-card h3 {
  font-size: 1.9rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 4%;
  margin-bottom: 0.5rem;
}
.day-card-listwrap .day-card{margin-bottom: 3rem;}
.day-card-listwrap .day-card p {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--PrimaryColor);
  font-weight: 400;
  text-transform: uppercase;
  width: 100%;
  max-width: 40%;
  margin-bottom: 0;
}


.venues-section {
  background: #0ABCC5;
  padding: 2rem 0 0;
  border-radius: 30px;
  margin-top: 6rem;
}

.venues-section .same-heading {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.venues-section .cards-wrapper {
  display: flex;
  gap: 0;
  padding: 0;

}

.venues-section .venue-card {
  flex: 1;
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  cursor: pointer;

}
.venues-section .venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 106, 77, 0.15);
  /* Primary color with opacity */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}
.venues-section .venue-card:hover::before {
  opacity: 1;
}

.venues-section .venue-card .img-bx {
  width: 100%;
  height: 100%;
}

.venues-section .venue-card .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venues-section .venue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 5%, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.venues-section .venue-card .card-info {
  position: absolute;
  bottom: 25px;
  left: 15px;
  right: 15px;
  z-index: 2;
  color: var(--WhiterColor);
}

.venues-section .venue-card h3 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4%;
}

.venues-section .venue-card .card-info p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--WhiterColor);
  text-transform: uppercase;
  letter-spacing: 4%;
}



.agenda-section {
  color: #fff;
  background: #000;
  /* background: radial-gradient(circle at 20% 60%, rgb(10 188 197 / 66%), transparent 50%), radial-gradient(circle at 80% 60%, rgb(255 80 50 / 57%), transparent 60%), #000; */
}

.agenda-section .accordion .custom-card {
  background-color: white;
  border-radius: 15px;
  margin-bottom: 15px;
  border: none;
  overflow: hidden;
}

.agenda-section .accordion .accordion-button {
  background-color: var(--WhiterColor);
  padding: 1rem;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: none;
}


.agenda-section .accordion .accordion-button .view-btn {
  background: var(--SecondaryColor);
  color: var(--WhiterColor);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
}

/* Default (closed state) */
.agenda-section .accordion .accordion-button.collapsed .view-btn {
  display: inline-block;
}

.agenda-section .accordion .accordion-button.collapsed .close-icon {
  display: none;
}

/* Open state */
.agenda-section .accordion .accordion-button:not(.collapsed) .view-btn {
  display: none;
}

.agenda-section .accordion .accordion-button:not(.collapsed) .close-icon {
 display: inline-flex !important;
  cursor: pointer;
}

/* icon size */
.agenda-section .accordion .accordion-button .close-icon svg {
  width: 18px;
  height: 18px; color: #000;
}



.agenda-section .accordion .day-info {
  width: 12rem;
  display: flex;
  flex-direction: column;
}

.agenda-section .accordion .day-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--SecondaryColor);
  margin-bottom: 0.25rem;
}

.agenda-section .accordion .day-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--SecondaryColor);
  margin-bottom: 0;
  line-height: 1;
}

.agenda-section .accordion .event-info {
  display: flex;
  flex-direction: column;
}

.agenda-section .accordion .event-title {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--BlackColor);
  margin-bottom: 0.2rem;
}

.agenda-section .accordion .event-subtitle {
  font-size: 0.8rem;
  color: var(--BlackColor);
  font-weight: 400;
}

.agenda-section .accordion .accordion-body {
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
}

.agenda-section .accordion .agenda-row {
  display: flex;
  margin-bottom: 1rem;
}

.agenda-section .accordion .time-col {
  width: 12rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--SecondaryColor);
  margin-bottom: 0.25rem;
}

.agenda-section .accordion .desc-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--BlackColor);
  margin-bottom: 0.25rem;
}

.agenda-section .accordion .desc-col p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.agenda-section .accordion .custom-agenda-list li {
  font-size: 0.9rem;
  color: #555;
  padding: 0.25rem 0;
  font-weight: 400;
}

/* Arrow color adjustment */
.agenda-section .accordion .accordion-button::after {
  filter: brightness(0.5);
  display: none;
}






.speakers-section {
  background: radial-gradient(circle at 20% 180%, #0abcc5 0%, transparent 50%), radial-gradient(circle at 80% 180%, #fc6c50 0%, transparent 60%), #0E0E0E;
}



.speakers-section .speaker-row {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0.75rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  /* 20px */
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr 1.3fr;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.speakers-section .speaker-row:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.125rem);
}

/* Profile Section */
.speakers-section .speaker-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.speakers-section .img-wrapper {
  background: var(--BlackColor);
  border-radius: 0.75rem;
  overflow: hidden;
}

.speakers-section .img-wrapper img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.speakers-section .speaker-name {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--WhiterColor);

}

/* Topic Styling */
.speakers-section .label {
  display: block;
  font-size: 0.8rem;
  color: rgb(255 255 255 / 50%);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.speakers-section .topic-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--WhiterColor);
}

/* Meta info with Lucide Icons */
.speakers-section .meta-info {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--WhiterColor);
}

.speakers-section .icon-red {
  color: var(--PrimaryColor);
  width: 1.125rem;
  height: 1.125rem;
}



.pricing-section {
  background: var(--BlackColor);
}

.pricing-section .pricing-card {
  position: relative;
  background: #191919;
  border: 0.0625rem solid rgb(255 255 255 / 20%);
  border-radius: 30px;
  padding: 2rem 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  z-index: 1; 
  height: 100%;
}

/* Badge */
.pricing-section .pricing-card .pass-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 2.6rem;
    height: 2.6rem;
    border: 1.5px solid var(--PrimaryColor);
    border-radius: 50%;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pricing-section .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at bottom left,
      rgba(0, 180, 170, 0.8) 0%,
      rgba(0, 180, 170, 0.4) 30%,
      transparent 60%),
    radial-gradient(circle at bottom right,
      rgba(255, 120, 80, 0.8) 0%,
      rgba(255, 120, 80, 0.4) 30%,
      transparent 60%);

  filter: blur(2rem);
  /* Heavy blur makes it soft */
  transform: scale(1.5) translateY(30%);
  /* Start hidden and scale down to show on hover */
  opacity: 0;
  /* Initially hidden */
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.pricing-section .pricing-card:hover::before {
  opacity: 1;
  transform: scale(1.1) translateY(0);
  /* Reveal gradient on hover */
}

.pricing-section .pricing-card:hover {
  transform: translateY(-0.625rem);
  /* 10px lift */
  border-color: rgba(18, 194, 194, 0.4);
  /* Subtle teal border accent on hover */
  box-shadow: 0 0.625rem 2.5rem rgba(18, 194, 194, 0.1), 0 0.625rem 2.5rem rgba(255, 77, 77, 0.1);
}

/* Card Content */
.pricing-section .pass-type {
  display: block;
  font-size: 0.7rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}

.pricing-section .price {
  font-size: 2.5rem;
  line-height: normal;
  color: var(--PrimaryColor);
  margin-bottom: 0rem;
  font-weight: 700;
}

.pricing-section .price sup {
  font-size: 67%;
}

.pricing-section .divider {
  border: 0;
  border-top: 0.0625rem solid rgb(255 255 255 / 20%);
  margin-bottom: 1.5rem;
}

.pricing-section .features-list {
  margin-bottom: 2rem;
  min-height: 9.375rem;
}

.pricing-section .features-list li {
  font-size: 0.875rem;
  color: var(--WhiterColor);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.25rem;
}

.pricing-section .features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--PrimaryColor);
}

/* Button Styling */
.pricing-section .select-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  color: var(--WhiterColor);
  text-transform: uppercase;
  letter-spacing: 8%;
  padding: 0.875rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(0.3125rem);
}

.pricing-section .pricing-card:hover .select-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.join-summit.no-gradient-bg{background: var(--PrimaryColor);}


.inner-banner{ padding: 11rem 0 6rem;     background: radial-gradient(circle at 20% 100%, var(--SecondaryColor) 0%, transparent 40%), radial-gradient(circle at 80% 100%, var(--PrimaryColor) 0%, transparent 40%), url(../images/speakers-ng.jpg) no-repeat center top / cover;}
/* .inner-banner {
    background: radial-gradient(circle at 20% 100%, var(--SecondaryColor) 0%, transparent 40%), radial-gradient(circle at 80% 100%, var(--PrimaryColor) 0%, transparent 40%), url(../images/speakers-ng.jpg)no-repeat center top/cover !important;
    position: relative;
} */

.inner-banner h1{      font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #fff;}

.black-gradient-bg {    background: radial-gradient(circle at 20% 40%, rgb(10 188 197 / 90%), transparent 50%), radial-gradient(circle at 80% 50%, rgb(255 80 50), transparent 60%), #000;}
.same-section.static-pages-outer.border-bottom {
    border-bottom: solid 1px #ffffff29 !important;
}
.static-pages-outer .same-heading h2{    font-size: 1.8rem;}
.static-pages-outer .same-heading h3{    font-size: 1.3rem;}
.static-pages-outer .same-heading p{ font-size: 0.9rem;}
.legal-highlight {
  background: #2d2d3114;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;   font-size: 0.9rem;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
}



.Downloads{background: radial-gradient(circle at 20% 60%, rgb(10 188 197 / 90%), transparent 50%), radial-gradient(circle at 80% 60%, rgb(255 80 50), transparent 60%), #000;}
/* .Downloads__hero {
	background: var(--PrimaryColor);
	padding: 6.25rem 0;
	color: #fff;
	position: relative;
	overflow: hidden
} */
.Downloads__hero {
    background: radial-gradient(circle at 20% 100%, var(--SecondaryColor) 0%, transparent 40%), radial-gradient(circle at 80% 100%, var(--PrimaryColor) 0%, transparent 40%), url(../images/speakers-ng.jpg)no-repeat center top/cover !important;
 position: relative;color: #fff;
  padding: 11rem 0 6rem;
	overflow: hidden
}


.Downloads__hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 1
}

.Downloads__hero__content {
	position: relative;
	z-index: 2
}

.Downloads__hero__title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	line-height: 1.2;    color: #fff;
}

.Downloads__hero__subtitle {
	font-size: 1rem;
	opacity: .9;
	line-height: 1.5;    color: #fff;
}

.Downloads__content {
	padding: 5rem 0
}

.Downloads__section {
	margin-bottom: 5rem
}

.Downloads__section:last-child {
	margin-bottom: 0
}

.Downloads__section__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
	gap: 1rem
}

.Downloads__section__icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain;    filter: invert(1) brightness(56.5);
}

.Downloads__section__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--WhiterColor);
	margin: 0
}

.Downloads__section__subtitle {
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
	margin: 2rem 0;
	color: var(--WhiterColor);
	position: relative;
	padding: .5rem 0 .5em 2.5rem
}

.Downloads__section__subtitle::before {
	content: "";
	position: absolute;
	top: 47%;
	left: 0;
	height: 1px;
	width: 2.2rem;
	background: var(--WhiterColor);
	z-index: 1
}

.Downloads__section__subtitle::after {
	content: attr(data-text);
	position: relative;
	background: #f6f6f600;
	z-index: 2;
	display: inline-block
}

.Downloads__subsection {
	margin-bottom: 4rem
}

.Downloads__subsection:last-child {
	margin-bottom: 0
}

.Downloads__subsection__title {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--WhiterColor);
	position: relative;
	padding: 1rem 0
}

.Downloads__subsection__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: .125rem;
	background: var(--PrimaryColor);
	border-radius: .0625rem
}

.Downloads__separator {
	text-align: center;
	margin: 3rem 0;
	padding: 0 1rem
}

.Downloads__separator__text {
	font-size: 1rem;
	font-weight: 600;
	color: var(--PrimaryColor);
	text-transform: uppercase;
	letter-spacing: .025rem;
	white-space: nowrap
}

.Downloads__app-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.Downloads__app-card__content-wrapper {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%
}

.Downloads__app-card__content-wrapper:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15)
}

.Downloads__app-card__content-wrapper--unavailable:hover {
	transform: none;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1)
}

.Downloads__app-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	flex: 1
}

.Downloads__app-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-shrink: 0
}

.Downloads__app-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.Downloads__app-card__icon img[src*=apple-icon],
.Downloads__app-card__icon img[src*=clear-app-store],
.Downloads__app-card__icon img[src*=play-store-icon] {
	filter: brightness(0.7) contrast(1.2)
}

.Downloads__app-card__icon--placeholder {
	background: #e5e7eb;
	border: 1px solid #d1d5db
}

.Downloads__app-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%
}

.Downloads__app-card__name {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: .5rem;
	line-height: 1.3
}

.Downloads__app-card__description {
	font-size: .875rem;
	color: #6b7280;
	line-height: 1.4;
	margin: 0 0 1rem 0
}

.Downloads__app-card__action {
	text-align: center;
	width: 100%
}

.Downloads__app-card__availability {
	font-size: .875rem;
	color: var(--PrimaryColor);
	margin-bottom: .5rem;
	font-weight: 600
}

.Downloads .download-with-login-btn {
	display: flex;
	align-items: center;
	gap: .5rem
}

.Downloads__download-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__download-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

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

.Downloads__download-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__download-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__download-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__download-btn--disabled:focus {
	box-shadow: none
}

.Downloads__login-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__login-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

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

.Downloads__login-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColor)
}

.Downloads__login-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__login-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__login-btn--disabled:focus {
	box-shadow: none
}

.Downloads__status {
	display: inline-block;
	font-size: .9rem;
	font-weight: 600;
	padding: .12rem .8rem;
	border-radius: 50px;
	margin-top: 6px
}

.Downloads__status--in-review {
	background-color: #e0e0e0;
	color: #555
}

.Downloads__status--live {
	background-color: #28a745;
	color: #fff
}

.Downloads__featured {
	padding: 5rem 0;

}

.Downloads__featured .Downloads__featured__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--WhiterColor);
	margin: 0 0 3rem;
	text-align: center
}

.Downloads__featured .download-platform-card {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	text-align: center;
	height: 100%
}

.Downloads__featured .iconbx {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center
}

.Downloads__featured .iconbx img {
	width: 100%;
	max-width: 39%
}

.Downloads__featured h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: 1rem;
	line-height: 1.3
}

.Downloads__featured .btn-disable {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none;
	font-size: .9rem;
	padding: .5rem .9375rem;
	border-radius: 10px;
	font-weight: 400
}



/* Tabs */
.agenda-tabs .nav-pills {margin-bottom: 3rem; gap: 0.6rem;}
.agenda-tabs .nav-pills .nav-link {position: relative;
padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--WhiterColor);
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    background: rgb(14 14 14 / 0%);
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
    box-shadow: inset 0 0.0625rem 0.125rem rgb(255 255 255 / 6%), inset 0 -0.0625rem 0.125rem rgb(255 242 242 / 8%), 0 0.5rem 2rem rgb(0 0 0 / 0%);
    transition: all 0.3s ease;
}
.agenda-tabs .nav-pills .nav-link:before{    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 0.0625rem solid rgba(255, 255, 255, 0.5);
    mask: linear-gradient(to bottom, white 40%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, white 40%, transparent 100%);
    pointer-events: none;}

.agenda-tabs .nav-pills .nav-link.active {
  background: var(--SecondaryColor);
  color: var(--WhiterColor);
}




/* Custom Gallery Slider */
.venueModal-wrap .modal-content {
  background: #000;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.venueModal-wrap .modal-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--WhiterColor);
}

.venueModal-wrap .custom-modal-body {
  padding: 0;
  margin-top: 1rem;
}

.venueModal-wrap .custom-gallery-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 60vh;
}

.venueModal-wrap .custom-gallery-main {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.venueModal-wrap .custom-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.venueModal-wrap .custom-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  padding: 1rem;
}

.venueModal-wrap .custom-gallery-nav svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.8));
}

.venueModal-wrap .custom-gallery-nav.prev {
  left: 0;
}

.venueModal-wrap .custom-gallery-nav.next {
  right: 0;
}

.venueModal-wrap .custom-gallery-rail {
  margin-top: 0.5rem;
  position: relative;
  padding: 0 3rem;
  background: #0b0b0d;
  padding-bottom: 0.5rem;
}

.venueModal-wrap .custom-thumb-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: none;
  color: #fff;
  z-index: 5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.venueModal-wrap .custom-thumb-nav.prev {
  left: 0.5rem;
}

.venueModal-wrap .custom-thumb-nav.next {
  right: 0.5rem;
}

.venueModal-wrap .custom-thumb-nav svg {
  width: 18px;
  height: 18px;
}

.venueModal-wrap .custom-thumbnail-scroller {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.venueModal-wrap .custom-thumbnail-scroller::-webkit-scrollbar {
  display: none;
}

.venueModal-wrap .gallery-thumbnail {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.venueModal-wrap .gallery-thumbnail:hover {
  opacity: 0.8;
}

.venueModal-wrap .gallery-thumbnail.active {
  opacity: 1;
  border-color: var(--PrimaryColor);
}

.agenda-section {
  background-color: #0b0e14;
  color: var(--WhiterColor);
}

.agenda-section .agenda-header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.agenda-section .agenda-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--WhiterColor);
  text-transform: uppercase;
  margin-bottom: 0.3125rem;
}

.agenda-section .agenda-header p {
  color: #94a3b8;
  font-size: 1rem;
}


.agenda-section .agenda-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px;

}

.agenda-section .agenda-column {
  flex: 1;
}

.agenda-section .agenda-col-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.agenda-section .agenda-pill {
  font-size: 0.6875rem;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-weight: 500;
  border: 0.0625rem solid currentColor;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}

.agenda-section .col-mon .agenda-pill {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.agenda-section .col-tue .agenda-pill {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
}

.agenda-section .col-wed .agenda-pill {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.agenda-section .col-thu .agenda-pill {
  color: #6b7280;
  background: rgba(107, 114, 128, 0.1);
  border-color: rgba(107, 114, 128, 0.3);
}

.agenda-section .col-fri .agenda-pill {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

/* Items */
.agenda-section .agenda-item {
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  border-radius: 0.9375rem;
  overflow: hidden;
}

.agenda-section .agenda-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.125rem;
  border-radius: 0.125rem;
}

.agenda-section .col-mon .agenda-item::before {
  background-color: #8b5cf6;
}

.agenda-section .col-tue .agenda-item::before {
  background-color: #06b6d4;
}

.agenda-section .col-wed .agenda-item::before {
  background-color: #10b981;
}

.agenda-section .col-thu .agenda-item::before {
  background-color: #6b7280;
}

.agenda-section .col-fri .agenda-item::before {
  background-color: #ef4444;
}

.agenda-section .agenda-time {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  letter-spacing: 0.03125rem;
}

.agenda-section .col-mon .agenda-time {
  color: #9F8EFF;
}

.agenda-section .col-tue .agenda-time {
  color: #69DAFF;
}

.agenda-section .col-wed .agenda-time {
  color: #1DFBA5;
}

.agenda-section .col-thu .agenda-time {
  color: #A3AAC4;
}

.agenda-section .col-fri .agenda-time {
  color: #D7383B;
}

.agenda-section .agenda-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.agenda-section .agenda-subtitle {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* Card Style for specific highlights like "Live Demo" */
.agenda-section .agenda-item.card-highlight {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border-radius: 0.5rem;
  border-left: none;
  border: 0.0625rem solid rgba(255, 255, 255, 0.05);
}

.agenda-section .col-mon .agenda-item.card-highlight {
  border-left: 0.125rem solid #9F8EFF;
}

.agenda-section .col-tue .agenda-item.card-highlight {
  border-left: 0.125rem solid #69DAFF;
}

.agenda-section .col-wed .agenda-item.card-highlight {
  border-left: 0.125rem solid #1DFBA5;
}

.agenda-section .col-thu .agenda-item.card-highlight {
  border-left: 0.125rem solid #A3AAC4;
}

.agenda-section .col-fri .agenda-item.card-highlight {
  border-left: 0.125rem solid #D7383B;
}

.agenda-section .highlight-badge {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  background: #06b6d4;
  color: #fff;
  font-size: 0.625rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 700;
}



/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}








.utah-hero .cta-wrap.spaoner-cta-hero{left: unset; bottom: unset; margin-top: 2rem;}
.utah-hero .cta-wrap.spaoner-cta-hero .cta-sponsor{background: #ffffffb3;    padding-left: 1.5rem; color: #000;}
.utah-hero .cta-wrap.spaoner-cta-hero .cta-text{text-align: left; color: #000;}

.system-section{background: url(../images/emerging-bg.png)no-repeat right 10% top -7% ;  background-size: 250px;}
.system-section .system-heading h3 small{    font-size: 60%;}
.system-section .max-wid-50{width: 100%; max-width: 80%;}

.system-section .emerging-system{background: #0ABCC5; padding: 3rem; border-radius: 30px; margin-top: 9rem; position: relative;}
.system-section .shape-img{    position: absolute;
    right: 90px;
    top: -150px;
    width: 100%;
    max-width: 250px;
    z-index: -1;} 


.system-section .system-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.system-section .system-card:hover {
  transform: translateY(-0.3rem);
}

.system-section .system-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;color: #000;
  margin-bottom: 0.6rem;
}

.system-section .system-card p {
  font-size: 0.95rem;
  color: #565656;
  line-height: 1.5;
}

.system-section .icon-box {
  width: 3rem;
  height: 3rem;
  background: #F3F3F3;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.system-section .icon-box img {
  width: 1.4rem;

}

.utah-launch{
  color: #fff;
}

.utah-launch .launch-header h2 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.utah-launch .launch-header p {
  font-size: 1rem;
  color: #bbb;
  max-width: 40rem;
  margin-top: 0.5rem;
}

/* Card */
.utah-launch .launch-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.utah-launch .launch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; transition: all .2s ease;
}

/* Overlay */
.utah-launch .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.utah-launch .overlay .tag {
  font-size: 0.75rem;
  color: var(--PrimaryColor);
  letter-spacing: 0.08rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}
.utah-launch .newzeland-lanuch-card .tag{color: #fff;}
.utah-launch .overlay h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}

/* Hover effect */
.utah-launch .launch-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}


.utah-stand{background: radial-gradient(circle at 20% 100%, var(--SecondaryColor) 0%, transparent 40%), radial-gradient(circle at 80% 100%, var(--PrimaryColor) 0%, transparent 40%) #000;}

.utah-stand .same-heading{margin-bottom: 6rem;}
.utah-stand .col{position: relative;}
.utah-stand .col::after{position: absolute; right: 0; top: 0; width: 1px; height: 100%; background: #ffffff1a; content: '';}
.utah-stand .col:last-child:after{display: none;}
.utah-stand .stand-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
}

.utah-stand .stand-item {
  text-align: center;
}

.utah-stand .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 2rem; padding: 0.2rem;
  border-radius: 0.9rem;
background: rgba(255, 255, 255, 0.1);
      border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}



.utah-stand .stand-item p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.4; font-weight: 500;
}



/* Title */
.utah-sponsor .sponsor-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.utah-sponsor .sponsor-desc {
  font-size: 1rem;
  color: #bbb;
  max-width: 32rem;
  margin: 1rem 0 2rem;
}

/* Tier box */
.utah-sponsor .tier-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.utah-sponsor .tier-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
}

.utah-sponsor .tier-item span {
  font-size: 0.9rem;
  color: #fff;
}

.utah-sponsor .tier-item strong {
  display: block;
  font-size: 1rem;
}

.utah-sponsor .tier-item small {
  color: #ff5a3c;
  font-size: 0.75rem;
}

/* Right Card */
.utah-sponsor .sponsor-card {
    background: #191919;
    border: 0.0625rem solid rgb(255 255 255 / 20%);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
}
.utah-sponsor .sponsor-card .cta-wrap .cta-text{    text-align: left;}
.utah-sponsor .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.utah-sponsor .sponsor-card h4 {
 
  font-size: 1.2rem;
  color: #fff; border-bottom: solid 1px #ffffff3b;
  padding-bottom: 2rem; margin-bottom: 2rem;

}



/* List */
.utah-sponsor .sponsor-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;  
}

.utah-sponsor .sponsor-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.utah-sponsor .sponsor-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--PrimaryColor);
}



.utah-features{background: radial-gradient(circle at 20% 180%, #0abcc587 0%, transparent 50%), radial-gradient(circle at 80% 180%, #fc6c504a 0%, transparent 60%), #0E0E0E;}
.utah-features .feature-item h5 {
  font-size: 1.3rem;
  font-weight: 700; color: #fff;width: 100%; max-width: 50%;
  margin-bottom: 0.8rem;
}

.utah-features .feature-item p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 16rem;
}


.utah-hero h1{    font-size: 5.6rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 0;}


.utah-invite .same-heading{margin-bottom: 5rem;}
.utah-invite .invite-card {
  text-align: center;
}
.utah-invite .invite-card .img-bx{text-align: center;   width: 100%;
  max-width: 16rem;
  border-radius: 1rem; margin:0 auto 1.5rem;}
.utah-invite .invite-card img {
  filter: grayscale(100%);
  transition: 0.4s ease;
}

/* Hover effect */
.utah-invite .invite-card:hover img {
  /* filter: grayscale(0%); */
  transform: scale(1.05);
}

.utah-invite .invite-card h5 {
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.08rem;
text-transform: uppercase;
}

.utah-invite .invite-card span {
  display: block;
  font-size: 0.8rem;
  color: #ff5a3c;
  margin-top: 0.3rem;
}





/* ─── COOKIE BANNER ──────────────────────────────────── */
/* .cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
} */

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 320px;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.cookie-btn-details {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1.5px solid var(--PrimaryColor);
  border-radius: 0.5rem;
  color: var(--PrimaryColor);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-details:hover {
  background: rgba(255, 106, 77, 0.06);
  color: var(--PrimaryColor);
  text-decoration: none;
}

.cookie-btn-accept {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  background: var(--PrimaryColor);
  border: none;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.cookie-btn-accept:hover {
  background: var(--PrimaryColor);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 1rem 1rem 0 0;
  }
}


.sponsor-limited-title{     position: relative;
    padding-top: 3rem;
    overflow: hidden;
    padding-left: 4rem;}

/* Limited label */
.limited-offer {
     position: absolute;
    top: 27px;
    left: -76px;
    background: var(--PrimaryColor);
    border: 2px solid var(--PrimaryColor);
    color: var(--WhiterColor);
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(-45deg);
    display: inline-block;
    width: 240px;
    text-align: center;
}


/* ─── Sponsor Apply Modal ─────────────────────────── */
.sponsor-apply-modal-wrap.modal {
  z-index: 10001;
}
/* .modal-backdrop {
  z-index: 10000;
} */
.sponsor-apply-modal-wrap .modal-content {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.sponsor-apply-modal-wrap .modal-header {
  padding: 2rem 2rem 1rem;
  align-items: flex-start;
}

.sponsor-modal-sub {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--PrimaryColor);
  margin-bottom: 0.3rem;
}

.sponsor-apply-modal-wrap .modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sponsor-modal-body {
  padding: 1.5rem 2rem 2rem;
}

.sponsor-form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.sponsor-form-label span {
  color: var(--PrimaryColor);
}

.sponsor-form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.sponsor-form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.sponsor-form-input:focus {
  border-color: var(--PrimaryColor);
  background: rgba(255,106,77,0.05);
}

.sponsor-form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Tier radio cards */
.tier-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tier-radio-card {
  cursor: pointer;
  display: block;
}

.tier-radio-card input[type="radio"] {
  display: none;
}

.tier-radio-inner {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.tier-radio-card input:checked + .tier-radio-inner {
  border-color: var(--PrimaryColor);
  background: rgba(255,106,77,0.08);
}

.tier-radio-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}

.tier-radio-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.tier-radio-participation {
  font-size: 0.72rem;
  color: var(--PrimaryColor);
  margin-top: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Custom amount */
.amount-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.amount-prefix {
  position: absolute;
  left: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  pointer-events: none;
}

.amount-input {
  padding-left: 1.8rem !important;
}

/* Submit */
.sponsor-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--PrimaryColor);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}

.sponsor-submit-btn:hover {
  opacity: 0.88;
}

.sponsor-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sponsor-form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.sponsor-form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.sponsor-form-msg.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}

.sponsor-form-msg.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--PrimaryColor);
}







/* ─── Logo Context Menu ──────────────────────────────── */
.logo-context-menu {
  position: fixed;
  z-index: 99999;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  padding: 6px;
  min-width: 230px;
  display: none;
  animation: ctxFadeIn 0.12s ease;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.logo-context-menu.visible {
  display: block;
}

@keyframes ctxFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(-4px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.logo-ctx-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  line-height: 1.3;
  transition: background 0.1s;
}

.logo-ctx-item:hover {
  background: #f5f5f5;
  color: #000;
}

.logo-ctx-item svg {
  flex-shrink: 0;
  color: #555;
}

.logo-ctx-separator {
  height: 1px;
  background: #e8e8e8;
  margin: 4px 6px;
}
