*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --terra: #C04A1A;
  --terra-l: #D4581F;
  --dark: #050505;
  --dark2: #121212;
  --cream: #F5F5F7;
  --sand: #E5E5E7;
  --white: #FFFFFF;
  --gray: #86868B;
  --fd: 'Bebas Neue', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--fb);
  overflow-x: hidden;
  /* cursor removed */
  -webkit-font-smoothing: antialiased
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .032;
  mix-blend-mode: overlay;
  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='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--terra);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s, opacity .18s
}

.cursor.big {
  width: 48px;
  height: 48px;
  opacity: .2
}

.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid var(--terra);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: .35;
  transition: width .25s, height .25s, opacity .25s
}

.cursor-ring.big {
  width: 64px;
  height: 64px;
  opacity: .15
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
  background: rgba(245, 245, 247, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 74, 26, .15);
  transition: background .4s, border-color .4s
}

nav.scrolled {
  background: rgba(245, 245, 247, .97);
  border-color: rgba(192, 74, 26, .3)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.nav-logo-text {
  font-family: var(--fd);
  font-size: 17px;
  letter-spacing: .14em;
  color: var(--dark)
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--dark)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.btn-nav {
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  font-family: var(--fd);
  font-size: 14px;
  letter-spacing: .1em;
  /* cursor removed */
  transition: background .2s, transform .15s
}

.btn-nav:hover {
  background: var(--terra-l);
  transform: translateY(-1px)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white)
}

.hero-bg-S {
  position: absolute;
  font-family: var(--fd);
  font-size: 540px;
  color: var(--sand);
  opacity: .32;
  line-height: 1;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  z-index: 0;
  user-select: none;
  will-change: transform
}

.hero-content {
  position: relative;
  z-index: 1
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--white);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 36px;
  font-weight: 500
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .7);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(72px, 8.5vw, 136px);
  line-height: .91;
  letter-spacing: .01em;
  margin-bottom: 44px
}

.hero-title .l1,
.hero-title .l2 {
  color: var(--dark);
  display: block
}

.hero-title .l3 {
  color: var(--terra);
  display: block
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px
}

.price-num {
  font-family: var(--fd);
  font-size: 50px;
  color: var(--dark);
  letter-spacing: .02em
}

.price-note {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: .06em
}

.hero-div {
  width: 44px;
  height: 2px;
  background: var(--terra);
  margin-bottom: 24px
}

.hero-tag {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  max-width: 300px;
  font-style: italic
}

.hero-right {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

#heroCanvas {
  display: block;
  width: 100%;
  height: 100%
}

.drag-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  white-space: nowrap
}

/* TICKER */
.ticker {
  background: var(--terra);
  color: var(--white);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-track {
  display: inline-flex;
  animation: tick 26s linear infinite
}

.ticker-item {
  font-family: var(--fd);
  font-size: 13px;
  letter-spacing: .14em;
  padding: 0 28px
}

.ticker-sep {
  color: rgba(255, 255, 255, .3);
  margin: 0 2px
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* STORY */
.section-story {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 90vh;
  position: relative;
  overflow: hidden
}

.story-left {
  padding: 100px 72px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.sec-label {
  font-family: var(--fd);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 400;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -60px;
  opacity: .7;
  white-space: nowrap
}

.section-watermark {
  position: absolute;
  font-family: var(--fd);
  font-size: clamp(220px, 28vw, 420px);
  line-height: .8;
  color: var(--sand);
  opacity: .12;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  z-index: 0;
  user-select: none;
  pointer-events: none
}

.story-hl {
  font-family: var(--fd);
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: .93;
  letter-spacing: .01em;
  margin-bottom: 52px;
  padding-left: 28px
}

.story-hl .acc {
  color: var(--terra)
}

.story-quote {
  border-left: 3px solid var(--terra);
  padding-left: 24px;
  margin-bottom: 36px;
  margin-left: 28px
}

.story-quote p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
  font-style: italic
}

.story-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
  padding-left: 28px
}

.story-right {
  position: relative;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px
}

.parallax-wrap {
  overflow: hidden;
  position: relative
}

.parallax-inner {
  will-change: transform;
  transform: scale(1.12);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0
}

.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88
}

.story-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #2a1808 0%, #1a0d04 50%, #0e0804 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.story-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(192, 74, 26, .15) 0%, transparent 65%)
}

.story-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  z-index: 2
}

/* QUOTE BANNER */
.quote-banner {
  background: rgba(245, 245, 247, 0.85);
  backdrop-filter: blur(12px);
  padding: 140px 80px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(192, 74, 26, .07) 0%, transparent 70%)
}

.qb-text {
  font-family: var(--fb);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto
}

.qb-text .w {
  color: var(--dark2)
}

.qb-text .t {
  color: var(--terra)
}

/* PRODUCT */
.section-product {
  background: rgba(245, 245, 247, 0.85);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 92vh;
  position: relative;
  overflow: hidden
}

.section-product .section-watermark {
  left: auto;
  right: -30px;
  text-align: right
}

.product-3d-wrap {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px
}

#productCanvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px
}

.product-info {
  padding: 80px 80px 80px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.prod-title {
  font-family: var(--fd);
  font-size: clamp(56px, 5.8vw, 92px);
  line-height: .92;
  letter-spacing: .01em;
  margin-bottom: 32px
}

.prod-title .acc {
  color: var(--terra)
}

.prod-price {
  font-family: var(--fd);
  font-size: 54px;
  color: var(--dark);
  letter-spacing: .02em;
  margin-bottom: 22px
}

.prod-desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px
}

.prod-feats {
  list-style: none;
  margin-bottom: 44px
}

.prod-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--dark);
  font-weight: 400;
  padding: 11px 0;
  border-bottom: 1px solid rgba(192, 74, 26, .1)
}

.prod-feats li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0
}

.prod-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: 16px 38px;
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: .1em;
  /* cursor removed */
  transition: background .2s, transform .15s
}

.btn-primary:hover {
  background: var(--terra-l);
  transform: translateY(-2px)
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0, 0, 0, .35);
  padding: 16px 38px;
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: .1em;
  /* cursor removed */
  transition: all .2s
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--white)
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 245, 247, .85);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  backdrop-filter: blur(6px)
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all
}

.modal {
  position: fixed;
  top: 0;
  right: -720px;
  width: min(720px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  overflow-y: auto;
  transition: right .55s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column
}

.modal.open {
  right: 0
}

.modal-hdr {
  padding: 28px 44px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
  border-bottom: 1px solid rgba(192, 74, 26, .08)
}

.modal-hdr-title {
  font-family: var(--fd);
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--dark)
}

.modal-close {
  background: none;
  border: none;
  /* cursor removed */
  color: var(--gray);
  font-size: 26px;
  line-height: 1;
  transition: color .2s;
  padding: 4px 8px;
  position: relative;
  z-index: 100;
}

.modal-close:hover {
  color: var(--terra);
}

.modal-body {
  padding: 36px 44px 80px;
  flex: 1
}

.modal-sec {
  margin-bottom: 44px
}

.modal-sec-title {
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: .12em;
  color: var(--terra);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(192, 74, 26, .14)
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.spec-box {
  background: var(--cream);
  padding: 14px 18px
}

.spec-lbl {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
  font-weight: 500
}

.spec-val {
  font-size: 13px;
  color: var(--dark);
  font-weight: 400
}

.modal-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.85;
  font-weight: 300
}

.modal-text+.modal-text {
  margin-top: 12px
}

.care-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.care-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6
}

.care-list li::before {
  content: '—';
  color: var(--terra);
  flex-shrink: 0
}

.ship-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(192, 74, 26, .08);
  font-size: 13px
}

.ship-row .lbl {
  color: var(--gray);
  font-weight: 300
}

.ship-row .val {
  color: var(--dark);
  font-weight: 400
}

/* VALUES */
.section-values {
  padding: 120px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden
}

.section-values .section-watermark {
  left: auto;
  right: -20px;
  opacity: .08
}

.values-hdr {
  margin-bottom: 80px;
  padding-left: 28px
}

.values-title {
  font-family: var(--fd);
  font-size: clamp(56px, 7vw, 108px);
  line-height: .92;
  letter-spacing: .01em
}

.values-title .acc {
  color: var(--terra)
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.val-card {
  padding: 48px 38px;
  border-top: 1px solid rgba(192, 74, 26, .14);
  transition: background .35s, transform .35s
}

.val-card+.val-card {
  border-left: 1px solid rgba(192, 74, 26, .09)
}

.val-card:nth-child(4) {
  border-left: none
}

.val-card:hover {
  background: var(--cream);
  transform: translateY(-4px)
}

.val-icon {
  width: 28px;
  height: 28px;
  color: var(--terra);
  margin-bottom: 18px
}

.val-name {
  font-family: var(--fd);
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: 10px
}

.val-desc {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75
}

/* CTA */
.section-cta {
  background: rgba(245, 245, 247, 0.85);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 64vh;
  overflow: hidden
}

.cta-left {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.cta-title {
  font-family: var(--fb);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: .92;
  letter-spacing: -0.02em;
  margin-bottom: 28px
}

.cta-title .w {
  color: var(--dark2)
}

.cta-title .t {
  color: var(--terra)
}

.cta-sub {
  font-size: 11px;
  color: rgba(0, 0, 0, .38);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 44px;
  font-weight: 300
}

.btn-cta {
  display: inline-block;
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
  padding: 16px 40px;
  font-family: var(--fd);
  font-size: 17px;
  letter-spacing: .1em;
  text-decoration: none;
  /* cursor removed */
  transition: all .25s;
  align-self: flex-start;
}

.btn-cta:hover {
  background: var(--terra);
  color: var(--white)
}

.cta-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden
}

#ctaCanvas {
  width: 280px;
  height: 380px;
  display: block;
  opacity: .88
}

/* FOOTER */
footer {
  background: var(--white);
  padding: 80px 80px 40px;
  border-top: 1px solid rgba(0, 0, 0, .05)
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.footer-brand-name {
  font-family: var(--fd);
  font-size: 32px;
  letter-spacing: .12em;
  color: var(--dark2);
  margin-bottom: 10px
}

.footer-brand-tag {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  font-style: italic
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
  font-weight: 500
}

.footer-links {
  list-style: none
}

.footer-links li {
  margin-bottom: 12px
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(0, 0, 0, .45);
  font-weight: 300;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--white)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: .06em
}

.footer-craft {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin: 0 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--terra);
}

.slide-dot.active {
  background: rgba(255, 255, 255, .9) !important;
}

/* SCROLL PROGRESS */
.scroll-prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--terra);
  z-index: 9998;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none
}

/* REVEALS — visible by default, animated only when JS loads */
.reveal {
  opacity: 1;
  transform: none
}

.reveal-blur {
  opacity: 1;
  filter: blur(0);
  transform: none
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1)
}

.js-loaded .reveal.visible {
  opacity: 1;
  transform: none
}

.js-loaded .reveal-blur {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(14px);
  transition: opacity 1.15s cubic-bezier(.22, 1, .36, 1), filter 1.15s cubic-bezier(.22, 1, .36, 1), transform 1.15s cubic-bezier(.22, 1, .36, 1)
}

.js-loaded .reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: none
}

.reveal-d1 {
  transition-delay: .12s
}

.reveal-d2 {
  transition-delay: .24s
}

.reveal-d3 {
  transition-delay: .36s
}

.reveal-d4 {
  transition-delay: .48s
}

/* MOBILE */
@media(max-width:960px) {

  .hero,
  .section-story,
  .section-product,
  .section-cta {
    grid-template-columns: 1fr
  }

  .section-watermark {
    display: none
  }

  .sec-label {
    writing-mode: horizontal-tb;
    transform: none;
    position: relative;
    left: auto;
    top: auto;
    margin: 0 0 18px 0;
    opacity: 1
  }

  .story-hl,
  .story-body p,
  .story-quote {
    padding-left: 0;
    margin-left: 0
  }

  .values-hdr {
    padding-left: 0
  }

  .hero-right,
  #heroCanvas {
    min-height: 55vw
  }

  nav {
    padding: 0 24px
  }

  .hero-left {
    padding: 60px 28px
  }

  .story-left,
  .product-info,
  .cta-left {
    padding: 60px 28px
  }

  .section-values {
    padding: 80px 28px
  }

  .values-grid {
    grid-template-columns: 1fr 1fr
  }

  footer {
    padding: 60px 28px 32px
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .nav-links {
    display: none
  }

  .modal {
    width: 100vw;
    right: -100vw
  }

  .modal-body {
    padding: 28px 24px 80px
  }

  .modal-hdr {
    padding: 20px 24px 16px
  }

  .spec-grid {
    grid-template-columns: 1fr
  }

  .cta-right {
    display: none
  }
}

@media(max-width:540px) {
  .values-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }
}

/* MARKETING UX (FOMO, Toasts, Timer) */
.cart-timer-banner {
  background: var(--terra);
  color: var(--white);
  padding: 12px 18px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.cart-timer-banner strong {
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: 0.08em;
  margin: 0 4px;
}

.cart-timer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: sweep 3s linear infinite;
  transform: skewX(-20deg);
  left: -100%;
  width: 50%;
}

@keyframes sweep {
  100% {
    left: 200%;
  }
}

.activity-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  pointer-events: none;
}

.activity-toast {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid rgba(192, 74, 26, 0.3);
  font-size: 12px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}

.activity-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.activity-icon {
  width: 8px;
  height: 8px;
  background: var(--terra);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--terra);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.reward-toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 8, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reward-toast-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.reward-modal {
  background: var(--cream);
  width: min(400px, 90vw);
  padding: 40px;
  text-align: center;
  border-bottom: 4px solid var(--terra);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
}

.reward-toast-overlay.show .reward-modal {
  transform: translateY(0);
}

.reward-title {
  font-family: var(--fd);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.reward-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.reward-code {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-family: var(--fd);
  font-size: 24px;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  margin-bottom: 24px;
  user-select: all;
}

/* FORMS AND CAPTURES (CHECKOUT, FOMO, EXIT INTENT) */
.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fomo-box {
  background: var(--dark2);
  color: var(--white);
  padding: 16px;
  font-size: 13px;
  line-height: 1.6;
  border-left: 3px solid var(--terra);
  margin-bottom: 28px;
}

.fomo-box strong {
  display: block;
  color: var(--terra);
  font-family: var(--fd);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px 16px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: all 0.2s;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23050505' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
  background: #fff;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  color: #d10000;
  font-size: 11px;
  margin-top: 6px;
  display: none;
}

.form-field-error {
  border-color: #d10000 !important;
  background: #fffaf9 !important;
}

.form-submit {
  background: var(--terra);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 18px;
  font-family: var(--fd);
  font-size: 18px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 12px;
}

.form-submit:hover {
  background: var(--terra-l);
}

.form-submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  width: fit-content;
  background: var(--cream);
}

.qty-btn {
  background: none;
  border: none;
  width: 36px;
  height: 46px;
  font-size: 18px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  color: var(--dark);
}

.qty-input {
  width: 36px;
  height: 46px;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  text-align: center;
  text-align-last: center;
  appearance: auto;
  -moz-appearance: textfield;
  pointer-events: none;
  font-size: 15px !important;
  color: var(--dark) !important;
  font-weight: 500;
}

.order-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.ok-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.order-success h3 {
  font-family: var(--fd);
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 12px;
}

.order-success p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* EXIT INTENT & FEEDBACK MODALS */
.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 245, 247, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-intent-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.ei-modal {
  background: var(--cream);
  width: min(440px, 90vw);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-intent-overlay.open .ei-modal {
  transform: scale(1);
  opacity: 1;
}

.ei-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray);
  /* cursor removed */
  transition: color 0.2s;
  z-index: 100;
  padding: 4px 8px;
}

.ei-close:hover {
  color: var(--terra);
}

.ei-title {
  font-family: var(--fd);
  font-size: 64px;
  color: #d10000;
  line-height: 0.9;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.ei-desc {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 32px;
}

.feedback-modal {
  background: var(--white);
  width: min(440px, 90vw);
  padding: 50px 40px;
  text-align: center;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-intent-overlay.open .feedback-modal {
  transform: scale(1);
  opacity: 1;
}

.fb-btn {
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 28px;
  font-size: 14px;
  font-family: var(--fb);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 6px;
}

.fb-btn:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

/* ----------- CINEMATIC MOVIE SCENES ----------- */
.movie-scene {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0 10vw;
  pointer-events: none;
}

.movie-scene>* {
  pointer-events: auto;
}

.scene-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
}

.scene-left {
  width: 100%;
  max-width: 600px;
  margin-right: auto;
}

.scene-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* TYPOGRAPHY */
.movie-title {
  font-size: clamp(60px, 12vw, 200px);
  font-family: var(--fd);
  line-height: 0.8;
  margin: 0;
  color: var(--dark2);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.movie-subtitle {
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--terra);
  text-transform: uppercase;
  font-weight: 500;
}

.giant-bg-text {
  position: absolute;
  font-size: 25vw;
  font-family: var(--fd);
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.movie-para {
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 300;
  color: var(--dark);
}

.movie-quote {
  font-size: clamp(40px, 8vw, 100px);
  font-family: var(--fd);
  line-height: 0.9;
  color: var(--terra);
  text-align: center;
}

.movie-sub-para {
  font-size: 20px;
  color: var(--white);
  opacity: 0.7;
  max-width: 500px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
}

.spec-title {
  font-size: 24px;
  color: var(--terra);
  margin-bottom: 12px;
  font-family: var(--fd);
  letter-spacing: 0.05em;
}

.spec-desc {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.4;
}

.cta-massive {
  font-size: clamp(50px, 8vw, 120px);
  font-family: var(--fd);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 24px;
}

.cta-price {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 40px;
}

.align-right {
  text-align: right;
}

/* ELEMENTS */
.spotlight {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(192, 74, 26, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.btn-cinematic {
  background: var(--terra);
  color: var(--dark2);
  border: none;
  padding: 20px 48px;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  /* cursor removed */
  text-transform: uppercase;
  transition: transform 0.3s, background 0.3s;
}

.btn-cinematic:hover {
  transform: scale(1.05);
  background: var(--terra-l);
}

.movie-footer {
  background: transparent;
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 10vh;
  z-index: 10;
  position: relative;
}

/* ----------- LIVE VISITOR PILL ----------- */
#live-viewer-pill {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 245, 247, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(192, 74, 26, 0.15);
  padding: 8px 16px;
  font-family: var(--fd); /* Bebas Neue */
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--dark);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: #d10000; /* Alert Red */
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(209, 0, 0, 0.6);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(209, 0, 0, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(209, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(209, 0, 0, 0); }
}

/* Hide on mobile to keep the screen entirely clear, or adjust top/right positioning */
@media(max-width: 960px) {
  #live-viewer-pill {
    top: 16px;
    right: 16px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ----------- PRELOADER ----------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark2); /* Deep almost-black */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Smooth slide-up transition when it hides */
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

#loader.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  margin-bottom: 40px;
}

.loader-text {
  font-family: var(--fd); /* Bebas Neue */
  font-size: 18px;
  letter-spacing: 0.4em;
  color: var(--white);
  opacity: 0.4;
  margin-bottom: 12px;
}

.loader-percentage {
  font-family: var(--fd);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.8;
  color: var(--terra);
}

.loader-progress-bar {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--terra);
  transition: width 0.15s ease-out;
}

/* CAMPAIGN BANNER SECTION */
.campaign-banner-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 3; /* Raise it above the fixed 3D model background */
  background: var(--dark);
}

.campaign-banner-parallax {
  position: relative;
  width: 100%;
  height: 100%;
}

.campaign-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%; /* Extra height to support smooth parallax translation */
  object-fit: cover;
  opacity: 0.85; /* Slight opacity overlaying the black background */
}

.campaign-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.8) 0%,
    rgba(5, 5, 5, 0.2) 40%,
    rgba(5, 5, 5, 0.2) 60%,
    rgba(5, 5, 5, 0.9) 100%
  );
  z-index: 1;
}

.campaign-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.campaign-tag {
  font-family: var(--fb);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--terra);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2vh;
}

.campaign-title {
  font-family: var(--fd);
  font-size: clamp(50px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
  max-width: 900px;
}