/* ============================================================
   VISULIXX v3 — "CAESAR"
   Brand palette: Black #000000 · Burgundy #6D001A · White #FFFFFF
   (token names kept from v2 for surgical migration:
    --gold = burgundy-rose text accent · --coral = brand burgundy)
   Display: Instrument Sans · Body: Inter
   ============================================================ */
:root {
  --ink: #0a0a0a;
  --ink-2: #000000;
  --card: #141414;
  --card-2: #1c1c1c;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --bone: #ffffff;
  --dim: #a3a3a3;
  --gold: #c9506b;
  --coral: #6d001a;
  --lav: #a31b3d;
  --mint: #34d399;
  --grad-hot: linear-gradient(120deg, #6d001a 0%, #a31b3d 100%);
  --grad-dusk: linear-gradient(120deg, #3d0110 0%, #6d001a 55%, #c9506b 100%);
  --grad-rose: linear-gradient(120deg, #c9506b 0%, #e8a1b0 100%);
  --radius: 18px;
  --font-display: "Instrument Sans", "Inter", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }
em { font-style: normal; background: var(--grad-rose); -webkit-background-clip: text; background-clip: text; color: transparent; }
.accent { background: var(--grad-rose); -webkit-background-clip: text; background-clip: text; color: transparent; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--grad-hot); }
.section-sub { color: var(--dim); margin-top: 1rem; max-width: 46rem; font-size: 1.05rem; }
section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90;
  background: transparent; pointer-events: none;
}
.progress span { display: block; height: 100%; width: 100%; background: var(--grad-hot); transform: scaleX(0); transform-origin: left; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--grad-hot);
  color: #ffffff;
  box-shadow: 0 10px 34px rgba(109, 0, 26, 0.32);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { box-shadow: 0 16px 44px rgba(109, 0, 26, 0.48); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--dim); background: rgba(244, 239, 230, 0.03); }
.btn-ghost:hover { border-color: var(--gold); color: var(--bone); }
.btn-sm { padding: 0.62rem 1.3rem; font-size: 0.85rem; }
.btn-xl { padding: 1.15rem 2.6rem; font-size: 1.08rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(14, 12, 21, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease;
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: 0.01em; }
/* Real Visulixx mark rendered as an inline SVG background — no HTML change,
   scales cleanly, tint via masking to inherit --gold. */
.logo-mark {
  width: 34px; height: 32px; display: inline-block;
  background: var(--gold);
  -webkit-mask: url("assets/logo/mark.svg") no-repeat center / contain;
          mask: url("assets/logo/mark.svg") no-repeat center / contain;
  text-indent: -9999px; overflow: hidden;  /* hide the literal "V" text */
  color: transparent;
}
.nav-links { display: flex; gap: 1.8rem; font-size: 0.92rem; color: var(--dim); }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--grad-hot); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s ease;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 12, 21, 0.9) 0%, rgba(14, 12, 21, 0.55) 45%, rgba(14, 12, 21, 0.92) 82%, var(--ink) 100%),
    radial-gradient(ellipse 90% 60% at 12% 22%, rgba(0, 0, 0, 0.55), transparent 65%),
    radial-gradient(ellipse 70% 50% at 20% 90%, rgba(109, 0, 26, 0.18), transparent 60%);
}
.hero-content { max-width: 54rem; padding-top: 7rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: linear-gradient(120deg, rgba(109, 0, 26, 0.65), rgba(163, 27, 61, 0.55));
  border: 1px solid rgba(232, 161, 176, 0.55);
  color: #fff;
  border-radius: 999px;
  padding: 0.48rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(109, 0, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ffd7de;
  box-shadow: 0 0 8px rgba(232, 161, 176, 0.9);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 161, 176, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(232, 161, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 161, 176, 0); }
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.7);
}
.hero h1 em {
  font-style: normal;
  color: #ffbfcf;
  text-shadow:
    0 0 24px rgba(232, 161, 176, 0.55),
    0 2px 12px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.8);
}
.hero h1 .w { display: inline-block; }
.lead { color: rgba(244, 239, 230, 0.94); font-size: clamp(1.02rem, 1.6vw, 1.2rem); margin: 1.4rem 0 2.1rem; max-width: 37rem; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: clamp(1.4rem, 4vw, 3.2rem); flex-wrap: wrap;
  margin-top: clamp(2rem, 4.5vw, 3.4rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600;
  background: var(--grad-rose); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .stat-label { color: var(--dim); font-size: 0.82rem; letter-spacing: 0.04em; }
.scroll-hint {
  position: absolute; right: 4%; bottom: 2.4rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--dim); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 760px) { .scroll-hint { display: none; } }

/* ---------- marquee ---------- */
.marquee {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 3rem; padding-right: 3rem; animation: marquee 36s linear infinite; will-change: transform; }
.marquee span {
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.18em;
  color: var(--dim);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee b { color: var(--gold); font-weight: 500; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.6rem; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.6rem; }
@media (max-width: 1000px) { .cards-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .cards-3, .cards-2 { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .cards-4 { grid-template-columns: 1fr; } }
.card {
  background: linear-gradient(160deg, var(--card-2) 0%, var(--card) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: var(--grad-hot); opacity: 0; transition: opacity 0.35s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201, 80, 107, 0.35); }
.card:hover::before { opacity: 1; }
.card p { color: var(--dim); font-size: 0.96rem; margin-top: 0.6rem; }
.card-lg { padding: 2.4rem 2.2rem; }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(109, 0, 26, 0.18), rgba(201, 80, 107, 0.08));
  border: 1px solid rgba(232, 161, 176, 0.28);
  color: #e8a1b0;
  font-weight: 800; font-size: 1.3rem; border-radius: 14px; margin-bottom: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 14px rgba(109, 0, 26, 0.18);
}
.card-icon svg { width: 26px; height: 26px; display: block; }
.card:hover .card-icon { border-color: rgba(232, 161, 176, 0.55); color: #ffd7de; }

/* ---------- how ---------- */
.how { background: var(--ink-2); }
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.3rem; margin-top: 2.8rem; position: relative; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.steps-line {
  position: absolute; top: 20px; left: 8%; right: 8%; height: 2px; z-index: 0;
  background: var(--line);
}
.steps-line span { display: block; height: 100%; width: 100%; background: var(--grad-hot); transform: scaleX(0); transform-origin: left; }
@media (max-width: 860px) { .steps-line { display: none; } }
.step { position: relative; z-index: 1; background: transparent; padding: 0 0.4rem; }
.step-num {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-family: var(--font-display); font-weight: 600; margin-bottom: 1rem;
}
.step.lit .step-num { background: var(--grad-hot); color: #ffffff; border-color: transparent; box-shadow: 0 8px 26px rgba(109, 0, 26, 0.35); }
.step p { color: var(--dim); font-size: 0.95rem; margin-top: 0.5rem; }
.how-note {
  margin-top: 3rem;
  background: linear-gradient(120deg, rgba(163, 27, 61, 0.1), rgba(109, 0, 26, 0.08));
  border: 1px solid rgba(163, 27, 61, 0.3);
  border-radius: var(--radius);
  padding: 1.4rem 1.7rem;
  color: var(--dim);
}
.how-note strong { color: var(--bone); }

/* ---------- proof slider ---------- */
.ba-slider {
  position: relative;
  margin-top: 2.8rem;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  user-select: none;
}
.ba-slider img { width: 100%; aspect-ratio: 16/9; object-fit: cover; pointer-events: none; }
.ba-top { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; background: var(--bone); transform: translateX(-1px);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--grad-hot); color: #ffffff; border-radius: 50%;
  font-size: 0.9rem; font-weight: 800; letter-spacing: -0.05em;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}
.ba-label {
  position: absolute; top: 1.1rem;
  padding: 0.35rem 0.95rem; border-radius: 999px;
  background: rgba(14, 12, 21, 0.72); backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(201, 80, 107, 0.3);
}
.ba-label-l { left: 1.1rem; }
.ba-label-r { right: 1.1rem; }
.ba-slider input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
  -webkit-appearance: none; appearance: none;
}

/* ---------- styles strip (horizontal) ---------- */
.stylestrip { background: var(--ink-2); overflow: hidden; }
.strip-head { margin-bottom: 0.5rem; }
.strip-viewport { overflow: hidden; margin-top: 2.4rem; }
.strip-track { display: flex; gap: 1.4rem; width: max-content; padding: 0.5rem 4vw; will-change: transform; }
.strip-card {
  width: clamp(300px, 34vw, 460px);
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.strip-card:hover { transform: translateY(-6px); border-color: rgba(201, 80, 107, 0.4); }
.strip-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.strip-card figcaption { padding: 0.95rem 1.2rem; font-size: 0.88rem; color: var(--dim); display: flex; align-items: baseline; gap: 0.6rem; }
.strip-card figcaption strong { font-family: var(--font-display); color: var(--gold); letter-spacing: 0.1em; font-weight: 600; }
@media (max-width: 899px) {
  .strip-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .strip-track { padding: 0.5rem 4vw; }
  .strip-card { scroll-snap-align: center; width: 78vw; }
}
.stylemenu { margin-top: 3.4rem; }
.stylemenu-title { margin-bottom: 1.4rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  padding: 0.45rem 1rem; border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--dim);
}
.chip.live {
  color: var(--gold);
  border-color: rgba(201, 80, 107, 0.4);
  background: rgba(201, 80, 107, 0.08);
}
.chip.soon { opacity: 0.55; }
.gallery-note { margin-top: 2rem; color: var(--dim); font-size: 0.95rem; padding: 0 4vw; }
.gallery-note a { color: var(--gold); font-weight: 600; border-bottom: 1px solid rgba(201, 80, 107, 0.4); }

/* ---------- comparison ---------- */
.compare-wrap {
  margin-top: 2.8rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.compare-table { width: 100%; min-width: 780px; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 0.95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-size: 0.8rem; font-weight: 700; color: var(--dim); vertical-align: bottom; }
.compare-table thead th span { font-weight: 500; font-size: 0.72rem; color: var(--dim); }
.compare-table tbody td:first-child { color: var(--bone); font-weight: 600; }
.compare-table tbody td { color: var(--dim); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--mint); font-weight: 600; }
.compare-table .no { color: var(--coral); }
.compare-table .mid { color: var(--gold); }
.compare-table .vx-col {
  background: linear-gradient(180deg, rgba(201, 80, 107, 0.12), rgba(109, 0, 26, 0.06));
  border-left: 1px solid rgba(201, 80, 107, 0.35);
}
.compare-table thead .vx-col, .compare-table thead .vx-col span {
  font-family: var(--font-display);
  color: var(--gold); font-size: 1rem; font-weight: 600;
}

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.8rem; }
@media (max-width: 1000px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.tier:hover { transform: translateY(-6px); border-color: rgba(201, 80, 107, 0.35); }
.tier.featured {
  border-color: rgba(201, 80, 107, 0.55);
  background: linear-gradient(180deg, rgba(201, 80, 107, 0.14), var(--card) 55%);
  position: relative;
}
.tier.featured::before {
  content: "Most popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-hot); color: #ffffff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem; border-radius: 999px;
}
.tier-name { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dim); }
.tier-price { font-family: var(--font-display); font-size: 2.3rem; font-weight: 600; }
.tier-unit { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.tier-note { color: var(--dim); font-size: 0.86rem; flex: 1; margin-top: 0.5rem; }
.tier .btn { margin-top: 1.3rem; justify-content: center; }
.pricing-note { margin-top: 1rem; color: var(--dim); font-size: 0.97rem; max-width: 46rem; }
.pricing-note strong { color: var(--mint); }
.guarantee {
  margin-top: 2.8rem;
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: linear-gradient(120deg, rgba(52, 211, 153, 0.08), var(--card));
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.guarantee-icon { font-size: 2rem; }
.guarantee p { color: var(--dim); margin-top: 0.4rem; }

/* ---------- story ---------- */
.story { background: var(--ink-2); }
.story-inner { max-width: 47rem; }
.story p { color: var(--dim); margin-top: 1.2rem; font-size: 1.1rem; line-height: 1.8; }

/* ---------- faq ---------- */
.faq-list { margin-top: 2.4rem; display: grid; gap: 0.9rem; max-width: 54rem; }
details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.5rem;
  transition: border-color 0.3s ease;
}
details[open] { border-color: rgba(201, 80, 107, 0.4); }
summary { cursor: pointer; font-weight: 600; list-style: none; position: relative; padding-right: 2.2rem; font-size: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-weight: 600; font-size: 1.4rem;
  transition: transform 0.3s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details .faq-body { overflow: hidden; }
details p { color: var(--dim); margin-top: 0.8rem; font-size: 0.96rem; }

/* ---------- final cta ---------- */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) 0;
}
.final-cta::before {
  content: ""; position: absolute; left: 50%; bottom: -40%;
  width: 900px; height: 700px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(109, 0, 26, 0.22), rgba(201, 80, 107, 0.1) 40%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { max-width: 52rem; margin: 0 auto; }
.final-cta p { color: var(--dim); margin: 1.4rem 0 2.2rem; }
.cta-fineprint { font-size: 0.85rem; margin-top: 1.2rem !important; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 3rem 0; background: var(--ink-2); }
.footer-inner { display: grid; gap: 1.6rem; }
.footer-tag { color: var(--dim); font-size: 0.88rem; margin-top: 0.7rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; color: var(--dim); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { color: var(--dim); font-size: 0.8rem; opacity: 0.8; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 70;
  width: 58px; height: 58px; display: grid; place-items: center;
  background: #25d366; border-radius: 50%; font-size: 1.6rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }

/* ---------- cursor glow (desktop) ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 100;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 80, 107, 0.07), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- inner pages ---------- */
.page-hero {
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(109, 0, 26, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(163, 27, 61, 0.08), transparent 60%);
}
.page-hero .lead { margin-bottom: 0; }
.prose { max-width: 46rem; }
.prose p { color: var(--dim); margin: 1.1rem 0; font-size: 1.05rem; line-height: 1.8; }
.prose h2 { font-size: 1.5rem; margin-top: 2.6rem; }
.prose strong { color: var(--bone); }

/* ---------- style library ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2.2rem 0 0; }
.filter-btn {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--dim);
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--bone); }
.filter-btn.active { background: var(--grad-hot); color: #ffffff; border-color: transparent; font-weight: 600; }
.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.4rem; }
@media (max-width: 980px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .style-grid { grid-template-columns: 1fr; } }
.style-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.style-card:hover { transform: translateY(-5px); border-color: rgba(201, 80, 107, 0.4); }
.style-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.style-card .sc-body { padding: 1.1rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.sc-code { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.12em; color: var(--gold); font-size: 0.85rem; }
.sc-name { font-weight: 700; font-size: 1.02rem; }
.sc-desc { color: var(--dim); font-size: 0.88rem; flex: 1; }
.sc-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-top: 0.5rem; }
.ph-visual {
  aspect-ratio: 4/3; display: grid; place-items: center; position: relative; overflow: hidden;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.14em;
  color: rgba(244, 239, 230, 0.85); font-size: 1.05rem; text-align: center; padding: 1rem;
}
.ph-sig { background: linear-gradient(140deg, #2b1a3d, #4a2340 55%, #6b3226); }
.ph-ker { background: linear-gradient(140deg, #16323a, #1d4438 55%, #3d5a2e); }
.ph-art { background: linear-gradient(140deg, #2e2a3f, #3d3654 55%, #55486b); }
.ph-soon { background: linear-gradient(140deg, #1d1a26, #241f31 55%, #2e2740); }
.ph-visual::after {
  content: ""; position: absolute; inset: auto -20% -55% -20%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(201, 80, 107, 0.25), transparent 65%);
}
.soon-tag {
  position: absolute; top: 0.9rem; right: 0.9rem;
  font-size: 0.62rem; letter-spacing: 0.14em; font-weight: 700;
  padding: 0.25rem 0.7rem; border-radius: 999px;
  background: rgba(14, 12, 21, 0.7); border: 1px solid var(--line-strong); color: var(--dim);
}

/* ---------- checklist / included lists ---------- */
.tick-list { list-style: none; display: grid; gap: 0.7rem; margin-top: 1.6rem; }
.tick-list li { color: var(--dim); padding-left: 1.8rem; position: relative; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 800; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .badge .pulse-dot, .scroll-hint::after { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- pricing page: full comparison ---------- */
.pr-count { background: var(--grad-hot); text-align: center; padding: .7rem 1rem; border-radius: 14px; margin-top: 1.4rem; font-size: .9rem; font-weight: 600; display: flex; gap: .6rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.pr-count .clk { font-variant-numeric: tabular-nums; background: rgba(0,0,0,.4); border-radius: 6px; padding: .15rem .55rem; font-weight: 800; letter-spacing: .05em; }
.pr-count b { color: #ffd9df; }
.pr-free { margin-top: 1.4rem; background: radial-gradient(120% 140% at 0% 0%, rgba(52,211,153,.1), transparent 55%), var(--card); border: 1px solid rgba(52,211,153,.28); border-radius: 18px; padding: 1.4rem 1.7rem; display: flex; gap: 1.4rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.pr-free .b { font-size: .7rem; font-weight: 800; letter-spacing: .14em; color: var(--mint); border: 1px solid rgba(52,211,153,.4); border-radius: 999px; padding: .28rem .8rem; background: rgba(52,211,153,.08); display: inline-block; }
.pr-free h3 { font-size: 1.35rem; margin: .5rem 0 .3rem; }
.pr-free p { color: var(--dim); font-size: .92rem; max-width: 44ch; }
.pr-free .mets { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.pr-free .met b { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--mint); display: block; line-height: 1; }
.pr-free .met span { font-size: .76rem; color: var(--dim); }
.pr-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-top: 1.6rem; align-items: start; }
@media (max-width: 980px) { .pr-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pr-tiers { grid-template-columns: 1fr; } }
.pr-t { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem 1.25rem; display: flex; flex-direction: column; }
.pr-t.pop { border-color: var(--lav); background: linear-gradient(180deg, rgba(163,27,61,.13), var(--card) 55%); }
.pr-t.best { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,80,107,.13), var(--card) 55%); box-shadow: 0 24px 60px -34px rgba(201,80,107,.9); }
.pr-rib { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .1em; padding: .3rem .8rem; border-radius: 999px; white-space: nowrap; }
.pr-rib.p { background: linear-gradient(120deg, var(--coral), var(--lav)); }
.pr-rib.b { background: linear-gradient(120deg, var(--gold), var(--coral)); }
.pr-nm { font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--dim); }
.pr-sub { color: var(--dim); font-size: .78rem; min-height: 2.6em; margin-top: .2rem; line-height: 1.35; }
.pr-anc { color: #6f6f6f; text-decoration: line-through; text-decoration-color: var(--lav); font-size: .92rem; font-variant-numeric: tabular-nums; margin-top: .4rem; }
.pr-pr { display: flex; align-items: baseline; gap: .25rem; margin-top: .05rem; font-family: var(--font-display); }
.pr-pr .r { font-size: 1.15rem; font-weight: 600; color: #e8a1b0; }
.pr-pr .a { font-size: 2.2rem; font-weight: 600; font-variant-numeric: tabular-nums; line-height: 1; }
.pr-pr .pe { color: var(--dim); font-size: .8rem; font-weight: 500; font-family: var(--font-body); }
.pr-alt { color: var(--dim); font-size: .76rem; margin-top: .3rem; font-variant-numeric: tabular-nums; }
.pr-alt b { color: #e8a1b0; font-weight: 600; } .pr-alt .sv { color: var(--mint); font-weight: 700; }
.pr-pill { display: inline-block; font-size: .63rem; font-weight: 800; letter-spacing: .05em; border-radius: 999px; padding: .24rem .6rem; margin-top: .6rem; }
.pr-pill.off { background: linear-gradient(120deg, var(--coral), var(--lav)); color: #fff; }
.pr-pill.h { background: rgba(201,80,107,.14); color: #e8a1b0; border: 1px solid rgba(201,80,107,.4); }
.pr-offer { margin-top: .7rem; font-size: .75rem; background: rgba(52,211,153,.09); border: 1px solid rgba(52,211,153,.3); color: var(--mint); border-radius: 9px; padding: .45rem .6rem; line-height: 1.35; }
.pr-offer b { color: #eafff6; }
.pr-tog { display: inline-flex; background: var(--card-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px; margin: .55rem 0 .15rem; gap: 2px; }
.pr-tog button { font-size: .7rem; font-weight: 700; border: none; background: transparent; color: var(--dim); padding: .3rem .7rem; border-radius: 999px; cursor: pointer; }
.pr-tog button.on { background: linear-gradient(120deg, var(--gold), var(--coral)); color: #fff; }
.pr-fe { list-style: none; margin: 1rem 0 0; display: grid; gap: .5rem; border-top: 1px solid var(--line); padding-top: .9rem; }
.pr-fe li { font-size: .79rem; padding-left: 1.4rem; position: relative; line-height: 1.35; }
.pr-fe li.inc { color: var(--dim); } .pr-fe li.inc b { color: #fff; font-weight: 600; }
.pr-fe li.inc::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.pr-fe li.exc { color: #6f6f6f; } .pr-fe li.exc::before { content: "✕"; position: absolute; left: 0; color: #6f6f6f; font-weight: 700; }
.pr-cta { margin-top: 1rem; text-align: center; font-weight: 700; font-size: .85rem; border-radius: 999px; padding: .72rem 1rem; border: 1px solid var(--line-strong); color: var(--bone); background: transparent; cursor: pointer; display: block; }
.pr-t.pop .pr-cta { background: var(--grad-hot); border-color: transparent; color: #fff; }
.pr-t.best .pr-cta { background: linear-gradient(120deg, var(--gold), var(--coral)); border-color: transparent; color: #fff; }
.pr-ph-note { margin-top: 1rem; font-size: .78rem; color: #6f6f6f; }
.pr-ph-note b { color: #e8a1b0; }

/* ---------- chatbot (replaces WhatsApp float) ---------- */
.cbot { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 95; }
.cbot-fab { position: relative; width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad-hot); box-shadow: 0 12px 34px rgba(109,0,26,.5); display: grid; place-items: center; color: #fff;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1); }
.cbot-fab:hover { transform: scale(1.07); }
.cbot-fab svg { width: 27px; height: 27px; }
.cbot-fab .cbot-fab-ic, .cbot-fab .cbot-fab-close { transition: opacity .2s, transform .25s; display: grid; place-items: center; }
.cbot-fab .cbot-fab-close { position: absolute; inset: 0; font-size: 1.3rem; opacity: 0; transform: rotate(-90deg); }
.cbot.open .cbot-fab-ic { opacity: 0; transform: rotate(90deg); }
.cbot.open .cbot-fab-close { opacity: 1; transform: rotate(0); }
.cbot-fab::after { content: ""; position: absolute; top: 5px; right: 5px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--mint); border: 2px solid var(--ink); animation: pulse 2.2s ease-out infinite; }
.cbot.open .cbot-fab::after { display: none; }
.cbot-panel { position: absolute; right: 0; bottom: 74px; width: min(360px, calc(100vw - 2rem)); height: 500px; max-height: calc(100vh - 120px);
  background: var(--card); border: 1px solid var(--line-strong); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 30px 70px rgba(0,0,0,.6); opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none; transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1); }
.cbot.open .cbot-panel { opacity: 1; transform: none; pointer-events: auto; }
.cbot-head { display: flex; align-items: center; gap: .7rem; padding: .9rem 1rem; background: var(--grad-hot); color: #fff; }
.cbot-ava { width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,.28); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.cbot-name { font-weight: 700; font-size: .95rem; }
.cbot-status { font-size: .72rem; opacity: .9; display: flex; align-items: center; gap: .35rem; }
.cbot-status .cbot-dot { width: 7px; height: 7px; border-radius: 50%; background: #86efac; }
.cbot-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .55rem; }
.cbot-msg { max-width: 84%; padding: .6rem .85rem; border-radius: 14px; font-size: .88rem; line-height: 1.45; animation: cbotIn .3s ease both; }
.cbot-msg.bot { background: var(--card-2); border: 1px solid var(--line); color: var(--bone); border-bottom-left-radius: 4px; align-self: flex-start; }
.cbot-msg.user { background: var(--grad-hot); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.cbot-msg a { color: var(--gold); text-decoration: underline; font-weight: 600; }
.cbot-msg.user a { color: #ffd9df; }
@keyframes cbotIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cbot-typing { align-self: flex-start; display: flex; gap: 4px; padding: .7rem .85rem; background: var(--card-2); border: 1px solid var(--line); border-radius: 14px; border-bottom-left-radius: 4px; }
.cbot-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--dim); animation: cbotBlink 1.2s infinite; }
.cbot-typing span:nth-child(2){ animation-delay: .2s; } .cbot-typing span:nth-child(3){ animation-delay: .4s; }
@keyframes cbotBlink { 0%,60%,100%{ opacity: .3; } 30%{ opacity: 1; } }
.cbot-quick { display: flex; flex-wrap: wrap; gap: .4rem; padding: .5rem .8rem; }
.cbot-quick button { font-size: .77rem; font-weight: 600; padding: .38rem .8rem; border-radius: 999px; cursor: pointer;
  background: rgba(201,80,107,.1); border: 1px solid rgba(201,80,107,.4); color: var(--gold); transition: all .2s; }
.cbot-quick button:hover { background: var(--gold); color: #fff; }
.cbot-input { display: flex; gap: .5rem; padding: .7rem .8rem; border-top: 1px solid var(--line); }
.cbot-input input { flex: 1; background: var(--ink); border: 1px solid var(--line); border-radius: 999px; color: var(--bone); padding: .55rem .9rem; font-size: .85rem; }
.cbot-input input:focus { outline: none; border-color: var(--gold); }
.cbot-input button { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; border: none; background: var(--grad-hot); color: #fff; cursor: pointer; font-size: 1rem; }

/* ---------- pain + fixes: richer cards ---------- */
.pain::before, .fixes::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 82% 8%, rgba(109,0,26,.16), transparent 60%); }
.pain > .container, .fixes > .container { position: relative; z-index: 1; }
.pain .cards-4, .fixes .cards-3 { counter-reset: vxn; }
.pain .cards-4 > .card, .fixes .cards-3 > .card { counter-increment: vxn; }
.pain .cards-4 > .card::after, .fixes .cards-3 > .card::after {
  content: "0" counter(vxn);
  position: absolute; top: 0.15rem; right: 0.9rem;
  font-family: var(--font-display); font-weight: 700; font-size: 4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201,80,107,.18); pointer-events: none; z-index: 0; }
.pain .card h3, .pain .card p, .fixes .card h3, .fixes .card p { position: relative; z-index: 1; }
.pain .card-icon, .fixes .card-icon { position: relative; z-index: 1; transition: transform .45s cubic-bezier(.34,1.56,.64,1); }
.pain .card:hover .card-icon, .fixes .card:hover .card-icon { transform: translateY(-5px) scale(1.08); }

/* ---------- styles ring (revolving on scroll) ---------- */
.ring-stage { height: 78vh; min-height: 680px; display: grid; place-items: center; perspective: 1650px; overflow: hidden; margin-top: 1.4rem; }
.ring { position: relative; width: 500px; height: 620px; transform-style: preserve-3d; transform: translateZ(-580px) rotateY(0deg); will-change: transform; }
.ring-tile { position: absolute; inset: 0; width: 500px; height: 620px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-strong); background: var(--card); box-shadow: 0 26px 70px rgba(0,0,0,.55); }
.ring-tile img { width: 100%; height: 74%; object-fit: cover; }
.ring-tile figcaption { padding: .8rem 1rem; font-size: .86rem; color: var(--dim); }
.ring-tile figcaption strong { display: block; font-family: var(--font-display); color: var(--gold); letter-spacing: .1em; font-weight: 600; margin-bottom: .1rem; }
.ring-tile:nth-child(1) { transform: rotateY(0deg) translateZ(580px); }
.ring-tile:nth-child(2) { transform: rotateY(60deg) translateZ(580px); }
.ring-tile:nth-child(3) { transform: rotateY(120deg) translateZ(580px); }
.ring-tile:nth-child(4) { transform: rotateY(180deg) translateZ(580px); }
.ring-tile:nth-child(5) { transform: rotateY(240deg) translateZ(580px); }
.ring-tile:nth-child(6) { transform: rotateY(300deg) translateZ(580px); }
.ring-hint { text-align: center; color: var(--dim); font-size: .8rem; letter-spacing: .04em; margin-top: 1rem; }
@media (max-width: 899px) {
  .ring-stage { height: auto; min-height: 0; perspective: none; display: block; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .ring { transform: none !important; transform-style: flat; width: max-content; height: auto; display: flex; gap: 1rem; padding: .5rem 4vw; }
  .ring-tile { position: relative; inset: auto; transform: none !important; flex: 0 0 78vw; scroll-snap-align: center; height: auto; }
  .ring-tile img { height: 56vw; }
}
