/* Apex Gold — label-inspired: gold · olive · warm terracotta */

:root {
  --bg-page: #f5f0e6;
  --bg-alt: #ebe3d4;
  --surface: #fffcf7;
  --surface-glass: rgba(255, 252, 247, 0.72);
  --ink: #1a1814;
  --muted: #5c564c;
  --olive: #4a5d44;
  --olive-deep: #2c3328;
  --terra: #c05621;
  --terra-deep: #9a3412;
  --gold: #d4a43a;
  --gold-light: #f4e4b8;
  --gold-rich: #f0d060;
  --gold-deep: #9a7218;
  --gold-shine: #fff8e7;
  --accent: #b8892e;
  --accent-hover: #9a7218;
  --accent-soft: rgba(184, 137, 46, 0.22);
  --accent-glow: rgba(240, 208, 96, 0.45);
  --coral: #c2410c;
  --coral-soft: rgba(192, 65, 12, 0.12);
  --border: rgba(61, 50, 32, 0.1);
  --border-gold: rgba(184, 137, 46, 0.28);
  --shadow: 0 20px 50px rgba(44, 36, 22, 0.1);
  --shadow-sm: 0 8px 28px rgba(44, 36, 22, 0.07);
  --shadow-gold: 0 12px 40px rgba(184, 137, 46, 0.25);
  --radius: 1rem;
  --radius-lg: 1.35rem;
  --max: 1180px;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --success: #6b7c4a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg-page);
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Floating gold / olive light field */
.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-layer__blobs {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(ellipse 90% 70% at 85% 5%, rgba(240, 208, 96, 0.4) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 10% 20%, rgba(245, 158, 114, 0.22) 0%, transparent 48%),
    radial-gradient(ellipse 55% 45% at 75% 85%, rgba(74, 93, 68, 0.14) 0%, transparent 48%),
    radial-gradient(ellipse 50% 40% at 30% 60%, rgba(212, 164, 58, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #f8f2e6 0%, #f0e8d8 50%, #e8ddce 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .ambient-layer__blobs {
    animation: ambient-orbit 28s ease-in-out infinite alternate;
  }
}

@keyframes ambient-orbit {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-2%, 2%) rotate(3deg) scale(1.05);
    opacity: 0.96;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-layer__blobs {
    animation: none;
  }
}

/* Scroll-triggered reveal (requires reveal-js on <html> + main.js) */
.scroll-reveal {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.reveal-js .scroll-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}

html.reveal-js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-js .scroll-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Staggered delays when blocks enter as a row */
.features-bar__grid .scroll-reveal:nth-child(1) {
  transition-delay: 0s;
}
.features-bar__grid .scroll-reveal:nth-child(2) {
  transition-delay: 0.07s;
}
.features-bar__grid .scroll-reveal:nth-child(3) {
  transition-delay: 0.14s;
}
.features-bar__grid .scroll-reveal:nth-child(4) {
  transition-delay: 0.21s;
}
.features-bar__grid .scroll-reveal:nth-child(5) {
  transition-delay: 0.28s;
}
.features-bar__grid .scroll-reveal:nth-child(6) {
  transition-delay: 0.35s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.95rem, 4vw + 1rem, 3rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.28rem;
  margin: 0 0 0.5rem;
}

.top-strip {
  background: linear-gradient(90deg, var(--terra-deep) 0%, var(--olive) 42%, var(--gold-deep) 78%, var(--gold) 100%);
  color: #fffbeb;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 24px rgba(154, 114, 24, 0.25);
}

.site-header {
  background: rgba(255, 252, 247, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 8px 32px rgba(42, 34, 22, 0.06);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.15rem;
  font-size: 0.93rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--gold-deep);
}

@media (max-width: 720px) {
  .site-nav {
    order: 3;
    width: 100%;
    padding-top: 0.65rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--border);
    justify-content: center;
  }

  .btn--header-cta {
    margin-left: auto;
  }
}

@media (min-width: 721px) {
  .site-nav {
    flex: 1;
    justify-content: center;
    max-width: 28rem;
  }
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  background: linear-gradient(165deg, #f8fafc 8%, #94a3b8 42%, #475569 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
}

.logo span {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-rich) 38%, var(--gold) 72%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(234, 179, 8, 0.35));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: linear-gradient(145deg, var(--gold-rich) 0%, var(--gold) 38%, var(--accent) 72%, var(--gold-deep) 100%);
  color: #1c1308;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border-color: rgba(154, 114, 24, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(145deg, #fde68a 0%, var(--gold-rich) 35%, var(--gold) 70%, var(--accent-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(184, 137, 46, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn--secondary {
  background: var(--surface-glass);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-color: var(--border-gold);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--terra-deep);
  background: rgba(255, 252, 247, 0.92);
}

.btn--block {
  width: 100%;
}

/* ——— Dark luxe hero (black + gold) ——— */
body:has(.hero--luxury) .site-header {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(212, 175, 55, 0.22);
}

body:has(.hero--luxury) .site-nav a {
  color: #d6d3d1;
}

body:has(.hero--luxury) .site-nav a:hover {
  color: #fcd34d;
}

body:has(.hero--luxury) .top-strip {
  background: linear-gradient(90deg, #000 0%, #1c1917 50%, #000 100%);
  color: #fde68a;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

body:has(.hero--luxury) .ambient-layer__blobs {
  opacity: 0.35;
  filter: saturate(0.85) brightness(0.92);
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fafaf9 !important;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 24px rgba(234, 179, 8, 0.08);
}

.btn--on-dark:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: #fcd34d;
  color: #fff !important;
}

.hero--luxury {
  position: relative;
  padding: 1.5rem 1.15rem 2rem;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(180, 83, 9, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, #020202 0%, #0a0a0a 45%, #111 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  color: #e7e5e4;
}

@media (min-width: 900px) {
  .hero--luxury {
    padding: 2rem 1.25rem 2.75rem;
    min-height: min(88vh, 920px);
    align-items: center;
  }
}

.hero--luxury__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero--luxury__particles {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 18%, rgba(253, 224, 134, 0.85), transparent),
    radial-gradient(1px 1px at 92% 22%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 40% 88%, rgba(251, 191, 36, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 72% 56%, rgba(254, 243, 199, 0.55), transparent),
    radial-gradient(1px 1px at 55% 12%, rgba(253, 224, 134, 0.4), transparent);
  background-size: 100% 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--luxury__particles {
    animation: lux-shimmer 14s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--luxury__particles,
  .hero--luxury__constellation {
    animation: none !important;
  }
}

@keyframes lux-shimmer {
  from {
    opacity: 0.38;
  }
  to {
    opacity: 0.52;
  }
}

.hero--luxury__glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero--luxury__glow-orb--1 {
  width: min(72vw, 560px);
  height: min(72vw, 560px);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: rgba(234, 179, 8, 0.22);
  opacity: 0.85;
}

.hero--luxury__glow-orb--2 {
  width: 240px;
  height: 240px;
  right: 5%;
  top: 15%;
  background: rgba(234, 179, 8, 0.12);
}

.hero--luxury__constellation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  opacity: 0.5;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--luxury__constellation {
    animation: lux-const 20s ease-in-out infinite alternate;
  }
}

@keyframes lux-const {
  from {
    transform: translateY(0);
    opacity: 0.45;
  }
  to {
    transform: translateY(-8px);
    opacity: 0.55;
  }
}

.hero--luxury__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 60% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero--luxury__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero--luxury__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.hero--luxury__copy-block {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.hero--luxury__eyebrow {
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 224, 134, 0.85);
  margin: 0 0 0.75rem;
}

.hero--luxury__title {
  margin: 0 0 0.85rem;
  line-height: 1.08;
}

.hero--luxury__title-line {
  display: block;
  font-family: "Montserrat", var(--font-display), sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 4vw, 2.65rem);
  letter-spacing: -0.02em;
  color: #fafaf9;
  text-shadow: 0 0 36px rgba(255, 255, 255, 0.06);
}

.hero--luxury__title-accent {
  display: block;
  margin-top: 0.2rem;
  font-family: "Montserrat", var(--font-display), sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 4vw, 2.65rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fef9c3 0%, #fcd34d 38%, #d97706 72%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(234, 179, 8, 0.42));
}

.hero--luxury__subhead {
  margin: 0 auto 1rem;
  max-width: 36rem;
  font-family: var(--font-body), sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(231, 229, 228, 0.94);
}

.hero--luxury__social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 0 auto 1.1rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fde68a;
}

.hero--luxury__social-proof-stars {
  letter-spacing: 0.08em;
  color: #fbbf24;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.55);
}

.hero--luxury__social-proof-text {
  color: rgba(253, 230, 138, 0.92);
}

.hero--luxury__bullets {
  list-style: none;
  margin: 0 auto 1.1rem;
  padding: 0;
  max-width: 22rem;
  text-align: left;
}

.hero--luxury__bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(231, 229, 228, 0.92);
}

.hero--luxury__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #86efac;
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.35);
}

.hero--luxury__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 1rem;
  padding: 1.05rem 1.75rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: clamp(1.05rem, 2.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 999px;
  box-shadow:
    0 6px 28px rgba(184, 137, 46, 0.45),
    0 0 40px rgba(234, 179, 8, 0.2),
    inset 0 1px 0 rgba(255, 252, 247, 0.35);
}

.hero--luxury__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 0.75rem;
}

.hero--luxury__cta-wrap .hero--luxury__cta-primary {
  margin: 0;
  max-width: none;
}

.hero--luxury__cta-secondary {
  display: block;
  text-align: center;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fde68a;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-bottom: 2px solid rgba(251, 191, 36, 0.55);
  align-self: center;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.hero--luxury__cta-secondary:hover {
  color: #fffbeb;
  border-bottom-color: #fcd34d;
}

.hero--luxury__trust-mini {
  margin: 0 auto 0.65rem;
  max-width: 34rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: rgba(214, 211, 209, 0.95);
}

.hero--luxury__trust-mini span[aria-hidden="true"] {
  color: #86efac;
  margin-right: 0.15rem;
}

.hero--luxury__promise-row {
  list-style: none;
  margin: 0 auto 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  max-width: 36rem;
}

.hero--luxury__promise-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(214, 211, 209, 0.92);
}

.hero--luxury__promise-icon {
  color: #fcd34d;
  font-weight: 800;
  font-size: 0.85rem;
}

.hero--luxury__urgency {
  margin: 0 auto 0.65rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(251, 146, 60, 0.95);
  text-shadow: 0 0 20px rgba(234, 88, 12, 0.35);
}

.hero--luxury__fineprint {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(168, 162, 158, 0.85);
  margin: 0;
}

.hero--luxury__product-halo {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(118%, 540px);
  height: min(95%, 420px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(251, 191, 36, 0.42) 0%,
    rgba(180, 83, 9, 0.18) 38%,
    transparent 68%
  );
  filter: blur(2px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero--luxury__product-halo {
    animation: hero-halo-pulse 5s ease-in-out infinite alternate;
  }
}

@keyframes hero-halo-pulse {
  from {
    opacity: 0.88;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.07);
  }
}

.hero--luxury__product-shine {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(90%, 400px);
  height: 65%;
  transform: translate(-50%, -50%) rotate(-12deg);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 252, 247, 0.14) 48%,
    transparent 62%
  );
  opacity: 0.55;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--luxury__product-shine {
    animation: hero-shine-sweep 7s ease-in-out infinite;
  }
}

@keyframes hero-shine-sweep {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) rotate(-12deg);
  }

  50% {
    opacity: 0.65;
    transform: translate(-48%, -52%) rotate(-10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--luxury__product-halo,
  .hero--luxury__product-shine {
    animation: none !important;
  }
}

.hero--luxury__stage {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

@media (min-width: 1000px) {
  .hero--luxury__stage {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 1.15fr) minmax(0, 1fr);
    gap: 0.65rem 1.15rem;
    align-items: center;
  }
}

/* Mobile: product (6 bottles) first, then copy, then pillars, then trust bar */
@media (max-width: 999px) {
  .hero--luxury__inner {
    display: flex;
    flex-direction: column;
  }

  .hero--luxury__stage {
    display: contents;
    margin-bottom: 0;
  }

  .hero--luxury__visual-wrap {
    order: -1;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .hero--luxury__head {
    order: 0;
    margin-bottom: 1.35rem;
  }

  .hero--luxury__pillar--left {
    order: 1;
  }

  .hero--luxury__pillar--right {
    order: 2;
    margin-bottom: 1.25rem;
  }

  .hero--luxury__trustbar {
    order: 4;
  }
}

.hero--luxury__pillar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero--luxury__pillar-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: start;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(8px);
}

.hero--luxury__pillar-icon {
  grid-row: 1 / span 2;
  color: #fcd34d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
}

.hero--luxury__pillar-label {
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fef3c7;
  line-height: 1.25;
}

.hero--luxury__pillar-hint {
  grid-column: 2;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(214, 211, 209, 0.8);
}

.hero--luxury__visual-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin: 0.35rem 0 0;
}

@media (min-width: 1000px) {
  .hero--luxury__visual-wrap {
    min-height: 300px;
    margin: 0;
    padding: 0 0.5rem;
  }
}

.hero--luxury__product {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: min(400px, 88vw);
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 60px rgba(234, 179, 8, 0.55))
    drop-shadow(0 0 100px rgba(251, 191, 36, 0.22))
    drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55));
}

@media (prefers-reduced-motion: no-preference) {
  .hero--luxury__product {
    animation: hero-product-glow 6s ease-in-out infinite alternate;
  }
}

@keyframes hero-product-glow {
  from {
    filter:
      drop-shadow(0 0 52px rgba(234, 179, 8, 0.48))
      drop-shadow(0 0 88px rgba(251, 191, 36, 0.18))
      drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  }

  to {
    filter:
      drop-shadow(0 0 72px rgba(234, 179, 8, 0.62))
      drop-shadow(0 0 120px rgba(251, 191, 36, 0.28))
      drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--luxury__product {
    animation: none !important;
  }
}

.hero--luxury__trustbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.hero--luxury__trustbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fcd34d;
}

.hero--luxury__trustbar-item svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero--luxury__trustbar-div {
  width: 1px;
  height: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.45), transparent);
}

@media (max-width: 520px) {
  .hero--luxury__trustbar-div {
    display: none;
  }

  .hero--luxury__trustbar {
    flex-direction: column;
    text-align: center;
  }
}

.trust-strip {
  background: linear-gradient(92deg, var(--olive-deep) 0%, var(--olive) 32%, var(--gold-deep) 70%, var(--gold) 100%);
  color: #fffbeb;
  text-align: center;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.trust-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.trust-strip__inner span {
  line-height: 1.5;
}

.features-bar {
  padding: 2rem 1.25rem 2.5rem;
}

.features-bar__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .features-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-chunk {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(165deg, rgba(255, 252, 247, 0.95) 0%, rgba(245, 236, 220, 0.55) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-chunk.scroll-reveal {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.feature-chunk.is-visible:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 137, 46, 0.45);
}

.feature-chunk svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.15rem;
}

.feature-chunk strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.feature-chunk span {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 3rem 1.25rem;
}

.section--alt {
  background: linear-gradient(180deg, #f0e8d8 0%, #e8dece 100%);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__title::after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 3px;
  margin: 0.65rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-rich), var(--gold));
  box-shadow: 0 2px 12px rgba(234, 179, 8, 0.35);
}

.company-grid .section__title::after {
  margin-left: 0;
  margin-right: auto;
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  font-size: 1.07rem;
}

/* Nerve discomfort education — sales-leaning, scannable blocks */
.nerve-health__subtitle {
  font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 2rem;
}

.nerve-health__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .nerve-health__layout {
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 2.25rem 2.5rem;
  }
}

.nerve-health__visual-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--olive-deep);
  text-align: center;
  line-height: 1.3;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.95), rgba(240, 208, 96, 0.18));
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(184, 137, 46, 0.1);
}

.nerve-health__figure {
  margin: 0;
}

.nerve-health__figure img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm), 0 0 40px rgba(234, 179, 8, 0.06);
}

.nerve-health__caption {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}

.nerve-health__blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nerve-health-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(165deg, #fffcf7 0%, #faf4e8 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.nerve-health-card--accent {
  background: linear-gradient(165deg, rgba(255, 252, 247, 0.98) 0%, rgba(254, 243, 199, 0.45) 100%);
  border-color: rgba(184, 137, 46, 0.45);
}

.nerve-health-card__icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--gold-deep);
  background: linear-gradient(145deg, rgba(255, 250, 235, 0.95), rgba(240, 208, 96, 0.25));
  border: 1px solid rgba(184, 137, 46, 0.28);
  flex-shrink: 0;
}

.nerve-health-card__icon--warn {
  color: #b45309;
  background: linear-gradient(145deg, #fffbeb, rgba(251, 191, 36, 0.2));
  border-color: rgba(245, 158, 11, 0.35);
}

.nerve-health-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive-deep);
  letter-spacing: 0.02em;
}

.nerve-health-card__list {
  grid-column: 2;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

.nerve-health-card__list li {
  margin-bottom: 0.45rem;
}

.nerve-health-card__list li:last-child {
  margin-bottom: 0;
}

.nerve-health-card__list sup a {
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: none;
}

.nerve-health-card__list sup a:hover {
  text-decoration: underline;
}

.nh-term {
  font-weight: 700;
  color: var(--terra-deep);
  background: linear-gradient(180deg, transparent 62%, rgba(240, 208, 96, 0.42) 62%);
  padding: 0 0.06em;
}

.nerve-health__closing {
  margin: 2rem auto 0;
  max-width: 38rem;
  text-align: center;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--olive-deep);
  line-height: 1.45;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(240, 208, 96, 0.22));
  border: 1px solid var(--border-gold);
  box-shadow: 0 6px 28px rgba(184, 137, 46, 0.12);
}

.guarantee-pill {
  display: inline-flex;
  margin: 0 auto 1.75rem;
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, rgba(255, 250, 235, 0.95), rgba(240, 208, 96, 0.3));
  color: var(--olive-deep);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 16px rgba(184, 137, 46, 0.12);
}

#reviews .section__inner {
  text-align: center;
}

.testimonials__grid {
  display: grid;
  gap: 1.25rem;
  text-align: left;
}

.testimonials__grid--4 {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .testimonials__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-quote {
  background: linear-gradient(160deg, #fffcf7 0%, #faf4e8 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  background-clip: padding-box;
}

.card-quote__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-quote__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 164, 58, 0.55);
  box-shadow: 0 4px 12px rgba(184, 137, 46, 0.18);
}

.card-quote__name {
  font-weight: 700;
  font-size: 0.98rem;
}

.card-quote__loc {
  font-size: 0.82rem;
  color: var(--muted);
}

.card-quote blockquote {
  margin: 0;
}

.card-quote blockquote p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink);
}

.edu-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.edu-split img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow), 0 0 40px rgba(234, 179, 8, 0.06);
}

@media (min-width: 900px) {
  .edu-split {
    grid-template-columns: 1fr 1fr;
  }
}

.lifestyle-block img {
  box-shadow: var(--shadow), 0 16px 48px rgba(234, 179, 8, 0.1);
}

.product-highlights {
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
  margin: 0 auto;
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
}

.hl-item svg {
  flex-shrink: 0;
  color: var(--gold-deep);
  margin-top: 0.1rem;
  filter: drop-shadow(0 1px 2px rgba(184, 137, 46, 0.3));
}

.label-showcase {
  position: relative;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  padding: 0.5rem;
}

.label-showcase__glow {
  position: absolute;
  inset: -12%;
  border-radius: 24px;
  background: radial-gradient(
    ellipse 85% 75% at 50% 55%,
    rgba(234, 179, 8, 0.35) 0%,
    rgba(212, 164, 58, 0.15) 45%,
    transparent 68%
  );
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.label-showcase__frame {
  position: relative;
  z-index: 1;
  padding: 0.75rem;
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.95) 0%, rgba(245, 236, 220, 0.75) 100%);
  border: 2px solid var(--border-gold);
  border-radius: 1.15rem;
  box-shadow: 0 20px 60px rgba(42, 34, 22, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.label-showcase__frame img {
  width: 100%;
  height: auto;
  max-height: min(380px, 52vh);
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

@media (min-width: 900px) {
  .label-showcase {
    max-width: min(52rem, 94vw);
  }

  .label-showcase__frame {
    padding: 1rem 1.15rem;
  }

  .label-showcase__frame img {
    max-height: min(560px, 72vh);
  }
}

.cta-band {
  position: relative;
  background: linear-gradient(130deg, var(--olive-deep) 0%, var(--olive) 28%, var(--gold-deep) 65%, #d97706 100%);
  color: #fffbeb;
  padding: 2.75rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 40%, rgba(255, 255, 255, 0.18), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(240, 208, 96, 0.2), transparent 38%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.92;
  margin: 0 0 0.5rem;
}

.cta-band__lead {
  margin: 0 auto 1.35rem;
  opacity: 0.96;
  max-width: 38rem;
  line-height: 1.55;
}

.cta-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.btn--cta-lg {
  padding: 1rem 2rem;
  font-size: 1.08rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.pricing__grid {
  display: grid;
  gap: 1.75rem;
}

@media (max-width: 767px) {
  /* Stack vertically with 6-bottle bundle first (Try now / pricing flow) */
  .pricing__grid {
    display: flex;
    flex-direction: column;
  }

  .price-card--featured {
    order: -1;
  }
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 0.4rem;
}

.pricing-footnote {
  text-align: center;
  margin: 1.75rem auto 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.55;
}

.section--pricing {
  padding-top: 3.25rem;
  background: linear-gradient(180deg, #faf5eb 0%, #f2e8d8 40%, #ebe0d0 100%);
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.price-card:hover {
  box-shadow: var(--shadow);
}

.price-card__bottle-wrap {
  width: 100%;
  min-height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.25rem;
  padding: 1rem 0.5rem 1.5rem;
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, var(--accent-soft) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(245, 236, 220, 0.75) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
}

.price-card__bottle-wrap img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  max-height: 13rem;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.14));
}

.price-card__bottle-wrap--lg {
  min-height: 14rem;
  padding: 1.15rem 0.5rem 1.65rem;
}

.price-card__bottle-wrap--lg img {
  max-height: 15rem;
}

@media (min-width: 768px) {
  .price-card__bottle-wrap img {
    max-height: 15rem;
  }

  .price-card__bottle-wrap--lg img {
    max-height: 17.5rem;
  }
}

@media (min-width: 1100px) {
  .price-card__bottle-wrap img {
    max-height: 17rem;
  }

  .price-card__bottle-wrap--lg img {
    max-height: 20rem;
  }
}

.price-card h3 {
  font-size: 1.35rem;
}

.price-card .supply {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.price-line {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
  background: linear-gradient(145deg, var(--gold-deep) 0%, var(--gold) 45%, var(--gold-rich) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.4));
}

.per-bottle {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.25rem 0 0.75rem;
}

.total {
  font-weight: 700;
  margin: 0;
}

.ship {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.35rem 0 1rem;
}

.price-card .btn {
  margin-top: auto;
}

.price-card__payments {
  width: 100%;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(61, 50, 32, 0.1);
}

.price-card__payments img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .price-card__payments img {
    max-width: 300px;
  }
}

.price-card--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow), 0 0 32px rgba(234, 179, 8, 0.2);
  transform: scale(1.03);
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 45%, #fef3c7 100%);
  z-index: 1;
  padding-top: 2.65rem;
}

@media (min-width: 768px) {
  .price-card--featured {
    transform: scale(1.04) translateY(-4px);
  }
}

.price-card__tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-deep) 100%);
  color: #fffbeb;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(154, 52, 18, 0.35);
}

.price-card__tag--dual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  top: -14px;
  white-space: nowrap;
}

.price-card__tag-line {
  display: block;
  line-height: 1.15;
}

.price-card__tag-line:first-child {
  font-size: 0.68rem;
  opacity: 0.98;
}

.price-card__tag-line:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.price-card__social-proof {
  margin: -0.15rem 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-style: italic;
  color: var(--terra-deep);
}

.price-card__save {
  margin: 0.35rem 0 0.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--success);
}

.price-card__save--hot {
  font-size: 0.95rem;
  color: var(--terra-deep);
  text-shadow: 0 1px 0 rgba(255, 252, 247, 0.8);
}

.price-card__perday {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.price-card__perday strong {
  color: var(--ink);
  font-weight: 800;
}

.price-card__guarantee {
  margin: 0.35rem 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 17rem;
}

.price-card__guarantee strong {
  color: var(--olive-deep);
}

.bonus-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bonus-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--accent);
  box-shadow: var(--shadow-sm);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pill-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pill-list svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.15rem;
}

/* Comparison — dark premium matrix table */
.section--compare-dark {
  position: relative;
  padding: 3.5rem 1.25rem 3.75rem;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #070708 0%,
    #14110e 28%,
    #1c1610 52%,
    #0d0b09 78%,
    #040403 100%
  );
  color: #e7e5e4;
}

.compare-dark__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -15%, rgba(212, 164, 58, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(120, 53, 15, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(180, 83, 9, 0.12), transparent 45%);
}

.section__inner--compare-dark {
  position: relative;
  z-index: 1;
  max-width: min(1040px, 100%);
  margin: 0 auto;
}

.compare-dark__eyebrow {
  margin: 0 0 0.65rem;
  text-align: center;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(253, 224, 139, 0.75);
}

.compare-dark__title {
  margin: 0 auto 2rem;
  max-width: 22ch;
  text-align: center;
  font-family: "Montserrat", var(--font-display), sans-serif;
  font-size: clamp(1.65rem, 4vw + 1rem, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fafaf9;
  text-shadow: 0 2px 28px rgba(212, 164, 58, 0.18);
}

.compare-matrix-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid rgba(212, 164, 58, 0.28);
  background: rgba(8, 7, 6, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 247, 0.06),
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(180, 83, 9, 0.08);
  scrollbar-color: rgba(212, 164, 58, 0.45) rgba(0, 0, 0, 0.3);
}

.compare-matrix-scroll:focus-visible {
  outline: 2px solid rgba(253, 224, 139, 0.55);
  outline-offset: 3px;
}

.compare-matrix {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
}

.compare-matrix thead th {
  padding: 1rem 0.85rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(212, 164, 58, 0.22);
  background: linear-gradient(180deg, rgba(35, 28, 22, 0.98) 0%, rgba(22, 18, 14, 0.98) 100%);
  color: rgba(231, 229, 228, 0.85);
}

.compare-matrix__feature-head {
  text-align: left;
  padding-left: 1.1rem;
  min-width: 11.5rem;
  position: sticky;
  left: 0;
  z-index: 4;
  background: linear-gradient(180deg, #2a231c 0%, #1a1510 100%) !important;
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.45);
}

.compare-matrix__apex-head {
  padding: 1rem 0.65rem;
  vertical-align: middle;
  background: linear-gradient(
    165deg,
    rgba(212, 164, 58, 0.35) 0%,
    rgba(120, 53, 15, 0.45) 55%,
    rgba(22, 18, 14, 0.95) 100%
  ) !important;
  box-shadow:
    inset 0 0 0 1px rgba(253, 224, 139, 0.35),
    0 0 36px rgba(212, 164, 58, 0.22);
  border-left: 1px solid rgba(253, 224, 139, 0.25);
  border-right: 1px solid rgba(253, 224, 139, 0.2);
}

.compare-matrix__apex-head-inner {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(0.78rem, 1.5vw, 0.88rem);
  letter-spacing: 0.04em;
  color: #fde68a;
  text-shadow:
    0 0 20px rgba(251, 191, 36, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.6);
}

.compare-matrix__generic-head {
  color: rgba(168, 162, 158, 0.95);
  font-weight: 700;
}

.compare-matrix tbody th {
  padding: 0.95rem 1rem 0.95rem 1.1rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(245, 243, 242, 0.92);
  border-bottom: 1px solid rgba(63, 54, 44, 0.65);
  background: #141210;
  position: sticky;
  left: 0;
  z-index: 3;
  box-shadow: 6px 0 16px rgba(0, 0, 0, 0.35);
}

.compare-matrix tbody tr:nth-child(even) th {
  background: #181512;
}

.compare-matrix td {
  padding: 0.85rem 0.75rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(63, 54, 44, 0.55);
  background: rgba(12, 10, 9, 0.45);
  color: rgba(231, 229, 228, 0.88);
}

.compare-matrix tbody tr:nth-child(even) td:not(.compare-matrix__apex) {
  background: rgba(18, 15, 12, 0.55);
}

.compare-matrix__apex {
  background: linear-gradient(
    180deg,
    rgba(212, 164, 58, 0.14) 0%,
    rgba(120, 53, 15, 0.12) 50%,
    rgba(22, 18, 14, 0.55) 100%
  ) !important;
  border-left: 1px solid rgba(253, 224, 139, 0.28);
  border-right: 1px solid rgba(253, 224, 139, 0.18);
  box-shadow:
    inset 0 0 32px rgba(212, 164, 58, 0.07),
    0 0 28px rgba(212, 164, 58, 0.06);
}

.compare-matrix tbody tr:nth-child(even) .compare-matrix__apex {
  background: linear-gradient(
    180deg,
    rgba(212, 164, 58, 0.18) 0%,
    rgba(120, 53, 15, 0.14) 55%,
    rgba(26, 21, 16, 0.65) 100%
  ) !important;
}

.compare-matrix tbody tr:last-child th,
.compare-matrix tbody tr:last-child td {
  border-bottom: none;
}

.compare-matrix__tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
}

.compare-matrix__tick--apex {
  color: #bbf7d0;
  background: rgba(22, 101, 52, 0.35);
  border: 1px solid rgba(74, 222, 128, 0.45);
  box-shadow:
    0 0 20px rgba(74, 222, 128, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.compare-matrix__tick--no {
  color: #fca5a5;
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.compare-matrix__tick--weak {
  color: rgba(253, 224, 139, 0.65);
  background: rgba(113, 63, 18, 0.35);
  border: 1px solid rgba(212, 164, 58, 0.28);
  box-shadow: none;
}

.compare-dark__footnote {
  margin: 1.35rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(168, 162, 158, 0.85);
}

@media (max-width: 719px) {
  .section--compare-dark {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .compare-matrix {
    min-width: 620px;
    font-size: 0.82rem;
  }

  .compare-matrix tbody th {
    font-size: 0.8rem;
    padding-left: 0.85rem;
    padding-right: 0.65rem;
  }

  .compare-dark__title {
    max-width: none;
  }
}

/* Community — premium social proof + testimonial cards */
.section--community {
  position: relative;
  background: linear-gradient(180deg, #faf6ee 0%, #f3ead8 42%, #ebe2d2 100%);
}

.section__inner--community {
  text-align: center;
}

.section__subtitle--community {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.community-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.25rem;
  max-width: 36rem;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.95), rgba(244, 228, 188, 0.35));
  border: 1px solid rgba(184, 137, 46, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(61, 50, 32, 0.06);
}

.community-social-proof__trust {
  margin: 0;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--olive-deep);
}

.community-social-proof__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.community-social-proof__stars {
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #ea580c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 1px 2px rgba(234, 88, 12, 0.25));
}

.community-social-proof__score {
  font-weight: 600;
  color: var(--ink);
}

.community-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
  margin-top: 0.25rem;
}

@media (min-width: 720px) {
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

.community-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.85rem 1.35rem 1.45rem;
  background: linear-gradient(165deg, #fffefb 0%, #faf6ec 48%, #f4ebe0 100%);
  border: 1px solid rgba(184, 137, 46, 0.22);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 20px rgba(44, 36, 22, 0.06),
    0 12px 40px rgba(124, 90, 20, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 32px rgba(44, 36, 22, 0.08),
    0 20px 48px rgba(184, 137, 46, 0.14);
  border-color: rgba(184, 137, 46, 0.42);
}

.community-card__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.4rem 1rem 0.45rem 1.1rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fffef8;
  background: linear-gradient(120deg, var(--gold-deep), var(--accent), #d97706);
  border-radius: 0 var(--radius-lg) 0 0.65rem;
  box-shadow: -2px 4px 14px rgba(154, 114, 24, 0.35);
}

.community-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.28rem 0.65rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(255, 250, 235, 0.95);
  border: 1px solid rgba(212, 164, 58, 0.45);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(184, 137, 46, 0.15);
}

.community-card--featured {
  padding: 3.15rem 1.5rem 1.65rem;
  background: linear-gradient(155deg, #fffdfa 0%, #fcf6e8 35%, #f0e4d4 100%);
  border-width: 2px;
  border-color: rgba(212, 164, 58, 0.45);
  box-shadow:
    0 6px 28px rgba(124, 90, 20, 0.1),
    0 0 0 1px rgba(253, 230, 138, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

@media (min-width: 720px) {
  .community-card--featured {
    grid-column: 1 / -1;
  }
}

.community-card--featured:hover {
  box-shadow:
    0 10px 36px rgba(124, 90, 20, 0.12),
    0 0 0 1px rgba(253, 230, 138, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.community-card__featured-inner {
  display: grid;
  gap: 1.35rem;
  align-items: start;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .community-card__featured-inner {
    grid-template-columns: minmax(112px, 132px) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: center;
  }
}

.community-card__featured-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.community-card__featured-body {
  min-width: 0;
}

.community-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.1),
    0 0 0 2px rgba(212, 164, 58, 0.55);
}

.community-card__avatar--lg {
  width: 112px;
  height: 112px;
  border-width: 4px;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.12),
    0 0 0 3px rgba(240, 208, 96, 0.65);
}

.community-card__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 137, 46, 0.18);
}

.community-card__identity {
  min-width: 0;
  padding-top: 0.05rem;
}

.community-card__stars {
  color: #ea580c;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 0.45rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 1px 2px rgba(234, 88, 12, 0.3));
}

.community-card__stars--prominent {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.community-card__featured-visual .community-card__stars--prominent {
  margin-bottom: 0;
}

.community-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.2;
}

.community-card__meta {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.community-card__hook {
  margin: 0 0 0.65rem;
  font-family: "Montserrat", var(--font-body), sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
  background: linear-gradient(120deg, var(--olive-deep), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (background-clip: text) {
  .community-card__hook {
    color: var(--olive-deep);
    background: none;
  }
}

.community-card__quote {
  margin: 0;
  flex: 1;
}

.community-card__quote p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--ink);
}

.community-card__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.community-card__checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.38rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--olive-deep);
  background: rgba(107, 124, 74, 0.12);
  border: 1px solid rgba(74, 93, 68, 0.18);
  border-radius: 999px;
}

.community-card__checks li::before {
  content: "✓";
  font-weight: 800;
  color: var(--success);
  font-size: 0.85rem;
}

.community-card__badge {
  display: inline-block;
  margin-top: 1.15rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--olive);
  padding: 0.38rem 0.72rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(74, 93, 68, 0.22);
  border-radius: 8px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(61, 50, 32, 0.05);
}

.community-footnote {
  margin: 2.25rem auto 0;
  max-width: 48rem;
  padding: 0 0.25rem;
  font-size: 0.86rem;
  line-height: 1.58;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 719px) {
  .community-grid {
    gap: 1.35rem;
  }

  .community-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .community-card__featured-inner {
    justify-items: center;
    text-align: center;
  }

  .community-card--featured .community-card__featured-body {
    text-align: left;
    width: 100%;
  }

  .community-card__featured-body .community-card__badge {
    align-self: flex-start;
  }

  .community-card__checks {
    justify-content: flex-start;
  }
}

.promise-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .promise-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.promise-card {
  background: linear-gradient(180deg, #fffcf7 0%, #faf4e8 100%);
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.promise-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}

.promise-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.company-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .company-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-list {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 0;
  min-height: 52px;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.faq-item button span:last-child {
  font-size: 0.75rem;
  color: var(--accent);
}

.faq-panel {
  display: none;
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-item.is-open button span:last-child {
  transform: rotate(180deg);
  display: inline-block;
}

.ref-list {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto;
}

.site-footer {
  position: relative;
  background: linear-gradient(175deg, #1a2220 0%, #0f1412 40%, #0a0c0a 100%);
  color: #d1c4b0;
  padding: 2.5rem 1.25rem 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(184, 137, 46, 0.25);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
}

.site-footer h2 {
  background: linear-gradient(90deg, #fffbeb, var(--gold-rich), #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-legal p {
  margin: 0 0 0.65rem;
}

/* VTurb VSL — apenas mobile; desktop mostra o site completo sem vídeo no topo */
.esconder {
  display: none !important;
}

@media (min-width: 769px) {
  #vsl-section {
    display: none !important;
  }
}

/* Mobile VSL delay: só o vídeo — sem links do header */
@media (max-width: 768px) {
  html.vsl-delay-active .site-header .site-nav,
  html.vsl-delay-active .site-header .btn--header-cta {
    display: none !important;
  }

  html.vsl-delay-active .site-header__inner {
    justify-content: center;
  }
}

#vsl-section {
  background: #050505;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.25rem 0 2rem;
  position: relative;
  overflow: hidden;
}

#vsl-section::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 18%;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.11) 0%, transparent 68%);
  pointer-events: none;
}

#vsl-section::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 12%;
  width: min(340px, 55vw);
  height: min(340px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.06) 0%, transparent 68%);
  pointer-events: none;
}

.vsl-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: min(960px, 92vw);
  margin: 0 auto;
  padding: 0 1.15rem;
}

@media (min-width: 1400px) {
  .vsl-wrap {
    max-width: 1100px;
  }
}

.vsl-sub {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: #a8a29e;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  #vsl-section {
    min-height: unset;
    padding: 4.5rem 0 1.25rem;
  }

  .vsl-wrap {
    max-width: 100%;
    padding: 0 0.65rem;
  }
}

#vsl-section vturb-smartplayer {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
