/**
 * Landing Page — Warm Editorial Design
 *
 * Color palette: deep burgundy/wine · warm cream · burnished gold
 * Typography: Georgia serif headlines + Inter body
 * Desktop-first (≥1440px). Responsive in landing.responsive.css.
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --lp-wine-deep: #110606;
  --lp-wine-mid: #1f0c0c;
  --lp-wine-rich: #2d1212;
  --lp-burgundy: #6e1414;
  --lp-burgundy-lt: #8b2020;
  --lp-gold: #c9973e;
  --lp-gold-lt: #ddb96b;
  --lp-gold-pale: #f0ddb0;
  --lp-gold-bg: #fdf5e0;
  --lp-cream: #faf5ed;
  --lp-cream-alt: #f2e8d5;
  --lp-sand: #e8d9c0;
  --lp-text-dark: #1a0808;
  --lp-text-warm: #4a2a18;
  --lp-text-mid: #7a5035;
  --lp-text-muted: #a07050;
  --lp-text-cream: #faf5ed;
  --lp-text-ivory: #e8d9c0;
  --lp-rule: rgba(201, 151, 62, 0.35);
  --lp-shadow-card: 0 2px 16px rgba(26, 8, 8, 0.09);
  --lp-shadow-hover: 0 8px 32px rgba(26, 8, 8, 0.14);
  --lp-shadow-gold: 0 6px 24px rgba(201, 151, 62, 0.28);
  /* macOS window chrome colours — screenshot carousel only */
  --lp-chrome-red: #ff5f57;
  --lp-chrome-yellow: #febc2e;
  --lp-chrome-green: #28c840;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--lp-cream);
  color: var(--lp-text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  /* DESKTOP: horizontal — DO NOT CHANGE */
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 70px;
  background: rgba(17, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 151, 62, 0.12);
  transition: background 0.3s ease;
}

.lp-nav.scrolled {
  background: rgba(17, 6, 6, 0.98);
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  text-decoration: none;
}

.lp-nav-logo img {
  height: 80%;
  width: auto;
}

.lp-nav-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  font-weight: normal;
  color: var(--lp-text-cream);
  letter-spacing: 0.04em;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.lp-nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(250, 245, 237, 0.5);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.lp-nav-links a:hover {
  color: var(--lp-gold-lt);
}

.lp-nav-links a.active {
  color: var(--lp-gold-lt);
}

.lp-nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 8px 22px;
  background: var(--lp-gold) !important;
  color: var(--lp-wine-deep) !important;
  border-radius: 3px;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.lp-nav-cta:hover {
  background: var(--lp-gold-lt) !important;
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  /* DESKTOP: screenshot | text | screenshot — DO NOT CHANGE */
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: center;
  padding: 130px 56px 100px;
  background: var(--lp-wine-deep);
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 15% 25%, rgba(110, 20, 20, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 85% 75%, rgba(201, 151, 62, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative dot-grid (top right) */
.lp-hero-grid-deco {
  position: absolute;
  top: 80px;
  right: 60px;
  display: grid;
  grid-template-columns: repeat(8, 10px);
  grid-template-rows: repeat(8, 10px);
  gap: 8px;
  opacity: 0.12;
  pointer-events: none;
}

.lp-hero-grid-deco span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-gold);
}

.lp-hero-grid-deco span.dim {
  opacity: 0.4;
}

/* Decorative dot-grid (bottom left) */
.lp-hero-grid-deco-bl {
  position: absolute;
  bottom: 80px;
  left: 60px;
  display: grid;
  grid-template-columns: repeat(6, 10px);
  grid-template-rows: repeat(6, 10px);
  gap: 8px;
  opacity: 0.08;
  pointer-events: none;
}

.lp-hero-grid-deco-bl span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-gold);
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Editorial chapter label */
.lp-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 36px;
}

.lp-hero-label::before,
.lp-hero-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--lp-gold);
  opacity: 0.5;
}

.lp-hero-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: normal;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--lp-text-cream);
  margin-bottom: 12px;
}

.lp-hero-headline em {
  font-style: italic;
  color: var(--lp-gold);
}

.lp-hero-sub-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: normal;
  font-style: italic;
  color: var(--lp-text-cream);
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.lp-hero-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
  margin: 0 auto 32px;
  opacity: 0.6;
}

.lp-hero-body {
  font-size: 1rem;
  color: var(--lp-text-cream);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.lp-hero-actions {
  display: flex;
  /* DESKTOP: side-by-side buttons — DO NOT CHANGE */
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 38px;
  background: var(--lp-gold);
  color: var(--lp-wine-deep);
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--lp-shadow-gold);
  transition: background 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}

.lp-btn-primary:hover {
  background: var(--lp-gold-lt);
  transform: translateY(-2px);
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: transparent;
  color: var(--lp-text-ivory);
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 245, 237, 0.2);
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}

.lp-btn-secondary:hover {
  border-color: var(--lp-gold);
  color: var(--lp-gold-lt);
  transform: translateY(-1px);
}

.lp-hero-trust {
  display: flex;
  /* DESKTOP: horizontal trust row — DO NOT CHANGE */
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 60px;
  flex-wrap: wrap;
  padding-top: 44px;
  border-top: 1px solid rgba(201, 151, 62, 0.12);
}

@keyframes lp-trust-icon-pulse {

  0%,
  100% {
    opacity: 0.65;
    filter: drop-shadow(0 0 0px var(--lp-gold));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--lp-gold-lt));
  }
}

@keyframes lp-trust-text-shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg,
      var(--lp-text-ivory) 0%,
      var(--lp-gold-pale) 40%,
      var(--lp-gold-lt) 50%,
      var(--lp-gold-pale) 60%,
      var(--lp-text-ivory) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lp-trust-text-shimmer 4s linear infinite;
}

.lp-trust-item:nth-child(2) {
  animation-delay: 1s;
}

.lp-trust-item:nth-child(3) {
  animation-delay: 2s;
}

.lp-trust-item:nth-child(4) {
  animation-delay: 3s;
}

.lp-trust-item svg {
  color: var(--lp-gold);
  flex-shrink: 0;
  animation: lp-trust-icon-pulse 2.5s ease-in-out infinite;
  -webkit-text-fill-color: initial;
}

.lp-trust-item:nth-child(2) svg {
  animation-delay: 0.6s;
}

.lp-trust-item:nth-child(3) svg {
  animation-delay: 1.2s;
}

.lp-trust-item:nth-child(4) svg {
  animation-delay: 1.8s;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.lp-section {
  padding: 100px 56px;
}

.lp-section-dark {
  background: var(--lp-wine-rich);
}

.lp-section-cream {
  background: var(--lp-cream);
}

.lp-section-cream-alt {
  background: var(--lp-cream-alt);
}

.lp-section-header {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

.lp-section-eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 16px;
}

.lp-section-eyebrow-light {
  color: var(--lp-gold-lt);
}

.lp-gold-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--lp-gold);
  margin: 0 auto 20px;
  opacity: 0.55;
}

.lp-gold-rule-light {
  opacity: 0.35;
}

.lp-section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--lp-text-dark);
  margin-bottom: 20px;
}

.lp-section-title-light {
  color: var(--lp-text-cream);
}

.lp-section-title em {
  font-style: italic;
  color: var(--lp-gold);
}

.lp-section-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--lp-text-mid);
}

.lp-section-desc-light {
  color: rgba(250, 245, 237, 0.5);
}

/* ============================================
   FEATURES — Cream, editorial card grid
   ============================================ */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--lp-sand);
  border: 1px solid var(--lp-sand);
  border-radius: 4px;
  overflow: hidden;
}

.lp-feature-card {
  background: var(--lp-cream);
  padding: 40px 32px;
  position: relative;
  transition: background 0.22s ease;
}

.lp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lp-gold);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.lp-feature-card:hover {
  background: var(--lp-gold-bg);
}

.lp-feature-card:hover::before {
  opacity: 1;
}

.lp-feature-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.8rem;
  font-weight: normal;
  color: var(--lp-sand);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
  transition: color 0.22s ease;
}

.lp-feature-card:hover .lp-feature-num {
  color: var(--lp-gold-pale);
}

.lp-feature-icon-wrap {
  margin-bottom: 12px;
}

.lp-feature-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--lp-gold);
  opacity: 0.75;
}

.lp-feature-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: normal;
  color: var(--lp-text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.lp-feature-desc {
  font-size: 0.875rem;
  color: var(--lp-text-mid);
  line-height: 1.7;
}

/* ============================================
   DIFFERENTIATORS — Cream-alt, 2-col highlight
   ============================================ */
.lp-diff-section {
  background: var(--lp-cream);
}

.lp-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--lp-sand);
  border: 1px solid var(--lp-sand);
  border-radius: 4px;
  overflow: hidden;
}

.lp-diff-card {
  background: var(--lp-cream);
  padding: 52px 48px;
}

.lp-diff-icon-wrap {
  margin-bottom: 20px;
}

.lp-diff-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--lp-gold);
  opacity: 0.75;
}

.lp-diff-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: normal;
  color: var(--lp-text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.lp-diff-desc {
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--lp-text-mid);
  margin-bottom: 28px;
}

.lp-diff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.lp-diff-tag {
  font-size: 0.775rem;
  font-weight: 500;
  padding: 5px 12px;
  background: var(--lp-cream-alt);
  color: var(--lp-text-warm);
  border: 1px solid var(--lp-sand);
  border-radius: 20px;
  white-space: nowrap;
}

.lp-diff-lang-note {
  font-size: 0.82rem;
  color: var(--lp-text-muted);
  border-top: 1px solid var(--lp-sand);
  padding-top: 16px;
  margin-top: 8px;
}

.lp-diff-lang-note strong {
  color: var(--lp-text-warm);
  font-weight: 600;
}

.lp-diff-scripts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lp-diff-script-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--lp-cream-alt);
  border: 1px solid var(--lp-sand);
  border-radius: 4px;
}

.lp-diff-script-sample {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  color: var(--lp-text-dark);
  letter-spacing: 0.06em;
}

.lp-diff-script-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-text-muted);
}

/* ============================================
   HOW IT WORKS — Dark wine bg
   ============================================ */
.lp-steps-container {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.lp-steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.5% + 24px);
  right: calc(16.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 151, 62, 0.25), rgba(201, 151, 62, 0.25), transparent);
}

.lp-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-step-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lp-step-num::before,
.lp-step-num::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--lp-gold);
  opacity: 0.35;
}

.lp-walkthrough {
  margin-top: 72px;
}

.lp-walkthrough-video {
  display: block;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--lp-shadow-gold);
}

.lp-step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 62, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(201, 151, 62, 0.05);
}

.lp-step-circle svg {
  width: 22px;
  height: 22px;
  color: var(--lp-gold);
}

.lp-step-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--lp-text-dark);
  margin-bottom: 12px;
}

.lp-step-desc {
  font-size: 0.875rem;
  color: var(--lp-text-mid);
  line-height: 1.7;
}

/* ============================================
   APP PREVIEW
   ============================================ */
.lp-preview-section {
  background: var(--lp-cream-alt);
  padding: 100px 56px;
}

.lp-preview-frame {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--lp-wine-mid);
  border: 1px solid rgba(201, 151, 62, 0.18);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26, 8, 8, 0.25);
}

.lp-preview-chrome {
  background: var(--lp-wine-deep);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(201, 151, 62, 0.12);
}

.lp-chrome-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.lp-chrome-dot:nth-child(1) {
  background: #c0392b;
  opacity: 0.65;
}

.lp-chrome-dot:nth-child(2) {
  background: #e67e22;
  opacity: 0.65;
}

.lp-chrome-dot:nth-child(3) {
  background: #27ae60;
  opacity: 0.65;
}

.lp-chrome-bar {
  flex: 1;
  max-width: 280px;
  margin: 0 auto;
  background: rgba(201, 151, 62, 0.06);
  border: 1px solid rgba(201, 151, 62, 0.1);
  border-radius: 3px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(250, 245, 237, 0.28);
  font-family: 'SF Mono', 'Fira Code', monospace;
  letter-spacing: 0.04em;
}

.lp-preview-body {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
}

.lp-preview-placeholder {
  text-align: center;
}

.lp-preview-crossword {
  display: inline-grid;
  grid-template-columns: repeat(7, 46px);
  grid-template-rows: repeat(7, 46px);
  gap: 3px;
  margin-bottom: 28px;
}

.lp-cell {
  background: rgba(201, 151, 62, 0.06);
  border: 1px solid rgba(201, 151, 62, 0.13);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: normal;
  color: rgba(250, 245, 237, 0.7);
  letter-spacing: 0.05em;
}

.lp-cell.black {
  background: rgba(0, 0, 0, 0.55);
  border-color: transparent;
}

.lp-cell.active {
  background: rgba(201, 151, 62, 0.2);
  border-color: rgba(201, 151, 62, 0.45);
  color: var(--lp-gold-lt);
}

.lp-cell.highlight {
  background: rgba(201, 151, 62, 0.09);
  border-color: rgba(201, 151, 62, 0.22);
}

.lp-preview-placeholder-label {
  font-size: 0.72rem;
  color: rgba(250, 245, 237, 0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: italic;
}

.lp-preview-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Hidden on desktop — shown tablet/mobile via landing.responsive.css */
.lp-hero-shots-strip {
  display: none;
}

/* All panels are tappable — open screenshot modal */
.lp-hero-shots {
  pointer-events: auto;
  cursor: pointer;
}

/* ============================================
   SCREENSHOT MODAL
   ============================================ */
.lp-shot-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lp-shot-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.lp-shot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 6, 6, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lp-shot-modal-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 860px;
  padding: 56px 20px 40px;
}

.lp-shot-modal-img-wrap {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(201, 151, 62, 0.18);
}

.lp-shot-modal-img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.15s ease;
}

.lp-shot-modal-img.is-fading {
  opacity: 0;
}

.lp-shot-modal-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 62, 0.3);
  background: rgba(17, 6, 6, 0.7);
  color: var(--lp-gold-lt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.lp-shot-modal-nav:hover {
  background: rgba(201, 151, 62, 0.12);
  border-color: var(--lp-gold);
}

.lp-shot-modal-close {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 237, 0.15);
  background: rgba(17, 6, 6, 0.6);
  color: rgba(250, 245, 237, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.lp-shot-modal-close:hover {
  background: rgba(201, 151, 62, 0.12);
  color: var(--lp-gold-lt);
  border-color: rgba(201, 151, 62, 0.3);
}

.lp-shot-modal-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(250, 245, 237, 0.35);
  white-space: nowrap;
}

/* ============================================
   PRICING
   ============================================ */
.lp-pricing-section {
  background: var(--lp-cream-alt);
  padding: 100px 56px;
}

.lp-pricing-card {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px;
  border: 1px solid var(--lp-sand);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--lp-shadow-card);
}

.lp-pricing-left {
  padding: 52px;
  background: var(--lp-cream);
  border-right: 1px solid var(--lp-sand);
}

.lp-pricing-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 16px;
  display: block;
}

.lp-pricing-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--lp-text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.lp-pricing-desc {
  font-size: 0.875rem;
  color: var(--lp-text-mid);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 24px;
}

.lp-pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--lp-gold-bg);
  border: 1px solid rgba(201, 151, 62, 0.28);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lp-text-warm);
  letter-spacing: 0.03em;
}

.lp-pricing-badge svg {
  width: 10px;
  height: 10px;
  color: var(--lp-gold);
}

.lp-pricing-right {
  padding: 52px 32px;
  background: var(--lp-wine-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.lp-pricing-from {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 245, 237, 0.35);
}

.lp-pricing-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.2rem;
  font-weight: normal;
  color: var(--lp-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-pricing-each {
  display: inline-block;
  font-size: 0.3em;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.lp-pricing-note {
  font-size: 0.72rem;
  color: rgba(250, 245, 237, 0.3);
  letter-spacing: 0.05em;
}

.lp-btn-pricing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--lp-gold);
  color: var(--lp-wine-deep);
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.lp-btn-pricing:hover {
  background: var(--lp-gold-lt);
  transform: translateY(-1px);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--lp-wine-deep);
  color: var(--lp-gold);
  border: 2px solid var(--lp-gold);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
    background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--lp-burgundy);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.scroll-to-top:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
  background: var(--lp-wine-deep);
  padding: 64px 56px 0;
  border-top: 1px solid rgba(201, 151, 62, 0.1);
}

/* Three-column top section */
.lp-footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  /* DESKTOP: 3-column grid — DO NOT CHANGE */
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201, 151, 62, 0.1);
}

/* Individual columns */
.lp-footer-col {
  display: flex;
  flex-direction: column;
  /* DESKTOP: column layout — DO NOT CHANGE */
  gap: 16px;
}

/* Brand column */
.lp-footer-logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
}

.lp-footer-tagline {
  font-size: 0.82rem;
  color: rgba(250, 245, 237, 0.3);
  line-height: 1.5;
  max-width: 240px;
}

/* Column heading */
.lp-footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 4px;
}

/* Nav links in columns */
.lp-footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* DESKTOP: stacked links — DO NOT CHANGE */
  gap: 12px;
}

.lp-footer-col-links a {
  font-size: 0.82rem;
  color: rgba(250, 245, 237, 0.38);
  text-decoration: none;
  transition: color 0.18s ease;
}

.lp-footer-col-links a:hover {
  color: var(--lp-gold-lt);
}

/* Bottom bar */
.lp-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 24px;
  display: flex;
  /* DESKTOP: horizontal — DO NOT CHANGE */
  align-items: center;
  justify-content: center;
}

.lp-footer-bottom span {
  font-size: 0.72rem;
  color: rgba(250, 245, 237, 0.18);
  letter-spacing: 0.04em;
}

/* ============================================
   GSAP INITIAL STATE
   ============================================ */
.gsap-reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* DESKTOP: stacked list — DO NOT CHANGE */
}

.lp-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px 0;
}

.lp-faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-ink, #1a1a2e);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.lp-faq-answer {
  font-size: 0.925rem;
  color: var(--lp-muted, #6b6b7b);
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
}

/* ============================================
   HERO — SCREENSHOT CAROUSEL PANELS
   ============================================ */

/* Flex items flanking the center text */
.lp-hero-shots {
  position: relative;
  flex: 0 0 400px;
  z-index: 0;
}

/* Right panel placed after center content via CSS order */
.lp-hero-shots--right {
  order: 2;
}

/* Ambient glow behind the panel */
.lp-hero-shots::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 151, 62, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}

/* Decorative back card — gives depth/stack effect */
.lp-shot-back {
  /* position: absolute;
  inset: -3px -4px;
  border-radius: 16px;
  border: 1px solid rgba(201, 151, 62, 0.18);
  background: rgba(31, 12, 12, 0.5); */
}

.lp-hero-shots--left .lp-shot-back {
  transform: rotate(-5deg) translate(-8px, 14px);
}

.lp-hero-shots--right .lp-shot-back {
  transform: rotate(5deg) translate(8px, 14px);
}

/* Main frame — clean, no chrome */
.lp-shot-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 151, 62, 0.14);
}

.lp-hero-shots--left .lp-shot-wrapper {
  transform: rotate(-2deg);
}

.lp-hero-shots--right .lp-shot-wrapper {
  transform: rotate(2deg);
}

/* Screenshot image container — square fits all mixed-ratio screenshots */
.lp-shot-body {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--lp-wine-deep);
}

/* All screenshots stacked; GSAP controls opacity */
.lp-shot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  display: block;
}