.elementor-8 .elementor-element.elementor-element-5390745{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-8 .elementor-element.elementor-element-5390745, .elementor-8 .elementor-element.elementor-element-5390745::before{--border-transition:0.3s;}/* Start custom CSS for container, class: .elementor-element-5390745 */:root {
  --gold: #f2c14e;
  --gold-bright: #ffe27a;
  --green-deep: #06210f;
  --green: #0d3d20;
  --green-bright: #17c964;
  --cream: #fbf6e9;
  --ink: #061309;
  --shadow-glow: 0 0 60px rgba(23, 201, 100, 0.35);
  --font-display: "Archivo Black", "Space Grotesk", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.eyebrow--light {
  color: var(--gold);
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold-bright);
}

.ticker {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.ticker--light {
  border-color: rgba(6, 19, 9, 0.6);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(242, 193, 78, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(242, 193, 78, 0.5);
}

.btn--lg {
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: rgba(6, 19, 9, 0.55);
  border: 1px solid rgba(242, 193, 78, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.nav__brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav__links a:not(.nav__cta) {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav__links a:not(.nav__cta):hover {
  opacity: 1;
  color: var(--gold-bright);
}

.nav__cta {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 6vw 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 9, 0.55) 0%, rgba(6, 19, 9, 0.25) 40%, rgba(6, 19, 9, 0.75) 100%);
  z-index: 1;
}

.hero__logo {
  position: relative;
  z-index: 3;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.5), var(--shadow-glow);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
  width: 100%;
}

.hero__copy {
  max-width: 560px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  line-height: 0.95;
  margin: 0 0 1.5rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(251, 246, 233, 0.85);
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  max-width: 720px;
  animation: heroRingSpin 12s linear infinite;
  filter: drop-shadow(0 0 50px rgba(23, 201, 100, 0.45));
}

@keyframes heroRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero__featured {
  position: relative;
  width: 900px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

.scroll-cue {
  position: relative;
  z-index: 2;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 246, 233, 0.6);
}

.scroll-cue span {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  animation: scrollcue 1.8s ease-in-out infinite;
}

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

.divider {
  position: relative;
  width: 100%;
  display: block;
  margin-top: -140px;
  margin-bottom: -140px;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 720px) {
  .divider {
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

/* ---------- MOMENTUM / STORY ---------- */
.momentum {
  position: relative;
  padding: 8rem 6vw;
  overflow: hidden;
}

.momentum__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.momentum__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 9, 0.85), rgba(6, 19, 9, 0.6) 50%, rgba(6, 19, 9, 0.9));
  z-index: 1;
}

.momentum__lead {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}

.momentum__lead h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  line-height: 1.05;
  margin: 0;
  color: var(--cream);
  text-transform: uppercase;
}

.momentum__stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.momentum__card {
  background: rgba(6, 19, 9, 0.55);
  border: 1px solid rgba(242, 193, 78, 0.22);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.momentum__card:hover {
  transform: translateY(-10px);
  border-color: rgba(242, 193, 78, 0.6);
}

.momentum__card--a {
  transform: translateY(0);
}

.momentum__card--b {
  transform: translateY(-2rem);
}

.momentum__card--c {
  transform: translateY(1rem);
}

@media (max-width: 900px) {
  .momentum__card--a,
  .momentum__card--b,
  .momentum__card--c {
    transform: none;
  }
}

.momentum__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.momentum__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.9rem;
  color: var(--gold-bright);
}

.momentum__card p {
  line-height: 1.6;
  color: rgba(251, 246, 233, 0.8);
  margin: 0;
}

.momentum__quote {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 5rem;
}

.momentum__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--gold-bright);
  max-width: 800px;
  margin: 0 auto;
}

.momentum__quote em {
  color: var(--green-bright);
  font-style: normal;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 7rem 0;
  background: var(--green-deep);
}

.gallery__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 0 6vw;
}

.gallery__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--cream);
  margin: 0;
  text-transform: uppercase;
}

.marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: marquee 32s linear infinite;
}

.marquee--reverse .marquee__track {
  animation-direction: reverse;
  animation-duration: 38s;
}

.marquee__track img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(242, 193, 78, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.marquee__track img:hover {
  transform: scale(1.05) translateY(-6px);
  border-color: var(--gold-bright);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .marquee__track img {
    width: 190px;
    height: 190px;
  }
}

/* ---------- COMMUNITY ---------- */
.community {
  position: relative;
  padding: 9rem 6vw 6rem;
  background: radial-gradient(circle at 20% 20%, rgba(23, 201, 100, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(242, 193, 78, 0.14), transparent 55%), var(--ink);
  overflow: hidden;
}

.community__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.community__glow--1 {
  width: 420px;
  height: 420px;
  background: rgba(23, 201, 100, 0.35);
  top: -120px;
  left: -100px;
  animation: drift 12s ease-in-out infinite;
}

.community__glow--2 {
  width: 380px;
  height: 380px;
  background: rgba(242, 193, 78, 0.3);
  bottom: -100px;
  right: -80px;
  animation: drift 14s ease-in-out infinite reverse;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 30px);
  }
}

.community__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.community__side h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 1.02;
  margin: 0;
  color: var(--cream);
  text-transform: uppercase;
}

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

.stat {
  background: rgba(251, 246, 233, 0.04);
  border: 1px solid rgba(242, 193, 78, 0.2);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
  background: rgba(251, 246, 233, 0.08);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(251, 246, 233, 0.7);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .community__inner {
    grid-template-columns: 1fr;
  }
}

.community__ticker-strip {
  position: relative;
  z-index: 2;
  margin: 5rem 0 0;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  color: rgba(242, 193, 78, 0.5);
  display: flex;
}

.community__ticker-strip span {
  display: inline-block;
  animation: tickerscroll 20s linear infinite;
}

@keyframes tickerscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ---------- FINALE ---------- */
.finale {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 6vw;
  overflow: hidden;
}

.finale__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.finale__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(6, 19, 9, 0.35), rgba(6, 19, 9, 0.85));
  z-index: 1;
}

.finale__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.finale__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  box-shadow: 0 0 0 4px rgba(242, 193, 78, 0.5), var(--shadow-glow);
}

.finale__content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  margin: 0 0 1.2rem;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.finale__content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(251, 246, 233, 0.85);
  margin-bottom: 2.5rem;
}

.finale__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.finale__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.finale__socials a {
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.finale__socials a:hover {
  opacity: 1;
  color: var(--gold-bright);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 6vw 3rem;
  text-align: center;
  background: var(--green-deep);
}

.footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
}

.footer p {
  max-width: 620px;
  margin: 0 auto 1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(251, 246, 233, 0.5);
}

.footer__copy {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(251, 246, 233, 0.35);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__logo {
    left: 50%;
    transform: translateX(-50%);
  }

  .momentum__stack {
    grid-template-columns: 1fr;
  }

  .community__stats {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */