/** Shopify CDN: Minification failed

Line 1171:0 Unexpected "}"

**/
/* ============ TOKENS ============ */
:root {
  --orange: #F16B27;
  --orange-dark: #C74F16;
  --yellow: #FCED21;
  --black: #0A0A0A;
  --black-soft: #141414;
  --white: #FFFFFF;
  --gray: #9A9A9A;
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container: 1200px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }

.hl { color: var(--orange); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: 760px; }
.container.center, .center { text-align: center; }

.section { padding: 110px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 14px;
}

.eyebrow.center { display: block; }

.lead {
  font-size: 1.15rem;
  color: #D8D8D8;
  max-width: 640px;
  margin: 0 auto 1rem;
}
.center .lead, p.lead.center { margin-left: auto; margin-right: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 8px 24px rgba(241,107,39,0.35); }
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 12px 32px rgba(241,107,39,0.5); }

.btn-yellow { background: var(--yellow); color: var(--black); box-shadow: 0 8px 24px rgba(252,237,33,0.25); }
.btn-yellow:hover { box-shadow: 0 12px 32px rgba(252,237,33,0.4); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-block { width: 100%; }
.btn-small { padding: 10px 22px; font-size: 0.8rem; }
.btn-disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.nav-open .site-header {
  background: var(--black);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
.logo span { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-dropdown-menu a::after { content: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); }


.nav-cta { flex-shrink: 0; }

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  flex-shrink: 0;
}
.cart-icon svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


.header-social { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-drawer-close { display: none; }


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; }


/* ============ HERO ============ */
.hero {
  position: relative !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  isolation: isolate;
}

.hero-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 25%;
  z-index: -3 !important;
}

.hero-video-mobile {
  display: none;
  width: 100%;
  max-width: 420px;
  margin: 32px auto 0;
  border-radius: var(--radius);
}



.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 20% 20%, rgba(241,107,39,0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(252,237,33,0.25), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(241,107,39,0.3), transparent 55%),
    var(--black);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(6deg) brightness(1.08); }
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.05;
  background-image: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}


.hero-tagline {
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #E8E8E8;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 8px;
  background: var(--yellow);
  border-radius: 3px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: 6px; opacity: 1; }
  70% { opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

.sound-toggle {
  position: absolute;
  bottom: 32px;
  right: 24px;
  z-index: 1;
  background: rgba(10,10,10,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.sound-toggle:hover { border-color: var(--orange); background: rgba(10,10,10,0.7); }
.sound-toggle[hidden] { display: none; }

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.step {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.step:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  background: #1a1614;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.step:nth-child(2) .step-num { background: var(--yellow); color: var(--black); }
.step:nth-child(4) .step-num { background: var(--yellow); color: var(--black); }

.step p { color: var(--gray); }

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  align-items: start;
}

.product-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.product-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow), 0 20px 50px rgba(252,237,33,0.08);
  transform: scale(1.03);
}
.product-card--featured:hover { transform: scale(1.03) translateY(-8px); }

.product-media {
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.product-media--deck { background: linear-gradient(135deg, var(--orange), #7a2f0c); }
.product-media--bundle { background: linear-gradient(135deg, var(--yellow), #a68f00); }
.product-media--kit { background: linear-gradient(135deg, #2b2b2b, var(--orange)); }
.product-media--rope-pink { background: linear-gradient(135deg, #FF6FA5, #C7397A); }
.product-media--rope-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }

.product-badge {
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.product-badge--yellow { background: var(--black); color: var(--yellow); }

.product-body { padding: 28px; }

.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.product-card--featured .price { color: var(--yellow); }

.includes {
  list-style: none;
  margin-bottom: 14px;
}
.includes li {
  padding-left: 26px;
  position: relative;
  color: #D8D8D8;
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.product-card--featured .includes li::before { color: var(--yellow); }

.product-body p:not(.price) { color: var(--gray); margin-bottom: 20px; }

/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail { padding-top: 170px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 36px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--orange); }

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-hero-media {
  height: 440px;
  border-radius: var(--radius);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.product-hero-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 20px;
}
.product-hero-details .includes { margin-bottom: 24px; }
.product-hero-details .includes li { font-size: 1rem; }
.product-hero-details .lead { margin: 0 0 28px; max-width: none; }

.product-hero-details .hero-ctas { justify-content: flex-start; margin-bottom: 8px; align-items: center; }
.product-hero-details .hero-ctas .btn {
  border-radius: 100px !important;
  padding: 0 32px !important;
  height: 54px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.product-hero-details .shopify-payment-button {
  height: 54px !important;
  align-items: center !important;
}
.product-hero-details .shopify-payment-button__button {
  border-radius: 100px !important;
  height: 54px !important;
  min-height: 0 !important;
  max-height: none !important;
  width: auto !important;
  box-sizing: border-box !important;
  padding: 0 32px !important;
  font-size: 0.95rem !important;
  line-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}



.product-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.product-policy-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.product-policy-block h4 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--white);
}
.product-policy-block div { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }
.product-policy-block div p { margin-bottom: 8px; }
.product-policy-block div p:last-child { margin-bottom: 0; }


/* ============ ROPES ============ */
.rope-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


/* ============ MERCH ============ */
.merch-card { text-align: center; }
.merch-card--soon { opacity: 0.6; }
.merch-media {
  aspect-ratio: 1.5;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--black);
}

.soon-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--yellow);
  text-transform: uppercase;
}

/* ============ WHY LOVE ============ */
.love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.love-card {
  background: linear-gradient(160deg, var(--black-soft), #1c1310);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.love-card:hover { transform: translateY(-6px) rotate(-0.5deg); border-color: var(--orange); }
.love-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.love-card h3 { margin-bottom: 0; font-size: 1.15rem; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
  margin-top: 60px;
}

.gallery-tile {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #262626, #0d0d0d);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-tile:nth-child(3n+1) { background: linear-gradient(135deg, var(--orange-dark), #1a1a1a); }
.gallery-tile:nth-child(3n+2) { background: linear-gradient(135deg, #3a3a3a, #111); }
.gallery-tile:nth-child(3n+3) { background: linear-gradient(135deg, #7a6600, #1a1a1a); }
.gallery-tile:hover { transform: scale(1.03); }
.gallery-tile--tall { grid-row: span 2; }
.gallery-tile-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10,10,10,0.55);
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  font-size: 1.15rem;
  padding-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.gallery-tile-trigger:hover .play-icon,
.gallery-tile-trigger:focus-visible .play-icon { background: var(--orange); border-color: var(--orange); transform: scale(1.08); }
.gallery-cta {
  margin-top: 50px;
  text-align: center;
}
.gallery-cta p { color: var(--gray); margin-bottom: 18px; }

/* ============ GALLERY VIDEO MODAL ============ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-modal.is-open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.9);
}
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  z-index: 1;
}
.video-modal-inner video {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: #000;
   object-fit: contain;
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.video-modal-close:hover { background: var(--orange); border-color: var(--orange); }

body.video-modal-open { overflow: hidden; }

body.nav-open { overflow: hidden; }

body.cart-drawer-open { overflow: hidden; }

/* ============ CART DRAWER ============ */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 149;
}
.cart-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: 90%;
  max-width: 400px;
  background: var(--black-soft);
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -12px 0 40px rgba(0,0,0,0.5);
  z-index: 150;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-drawer-header h3 { margin: 0; }
.cart-drawer-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer-close:hover { background: var(--orange); border-color: var(--orange); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 24px;
}
.cart-drawer-empty { color: var(--gray); text-align: center; padding: 60px 0; }

.cart-drawer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-drawer-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-drawer-item-info { flex: 1; min-width: 0; }
.cart-drawer-item-info h4 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}
.cart-drawer-item-price { color: var(--orange); font-size: 0.9rem; font-weight: 700; margin-bottom: 10px; }
.cart-drawer-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cart-drawer-qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer-qty button:hover { background: var(--orange); border-color: var(--orange); }
.cart-drawer-qty span { min-width: 18px; text-align: center; font-size: 0.9rem; color: var(--white); }
.cart-drawer-remove {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 0;
}
.cart-drawer-remove:hover { color: var(--orange); }

.cart-drawer-upsell {
  padding: 4px 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-drawer-upsell-heading {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  margin: 14px 0 12px;
}
.cart-drawer-upsell-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.cart-drawer-upsell-item {
  flex: 0 0 auto;
  width: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cart-drawer-upsell-item img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.cart-drawer-upsell-info { position: relative; width: 100%; margin-bottom: 6px; }
.cart-drawer-upsell-title {
  font-size: 0.78rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer-upsell-price { font-size: 0.78rem; color: var(--orange); font-weight: 700; }
.cart-drawer-upsell-add {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer-upsell-add:hover { background: var(--orange); border-color: var(--orange); }
.cart-drawer-upsell-add[disabled] { opacity: 0.4; cursor: not-allowed; }

.cart-drawer-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-drawer-footer .price { font-size: 1.3rem; margin-bottom: 16px; text-align: center; }

@media (max-width: 480px) {
  .cart-drawer { width: 100%; max-width: none; }
}


@media (max-width: 600px) {
  .video-modal { padding: 20px; }
  .video-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 1.3rem; }
}



/* ============ GAME NIGHTS ============ */
.game-nights {
  background: linear-gradient(135deg, #1a1108, var(--black) 60%);
}
.game-nights-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 30px 0 36px;
}
.event-types span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============ SHARED PILL LIST / SUBHEAD ============ */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.pill-list span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
}

.subhead {
  color: var(--yellow);
  margin-top: 50px;
}

.includes--centered {
  max-width: 420px;
  margin: 24px auto 0;
  text-align: left;
}

/* ============ WHAT'S INSIDE THE DECK ============ */
.whats-inside-deck { background: var(--black-soft); }

.deck-teaser {
  margin-top: 34px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--yellow);
}

/* ============ BRING TO YOU ============ */
.bring-to-you { background: linear-gradient(135deg, #1a1108, var(--black) 60%); }

.bring-to-you-cta { margin-top: 54px; }
.bring-to-you-cta .subhead { margin-top: 0; }
.bring-to-you-cta p { color: #D8D8D8; margin-bottom: 28px; }

/* ============ EVENTS ============ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.event-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.event-media {
  height: 200px;
  position: relative;
  background: linear-gradient(135deg, #2b2b2b, var(--orange));
  overflow: hidden;
}
.event-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-date-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,10,10,0.7);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
}
.event-body { padding: 26px; }
.event-body h3 { margin-bottom: 8px; }
.event-meta { color: var(--orange); font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.event-desc { color: var(--gray); margin-bottom: 20px; font-size: 0.92rem; }
.events-empty {
  color: var(--white);
  margin-top: 50px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

@media (max-width: 1024px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

/* ============ EVENT REGISTRATION ============ */
.event-registration { background: var(--black-soft); }

.agreement-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
.agreement-box .subhead { margin: 0 0 12px; font-size: 1rem; }
.agreement-text p { color: #C8C8C8; font-size: 0.88rem; margin-bottom: 10px; }
.agreement-text p:last-child { margin-bottom: 0; }
.agreement-text ul {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.agreement-text li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: #C8C8C8;
  font-size: 0.88rem;
}
.agreement-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  background: rgba(255,255,255,0.04);
}

.subhead-note {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gray);
}

.agreement-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #D8D8D8;
}

}
.agreement-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.agreement-bullet-list {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}
.agreement-bullet-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #C8C8C8;
  font-size: 0.85rem;
  line-height: 1.4;
}
.agreement-bullet-list li:last-child { margin-bottom: 0; }
.agreement-bullet-list li::before {
  content: '\2022';
  position: absolute;
  left: 4px;
  color: var(--orange);
  font-weight: 800;
}



/* ============ SPONSOR PAGE ============ */
.sponsor-cta { margin-top: 54px; }
.sponsor-cta .subhead { margin-top: 0; }
.sponsor-cta p { color: #D8D8D8; margin-bottom: 28px; }

/* ============ ABOUT PAGE ============ */
.about-tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--orange);
  line-height: 1.3;
  margin-top: 50px;
}

/* ============ FOUNDER ============ */
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 50px;
}
.founder-photo-col { display: flex; flex-direction: column; gap: 16px; }
.founder-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange), #7a2f0c);
  overflow: hidden;
}
.founder-photo--has-image { aspect-ratio: auto; background: none; }
.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.founder-title {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}
.founder-bio { text-align: left; }
.founder-bio-text p { color: #D8D8D8; margin-bottom: 14px; }
.founder-bio-text p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-col { max-width: 320px; margin: 0 auto; }
  .founder-bio { text-align: center; }
}

/* ============ FOUNDATION / ENTERTAINMENT PAGES ============ */
.foundation-cta, .entertainment-cta { margin-top: 54px; }
.foundation-cta .subhead, .entertainment-cta .subhead { margin-top: 0; }
.foundation-cta p, .entertainment-cta p { color: #D8D8D8; margin-bottom: 28px; }

/* ============ REVIEWS ============ */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.review-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.stars { color: var(--yellow); letter-spacing: 3px; margin-bottom: 16px; }
.review-card p:not(.stars):not(.review-name) { color: #E0E0E0; font-style: italic; margin-bottom: 16px; }
.review-name { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

/* ============ FOLLOW ============ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 50px;
}
.social-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-tile:hover { transform: scale(1.05); opacity: 1; }
.social-tile:nth-child(even) { background: linear-gradient(135deg, #2b2b2b, var(--orange)); }

/* ============ FINAL CTA ============ */
.final-cta { padding: 140px 0; }
.final-cta .lead { max-width: 680px; margin-bottom: 40px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.footer-col a {
  display: block;
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--orange); }
.footer-brand p { color: var(--gray); margin-top: 10px; font-size: 0.9rem; letter-spacing: 1px; }

.footer-social { display: flex; gap: 14px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon img { width: 18px; height: 18px; object-fit: contain; border-radius: 50%; }

.social-icon--sm { width: 30px; height: 30px; }
.social-icon--sm svg, .social-icon--sm img { width: 14px; height: 14px; }

.footer-newsletter p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 12px 18px;
  color: var(--white);
  font-family: var(--font-body);
  min-width: 0;
}
.newsletter-form input::placeholder { color: var(--gray); }
.newsletter-form input:focus { outline: none; border-color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}

/* ============ SCROLL REVEAL ============ */
/* Pure-CSS fade-in on page load — intentionally has no JavaScript
   dependency. Content can never get stuck invisible, no matter what
   breaks elsewhere in main.js. */
.reveal {
  animation: revealFade 0.8s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes revealFade {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .hero-fallback, .scroll-cue span { animation: none; }
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-grid, .reviews-track { grid-template-columns: 1fr; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-8px); }
  .rope-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-grid, .love-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-media { height: 320px; }
}

@media (max-width: 860px) {
  .hero { align-items: flex-start; }
  .hero-content { padding-top: 120px; padding-bottom: 40px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .header-social { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-video { display: none !important; }
  .sound-toggle { display: none; }
  .scroll-cue { display: none; }
  .hero-video-mobile { display: block; }
 .hero-ctas { margin-top: 32px; }
.hero-content .hero-ctas .btn { min-width: 250px; }



  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 82%;
    max-width: 340px;
    background: var(--black-soft);
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -12px 0 40px rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    font-size: 1.1rem;
    z-index: 90;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
  }
  body.nav-open .main-nav {
    transform: translateX(0);
  }

  .nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-drawer-close:hover { background: var(--orange); border-color: var(--orange); }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav a::after { content: none; }
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: none;
    padding: 0 0 8px 16px;
    gap: 0;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
  }
  .nav-dropdown-menu a {
    border-bottom: none;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray);
  }
}


@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .steps { grid-template-columns: 1fr; }
  .rope-grid, .merch-grid, .love-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* ============ SHOPIFY PRODUCT IMAGES ============ */
/* Real product/media images sit over the existing gradient placeholders as
   an absolutely-positioned cover layer, so cards still look right before a
   merchant uploads photos. */
.product-media, .product-hero-media, .merch-media, .gallery-tile, .social-tile {
  overflow: hidden;
}
.product-media img,
.product-hero-media img,
.merch-media img,
.gallery-tile img,
.gallery-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-media { position: relative; }

/* ============ VARIANT SELECT / DISABLED BUTTONS ============ */
.variant-select {
  display: block;
  width: 100%;
  max-width: 320px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 14px 44px 14px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239A9A9A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.btn[disabled] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.form-error { color: #FF6B6B; font-size: 0.85rem; margin-top: 10px; }


/* Dynamic column count — collapses to fewer columns instead of leaving
   an empty gap when items are removed */
.product-grid,
.rope-grid,
.merch-grid,
.love-grid,
.gallery-grid,
.events-grid,
.reviews-track {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
}

/* ============ CONTACT / REGISTRATION FORMS ============ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 50px auto 0;
}
.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.form-row input { flex: 1; min-width: 200px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 14px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form textarea {
  border-radius: var(--radius);
  resize: vertical;
  min-height: 140px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: var(--orange); }
.contact-form .variant-select { max-width: none; margin-bottom: 0; }
.contact-form .btn { align-self: flex-start; }
.form-note {
  font-size: 0.85rem;
  color: var(--gray);
}
.form-note.success { color: var(--yellow); font-weight: 600; }
.form-note.error { color: var(--orange); font-weight: 600; }
.video-link-field { display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 600px) {
  .contact-form .btn { align-self: stretch; }
}


/* ============ FAQS ============ */
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 4px 24px;
}
.faq-question {
  cursor: pointer;
  list-style: none;
  padding: 20px 32px 20px 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  position: relative;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.4rem;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding-bottom: 22px; color: #C8C8C8; font-size: 0.95rem; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 8px 0 10px 20px; }
.faq-answer li { margin-bottom: 4px; }

/* ============ POLICY PAGES ============ */
.policy-page { padding-top: 210px; }
.policy-box {
  margin-top: 50px;
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: left;
  color: #C8C8C8;
  font-size: 0.98rem;
  line-height: 1.7;
}
.policy-box p { margin-bottom: 18px; }
.policy-box p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .policy-box { padding: 28px 24px; }
}


/* ============ EVENTS: 2-STEP GUIDE ============ */
.guide-steps {
  max-width: 640px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}
.guide-steps li {
  counter-increment: guide-step;
  position: relative;
  padding: 0 0 16px 38px;
  color: #D8D8D8;
  font-size: 1rem;
  line-height: 1.6;
}
.guide-steps li:last-child { padding-bottom: 0; }
.guide-steps li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-steps li strong { color: var(--white); }


/* ============ EVENTS: TIERS & CASH PRIZES ============ */
.tagline {
  text-align: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 4px;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.tier-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.tier-icon { font-size: 2.2rem; margin-bottom: 10px; }
.tier-price { color: var(--yellow); font-weight: 800; font-size: 1.1rem; margin: 4px 0 14px; }
.tier-desc { color: var(--gray); font-size: 0.92rem; margin-bottom: 18px; }
.tier-features {
  list-style: none;
  text-align: left;
  margin: 0 0 24px;
  padding: 0;
}
.tier-features li {
  color: #D8D8D8;
  font-size: 0.9rem;
  padding: 6px 0 6px 26px;
  position: relative;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.cash-prizes-note {
  text-align: center;
  width: 100%;
  margin: 28px 0 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.cash-prizes-icon { font-size: 2rem; display: block; margin-bottom: 6px; }
.cash-prizes-note .subhead { margin-top: 0; }
.cash-prizes-note p { color: #D8D8D8; font-size: 0.92rem; }

.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 40px;
  padding-top: env(safe-area-inset-top, 0px);
  box-sizing: content-box;
  display: flex;
  align-items: center;
  background: var(--orange);
  overflow: hidden;
}
.announcement-bar p {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  margin: 0;
  display: inline-block;
  padding-left: 100%;
  animation: announcementMarquee 16s linear infinite;
}
@keyframes announcementMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar { justify-content: center; }
  .announcement-bar p {
    animation: none;
    padding: 0 16px;
    white-space: normal;
    text-align: center;
  }
}
