:root {
  --wine: #5b0e2d;
  --wine-dark: #340719;
  --charcoal: #111111;
  --ink: #1f1d1b;
  --muted: #6f6860;
  --ivory: #f8f5f0;
  --ivory-deep: #eee6da;
  --gold: #c9a45c;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  --serif: "Bodoni 72", "Didot", "Bodoni MT", Georgia, serif;
  --sans: Jost, Avenir, "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 10vw, 140px) 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.nav {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 18px;
  background: rgba(248, 245, 240, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 44px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, var(--gold) 48% 52%, transparent 53%),
    radial-gradient(circle at 50% 24%, var(--wine) 0 18%, transparent 19%),
    var(--charcoal);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(31, 29, 27, 0.74);
  font-size: 0.92rem;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--wine);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-cta {
  display: none;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--charcoal);
  color: white;
  font-size: 0.9rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--wine);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav a:focus-visible,
.nav button:focus-visible,
.thumb:focus-visible,
.gallery-main:focus-visible,
summary:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(201, 164, 92, 0.65);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--wine);
  color: white;
}

.button-primary:hover {
  background: var(--wine-dark);
}

.button-secondary {
  border-color: rgba(17, 17, 17, 0.18);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  border-color: rgba(91, 14, 45, 0.38);
  color: var(--wine);
}

.button-secondary.dark {
  color: white;
  border-color: rgba(255, 255, 255, 0.26);
}

.button-secondary.dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button.large {
  min-height: 58px;
  padding-inline: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 3.25rem;
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 2.45rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.hero {
  padding-top: 108px;
  min-height: 100svh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.72), var(--ivory) 72%),
    radial-gradient(circle at 88% 22%, rgba(201, 164, 92, 0.18), transparent 24%),
    linear-gradient(120deg, rgba(91, 14, 45, 0.08), transparent 42%);
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: end;
}

.hero-subtitle,
.section-heading p,
.feature-card p,
.step p,
.comparison-grid p,
.review-card blockquote,
.faq-list p,
.buy-copy p,
.site-footer p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 38px 0 0;
}

.hero-metrics div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-metrics dt {
  color: var(--charcoal);
  font-weight: 700;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory-deep);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 62%;
}

.hero-media figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.72);
  color: white;
  font-size: 0.82rem;
  backdrop-filter: blur(12px);
}

.section-heading {
  margin-bottom: clamp(30px, 6vw, 58px);
}

.section-heading.split {
  display: grid;
  gap: 18px;
  align-items: end;
}

.section-heading.split p:last-child {
  max-width: 470px;
}

.feature-section,
.reviews-section,
.faq-section {
  background: white;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.review-card,
.step,
.thumb {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.54);
}

.feature-card {
  min-height: 230px;
  padding: 26px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 164, 92, 0.48);
  background: var(--ivory);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid rgba(201, 164, 92, 0.55);
  border-radius: 50%;
  color: var(--wine);
}

.icon svg {
  width: 22px;
  height: 22px;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.demo-section {
  background: var(--ivory);
}

.demo-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.demo-player {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.demo-player video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: var(--charcoal);
}

.sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.74);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sound-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sound-toggle svg {
  width: 19px;
  height: 19px;
}

.sound-toggle .sound-on {
  display: none;
}

.sound-toggle[aria-pressed="true"] .sound-on {
  display: block;
}

.sound-toggle[aria-pressed="true"] .sound-off {
  display: none;
}

.gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--ivory-deep);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center 61%;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-main:hover img {
  transform: scale(1.025);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.thumb {
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.thumb:hover,
.thumb.active {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: white;
}

.thumb-image {
  overflow: hidden;
  display: block;
  height: 112px;
  border-radius: 6px;
}

.thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease;
}

.thumb:hover .thumb-image img,
.thumb.active .thumb-image img {
  transform: scale(1.04);
}

.comparison-section {
  background: var(--ivory-deep);
}

.comparison-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-table [role="row"]:last-child {
  border-bottom: 0;
}

.comparison-table span:first-child {
  font-weight: 700;
}

.comparison-table span:nth-child(2) {
  color: var(--muted);
}

.comparison-table span:nth-child(3) {
  color: var(--wine);
  font-weight: 700;
}

.table-head {
  background: var(--charcoal);
  color: white;
}

.table-head span:nth-child(n) {
  color: white;
}

.review-grid {
  display: grid;
  gap: 14px;
}

.review-card {
  margin: 0;
  padding: 28px;
  background: var(--ivory);
}

.stars {
  width: 118px;
  color: var(--gold);
  margin-bottom: 24px;
}

.stars svg {
  fill: currentColor;
  stroke: none;
}

.review-card blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.12;
}

.review-card figcaption {
  color: var(--charcoal);
  font-weight: 700;
}

.final-cta {
  background: var(--wine);
  color: white;
}

.buy-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.faq-grid {
  display: grid;
  gap: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--charcoal);
  font-weight: 700;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 680px;
  margin-bottom: 22px;
}

.buy-copy {
  max-width: 620px;
}

.price-row {
  display: grid;
  gap: 4px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.72);
}

.price {
  color: white;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.buy-media {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--ivory);
}

.buy-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 60%;
}

.site-footer {
  padding: 34px 0;
  background: var(--charcoal);
  color: white;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a:not(.brand) {
  color: rgba(255, 255, 255, 0.76);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@keyframes drawPulse {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

@media (max-width: 767px) {
  .nav.menu-open .nav-links {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    background: rgba(248, 245, 240, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.menu-open .nav-links a {
    padding: 12px 0;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .thumb-image {
    height: 70px;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 48px, 1180px);
  }

  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    justify-content: center;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 128px;
  }

  h1 {
    font-size: 6.5rem;
  }

  h2 {
    font-size: 4.35rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

  .review-card blockquote {
    font-size: 1.65rem;
  }

  .price {
    font-size: 4.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.76fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-wide {
    grid-column: span 2;
  }

  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading.split,
  .comparison-grid,
  .faq-grid,
  .demo-grid,
  .buy-grid,
  .footer-grid {
    grid-template-columns: 0.92fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 260px;
  }

  .gallery-thumbs {
    grid-template-columns: 1fr;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 0.8fr 1fr 1fr;
    gap: 18px;
  }

  .footer-grid {
    align-items: center;
  }
}

@media (min-width: 1080px) {
  h1 {
    font-size: 9.25rem;
  }

  h2 {
    font-size: 5.65rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .review-card blockquote {
    font-size: 2rem;
  }

  .price {
    font-size: 5.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .feature-card {
    grid-column: span 1;
  }

  .feature-wide {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
