/* ═══════════════════════════════════════════════════════════
   SANTH MINT — Legendary Store v4
   Premium. Warm. Alive. Scale-ready.
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #050505;
  --s1: #0a0a0a;
  --s2: #111;
  --s3: #1a1a1a;
  --t1: #f5f5f7;
  --t2: #a1a1a6;
  --t3: #6e6e73;
  --t4: #48484a;
  --t5: #2c2c2e;
  --b1: rgba(255, 255, 255, 0.06);
  --b2: rgba(255, 255, 255, 0.12);
  --b3: rgba(255, 255, 255, 0.18);
  /* Warm accent — gives CTA buttons visual weight */
  --accent: #d4a574;
  --accent-glow: rgba(212, 165, 116, 0.15);
  --accent-subtle: rgba(212, 165, 116, 0.08);
  --f: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --spring: cubic-bezier(.22, 1, .36, 1);
  --smooth: cubic-bezier(.16, 1, .3, 1);
  --radius: 16px;
  --max-w: 1200px;
  --px: 32px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--t1);
}

body {
  font-family: var(--f);
  line-height: 1.5;
  overflow-x: hidden
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none
}

::selection {
  background: var(--accent-subtle);
  color: var(--t1)
}

/* ═══ Film Grain ═══ */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: grainDrift 6s steps(8) infinite;
}

@keyframes grainDrift {
  0% {
    transform: translate(0, 0)
  }

  25% {
    transform: translate(-5%, -10%)
  }

  50% {
    transform: translate(7%, -15%)
  }

  75% {
    transform: translate(-3%, 12%)
  }

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

/* ═══ Scroll Progress ═══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 2px;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 0.05s linear;
}

/* ═══ Loader ═══ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--smooth), filter 0.8s var(--smooth);
}

.loader.out {
  opacity: 0;
  filter: blur(20px);
  pointer-events: none
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 1.2s var(--spring);
  opacity: 0.4;
}

.loader-line.go {
  width: 120px
}

.loader-word {
  margin-top: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s var(--spring) 0.4s;
  color: var(--t3);
}

.loader-word.go {
  opacity: 0.3;
  transform: translateY(0)
}

/* ═══ Nav ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s var(--spring) 0.3s,
    background 0.4s, border-color 0.4s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav.show {
  opacity: 1;
  transform: translateY(0)
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-bottom-color: var(--b1);
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 500;
  color: var(--t5);
  padding-right: 16px;
  border-right: 1px solid var(--b1);
  transition: color 0.2s;
}

.nav-back:hover {
  color: var(--t3)
}

.nav-back svg {
  width: 10px;
  height: 10px
}

.nav-logo {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em
}

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

.nav-link {
  font-size: 11px;
  font-weight: 500;
  color: var(--t4);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--t1)
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--spring);
  transform-origin: left;
}

.nav-link:hover::after {
  transform: scaleX(1)
}

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

.nav-cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 7px 20px;
  border-radius: 980px;
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: scale(1.03)
}

/* ═══ Mobile FAB ═══ */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  padding: 14px 28px;
  border-radius: 980px;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 40px rgba(212, 165, 116, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  gap: 8px;
  align-items: center;
  transition: transform 0.3s var(--spring), opacity 0.3s;
}

.mobile-fab-price {
  font-weight: 800
}

/* ═══ Hero ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--px);
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 45%,
      rgba(212, 165, 116, 0.025) 0%, transparent 65%);
  animation: ambientPulse 10s ease-in-out infinite;
}

@keyframes ambientPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.9)
  }

  50% {
    opacity: 1;
    transform: scale(1.15)
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  opacity: 0;
  transform: translateY(50px);
  animation: heroReveal 1.4s var(--smooth) 1.6s forwards;
}

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

.hero-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--t5);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--t5);
}

.hero h1,
.hero-headline {
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin-bottom: 36px;
}

.hero-word {
  display: inline-block;
  background: linear-gradient(180deg, var(--t1) 0%, rgba(245, 245, 247, 0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(40px) rotateX(30deg);
  animation: wordReveal 1s var(--smooth) forwards;
}

.hero-word:nth-child(1) {
  animation-delay: 1.8s
}

.hero-word:nth-child(2) {
  animation-delay: 2.0s
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0)
  }
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--t3);
  max-width: 340px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 400;
}

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

/* Hero Stats with animated counters */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
  opacity: 0;
  animation: heroReveal 1s var(--smooth) 2.8s forwards;
}

.hero-stat {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-stat span {
  font-variant-numeric: tabular-nums
}

.hero-stat-plus {
  color: var(--accent);
  font-weight: 800
}

.hero-stat small {
  font-size: 10px;
  font-weight: 500;
  color: var(--t4);
  letter-spacing: 0.02em;
}

.hero-stat-sep {
  width: 1px;
  height: 16px;
  background: var(--b1)
}

.stat-counter {
  display: inline-block;
  min-width: 1.2em;
  text-align: right;
}

/* ═══ Buttons ═══ */
.btn {
  padding: 15px 34px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

/* Primary accent button */
.btn-accent {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 1px rgba(212, 165, 116, 0.2), 0 4px 20px rgba(212, 165, 116, 0.1);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(212, 165, 116, 0.3), 0 8px 32px rgba(212, 165, 116, 0.2);
}

.btn-accent:active {
  transform: translateY(0)
}

/* Ghost / outline button */
.btn-ghost {
  color: var(--t3);
  border: 1px solid var(--b1);
  backdrop-filter: blur(8px)
}

.btn-ghost:hover {
  border-color: var(--b2);
  color: var(--t1);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* Legacy: .btn-w and .btn-o */
.btn-w {
  background: var(--t1);
  color: var(--bg)
}

.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08)
}

.btn-o {
  color: var(--t3);
  border: 1px solid var(--b1)
}

.btn-o:hover {
  border-color: var(--b2);
  color: var(--t1);
  transform: translateY(-2px)
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: scrollFade 0.6s ease 3s forwards;
}

@keyframes scrollFade {
  to {
    opacity: 0.15
  }
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* ═══ Scroll-Driven Before/After ═══ */
.transform-section {
  position: relative;
  height: 300vh
}

.transform-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.transform-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.transform-img img,
.transform-img .fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.transform-before {
  z-index: 1
}

.transform-after {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0s
}

.transform-before .fill {
  background: linear-gradient(135deg, #555 0%, #777 30%, #666 60%, #888 100%);
}

.transform-after .fill {
  background: linear-gradient(135deg, #1a3a4a 0%, #c4721a 40%, #2a1510 70%, #0a0808 100%);
}

.transform-label {
  position: absolute;
  z-index: 10;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  transition: opacity 0.5s;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 980px;
}

.transform-label.flat {
  bottom: 48px;
  left: 48px
}

.transform-label.graded {
  bottom: 48px;
  right: 48px;
  opacity: 0
}

.transform-center {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.transform-center h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.8s, transform 0.8s var(--spring);
}

.transform-center h2.show {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.transform-center p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.6s 0.15s;
}

.transform-center p.show {
  opacity: 1
}

/* ═══ Social Proof ═══ */
.proof {
  padding: 120px var(--px)
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b1);
  border-radius: 20px;
  overflow: hidden;
}

.proof-quote {
  padding: 48px 36px;
  background: var(--bg);
  transition: background 0.4s;
  opacity: 0;
  transform: translateY(20px);
  animation: proofReveal 0.8s var(--smooth) forwards;
}

.proof-quote:nth-child(1) {
  animation-delay: 0.3s
}

.proof-quote:nth-child(2) {
  animation-delay: 0.5s
}

.proof-quote:nth-child(3) {
  animation-delay: 0.7s
}

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

.proof-quote:hover {
  background: var(--s1)
}

.proof-quote blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--t2);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 24px;
  quotes: "" " " "" "'" "'";
  position: relative;
  padding-left: 0;
}

.proof-quote blockquote::before {
  content: open-quote;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 0;
  position: relative;
  top: 12px;
  margin-right: 4px;
  opacity: 0.4;
}

.proof-quote cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.proof-quote cite strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--t3)
}

.proof-quote cite span {
  font-size: 10px;
  color: var(--t5)
}

/* ═══ Divider ═══ */
.divider {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 1px;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  left: var(--px);
  right: var(--px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--b1) 20%, var(--b1) 80%, transparent);
}

/* ═══ Section ═══ */
.s {
  padding: 180px var(--px);
  max-width: var(--max-w);
  margin: 0 auto
}

.s-full {
  padding: 180px var(--px)
}

.s-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 80px
}

.s-over {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.5;
}

.s-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--t1) 0%, var(--t2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s-sub {
  font-size: 1rem;
  color: var(--t4);
  line-height: 1.7
}

/* ═══ Craft Pillars ═══ */
.craft-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b1);
  border-radius: 20px;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}

.craft-pillar {
  padding: 56px 40px;
  background: var(--bg);
  transition: background 0.3s;
}

.craft-pillar:hover {
  background: var(--s1)
}

.craft-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--t5);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.craft-pillar:hover .craft-num {
  color: var(--accent);
  opacity: 0.4
}

.craft-pillar h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.craft-pillar p {
  font-size: 13px;
  color: var(--t4);
  line-height: 1.65
}

/* ═══ How It Works ═══ */
.how {
  padding: 180px var(--px);
  max-width: var(--max-w);
  margin: 0 auto
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b1);
  border-radius: 20px;
  overflow: hidden;
}

.how-step {
  padding: 56px 40px;
  background: var(--bg);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--spring), transform 0.7s var(--spring), background 0.3s;
}

.how-step.vis {
  opacity: 1;
  transform: translateY(0)
}

.how-step:hover {
  background: var(--s1)
}

.how-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--t5);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.how-step:hover .how-num {
  color: var(--accent);
  opacity: 0.4
}

.how-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em
}

.how-desc {
  font-size: 13px;
  color: var(--t4);
  line-height: 1.6
}

/* ═══ Collection Controls ═══ */
.collection-controls {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-bar {
  display: flex;
  background: var(--s1);
  border-radius: 12px;
  border: 1px solid var(--b1);
  overflow: hidden;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t4);
  transition: all 0.25s var(--ease);
  border-radius: 0;
  background: transparent;
}

.filter-btn:hover {
  color: var(--t2);
  background: rgba(255, 255, 255, 0.02)
}

.filter-btn.active {
  color: var(--accent);
  background: var(--accent-subtle);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 40px;
  border-radius: 12px;
  background: var(--s1);
  border: 1px solid var(--b1);
  transition: border-color 0.2s;
  flex: 1;
  max-width: 280px;
}

.search-box:focus-within {
  border-color: rgba(212, 165, 116, 0.3)
}

.search-box svg {
  width: 14px;
  height: 14px;
  color: var(--t5);
  flex-shrink: 0
}

.search-box input {
  flex: 1;
  font-size: 12px;
  color: var(--t1);
  background: transparent;
  width: 100%;
}

.search-box input::placeholder {
  color: var(--t5)
}

.sort-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--s1);
  border: 1px solid var(--b1);
  font-size: 11px;
  font-weight: 500;
  color: var(--t4);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.sort-pill:hover {
  border-color: var(--b2);
  color: var(--t2)
}

.sort-pill svg {
  width: 12px;
  height: 12px
}

/* ═══ Product Grid ═══ */
.product-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.pack-skeleton {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  background: var(--s2);
  animation: skeletonPulse 1.8s ease-in-out infinite;
}

@keyframes skeletonPulse {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 0.7
  }
}

.pack-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--s2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--spring);
}

.pack-card.vis {
  transform: translateY(0);
  opacity: 1
}

.pack-card.hide {
  display: none
}

.pack-card:hover {
  transform: translateY(-4px) scale(1.01)
}

.pack-card:hover .pack-fill {
  opacity: 1;
  transform: scale(1.05)
}

.pack-card:hover .pack-info {
  transform: translateY(-4px)
}

.pack-card:hover .pack-buy {
  opacity: 1;
  transform: translateY(0)
}

.pack-card:hover .pack-badge {
  opacity: 1
}

.pack-fill {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0.75;
  transition: all 0.7s var(--spring);
}

.pack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--spring);
}

.pack-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  z-index: 2;
  transition: transform 0.5s var(--spring);
}

.pack-type {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 6px;
}

.pack-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px
}

.pack-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pack-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.06);
  color: var(--t3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.3s;
}

.pack-buy {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent-subtle);
  color: var(--accent);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 165, 116, 0.15);
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.35s var(--ease);
}

.pack-buy:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.collection-meta {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding: 0 var(--px);
  font-size: 11px;
  color: var(--t5);
  font-weight: 500;
}

.load-more-sentinel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

/* ═══ Before/After Gallery ═══ */
.gallery-section {
  overflow: hidden
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--px);
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin: 0 auto;
}

.gallery-strip::-webkit-scrollbar {
  display: none
}

.gallery-item {
  flex: 0 0 min(600px, 85vw);
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
  user-select: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.gallery-item .gallery-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.4s var(--spring);
  z-index: 2;
}

.gallery-item:hover .gallery-after {
  clip-path: inset(0 0 0 0)
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 12px;
  z-index: 5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.gallery-item .gallery-label.l-before {
  left: 12px
}

.gallery-item .gallery-label.l-after {
  right: 12px
}

.gallery-item .gallery-name {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.gallery-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t4);
  transition: all 0.2s;
}

.gallery-arrow:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.gallery-arrow svg {
  width: 14px;
  height: 14px
}

.gallery-dots {
  display: flex;
  gap: 6px
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t5);
  transition: all 0.3s;
  cursor: pointer;
}

.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.3)
}

/* ═══ Compatibility ═══ */
.compat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center
}

.compat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--t5);
  padding: 10px 20px;
  border: 1px solid var(--b1);
  border-radius: 980px;
  transition: all 0.3s var(--ease);
}

.compat span:hover {
  border-color: rgba(212, 165, 116, 0.2);
  color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

/* ═══ Trust ═══ */
.trust {
  padding: 120px var(--px);
  max-width: var(--max-w);
  margin: 0 auto
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--b1);
  border-radius: 16px;
  overflow: hidden;
}

.trust-item {
  padding: 48px 24px;
  background: var(--bg);
  text-align: center;
  transition: background 0.3s;
}

.trust-item:hover {
  background: var(--s1)
}

.trust-icon {
  width: 20px;
  height: 20px;
  margin: 0 auto 14px;
  stroke: var(--t4);
  transition: stroke 0.3s;
}

.trust-item:hover .trust-icon {
  stroke: var(--accent)
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.02em
}

.trust-sub {
  font-size: 10px;
  color: var(--t5);
  margin-top: 6px;
  font-weight: 400
}

/* ═══ Pricing Comparison ═══ */
.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-col {
  border-radius: 20px;
  padding: 48px 36px;
  border: 1px solid var(--b1);
  background: var(--bg);
  text-align: center;
  transition: all 0.3s;
}

.pricing-col:hover {
  border-color: var(--b2);
  background: var(--s1)
}

.pricing-individual {
  border-color: var(--b1);
}

.pricing-bundle {
  border-color: rgba(212, 165, 116, 0.2);
  background: rgba(212, 165, 116, 0.02);
  position: relative;
  overflow: hidden;
}

.pricing-bundle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-popular {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 6px 16px;
  border-radius: 980px;
  margin-bottom: 24px;
}

.pricing-header {
  margin-bottom: 32px
}

.pricing-header h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pricing-range {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--t2)
}

.pricing-range small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--t4)
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px
}

.pricing-was {
  font-size: 1rem;
  font-weight: 500;
  color: var(--t5);
  text-decoration: line-through;
}

.pricing-now {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.pricing-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 260px;
}

.pricing-features li {
  font-size: 13px;
  color: var(--t2);
  padding: 10px 0;
  border-bottom: 1px solid var(--b1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t4);
  flex-shrink: 0;
}

.pricing-features li.check::before {
  background: var(--accent)
}

.pricing-features li.dim {
  color: var(--t5)
}

.pricing-features li.dim::before {
  background: var(--t5);
  opacity: 0.3
}

.pricing-cta {
  width: 100%;
  justify-content: center
}

/* ═══ Bundle ═══ */
.bundle-section {
  padding: 200px var(--px);
  position: relative
}

.bundle-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.02), transparent 60%);
  pointer-events: none;
}

.bundle {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s var(--smooth);
  position: relative;
}

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

.bundle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: 980px;
  margin-bottom: 40px;
}

.bundle-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  display: block;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 1
  }
}

.bundle h3 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--t1) 0%, var(--t2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bundle .sub {
  color: var(--t4);
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.6
}

.bundle-price {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 0 0 12px;
  line-height: 1;
}

.bundle-price .was {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--t5);
  text-decoration: line-through;
  margin-right: 10px;
  vertical-align: middle;
}

.bundle-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.bundle-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  text-align: left;
  max-width: 360px;
  margin: 0 auto 48px;
}

.bundle-feats span {
  font-size: 13px;
  color: var(--t3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-feats span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.btn-bundle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 52px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  transition: all 0.3s var(--ease);
  letter-spacing: -0.01em;
}

.btn-bundle:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.25);
}

.btn-bundle:active {
  transform: translateY(-1px)
}

.bundle-note {
  margin-top: 24px;
  font-size: 10px;
  color: var(--t5);
  letter-spacing: 0.05em
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--b1);
}

.faq-item summary {
  padding: 24px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--t2);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--t1)
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::marker {
  display: none;
  content: ''
}

.faq-item summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--t5);
  transition: all 0.3s var(--spring);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item[open] summary {
  color: var(--t1)
}

.faq-body {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--t4);
  line-height: 1.7;
  max-width: 560px;
  animation: faqOpen 0.4s var(--spring);
}

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

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

/* ═══ Ecosystem ═══ */
.eco-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}

.eco-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--t5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.eco-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(212, 165, 116, 0.2)
}

.eco-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.3;
  transition: opacity 0.3s
}

.eco-link:hover svg {
  opacity: 0.7
}

/* ═══ Footer ═══ */
.footer {
  border-top: 1px solid var(--b1);
  padding: 56px var(--px) 48px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t5);
}

.footer-links {
  display: flex;
  gap: 28px
}

.footer-links a {
  font-size: 11px;
  color: var(--t5);
  transition: color 0.2s
}

.footer-links a:hover {
  color: var(--accent)
}

.footer-copy {
  font-size: 10px;
  color: var(--t5)
}

/* ═══ Responsive ═══ */
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr))
  }

  .pricing-table {
    grid-template-columns: 1fr
  }
}

@media (max-width: 900px) {

  .how-grid,
  .craft-pillars {
    grid-template-columns: 1fr
  }

  .proof-inner {
    grid-template-columns: 1fr
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr
  }

  .collection-controls {
    flex-direction: column;
    align-items: stretch
  }

  .search-box {
    max-width: none
  }
}

@media (max-width: 700px) {
  :root {
    --px: 20px
  }

  .nav-center,
  .nav-right {
    display: none
  }

  .mobile-fab {
    display: flex
  }

  .hero h1,
  .hero-headline {
    font-size: 3.5rem
  }

  .s,
  .s-full {
    padding: 120px var(--px)
  }

  .how {
    padding: 120px var(--px)
  }

  .bundle-section {
    padding: 140px var(--px)
  }

  .transform-section {
    height: 200vh
  }

  .bundle-feats {
    grid-template-columns: 1fr
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .pack-info {
    padding: 20px
  }

  .product-grid {
    grid-template-columns: 1fr
  }

  .hero-stats {
    flex-direction: column;
    gap: 8px
  }

  .hero-stat-sep {
    width: 40px;
    height: 1px
  }

  .gallery-item {
    flex: 0 0 85vw
  }

  body {
    padding-bottom: 80px
  }

  .pricing-table {
    gap: 16px
  }
}