@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&family=DM+Sans:wght@300;400;500&display=swap');
:root {
  --bg:          #0c0b09;
  --bg2:         #111009;
  --bg3:         #161410;
  --surface:     #1a1813;
  --surface2:    #201e18;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);
  --gold:        #c9a86c;
  --gold2:       #e2c98a;
  --cream:       rgb(187, 177, 157);
  --cream2:      #d4c9b3;
  --text:        #e8e0d0;
  --text-muted:  #8a8070;
  --text-dim:    #5a5448;
  --amz-orange:  #FF9900;
  --amz-dark:    #c97a00;
  --nav-h:       64px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }



.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 35px;
  width: auto;
  filter: invert(1) brightness(0.82);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus { color: var(--cream); }
.nav-cta {
  background: var(--amz-orange);
  color: #111 !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--amz-dark);
  transition: background 0.2s;
}
.nav-cta:hover,
.nav-cta:focus { background: #ffb347; color: #111 !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



nav {
  position: relative;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(12,11,9,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 35px;
  width: auto;
  filter: invert(1) brightness(0.82);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus { color: var(--cream); }
.nav-cta {
  background: var(--amz-orange);
  color: #111 !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--amz-dark);
  transition: background 0.2s;
}
.nav-cta:hover,
.nav-cta:focus { background: #ffb347; color: #111 !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1003;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══ MOBILE ═══ */
@media (max-width: 768px) {
  nav { padding: 0 24px; }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(25, 24, 19, 0.92);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
    box-sizing: border-box;
    z-index: 1002;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
  }

  .nav-overlay.active {
    display: block;
  }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  /* nav-links deliberately NOT set to display:none here */
}



#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  padding: 14px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--text-dim);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--text-muted); }
.hero-mini-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hms-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}
.hms-label {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.5);
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.rating-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.rating-text strong { color: var(--cream); font-weight: 500; }
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern { display: none; }
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,11,9,0.55) 0%,
    transparent 30%
  ), linear-gradient(
    to top,
    rgba(12,11,9,0.4) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hero-slider-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.hero-stats-grid { display: none; }
.hero-stat {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  transition: background 0.3s;
}
.hero-stat:hover { background: var(--surface); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-unit {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 13px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover,
.btn-primary:focus { background: var(--gold2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  padding: 13px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--text-dim);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover,
.btn-ghost:focus { color: var(--cream); border-color: var(--text-muted); }
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amz-orange);
  color: #111111;
  padding: 13px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border-bottom: 2px solid var(--amz-dark);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-amazon:hover,
.btn-amazon:focus { background: #ffb347; transform: translateY(-1px); color: #111; }
.btn-amazon-lg {
  font-size: 14px;
  padding: 16px 40px;
}
.marquee-bar {
  background: var(--text-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 28px;
}
.marquee-inner span.gold { color: var(--gold); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.amazon-trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 24px;
  border-right: 1px solid var(--border2);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.trust-pill:last-child { border-right: none; }
.trust-pill .trust-icon { font-size: 13px; flex-shrink: 0; }
.trust-pill strong { color: var(--cream); font-weight: 500; }
.amz-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}
.amz-logo .amz-a { color: var(--amz-orange); }
.amz-logo .amz-rest { color: var(--cream); }
section { padding: 30px 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); }
#timeline { background: var(--bg2); }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.timeline-item {
  background: var(--bg2);
  padding: 56px 48px;
  transition: background 0.3s;
}
.timeline-item:hover { background: var(--surface); }
.timeline-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 16px;
}
.timeline-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}
.timeline-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
#formula { background: var(--bg3); }
.formula-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.formula-display {
  display: flex;
  align-items: center;
  gap: 20px;
}
.formula-el { text-align: center; }
.formula-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 7.5vw, 116px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.formula-letter.gold { color: var(--gold); }
.formula-word {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
  display: block;
}
.formula-op {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dim);
  padding-bottom: 24px;
  flex-shrink: 0;
}
.formula-text {
  padding: 40px;
  border-left: 1px solid var(--border2);
}
.formula-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.formula-text .pullquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
#pareto { background: var(--bg); }
.pareto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.pareto-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.pareto-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
  gap: 8px;
}
.pareto-bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
}
.bar-results {
  background: linear-gradient(180deg, var(--surface) 0%, var(--gold) 100%);
  height: 80%;
}
.bar-actions {
  background: linear-gradient(180deg, #4a6b4a 0%, #2d4a2d 100%);
  height: 20%;
}
.bar-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bar-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--cream);
}
.pareto-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.25;
}
.pareto-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.pareto-highlight {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  line-height: 1.65;
}
.pareto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: var(--cream2);
  line-height: 1.7;
}
#framework { background: var(--bg2); }
.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.framework-item {
  background: var(--bg2);
  padding: 48px 32px;
  transition: background 0.3s;
}
.framework-item:hover { background: var(--surface); }
.framework-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.framework-name {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.framework-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
#founder { background: var(--surface); }
.founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.founder-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  padding: 48px 40px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.founder-initials {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.founder-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 28px;
}
.founder-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.founder-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}
.founder-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,108,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.founder-link:hover,
.founder-link:focus { border-color: var(--gold); }
.founder-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 32px;
}
.founder-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 620px;
}
.philosophy-pullquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding: 16px 32px;
  margin: 40px 0;
  background: rgba(201,168,108,0.04);
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.principle {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s;
}
.principle:hover { background: var(--surface2); }
.principle-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
}
.principle-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  display: block;
}
.principle-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
#reviews { background: var(--bg3); }
.reviews-header {
  margin-bottom: 56px;
}
.reviews-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.rating-breakdown {
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.breakdown-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.breakdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.breakdown-max {
  font-size: 18px;
  color: var(--text-dim);
  font-family: 'Bebas Neue', sans-serif;
}
.breakdown-stars {
  color: var(--amz-orange);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 4px;
  display: block;
}
.breakdown-verified {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.breakdown-divider { height: 1px; background: var(--border); margin: 18px 0; }
.star-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.star-row-label {
  font-size: 11px;
  color: var(--text-muted);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.star-row-bar-track {
  flex: 1;
  height: 7px;
  background: var(--surface2);
  border-radius: 4px;
  overflow: hidden;
}
.star-row-bar-fill {
  height: 100%;
  background: var(--amz-orange);
  border-radius: 4px;
}
.star-row-pct {
  font-size: 11px;
  color: var(--text-dim);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}
.breakdown-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}
.breakdown-note strong { color: var(--text-muted); }
.breakdown-amz-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  background: var(--amz-orange);
  color: #111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 3px;
  border-bottom: 2px solid var(--amz-dark);
  transition: background 0.2s;
}
.breakdown-amz-link:hover,
.breakdown-amz-link:focus { background: #ffb347; color: #111; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.review-card {
  background: var(--bg3);
  padding: 36px 32px;
  transition: background 0.3s;
}
.review-card:hover { background: var(--surface); }
.review-stars {
  color: var(--amz-orange);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.review-edition {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
  display: block;
}
.review-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 20px;
}
.review-author {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #4a9a4a;
  margin-top: 10px;
}
#reel { background: var(--bg2); }
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.reel-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.reel-placeholder {
  aspect-ratio: 9 / 16;
  max-height: 420px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}
.reel-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,108,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.reel-placeholder:hover { background: var(--surface2); }
.reel-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201,168,108,0.15);
  border: 1.5px solid rgba(201,168,108,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.25s, transform 0.2s;
}
.reel-placeholder:hover .reel-play-btn {
  background: rgba(201,168,108,0.28);
  transform: scale(1.06);
}
.reel-coming {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.reel-hint {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  max-width: 160px;
  line-height: 1.6;
}
.reel-meta {
  padding: 20px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  flex: 1;
}
.reel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.reel-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}
.reel-yt-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  flex-shrink: 0;
}
.reel-author {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  display: block;
}
.reel-add {
  cursor: pointer;
  background: var(--bg);
  transition: background 0.3s;
  text-decoration: none;
}
.reel-add:hover { background: var(--surface); }
.reel-add-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  padding: 40px;
  text-align: center;
  gap: 12px;
  border: 1.5px dashed var(--border2);
  margin: 24px;
  border-radius: 2px;
  transition: border-color 0.3s;
}
.reel-add:hover .reel-add-inner { border-color: var(--gold); }
.reel-add-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.3s;
}
.reel-add:hover .reel-add-icon { opacity: 0.9; }
.reel-add-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.reel-add-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 180px;
}
#editions { background: var(--bg); }
.editions-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.65;
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.edition-card {
  background: var(--bg);
  padding: 36px 28px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.edition-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.edition-card:hover { background: var(--surface); }
.edition-card:hover::before { opacity: 1; }
.ed-blackout::before  { background: #2a2a2a; }
.ed-gastor::before    { background: #2d5a2d; }
.ed-fennel::before    { background: #4a7a4a; }
.ed-bitter::before    { background: #6b4a28; }
.ed-desert::before    { background: #c4a882; }
.ed-crimson::before   { background: #7a1a1a; }
.ed-opal::before      { background: #1a4a7a; }
.ed-carbon::before    { background: #4a4a4a; }
.edition-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 2px solid rgba(255,255,255,0.1);
}
.ed-swatch-blackout { background: #383838; }
.ed-swatch-gastor   { background: #686b63; }
.ed-swatch-fennel   { background: #9d9579; }
.ed-swatch-bitter   { background: #726a61; }
.ed-swatch-desert   { background: #d6bda7; }
.ed-swatch-crimson  { background: #452429; }
.ed-swatch-opal     { background: #2d3c52; }
.ed-swatch-carbon   { background: #d1d1d1; }
.edition-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.edition-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
}
.edition-mood {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  display: block;
  margin-bottom: 14px;
}
.edition-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.edition-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
#faq { background: var(--bg2); }
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  margin-top: 64px;
}
.faq-intro {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.faq-intro h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq-intro p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-q:hover,
.faq-q:focus { color: var(--gold); outline: none; }
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.3s, background 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,168,108,0.1);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
}
#why-amazon {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.why-amazon-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.why-amazon-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amz-orange);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-amazon-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--amz-orange);
  opacity: 0.4;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-item {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s;
}
.why-item:hover { background: var(--surface2); }
.why-icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amz-orange);
  font-weight: 500;
}
.pub-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.pub-item {
  flex: 1;
  min-width: 100px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.pub-item:last-child { border-right: none; }
.pub-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 5px;
}
.pub-value {
  font-size: 13px;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.05em;
}
#impact {
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
.impact-img {
  width: 100%;
  max-height: 90vh;
  object-fit: scale-down;
  object-position: center top;
  display: block;
  filter: brightness(0.90);
}
.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,11,9,0.55) 0%,
    transparent 35%,
    transparent 65%,
    rgba(12,11,9,0.65) 100%
  );
  pointer-events: none;
}
.impact-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}
.impact-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}
#cta {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 140px 0;
}
#cta .section-label { justify-content: center; }
#cta .section-label::after { display: none; }
#cta .section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 4.8vw, 76px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-detail {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.footer-col {
  background: var(--bg);
  padding: 48px 40px;
}
.footer-col-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.footer-col h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-col-links a:hover,
.footer-col-links a:focus { color: var(--cream); }
.footer-col-links a.external::after {
  content: ' ↗';
  font-size: 10px;
  opacity: 0.5;
}
.footer-logo-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
  display: block;
}
.footer-logo-large span { color: var(--gold); }
.footer-ukp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,108,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.footer-ukp-link:hover,
.footer-ukp-link:focus { border-color: var(--gold); }
.footer-bottom {
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-legal a:hover,
.footer-legal a:focus { color: var(--text-muted); }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (max-width: 920px) {
  .container { padding: 0 48px; }
  .trust-bar-inner { padding: 0 48px; }
  .why-amazon-inner { padding: 0 48px; }
  nav { padding: 0 32px; }
  .footer-bottom { padding: 20px 48px; }
}
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .trust-bar-inner { padding: 0 32px; }
  .why-amazon-inner { padding: 0 32px; }
  nav { padding: 0 24px; }
  .footer-bottom { padding: 20px 32px; }
  .nav-links { gap: 20px; }
  .nav-links li:nth-child(n+4):not(:last-child) { display: none; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 32px 56px; }
  .hero-right { min-height: 56vw; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stat { padding: 36px 16px; }
  .formula-layout { grid-template-columns: 1fr; gap: 40px; }
  .formula-text { border-left: none; border-top: 1px solid var(--border2); padding: 36px 0 0; }
  .pareto-layout { grid-template-columns: 1fr; gap: 48px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-layout { grid-template-columns: 1fr; gap: 48px; }
  .founder-card { position: relative; top: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: relative; top: 0; }
  .editions-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-body { grid-template-columns: 1fr; gap: 40px; }
  .rating-breakdown { position: relative; top: 0; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .reel-grid { grid-template-columns: 1fr; }
  .pub-details { flex-wrap: wrap; }
  .pub-item { min-width: 25%; }
  .trust-pill { padding: 4px 14px; font-size: 11px; }
  .trust-pill:nth-child(n+5) { display: none; }
}
@media (max-width: 640px) {
  section { padding: 0px 16; }
  .container { padding: 0 10px; }
  .trust-bar-inner { padding: 0 10px; }
  .why-amazon-inner { padding: 0 10px; }
  nav { padding: 0 24px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-left { padding: 70px 20px 48px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 32px 16px; }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .editions-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .formula-display { gap: 8px; }
  .formula-letter { font-size: 56px; }
  .formula-op { font-size: 32px; }
  .trust-pill:nth-child(n+3) { display: none; }
  .pub-details { display: grid; grid-template-columns: 1fr 1fr; }
  .pub-item { border-right: none; border-bottom: 1px solid var(--border); }
  .pub-item:last-child { border-bottom: none; }
  .impact-cta { bottom: 24px; }
  #cta { padding: 80px 0; }
}
.slider-section {
  padding: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.slider-outer {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
  background: var(--bg2);
  user-select: none;
}
.slider-outer .slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.slider-outer .slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slider-outer .slide-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slider-outer .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: brightness(0.72) saturate(0.85);
}
.slider-outer .slide.active .slide-img {
  transform: scale(1.0);
}
.slide-img-fallback {
  background: linear-gradient(
    135deg,
    var(--surface2) 0%,
    var(--bg3) 40%,
    #1c1810 100%
  );
}
.slide-img-fallback .slide-img {
  display: none;
}
.slider-outer .slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(12,11,9,0.85) 0%, rgba(12,11,9,0.1) 50%, transparent 100%),
    linear-gradient(to right, rgba(12,11,9,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.slider-outer .slide-caption {
  position: absolute;
  bottom: 100px;
  left: 80px;
  max-width: 560px;
  z-index: 10;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
}
.slider-outer .slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}
.slider-outer .slide-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,108,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(12,11,9,0.5);
  backdrop-filter: blur(4px);
}
.slide-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.slider-outer .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(12,11,9,0.55);
  backdrop-filter: blur(8px);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.slider-outer .slider-btn:hover,
.slider-outer .slider-btn:focus {
  background: rgba(201,168,108,0.2);
  border-color: rgba(201,168,108,0.5);
  outline: none;
  transform: translateY(-50%) scale(1.08);
}
.slider-outer .slider-prev { left: 32px; }
.slider-outer .slider-next { right: 32px; }
.slider-outer .slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.slider-outer .slider-dot {
  width: 28px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.35s;
  padding: 0;
}
.slider-outer .slider-dot.active {
  background: var(--gold);
  width: 48px;
}
.slider-outer .slider-dot:hover { background: rgba(255,255,255,0.5); }
.slider-outer .slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 20;
}
.slider-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}
.slider-counter {
  position: absolute;
  top: 32px;
  right: 80px;
  z-index: 20;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}
#sliderCurrent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.slider-counter-sep {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.slider-counter-total {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.slider-cta-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(12,11,9,0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.slider-cta-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.slider-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amz-orange);
  color: #111;
  padding: 9px 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border-bottom: 2px solid var(--amz-dark);
  white-space: nowrap;
  transition: background 0.2s;
}
.slider-cta-btn:hover,
.slider-cta-btn:focus { background: #ffb347; color: #111; }
.slider-outer::after {
  content: 'swipe';
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  z-index: 5;
  pointer-events: none;
}
@media (min-width: 640px) {
  .slider-outer::after { display: none; }
}
@media (max-width: 960px) {
  .slider-outer { height: 70vh; min-height: 400px; }
  .slider-outer .slide-caption { left: 32px; bottom: 90px; max-width: 80vw; }
  .slider-counter { right: 32px; }
  .slider-outer .slider-prev { left: 16px; }
  .slider-outer .slider-next { right: 16px; }
  .slider-cta-bar { padding: 12px 16px; gap: 10px; }
  .slider-cta-text { display: none; }
}
@media (max-width: 640px) {
  .slider-outer { height: 60vh; min-height: 320px; max-height: 480px; }
  .slider-outer .slide-caption { left: 20px; right: 20px; bottom: 80px; }
  .slide-quote { font-size: 22px; }
  .slider-outer .slider-btn { width: 40px; height: 40px; }
  .slider-outer .slider-prev { left: 10px; }
  .slider-outer .slider-next { right: 10px; }
  .slider-counter { top: 20px; right: 20px; }
  #sliderCurrent { font-size: 22px; }
}
#slider {
  background: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}
#slider .section-label { margin-bottom: 20px; }
.slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding: 0 80px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.slider-header-left { flex: 1; }
.slider-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 6px;
}
#slider .slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
#slider .slider-btn:hover,
#slider .slider-btn:focus {
  border-color: var(--gold);
  background: rgba(201,168,108,0.08);
  color: var(--gold);
  outline: none;
}
#slider .slider-btn svg { pointer-events: none; }
.slider-count {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  min-width: 48px;
  text-align: center;
}
.slider-count span { color: var(--gold); font-weight: 500; }
.slider-track-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.slider-track-wrap:active { cursor: grabbing; }
#slider .slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 80px;
}
#slider .slide {
  flex-shrink: 0;
  width: calc(50% - 50px);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
#slider .slide:first-child { margin-left: 0; }
#slider .slide-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
#slider .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease, filter 0.4s;
  filter: grayscale(20%) brightness(0.88);
}
#slider .slide:hover .slide-img {
  transform: scale(1.035);
  filter: grayscale(0%) brightness(0.95);
}
#slider .slide-caption {
  padding: 22px 0 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.slide-caption-left { flex: 1; }
#slider .slide-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.slide-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  display: block;
}
.slide-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 6px;
  display: block;
}
.slide-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
}
#slider .slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
#slider .slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
#slider .slider-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
#slider .slider-dot:hover { background: var(--text-muted); }
#slider .slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.1s linear;
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 960px) {
  .slider-header { padding: 0 32px; margin-bottom: 40px; }
  #slider .slider-track { padding: 0 32px; gap: 16px; }
  #slider .slide { width: calc(70% - 24px); }
}
@media (max-width: 640px) {
  #slider { padding: 64px 0; }
  .slider-header { padding: 0 20px; margin-bottom: 32px; flex-direction: column; align-items: flex-start; gap: 24px; }
  #slider .slider-track { padding: 0 20px; gap: 12px; }
  #slider .slide { width: calc(88vw - 12px); }
  .slide-title { font-size: 17px; }
}

.price-anchor {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #c8a96e;
  letter-spacing: 0.04em;
  opacity: 0.85;
}



/* ═══ RESET PRODUCTS ═══ */
/* ── STAGE ── */
.stage {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}
 
.book {
  position: absolute;
  width: 200px;
  height: 280px;
  border-radius: 2px 6px 6px 2px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.52s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.52s cubic-bezier(0.4, 0, 0.2, 1),
    filter    0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity, filter;
}
 
.book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.reset-book-visual {
  overflow: hidden;
  width: 100%;
}
 
/* spine shadow */
.book::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 14px; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
  z-index: 1;
  pointer-events: none;
}
/* surface sheen */
.book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 40%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
  pointer-events: none;
}
 
/* ── POSITION STATES ── */
 
/* Centre */
.book[data-pos="0"] {
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: none;
  z-index: 3;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.95),
    0 12px 30px rgba(0,0,0,0.5);
  cursor: default;
}
 
/* Left — overlapping, tucked behind centre */
.book[data-pos="-1"] {
  transform: translateX(-120px) scale(0.87);
  opacity: 1;
  filter: brightness(0.45);
  z-index: 2;
  box-shadow: -2px 20px 40px rgba(0,0,0,0.7);
}
 
/* Right */
.book[data-pos="1"] {
  transform: translateX(120px) scale(0.87);
  opacity: 1;
  filter: brightness(0.45);
  z-index: 2;
  box-shadow: 2px 20px 40px rgba(0,0,0,0.7);
}
 
/* Far left — barely peeking */
.book[data-pos="-2"] {
  transform: translateX(-205px) scale(0.74);
  opacity: 0.3;
  filter: brightness(0.25);
  z-index: 1;
}
 
/* Far right */
.book[data-pos="2"] {
  transform: translateX(205px) scale(0.74);
  opacity: 0.3;
  filter: brightness(0.25);
  z-index: 1;
}
 
/* Hidden */
.book[data-pos="hidden"] {
  transform: translateX(0) scale(0.5);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
 
/* ── EDITION LABEL ── */
.edition-name {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-top: 26px;
  height: 16px;
}
 
/* ── SHOP BUTTON ── */
.shop-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
 
.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fec10d;
  color: #0a0a08;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.shop-btn:hover { background: #e0c060; transform: translateY(-1px); }
 
/* ── CONTROLS ── */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}
 
.ctrl {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #2e2a20;
  background: transparent;
  color: #c9a84c;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.ctrl:hover { border-color: #c9a84c; background: rgba(201,168,76,0.08); }
 
.dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2e2a20;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.dot.active {
  background: #c9a84c;
  transform: scale(1.5);
}

/* 1. Clip overflow on the slider wrapper */
#editions .slider-wrapper,
#editions .editions-slider,
.editions-carousel {
  overflow: hidden;          /* THIS is the critical fix */
  width: 100%;
  position: relative;
}

/* 2. Ensure the track itself doesn't create extra width */
#editions .slider-track,
#editions .slides-track {
  display: flex;
  will-change: transform;
  /* Remove any width: max-content or width: fit-content if present */
}

/* 3. Mobile card sizing — each card should be 100% of container width (or 80% for peek effect) */
@media (max-width: 768px) {
  #editions .slide,
  #editions .edition-card {
    flex: 0 0 80%;            /* 80% width with a peek of next card */
    max-width: 80%;
    margin: 0 10%;            /* centre the active card */
  }
}

