/* ═══════════════════════════════════════════════════════
   AKVRIX — STAY TUNED v4 — CINEMATIC GLITCH
   ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --bg2: #0a0a0a;
  --bg3: #101010;
  --text: #ffffff;
  --text-mid: #999;
  --text-dim: #666;
  --accent1: #c0c0c0;
  --accent2: #a0a0a0;
  --accent3: #d0d0d0;
  --accent4: #8a8a8a;
  --border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── FLOATING GALLERY CANVAS ─────────── */
.floating-gallery-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

/* Only text content elements sit above the background strip */
.hero-badge,
.cine-text,
.stay-tuned-text,
.hero-sub {
  position: relative;
  z-index: 2;
}

/* Background elements stay absolute */
.hero>.floating-gallery-canvas {
  position: absolute;
  z-index: 0;
}

#productStripWrap,
#bgCarousel {
  position: absolute !important;
  z-index: 0 !important;
  top: 0;
  left: 0;
}

/* ─── SCROLL-REVEAL SYSTEM ─────────── */
.sr {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(.16, 1, .3, 1),
    transform 0.9s cubic-bezier(.16, 1, .3, 1),
    filter 0.9s cubic-bezier(.16, 1, .3, 1);
}

.sr.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

/* Directional variants */
.sr.from-left {
  transform: translateX(-80px);
}

.sr.from-right {
  transform: translateX(80px);
}

.sr.from-left.visible,
.sr.from-right.visible {
  transform: translateX(0);
  filter: blur(0);
}

/* Scale-up variant */
.sr.scale-up {
  transform: scale(0.85) translateY(40px);
}

.sr.scale-up.visible {
  transform: scale(1) translateY(0);
}

/* Rotate-in variant */
.sr.rotate-in {
  transform: rotate(-3deg) translateY(50px);
}

.sr.rotate-in.visible {
  transform: rotate(0deg) translateY(0);
}

/* Stagger children — each child delays slightly */
.sr-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.sr-stagger.visible>*:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sr-stagger.visible>*:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sr-stagger.visible>*:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sr-stagger.visible>*:nth-child(4) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sr-stagger.visible>*:nth-child(5) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sr-stagger.visible>*:nth-child(6) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* ─── CURSOR ──────────────────────────── */
.cur-dot,
.cur-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cur-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  mix-blend-mode: difference;
}

.cur-ring {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: width .25s, height .25s, border-color .3s;
  mix-blend-mode: difference;
}

.hovering .cur-ring {
  width: 80px;
  height: 80px;
  border-color: var(--accent1);
}

/* ─── COUNTDOWN SPLASH ───────────────── */
.countdown-splash {
  position: fixed;
  inset: 0;
  z-index: 60000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, transform .6s ease;
}

.countdown-splash.exit {
  opacity: 0;
  transform: scale(1.15);
}

.cd-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(100px, 20vw, 220px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3), 0 0 80px rgba(150, 180, 255, 0.15);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .25s ease;
  letter-spacing: 8px;
}

.cd-number.pop {
  transform: scale(1.25);
  opacity: 0;
}

.cd-sub-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 24px;
  text-transform: uppercase;
}

.cd-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: cdSpin 1s linear infinite;
}

@keyframes cdSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── LOADER ──────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 50000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: clip-path .9s cubic-bezier(.76, 0, .24, 1);
  clip-path: inset(0 0 0 0);
}

.loader.done {
  clip-path: inset(0 0 100% 0);
}

.loader-logo {
  margin-bottom: 28px;
  text-align: center;
  animation: loaderGlow 2s ease-in-out infinite;
}

@keyframes loaderGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(192, 192, 192, 0.5));
    transform: scale(1.04);
  }
}

.loader-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: #fff;
  letter-spacing: 4px;
  line-height: 1;
  opacity: 0.5;
}

.loader-bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 16px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent1);
  transition: width .08s;
}

.loader-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  margin-top: 12px;
}

/* ─── NAV ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}

.nav.scrolled {
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
}

.nav-logo {
  height: 110px;
  transition: transform .3s;
}

.nav-logo:hover {
  transform: scale(1.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.nav-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--accent1);
  text-transform: uppercase;
}

.nav-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent1);
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 192, 192, 0.4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(192, 192, 192, 0)
  }
}

/* ─── HERO ────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}

.hero-glow.g1 {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -150px;
  background: #333;
  animation: glowF1 8s ease-in-out infinite;
}

.hero-glow.g2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  background: #2a2a2a;
  animation: glowF2 10s ease-in-out infinite;
}

.hero-glow.g3 {
  width: 350px;
  height: 350px;
  top: 30%;
  left: 60%;
  background: #3a3a3a;
  animation: glowF3 12s ease-in-out infinite;
}

@keyframes glowF1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-40px, 30px) scale(1.1)
  }
}

@keyframes glowF2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(30px, -20px) scale(1.15)
  }
}

@keyframes glowF3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-20px, 40px) scale(0.9)
  }
}

.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px);
}

/* ─── CINEMATIC GLITCH TEXT ───────────── */
.cine-glitch-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 6px;
  width: auto;
  display: inline-block;
}

.cine-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 18vw, 240px);
  line-height: .88;
  letter-spacing: 10px;
  white-space: nowrap;
  user-select: none;
  will-change: transform, opacity, clip-path;
}

/* Main white text */
.cine-main {
  color: #fff;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 0px rgba(255, 255, 255, 0);
  transition: text-shadow .3s;
}

.cine-main.settled {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05);
}

/* Red channel — offset layer */
.cine-red {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 60, 60, 0.8);
  mix-blend-mode: screen;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

/* Blue channel — offset layer */
.cine-blue {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(60, 109, 255, 0.8);
  mix-blend-mode: screen;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

/* Scan lines inside text */
.cine-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background: repeating-linear-gradient(0deg,
      transparent 0px,
      transparent 2px,
      rgba(0, 0, 0, 0.15) 2px,
      rgba(0, 0, 0, 0.15) 4px);
  opacity: 0;
}

/* Full-screen glitch canvas */
.glitch-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9988;
  opacity: 0;
}

/* Screen flash */
.glitch-flash {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0;
  background: #fff;
  mix-blend-mode: overlay;
}

/* Horizontal tear bars */
.glitch-bars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9989;
  opacity: 0;
}

/* Vignette */
.glitch-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9987;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity .5s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: 40px;
  z-index: 2;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent3);
}

.stay-tuned-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: clamp(12px, 3vw, 30px);
  z-index: 2;
  position: relative;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #888, #d4d4d4, #fff, #d4d4d4, #888, #d4d4d4, #fff, #888);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: colorShift 6s linear infinite;
}

@keyframes colorShift {
  0% {
    background-position: 0% 50%
  }

  100% {
    background-position: 300% 50%
  }
}

.hero-sub {
  max-width: 560px;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 48px;
  z-index: 2;
}

.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

/* ─── PRODUCTS ────────────────────────── */
.products-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 40px;
}

.products-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 7px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.products-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: 6px;
  color: #fff;
}

.product-carousel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 0 60px;
  perspective: 1200px;
}

.product-card {
  flex: 0 0 340px;
  text-align: center;
  position: relative;
  cursor: none;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.hanger-hook {
  width: 40px;
  height: 24px;
  margin: 0 auto -2px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  position: relative;
  transform-origin: top center;
  animation: hangSwing 4s ease-in-out infinite;
}

.hanger-hook::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #151518, #1a1a1f);
  border-radius: 6px;
  padding: 20px;
  border: 1px solid var(--border);
  transform-origin: top center;
  animation: hangSwing 4s ease-in-out infinite;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .4s;
}

.product-card:hover .product-img-wrap {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 60, 60, 0.05);
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(192, 192, 192, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover .product-img-wrap::before {
  opacity: 1;
}

.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2px;
  z-index: 2;
}

.product-tag.new {
  background: var(--accent1);
}

.product-tag.drop {
  background: var(--accent2);
}

.product-tag.ltd {
  background: rgba(255, 255, 255, 0.15);
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 18px;
  color: #fff;
}

.product-category {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes hangSwing {

  0%,
  100% {
    transform: rotate(-1.5deg)
  }

  50% {
    transform: rotate(1.5deg)
  }
}

.product-card:nth-child(2) .product-img-wrap,
.product-card:nth-child(2) .hanger-hook {
  animation-delay: -1.3s;
}

.product-card:nth-child(3) .product-img-wrap,
.product-card:nth-child(3) .hanger-hook {
  animation-delay: -2.6s;
}

.product-card.hidden-below {
  opacity: 0;
  transform: translateY(120px) rotate(3deg);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  transition: all .9s cubic-bezier(.16, 1, .3, 1);
}

.product-card:nth-child(1).visible {
  transition-delay: 0s;
}

.product-card:nth-child(2).visible {
  transition-delay: .15s;
}

.product-card:nth-child(3).visible {
  transition-delay: .3s;
}

/* ─── COUNTDOWN ───────────────────────── */
.countdown-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
  pointer-events: none;
}

.cd-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 7px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cd-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cd-block {
  width: clamp(80px, 15vw, 120px);
  padding: 24px 8px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: background .3s;
}

.cd-block:not(:last-of-type) {
  border-right: none;
}

.cd-block:hover {
  background: rgba(255, 255, 255, 0.02);
}

.cd-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1;
  color: #fff;
}

.cd-val.tick {
  animation: flipTick .4s ease;
}

@keyframes flipTick {
  0% {
    transform: scaleY(1)
  }

  30% {
    transform: scaleY(0)
  }

  60% {
    transform: scaleY(1.05)
  }

  100% {
    transform: scaleY(1)
  }
}

.cd-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 6px;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  padding: 0 6px;
  color: var(--accent1);
  animation: sepBlink 1s ease infinite;
}

@keyframes sepBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .1
  }
}

/* ─── NOTIFY ──────────────────────────── */
.notify-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--bg3);
}

.notify-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.notify-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 28px;
}

.notify-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}

.notify-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  outline: none;
  transition: all .3s;
}

.notify-input::placeholder {
  color: var(--text-dim);
}

.notify-input:focus {
  border-color: var(--accent1);
  background: rgba(192, 192, 192, 0.03);
}

.notify-btn {
  padding: 16px 28px;
  background: #c0c0c0;
  border: 1px solid #c0c0c0;
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 5px;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.notify-btn:hover {
  background: #a0a0a0;
}

.notify-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left .4s;
}

.notify-btn:hover::after {
  left: 100%;
}

.notify-success {
  display: none;
  margin-top: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--accent3);
}

.notify-success.show {
  display: block;
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ─── MARQUEE ─────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  padding: 0 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 8px;
  color: var(--text-dim);
}

.marquee-item .mdot {
  color: var(--accent1);
  font-size: 8px;
  margin: 0 16px;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ─── FEATURES ────────────────────────── */
.features-section {
  padding: 100px 48px;
  text-align: center;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 40px auto 0;
}

.feat-card {
  padding: 40px 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: var(--bg3);
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feat-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

.feat-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── CUSTOM PRINT STUDIO ──────────── */
.custom-studio-section {
  padding-bottom: 80px;
}

.custom-tagline {
  text-align: center;
  max-width: 560px;
  margin: -30px auto 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  color: var(--text-mid);
  letter-spacing: 1px;
}

.custom-studio-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding: 0 60px;
  flex-wrap: wrap;
}

/* ─── CUSTOM TEXT CONTENT ──────────── */
.custom-text-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.custom-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
  line-height: 1.7;
}

.custom-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.custom-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  border-radius: 6px;
  transition: all 0.4s ease;
}

.custom-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(192, 192, 192, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.custom-feature h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: #fff;
  margin: 0 0 10px 0;
}

.custom-feature p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin: 0;
}

.custom-cta-area {
  text-align: center;
  padding-top: 10px;
}

.custom-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ─── FOOTER ──────────────────────────── */
.footer {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 8px;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  justify-content: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  transition: all .3s;
  cursor: none;
}

.footer-social:hover {
  border-color: var(--accent1);
  color: #fff;
}

.footer-copy {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.15);
}

/* ─── SCROLL REVEAL ───────────────────── */
.sr {
  opacity: 0;
  transform: translateY(50px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.sr.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .product-carousel {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .product-card {
    flex: 0 0 auto;
    width: 85%;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-logo {
    height: 44px;
  }

  .hero {
    padding: 120px 20px 80px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-input {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }

  .footer {
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cur-dot,
  .cur-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}