/* ─── Desktop Landing — Hero ──────────────────────────────────────────── */

.desktop-hero {
  padding: 140px 0 60px;
}

.desktop-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.desktop-hero-text .section-eyebrow {
  margin-bottom: 14px;
}

.desktop-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 22px;
  line-height: 1.12;
}

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

.desktop-hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.7;
}

.desktop-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.desktop-hero-microcopy {
  font-size: 13px;
  color: var(--dimmer);
  letter-spacing: 0.01em;
}

.desktop-hero-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark-2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.desktop-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Trust Strip ─────────────────────────────────────────────────────── */

.desktop-trust-strip {
  padding: 22px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.desktop-trust-text {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.desktop-trust-text strong {
  color: var(--warm-white);
  font-weight: 600;
  margin: 0 2px;
}

.desktop-trust-divider {
  margin: 0 8px;
  color: var(--dimmer);
}

/* ─── Privacy Section ─────────────────────────────────────────────────── */

.desktop-privacy-section {
  padding: 96px 0;
  scroll-margin-top: 80px;
}

.desktop-privacy-sub {
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: -28px auto 48px;
  line-height: 1.7;
}

.desktop-privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.desktop-privacy-card {
  background: var(--dark-2);
  padding: 36px 30px;
  transition: background 0.2s;
}

.desktop-privacy-card:hover {
  background: rgba(245, 240, 232, 0.03);
}

.desktop-privacy-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184, 125, 58, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.desktop-privacy-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--warm-white);
  margin: 0 0 10px;
  line-height: 1.3;
}

.desktop-privacy-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── How it works (uses .feature-how-* base classes; extras only) ────── */

.desktop-how-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--warm-white);
  margin: 0 0 8px;
}

/* ─── Comparison Table ────────────────────────────────────────────────── */

.desktop-compare-section {
  padding: 80px 0;
}

.desktop-compare-table {
  margin-top: 40px;
}

.desktop-compare-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--dimmer);
  margin: 24px auto 0;
  max-width: 700px;
  line-height: 1.6;
}

/* ─── Bridge / Optional cloud companion ──────────────────────────────── */

.desktop-bridge-section {
  padding: 64px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.desktop-bridge-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.desktop-bridge-inner .section-eyebrow {
  color: var(--muted);
}

.desktop-bridge-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--warm-white);
  margin: 12px 0 16px;
  line-height: 1.3;
}

.desktop-bridge-heading em {
  color: var(--muted);
  font-style: italic;
}

.desktop-bridge-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.desktop-bridge-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-white);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.desktop-bridge-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── Pricing Strip ───────────────────────────────────────────────────── */

.desktop-pricing-strip {
  padding: 40px 0;
}

.desktop-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.desktop-pricing-card {
  background: var(--dark-2);
  padding: 28px 28px;
}

.desktop-pricing-card-paid {
  background: rgba(184, 125, 58, 0.05);
}

.desktop-pricing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.desktop-pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.desktop-pricing-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── System Requirements ─────────────────────────────────────────────── */

.desktop-reqs-section {
  padding: 80px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.desktop-reqs-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.desktop-reqs-list li {
  background: var(--dark-1);
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 24px;
}

.desktop-reqs-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.desktop-reqs-value {
  font-size: 15px;
  color: var(--warm-white);
}

/* ─── FAQ ─────────────────────────────────────────────────────────────── */

.desktop-faq-section {
  padding: 80px 0;
}

.desktop-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.desktop-faq-item {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}

.desktop-faq-item[open] {
  border-color: rgba(184, 125, 58, 0.3);
}

.desktop-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--warm-white);
  position: relative;
  padding-right: 50px;
  user-select: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.desktop-faq-item summary::-webkit-details-marker {
  display: none;
}

.desktop-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.2s;
}

.desktop-faq-item[open] summary::after {
  content: '−';
}

.desktop-faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 980px) {
  .desktop-hero {
    padding: 110px 20px 40px;
  }

  .desktop-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .desktop-hero-text {
    text-align: center;
  }

  .desktop-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .desktop-hero-ctas {
    justify-content: center;
  }

  .desktop-privacy-grid {
    grid-template-columns: 1fr;
  }

  .desktop-pricing-grid {
    grid-template-columns: 1fr;
  }

  .desktop-reqs-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .desktop-headline {
    font-size: 30px;
  }

  .desktop-hero-sub {
    font-size: 15px;
  }

  .desktop-trust-text {
    font-size: 12px;
    line-height: 1.8;
  }

  .desktop-trust-divider {
    display: none;
  }

  .desktop-privacy-section,
  .desktop-compare-section,
  .desktop-reqs-section,
  .desktop-faq-section {
    padding: 60px 0;
  }

  .desktop-faq-item summary {
    font-size: 15px;
  }
}
