/* Melogram landing — layout & component styles. Tokens come from colors_and_type.css */

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
}

/* Lenis */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  position: relative;
}

/* inline gold-gradient accent for headings */
.gt-inline {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* ---------- floating note/particle layer (page-wide, faint) ---------- */
#pageNotes {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ============ SECTION PADDING & WASHES ============ */
.sec-pad {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.sec-pad-sm {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}
section[data-bg="examples"] {
  background: linear-gradient(180deg, var(--cream), var(--lavender-tint));
}
section[data-bg="how"] {
  background: var(--lavender-tint);
}
section[data-bg="reviews"] {
  background: linear-gradient(180deg, var(--lavender-tint), var(--peach-tint));
}
section[data-bg="benefits"] {
  background: var(--peach-tint);
}
section[data-bg="final"] {
  background: linear-gradient(180deg, var(--peach-tint), var(--blush-tint));
}
.sec-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* filter chips */
.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.fchip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--mauve);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}
.fchip:hover {
  color: var(--gold-deep);
  transform: translateY(-1px);
}
.fchip.on {
  background: var(--gold-pale);
  color: var(--gold-deep);
  border-color: transparent;
}

.cta-btn.full,
.btn-sec.full {
  width: 100%;
  justify-content: center;
}

/* confetti */
.confetti {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  border-radius: 2px;
  animation: confettiFly 1.1s var(--ease-out) forwards;
}
@keyframes confettiFly {
  0% {
    transform: translate(0, 0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), calc(var(--dy) + 220px)) rotate(540deg);
    opacity: 0;
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #faf7f2 0%, #f2e8f5 60%, #fbf0e8 100%);
}
.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}
.hero-poster {
  z-index: 0;
  opacity: 0.7;
}
.hero-bg--video-ready .hero-poster {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video.hero-video--ready {
  opacity: 0.7;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      120% 90% at 50% 38%,
      transparent 38%,
      rgba(250, 247, 242, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(250, 247, 242, 0.35),
      transparent 22%,
      transparent 60%,
      rgba(250, 247, 242, 0.6)
    );
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-xs);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 6.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.26em;
  row-gap: 0.02em;
}
.hero-title .hw {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
  animation: wordIn 0.9s var(--ease-out) forwards;
}
.hero-em {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
  animation: wordIn 0.9s var(--ease-out) forwards;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
@keyframes wordIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(30, 21, 32, 0.9);
  max-width: 600px;
  margin: 0 auto 34px;
  opacity: 0;
  animation: wordIn 0.9s var(--ease-out) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: wordIn 0.9s var(--ease-out) 0.85s forwards;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(30, 21, 32, 0.82);
  opacity: 0;
  animation: wordIn 0.9s var(--ease-out) 1s forwards;
}
.hero-trust b {
  color: var(--ink);
  font-weight: 700;
}
.ht-stars {
  display: flex;
  gap: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .hw,
  .hero-em,
  .hero-lead,
  .hero-actions,
  .hero-trust {
    animation: fadeOnly 0.6s ease forwards;
  }
}
@keyframes fadeOnly {
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* hero track preview */
.hero-track {
  position: relative;
  z-index: 3;
  margin: 48px auto 0;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 18px;
  align-items: center;
  opacity: 0;
  animation: wordIn 1s var(--ease-out) 1.15s forwards;
  cursor: pointer;
}
.ht-cover {
  width: 108px;
  height: 108px;
  flex: none;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ht-meta {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.ht-occ {
  font-size: 12.5px;
  color: var(--mauve);
  font-weight: 600;
}
.ht-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  margin: 3px 0 12px;
}
@media (max-width: 560px) {
  .hero-track {
    flex-direction: column;
    text-align: center;
  }
  .ht-meta {
    text-align: center;
    width: 100%;
  }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.4s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-gold);
}
.nav.scrolled .nav-inner {
  padding: 13px 32px;
}
.nav img {
  height: 32px;
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.2s;
  cursor: pointer;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--ink);
}

/* ============ CTA BUTTON ============ */
.cta-btn {
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(100deg, #c9963a, #e8b86d);
  background-size: 200% 100%;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.35s,
    background-position 0.5s var(--ease-soft);
  will-change: transform;
}
.cta-btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cta-btn:active {
  transform: translateY(0) scale(0.97);
}
.cta-btn.lg {
  font-size: 17px;
  padding: 18px 34px;
}
.cta-btn.md {
  font-size: 15px;
  padding: 14px 26px;
}
.cta-btn.pulse {
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(232, 184, 109, 0.3),
      0 8px 30px rgba(201, 150, 58, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(232, 184, 109, 0.55),
      0 12px 48px rgba(232, 184, 109, 0.55);
  }
}
.cta-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple 0.6s var(--ease-out);
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}
.btn-sec {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.3s;
}
.btn-sec:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============ SECTION HEADER ============ */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.sec-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.sec-head h2 {
  margin: 0 0 14px;
}
.sec-head .lead {
  margin: 0 auto;
}

/* generic reveal — native scroll-driven CSS (no JS/rAF; degrades to visible) */
.reveal {
  opacity: 1;
}
@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@supports (animation-timeline: view) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: revealIn linear both;
      animation-timeline: view();
      animation-range: entry 2% cover 24%;
    }
  }
}

/* ============ shared PLAYER ============ */
.player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}
.play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(100deg, #c9963a, #e8b86d);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(201, 150, 58, 0.34);
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring);
}
.play-btn:hover {
  transform: scale(1.08);
}
.play-btn:active {
  transform: scale(0.94);
}
.prog {
  flex: 1;
}
.prog-track {
  height: 5px;
  border-radius: 3px;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
}
.prog-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(100deg, #c9963a, #e8b86d);
  transition: width 0.25s linear;
}
.prog-time {
  font-size: 11.5px;
  color: var(--mauve-soft);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

/* ============ TRACK CARD ============ */
.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}
.tcard:hover {
  box-shadow: var(--shadow-lg);
}
.tcard .cover {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s var(--ease-out);
}
.tcard.playing .cover {
  transform: scale(1.03);
}
.tcard .occ {
  position: absolute;
  left: 14px;
  top: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 12, 24, 0.34);
  backdrop-filter: blur(2px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.cover-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  width: 100%;
}
.tcard .meta {
  margin-top: 15px;
}
.tcard .t-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.12;
}
.tcard .t-sub {
  font-size: 13px;
  color: var(--mauve);
  margin-top: 3px;
}

/* ============ HOW IT WORKS ============ */
.steps-pin {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}
@supports (animation-timeline: view) {
  @media (prefers-reduced-motion: no-preference) {
    .step {
      opacity: 1;
      animation: revealIn linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 20%;
    }
  }
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  background: linear-gradient(110deg, #c9963a, #e8b86d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin: 18px 0;
}
.step h3 {
  margin: 0 0 8px;
}
.step p {
  margin: 0;
  font-size: 14.5px;
}
.step-connect {
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 1;
  pointer-events: none;
}

/* ============ GIFT-CARD PREVIEW (within demos) ============ */
.gcp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}
.gcp-text h3 {
  margin: 0 0 14px;
}
.gcp-text p {
  margin: 0 0 18px;
  font-size: 15px;
  max-width: 420px;
}
.gcp-url {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--gold-deep);
  background: var(--gold-pale);
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.phone-stage {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}
.phone {
  width: 280px;
  height: 570px;
  border-radius: 46px;
  background: #1e1520;
  padding: 11px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: rotateY(-10deg) rotateX(4deg);
  transition: transform 0.4s var(--ease-out);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  border-radius: 14px;
  background: #1e1520;
  z-index: 5;
}
.gift-card {
  margin: auto;
  width: 84%;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  text-align: center;
}
.gift-cover {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gift-from {
  font-size: 12px;
  color: var(--mauve);
  font-weight: 600;
}
.gift-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin: 3px 0 12px;
}

/* ============ ADVANTAGES ============ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.adv-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.adv-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.adv-card p {
  margin: 0;
  font-size: 14.5px;
}

/* ============ COMPARISON ============ */
.cmp {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.cmp-head,
.cmp-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.3fr;
  align-items: center;
}
.cmp-head {
  background: var(--gold-pale);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gold-deep);
}
.cmp-head > div {
  padding: 16px 20px;
}
.cmp-head .cmp-them {
  color: var(--mauve);
}
.cmp-row {
  border-top: 1px solid var(--border-soft);
}
.cmp-row > div {
  padding: 16px 20px;
  font-size: 14.5px;
}
.cmp-c0 {
  font-weight: 700;
  color: var(--ink);
}
.cmp-us,
.cmp-them {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.cmp-us span {
  color: var(--ink);
}
.cmp-them {
  color: var(--mauve);
}
.cmp-us svg,
.cmp-them svg {
  flex: none;
  margin-top: 1px;
}

/* ============ STAT BAND ============ */
.stat-band {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-item .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  background: linear-gradient(110deg, #c9963a, #e8b86d 50%, #f2a4be);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .l {
  font-size: 14px;
  color: var(--mauve);
  font-weight: 600;
  margin-top: 8px;
}

/* ============ VIDEO TESTIMONIALS ============ */
.vt-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vt-scroll::-webkit-scrollbar {
  display: none;
}
.vtcard {
  flex: none;
  width: 264px;
  aspect-ratio: 9/16;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  scroll-snap-align: center;
  transition: transform 0.4s var(--ease-out);
}
.vtcard:hover {
  transform: translateY(-6px);
}
.vt-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vt-video--ph {
  background: inherit;
}
.vt-play {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  z-index: 3;
  background: linear-gradient(100deg, #c9963a, #e8b86d);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(201, 150, 58, 0.45);
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring);
}
.vt-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.vt-pausehit {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}
.vt-cap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
}
.vt-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}
.vt-occ {
  font-size: 13px;
  color: var(--mauve);
  font-weight: 500;
  margin-top: 1px;
}
.vt-mute {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.vtcard:hover .vt-mute {
  opacity: 1;
}

/* ============ TEXT TESTIMONIALS (marquee) ============ */
.marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-row {
  display: flex;
  gap: 22px;
  width: max-content;
}
.marquee-row.r1 {
  animation: scrollL 46s linear infinite;
}
.marquee-row.r2 {
  animation: scrollR 52s linear infinite;
  margin-top: 22px;
}
.marquee:hover .marquee-row {
  animation-play-state: paused;
}
@keyframes scrollL {
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollR {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.rcard {
  flex: none;
  width: 360px;
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.rcard .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.rcard .rtext {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}
.rcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.rcard .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 17px;
}
.rcard .who-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.35;
}
.rcard .who-occ {
  font-size: 12.5px;
  color: var(--mauve);
  line-height: 1.3;
}
.mini-track {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding: 10px;
  border-radius: var(--r-md);
  background: var(--cream-soft);
  border: 1px solid var(--border-soft);
}
.mini-cover {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  flex: none;
  box-shadow: var(--shadow-xs);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mini-meta {
  flex: 1;
  min-width: 0;
}
.mini-meta .mt {
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-meta .ms {
  font-size: 11px;
  color: var(--mauve);
}
.mini-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-gold);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

/* ============ PRICING (single 1500₽ + upsell) ============ */
.price-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-2xl);
  padding: 38px 36px;
  box-shadow: var(--shadow-lg);
  outline: 2px solid var(--gold);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 26px;
}
.price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
}
.price-cur {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--gold-deep);
}
.price-note {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--mauve);
  text-align: right;
  line-height: 1.35;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}
.price-list li svg {
  flex: none;
  margin-top: 2px;
}
.price-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--mauve);
}
.upsell {
  background: var(--cream-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.upsell-h {
  font-size: 13.5px;
  color: var(--mauve);
  margin-bottom: 18px;
  font-weight: 600;
}
.upsell-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 14.5px;
  color: var(--ink);
}
.upsell-row:first-of-type {
  border-top: none;
}
.upsell-row b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 18px;
  white-space: nowrap;
}
.upsell-row--soon {
  color: var(--mauve);
}
.upsell-soon {
  flex: none;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--mauve);
  white-space: nowrap;
}

/* ============ GUARANTEE ============ */
.guar {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.guar-ic {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.guar h2 {
  margin: 0 0 18px;
}
.guar .lead {
  margin: 0 auto 18px;
}
.guar-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}
.faq-q span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
}
.faq-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-pale);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  transition: transform 0.3s;
}
.faq-item.open .faq-ic {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-soft);
}
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mauve);
}

/* ============ FINAL CTA ============ */
.final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin: 0 0 22px;
  line-height: 1.05;
}
.final .gt {
  background: linear-gradient(95deg, #c9963a, #f2a4be, #c9963a);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gtShift 6s linear infinite;
  font-style: italic;
}
@keyframes gtShift {
  to {
    background-position: 200% 0;
  }
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 50px;
  border-top: 1px solid var(--border-gold);
  background: var(--blush-tint);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer img {
  height: 30px;
  margin-bottom: 14px;
}
.footer p {
  font-size: 13.5px;
  color: var(--mauve);
  max-width: 280px;
  margin: 0;
}
.footer-cols {
  display: flex;
  gap: 56px;
}
.footer-col {
  min-width: 138px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mauve);
  margin-bottom: 11px;
}
.footer-col a:hover {
  color: var(--gold-deep);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .track-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .steps-pin {
    min-height: auto;
    padding: 0;
  }
  .step-connect {
    display: none;
  }
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gcp {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .price-wrap {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .cmp-head,
  .cmp-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .track-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .cta-btn.lg {
    width: 100%;
    justify-content: center;
  }
  .stat-band {
    gap: 32px;
  }
  .cmp {
    font-size: 13px;
  }
  .cmp-head > div,
  .cmp-row > div {
    padding: 12px 12px;
  }
}
