/* ============================================================
   PRISTINE RITUALS™ — Main Stylesheet
   Light, elegant theme harmonizing with brand logo
   ============================================================ */

:root {
  --paper:     #faf9f6;
  --white:     #ffffff;
  --ink:       #2b2b2b;
  --ink-soft:  #555550;
  --muted:     #a8a8a8;
  --line:      #e6e3da;
  --olive:     #b5c93c;
  --olive-dark:#8fa62e;
  --olive-deep:#5e6e1f;
  --olive-pale:#f3f6e2;
  --card:      #ffffff;
  --grey-dark: #7a7a7a;
  --grey-pale: #B3B3B3;
  --black:     #000000;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ── CURSOR ── */
*, *::before, *::after { cursor: none !important; }

.cursor {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--olive-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s;
}

.cursor-ring.hover {
  width: 48px;
  height: 48px;
  border-color: var(--olive-dark);
}

.nav-logo-img {
  height: 55px;
  width: auto;
  display:block;
}

.nav-backing {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 87px;
  background: var(--white);
  z-index: 540;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  opacity: .85;
  transition: opacity .2s;
}

.footer-logo:hover .footer-logo-img { opacity: 1; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 550;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 249, 246, .85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: none;
}

/* Decorative eyebrow text, centred between logo and burger */
.nav-eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.nav-eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--olive);
}

.nav-eyebrow-text {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .nav-eyebrow { display: none; }
}

/* Hamburger button */
.nav-burger {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 600;
  flex-shrink: 0;
}

.nav-burger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  margin-left: -12px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 29px; }

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* Full-screen nav panel */
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--olive);
  z-index: 800;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -24px 0 60px rgba(43, 43, 43, .25);
  overflow-y: auto;
}

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

.nav-panel-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  border: none;
  background: none;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  padding: .5rem;
}

.nav-panel-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 3rem;
}

.nav-panel-links li + li { margin-top: 1.6rem; }

.nav-panel-links a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 5.5vw, 1.8rem);
  letter-spacing: .03em;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity .2s;
}

.nav-panel-links a:hover { opacity: .7; }

.nav-panel-label {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .6rem;
}

.nav-panel-contact,
.nav-panel-newsletter,
.nav-panel-social {
  width: 100%;
  margin-bottom: 2.2rem;
}

.nav-panel-email {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  transition: opacity .2s;
}

.nav-panel-email:hover { opacity: .75; }

.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.4);
  max-width: 320px;
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  padding: .5rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--white);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form input:focus { outline: none; }

.newsletter-form button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  padding: .4rem .2rem;
}

.nav-panel-social-links {
  display: flex;
}

.nav-panel-social-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  transition: opacity .2s;
}

.nav-panel-social-links a:hover { opacity: .75; }
.nav-panel-social-links a + a { margin-left: 1.4rem; }

body.nav-open { overflow: hidden; }

@media (min-width: 700px) {
  .nav-panel {
    width: 380px;
    max-width: 42vw;
    padding: 6.5rem 3rem 3rem;
  }
}

.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--white);
  border: none;
  padding: .75rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.nav-cta:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
}

/* ── SHARED SECTION ELEMENTS ── */
.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .80rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 600;
}

.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.section-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}

.section-h2 .script {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.15;
  color: var(--olive-dark);
  letter-spacing: -.01em;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.8rem;
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ── SHARED BUTTONS ── */
.btn-gold {
  background: var(--olive);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-gold:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(181, 201, 60, .28);
}

.btn-ghost {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: .85rem 1.6rem;
  transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
  border-color: var(--olive);
  color: var(--olive-dark);
}

/* ── VIDEO INTRO ── */
.video-intro {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.video-intro-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.video-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,.75) 0%, rgba(20,20,20,.25) 45%, rgba(20,20,20,.45) 100%);
}

.video-intro-content {
  position: absolute;
  left: 4rem;
  bottom: 4.5rem;
  right: 4rem;
  max-width: 640px;
  z-index: 2;
}

.video-intro-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -.01em;
}

.video-intro-sub {
  margin-top: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.5;
  color: rgba(255,255,255,.8);
  max-width: 480px;
}

.video-intro-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 16px;
  z-index: 2;
}

.video-intro-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease infinite;
}

@keyframes scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 960px) {
  .video-intro-content { left: 1.5rem; right: 1.5rem; bottom: 3rem; }
}

/* ── HERO PRODUCT ── */
.hero-product {
  padding: 7rem 6rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/technical-drawing.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .07;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}

.hp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.hp-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--olive);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .4rem 1rem;
}

/* ══ HOTSPOT BOX ══════════════════════════════════════════════ */

.hp-img-col {
  display: flex;
  flex-direction: column;
}

/* Styled heading above the box */
/* Outer wrapper — contains frame + panel, bottom corners track this */
.hp-box {
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.10);
  transition: box-shadow .4s ease;
}

/* Outer frame — the designed image box */
.hp-frame {
  position: relative;
  border: 1px solid rgba(181,201,60,.35);
  box-shadow:
    0 0 0 4px var(--paper),
    0 0 0 5px rgba(181,201,60,.2);
  background: var(--ink);
  z-index: 1;
}

/* Corner bracket accents */
/* Top corners sit on .hp-frame, bottom corners sit on .hp-box */
.hp-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--olive);
  z-index: 10;
  pointer-events: none;
  transition: border-color .3s ease;
}
.hp-frame .hp-corner--tl { top:  -5px; left:  -5px; border-right: none; border-bottom: none; }
.hp-frame .hp-corner--tr { top:  -5px; right: -5px; border-left:  none; border-bottom: none; }
.hp-box  .hp-corner--bl  { bottom: -5px; left:  -5px; border-right: none; border-top: none; }
.hp-box  .hp-corner--br  { bottom: -5px; right: -5px; border-left:  none; border-top: none; }

/* Inner image wrapper — photo + videos + hotspot dots */
.hp-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  line-height: 0;
}

/* Base photo */
.hp-base-photo {
  width: 100%;
  display: block;
  transition: opacity .35s ease;
}

.hp-img.hotspot-active .hp-base-photo {
  opacity: 0;
}

/* Part videos — stacked on top of photo */
.hp-video--part {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  object-fit: cover;
}

.hp-video--part.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── INFO PANEL — drops DOWN from the bottom of the frame ── */
.hp-info-panel {
  background: var(--ink);
  border: 1px solid rgba(181,201,60,.25);
  border-top: 2px solid var(--olive);
  transform: scaleY(0);
  transform-origin: top center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    transform .4s cubic-bezier(.4,0,.2,1),
    max-height .4s cubic-bezier(.4,0,.2,1),
    opacity .3s ease;
  pointer-events: none;
}

.hp-info-panel.visible {
  transform: scaleY(1);
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

/* Deepen the outer box shadow when panel is open */
.hp-box:has(.hp-info-panel.visible) {
  box-shadow: 0 32px 80px rgba(0,0,0,.28), 0 8px 24px rgba(0,0,0,.14);
}

.hp-info-close {
  float: right;
  border: none;
  background: none;
  color: rgba(255,255,255,.45);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 0 .4rem .6rem;
  cursor: pointer;
  transition: color .2s;
}
.hp-info-close:hover { color: var(--white); }

.hp-info-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: .45rem;
}

.hp-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .55rem;
  letter-spacing: -.01em;
}

.hp-info-text {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

/* Caption below the whole box */
.hp-img-caption {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-dark);
  text-align: center;
  margin-top: 1rem;
}

/* ══ HOTSPOT DOTS ════════════════════════════════════════════ */
.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: -14px;
  padding: 0;
  border: none;
  background: none;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease, transform .3s ease;
}

/* Other dots disappear when one is clicked */
.hotspot.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
}

.hotspot-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--olive);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 0 rgba(181, 201, 60, .55);
  animation: hotspot-pulse 2.2s ease-out infinite;
  transition: transform .2s, background .2s;
}

.hotspot:hover .hotspot-dot,
.hotspot.active .hotspot-dot {
  transform: scale(1.25);
  background: var(--olive-dark);
  animation: none;
}

@keyframes hotspot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(181, 201, 60, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(181, 201, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(181, 201, 60, 0); }
}

.hero-hint {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-style: italic;
  color: var(--muted);
  margin-top: -1rem;
  margin-bottom: 1.6rem;
}

@media (max-width: 960px) {
  .hotspot-tip { width: 180px; font-size: .78rem; }
}

.how-it-works-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--olive-dark);
  padding-bottom: .3rem;
  margin-bottom: 1.8rem;
  transition: opacity .2s, gap .2s;
}

.how-it-works-link:hover {
  opacity: .7;
  gap: .75rem;
}

.product-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-item:last-child { border-bottom: none; }

.feature-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--olive);
  border-radius: 50%;
  margin-top: .4rem;
}

.feature-text {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  letter-spacing: .01em;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-now {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--ink);
  letter-spacing: -.02em;
}

.price-ks {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive-dark);
  font-weight: 600;
}

/* ── HERO STATS ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}

.hero-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: .70rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .5rem;
  font-weight: 500;
}

/* ── PROCEDURE (now inline within hero-product) ── */
.procedure-inline {
  position: relative;
  z-index: 1;
  margin-top: 6rem;
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 2.5rem;
}

.proc-steps::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 1px;
  background: var(--line);
}

.proc-step {
  background: var(--white);
  padding: 2.5rem 1.8rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.proc-step + .proc-step { border-left: 1px solid var(--line); margin-left: -1px; }

/* ── PROC STEP VIDEO VARIANT ── */
.proc-step--video {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.proc-step--video .set-item {
  border: none;
  background: none;
  padding: 1.8rem 1.8rem 2.2rem;
}

.proc-step--video .set-item:hover { background: none; }

.proc-step-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio (3/4 = 75%) */
  height: 0;
  overflow: hidden;
  background-color: var(--ink);
}

.proc-step-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proc-step--video .proc-num {
  background: var(--olive-pale);
  border: 1px solid var(--olive);
  color: var(--olive-deep);
}

.proc-step--video .proc-icon { color: var(--ink-soft); }

.proc-step--video h3 { color: var(--ink); }

.proc-step--video p { color: var(--ink-soft); }

.proc-step--video .proc-tag {
  background: var(--olive-pale);
  border: 1px solid var(--olive);
  color: var(--olive-deep);
}

.proc-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive-pale);
  border: 1px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 1.2rem;
}

.proc-icon {
  font-size: 1.4rem;
  margin-bottom: .7rem;
  color: var(--grey-dark);
}

.proc-step h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}

.proc-step p {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.proc-tag {
  display: inline-block;
  margin-top: .7rem;
  font-family: 'Poppins', sans-serif;
  font-size: .70rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--olive-pale);
  color: var(--olive-deep);
  padding: .25rem .65rem;
  border: 1px solid var(--olive);
  font-weight: 500;
}

.proc-note {
  margin-top: 3rem;
  padding: 1.4rem 1.8rem;
  background: var(--olive-pale);
  border-left: 3px solid var(--olive);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.proc-note strong { color: var(--olive-deep); }

/* ── THE SET ── */
.the-set {
  padding: 7rem 6rem;
  background: var(--paper);
}

.set-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 1.3rem;
}

.single-product-box {
  max-width: 480px;
  margin-top: 3.5rem;
}

.wet-set-intro {
  padding-top: 0;
}

.wet-set-intro .tier-eyebrow { margin-bottom: .8rem; }

.wet-set-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.wet-set-price-box {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
}

.wet-set-price-box .tier-pricing {
  margin-top: 0;
  padding-top: 0;
}

.product-tier {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.tier-photo {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio, matches procedure video boxes */
  height: 0;
  overflow: hidden;
  background: var(--grey-pale);
}

.tier-photo--render {
  background: var(--ink);
}

.tier-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tier-photo--placeholder {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.tier-photo-placeholder-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.tier-body {
  padding: 2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tier-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive-dark);
  font-weight: 600;
  margin-bottom: .5rem;
}

.tier-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: .7rem;
  letter-spacing: -.01em;
}

.tier-desc {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.tier-contents {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tier-contents li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: var(--ink-soft);
  padding: .4rem 0;
  border-bottom: 1px solid var(--line);
}

.tier-contents li:first-child { border-top: 1px solid var(--line); }

.tier-contents-icon {
  color: var(--olive);
  font-size: .5rem;
}

.tier-pricing {
  margin-top: auto;
  padding-top: 1rem;
  margin-bottom: 1.2rem;
}

.tier-pricing-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--ink);
  letter-spacing: -.02em;
}

.tier-cta {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: .95rem 1.5rem;
  cursor: pointer;
  transition: background .25s;
}

.tier-cta:hover { background: var(--olive-deep); }

/* ── BUNDLE BONUS ── */
.bundle-bonus {
  margin-top: 3rem;
  background: var(--olive-pale);
  border: 1px solid var(--olive);
  padding: 2.5rem 2.5rem 2.2rem;
}

.bundle-bonus-label {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.bundle-bonus-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.bundle-bonus-price {
  display: flex;
  align-items: baseline;
  gap: .8rem;
}

.bundle-was {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.bundle-now {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--ink);
  letter-spacing: -.02em;
}

.bundle-bonus-free {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.bundle-bonus-free li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--ink);
  font-weight: 600;
}

.bundle-free-icon {
  color: var(--olive-deep);
  font-weight: 700;
}

.bundle-bonus-note {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.tier-cta--bundle {
  background: var(--olive-deep);
}

.tier-cta--bundle:hover { background: var(--ink); }

/* ── FOUNDER REWARD ── */
.founder-reward {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.3rem 1.8rem;
  border: 1px dashed var(--olive);
}

.founder-reward-badge {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--ink);
  color: var(--white);
  padding: .5rem .9rem;
}

.founder-reward-text {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.founder-reward-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

/* ── ANTISTATIC (signature bold section) ── */
.antistatic {
  padding: 7rem 6rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.antistatic::before {
  content: "ANTI STATIC";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12rem;
  color: rgba(43, 43, 43, .04);
  line-height: .85;
  pointer-events: none;
  white-space: pre;
}

.as-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.antistatic h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.01em;
}

.antistatic h2 .script {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: var(--olive-dark);
  line-height: 1.15;
  margin-top: .2em;
}

.as-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(43, 43, 43, .85);
  margin-bottom: 2.5rem;
}

.as-checks {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--olive);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .05rem;
  font-size: .7rem;
  font-weight: 700;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 7rem 6rem;
  background: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-inner { position: relative; z-index: 1; }

.manifesto-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  max-width: 860px;
  margin: 0 auto 2.5rem;
  letter-spacing: -.01em;
}

.manifesto-quote .gold {
  font-weight: 600;
  color: var(--olive-dark);
}

.manifesto-attr {
  font-family: 'Poppins', sans-serif;
  font-size: .70rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ── KICKSTARTER CTA ── */
.ks-cta {
  padding: 7rem 6rem;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ks-left h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}

.ks-left h2 .script {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: var(--olive);
  line-height: 1.15;
  margin-top: .15em;
}

.ks-left p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.85;
  margin-bottom: 3rem;
}

.ks-right {
  background: var(--white);
  padding: 2.8rem;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 16px 48px rgba(43, 43, 43, .05);
}

.ks-right::before {
  content: "FOUNDING MEMBER";
  position: absolute;
  top: -.6rem; left: 1.5rem;
  background: var(--olive);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .70rem;
  letter-spacing: .2em;
  font-weight: 600;
  padding: .2rem .9rem;
}

.tier-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}

.tier-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}

.tier-was {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .02em;
  margin-bottom: 1rem;
  font-weight: 400;
}

.funding-bar {
  width: 100%;
  height: 6px;
  background: rgba(43,43,43,.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.8rem;
}

.funding-bar-fill {
  height: 100%;
  background: var(--olive);
  border-radius: 3px;
}

.tier-items {
  list-style: none;
  margin-bottom: 1.8rem;
}

.tier-items li {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  letter-spacing: .01em;
  color: var(--ink-soft);
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  line-height: 1.5;
  font-weight: 400;
}

.tier-items li::before {
  content: "—";
  color: var(--olive);
  flex-shrink: 0;
}

.ks-btn {
  width: 100%;
  background: var(--olive);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.ks-btn:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
}

.spots-left {
  text-align: center;
  margin-top: .9rem;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--muted);
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  padding: 3.5rem 6rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--paper);
}

.footer-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  list-style: none;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  font-weight: 500;
}

.footer-links a:hover { color: var(--olive-dark); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hotspot-dot { animation: none; }
}

/* ── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 2px solid var(--olive);
  z-index: 9000;
  padding: 1.2rem 2rem;
  transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
}

.cookie-banner__text strong { color: var(--white); }

.cookie-banner__text a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  padding: .65rem 1.25rem;
  border-radius: 2px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--olive);
  color: var(--ink);
}
.cookie-btn--accept:hover { background: var(--olive-dark); }

.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.25);
}
.cookie-btn--reject:hover { color: var(--white); border-color: rgba(255,255,255,.6); }

.cookie-btn--manage {
  background: transparent;
  color: rgba(255,255,255,.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding-left: 0;
}
.cookie-btn--manage:hover { color: rgba(255,255,255,.8); }

/* ── COOKIE MODAL ──────────────────────────────────────────── */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(43,43,43,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal__box {
  background: var(--white);
  max-width: 540px;
  width: calc(100% - 3rem);
  padding: 2.5rem;
  position: relative;
  border-top: 3px solid var(--olive);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal__close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--grey-dark);
  line-height: 1;
  padding: .2rem .4rem;
  transition: color .2s;
}
.cookie-modal__close:hover { color: var(--ink); }

.cookie-modal__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .7rem;
}

.cookie-modal__intro {
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.cookie-pref {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.cookie-pref__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.cookie-pref__name {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

.cookie-pref__always {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: var(--olive-deep);
  font-weight: 600;
  letter-spacing: .05em;
}

.cookie-pref__desc {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--grey-pale);
  border-radius: 24px;
  transition: background .2s;
}

.cookie-toggle__track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

.cookie-toggle input:checked + .cookie-toggle__track { background: var(--olive); }
.cookie-toggle input:checked + .cookie-toggle__track::before { transform: translateX(18px); }

.cookie-modal__save {
  margin-top: 1.6rem;
  width: 100%;
  padding: .85rem;
  font-size: .8rem;
}

@media (max-width: 600px) {
  .cookie-banner { padding: 1.2rem 1.5rem; }
  .cookie-banner__inner { gap: 1rem; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }

  .hero-stats { grid-template-columns: 1fr 1fr; }

  .hp-grid,
  .as-grid,
  .ks-cta { grid-template-columns: 1fr; gap: 3rem; }

  .wet-set-items { grid-template-columns: 1fr 1fr; }

  .proc-steps { grid-template-columns: 1fr; }
  .proc-steps::before { display: none; }
  .proc-step + .proc-step { border-left: none; border-top: 1px solid var(--line); margin-left: 0; }

  .hero-product,
  .the-set,
  .antistatic,
  .manifesto,
  .ks-cta { padding: 4rem 1.5rem; }

  footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .hero-product { padding-top: 4rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .wet-set-items { grid-template-columns: 1fr; }
}
