*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: #080808;
  color: #ddd5c0;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: default
}

::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: #080808
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #C9A84C, #7a6030)
}

:root {
  --gold: #C9A84C;
  --gold-light: #F0D980;
  --gold-dim: #7a6030;
  --bg: #080808;
  --panel: #111;
  --surface: #161616
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden
}

#preloader.out {
  animation: preOut .85s cubic-bezier(.76, 0, .24, 1) forwards
}

@keyframes preOut {
  0% {
    clip-path: inset(0 0 0 0)
  }

  100% {
    clip-path: inset(0 0 100% 0)
  }
}

.pre-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 12vw, 7rem);
  letter-spacing: .18em;
  background: linear-gradient(135deg, #C9A84C, #F0D980, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: preB .5s ease forwards .25s
}

@keyframes preB {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

#pre-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px
}

.pre-bar {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(to top, #7a6030, #C9A84C);
  transform: scaleY(0);
  transform-origin: bottom
}

#pre-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .85rem;
  letter-spacing: .4em;
  color: rgba(201, 168, 76, .45)
}

.pre-sweep {
  position: absolute;
  bottom: 0;
  left: -30%;
  width: 30%;
  height: 2px;
  background: linear-gradient(to right, transparent, #C9A84C, transparent);
  animation: sweep 2s ease-in-out infinite
}

@keyframes sweep {
  from {
    left: -30%
  }

  to {
    left: 100%
  }
}

/* SCROLL PROGRESS */
#sp {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold, #C9A84C), var(--gold-light, #F0D980));
  z-index: 9999;
  width: 0%;
  transition: width .08s linear
}

/* GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 9990
}

/* GOLD TEXT */
.gt {
  background: linear-gradient(135deg, var(--gold, #C9A84C) 0%, var(--gold-light, #F0D980) 50%, var(--gold, #C9A84C) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* BUTTONS */
.btn-o {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .65rem 1.7rem;
  border: 1px solid rgba(201, 168, 76, .45);
  color: #C9A84C;
  display: inline-block;
  cursor: pointer;
  text-decoration: none
}

.btn-s {
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  color: #080808;
  font-weight: 600;
  border-color: transparent
}

.btn {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .8rem 2rem;
  border: 1px solid rgba(201, 168, 76, .45);
  color: var(--gold, #C9A84C);
  display: inline-block;
  text-decoration: none;
  transition: background .3s, color .3s;
  cursor: pointer;
  background: none;
  font-family: 'DM Sans', sans-serif
}

.btn:hover,
.btn:focus {
  background: var(--gold, #C9A84C);
  color: #080808;
  border-color: var(--gold, #C9A84C)
}

.btn-fill {
  background: linear-gradient(135deg, var(--gold, #C9A84C), var(--gold-light, #F0D980));
  color: #080808;
  font-weight: 600;
  border-color: transparent
}

.btn-fill:hover {
  background: var(--gold-light, #F0D980);
  color: #080808
}

/* HERO */
/* #hero{min-height:100vh;position:relative;display:flex;flex-direction:column;justify-content:flex-end;padding:140px clamp(1.5rem,5vw,5rem) clamp(3.5rem,6vh,6rem);overflow:hidden} */
#hcanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 13vw, 12.5rem);
  line-height: .9;
  letter-spacing: -.01em;
  position: relative;
  z-index: 2
}

.h-outline {
  -webkit-text-stroke: 1px rgba(201, 168, 76, .35);
  color: transparent
}

/* REVEALS */
.rev {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.23, 1, .32, 1), transform .85s cubic-bezier(.23, 1, .32, 1)
}

.rev-l {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .85s cubic-bezier(.23, 1, .32, 1), transform .85s cubic-bezier(.23, 1, .32, 1)
}

.rev-r {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .85s cubic-bezier(.23, 1, .32, 1), transform .85s cubic-bezier(.23, 1, .32, 1)
}

.rev.vis,
.rev-l.vis,
.rev-r.vis {
  opacity: 1;
  transform: translate(0)
}

/* LABEL */
.sl {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #C9A84C
}

/* MARQUEE */
.mq-outer {
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, .1);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  background: #0a0a0a;
  padding: .85rem 0
}

.mq {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: mq 22s linear infinite
}

.mq1 {
  animation: mq 22s linear infinite
}

.mq2 {
  animation: mq 22s linear infinite reverse
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* STATS */
.snum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold, #C9A84C), var(--gold-light, #F0D980));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* CARDS */
.card {
  background: var(--panel, #111);
  transition: box-shadow .4s, transform .4s
}

.card:hover {
  box-shadow: 0 20px 50px rgba(201, 168, 76, .1);
  transform: translateY(-4px)
}

.card3 {
  background: #111;
  border: 1px solid rgba(201, 168, 76, .1);
  transform-style: preserve-3d;
  transition: box-shadow .4s
}

.card3:hover {
  box-shadow: 0 24px 60px rgba(201, 168, 76, .1)
}

.info-card {
  background: var(--panel, #111);
  transition: box-shadow .35s, transform .35s
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(201, 168, 76, .1)
}

/* GBORDER */
.gb {
  position: relative
}

.gb::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(201, 168, 76, .45), transparent, rgba(201, 168, 76, .18)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none
}

/* SPEAKER */
.sp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.rp {
  animation: rp 2.5s ease-out infinite
}

.rp:nth-child(2) {
  animation-delay: .7s
}

.rp:nth-child(3) {
  animation-delay: 1.4s
}

@keyframes rp {
  0% {
    transform: translate(-50%, -50%) scale(.55);
    opacity: .8
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0
  }
}

/* PARTICLES */
.pt {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .55), transparent);
  pointer-events: none;
  animation: ptf linear infinite
}

@keyframes ptf {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0
  }

  10% {
    opacity: .8
  }

  90% {
    opacity: .2
  }

  100% {
    transform: translateY(-15vh) scale(1.5);
    opacity: 0
  }
}

/* SOUND RIPPLE */
.sr {
  position: fixed;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, .4);
  pointer-events: none;
  z-index: 9995;
  transform: translate(-50%, -50%);
  animation: sr 1.3s ease-out forwards
}

@keyframes sr {
  from {
    width: 0;
    height: 0;
    opacity: .9
  }

  to {
    width: 320px;
    height: 320px;
    opacity: 0
  }
}

/* EQ BARS */
.eqb {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #6a5028, #C9A84C);
  transition: height .12s ease;
  cursor: row-resize;
  position: relative
}

.eqb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(240, 217, 128, .55);
  border-radius: 4px;
  box-shadow: 0 0 10px #F0D980
}

.eqb:hover {
  background: linear-gradient(to top, #C9A84C, #F0D980)
}

/* SCROLL INDICATOR */
.scr-ind {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 5
}

.scr-dot {
  width: 5px;
  height: 5px;
  background: #C9A84C;
  border-radius: 50%;
  animation: sdot 1.8s ease-in-out infinite
}

@keyframes sdot {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  50% {
    transform: translateY(10px);
    opacity: .2
  }
}

/* FORM */
.fi {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid rgba(201, 168, 76, .14);
  padding: 1rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #ccc;
  outline: none;
  transition: border-color .3s, background .3s
}

.fi:focus {
  border-color: var(--gold, #C9A84C);
  background: #0f0f0f
}

.fi::placeholder {
  color: #333
}

textarea.fi {
  resize: none
}

select.fi {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center
}

/* MAG */
.mag {
  display: inline-block
}

/* TIMELINE */
.tl-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold, #C9A84C), transparent);
  height: 0;
  transition: height 1.8s ease
}

.tl-line.vis {
  height: 100%
}

/* HERO CANVAS */
#hc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none
}

/* TEAM CARD hover shine */
.team-card {
  position: relative;
  overflow: hidden;
  background: var(--panel, #111);
  transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(201, 168, 76, .12)
}

.team-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(201, 168, 76, .07), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
  pointer-events: none
}

.team-card:hover::before {
  left: 130%
}

/* VALUE ICON RING */
.icon-ring {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, .04)
}

/* SECTION DIVIDER */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold, #C9A84C), transparent);
  margin: 1.5rem 0
}

/* WAVE HERO bg */
@keyframes orbA {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-20px, 15px) scale(1.03)
  }
}

@keyframes orbF {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-25px, 18px) scale(1.04)
  }
}

/* FAQ ACCORDION */
.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  overflow: hidden
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #ddd5c0;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  letter-spacing: .02em
}

.faq-q:hover {
  color: var(--gold, #C9A84C)
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s, border-color .35s;
  color: var(--gold, #C9A84C)
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold, #C9A84C)
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.23, 1, .32, 1), padding .35s
}

.faq-item.open .faq-body {
  max-height: 200px;
  padding-bottom: 1.25rem
}

.faq-body p {
  font-size: .85rem;
  color: #555;
  line-height: 1.85
}

/* MAP PLACEHOLDER */
.map-ph {
  background: linear-gradient(135deg, #111 0%, #151515 50%, #111 100%);
  position: relative;
  overflow: hidden
}

.map-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, .05), transparent)
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 40px 40px
}

/* STEP CONNECTOR */
.step-line {
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, .3), transparent)
}

/* SUCCESS STATE */
#success-msg {
  display: none;
  text-align: center;
  padding: 3rem;
  animation: fadeIn .5s ease
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.96)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

/* ANIMATIONS FROM INLINE TAGS */
@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0)
  }

  to {
    opacity: 0;
    transform: translateY(12px)
  }
}


/* HEADER NAV */
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ddd5c0;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #C9A84C;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.drop-link {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.drop-link:hover {
  background: rgba(201, 168, 76, 0.1);
  color: #C9A84C;
}

.mob-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: #ddd5c0;
  text-decoration: none;
  transition: color 0.3s;
}

.mob-link:hover {
  color: #C9A84C;
}

.mob-sublink {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mob-sublink:hover {
  color: #C9A84C;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex !important;
  }

  #mobile-toggle {
    display: none !important;
  }

  #desktop-cta {
    display: inline-block !important;
  }

  #mobile-menu {
    display: none !important;
  }
}

.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #080808;
  border: 1px solid rgba(201, 168, 76, .2);
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.nav-dropdown a {
  color: #ccc;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: #C9A84C;
}

.mob-dropdown {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.mob-dropdown a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.mob-dropdown a:hover {
  color: #C9A84C;
}

#hero {
  height: 100vh;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 75px;
  }
}

.video-bg {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

.kwqgfP {
  margin-top: 50px !important;
}