/* ============================================
   Capture Launch — additions on top of styles.css
   ============================================ */

/* ============= Keycap intro positioning override =============
   Original styles.css uses position: fixed (viewport-relative). On the launch
   page the hero has more chrome below it (chevron + nav), so viewport center
   no longer matches the window-area center. Re-anchor the keycaps to the
   window-area itself so the intro animation lands exactly where the capture
   window will materialize. */
.keycaps-intro {
  position: absolute;
}

/* Launch hero: more breathing room around the capture window than the
   shared styles.css default (27px/32px). The launch page treats the window
   as the visual centerpiece, so it gets generous clearance above and below. */
.window-area {
  padding: 56px 0 56px;
}
@media (max-width: 640px) {
  .window-area { padding: 32px 16px 36px; }
}

/* ============= Floating capsule nav ============= */
.nav-capsule {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid #e8e2d4;
  border-radius: 100px;
  padding: 6px 8px 6px 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateX(-50%) translateY(-12px);
  transition: opacity 0.35s ease, transform 0.4s ease, background 0.6s ease, border-color 0.6s ease;
  pointer-events: none;
}
.nav-capsule.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
body.dark .nav-capsule {
  background: rgba(20, 20, 22, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3), 0 12px 32px rgba(0,0,0,0.4);
}
.nav-capsule .brand-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  margin-right: 14px;
}
.nav-capsule .links {
  display: flex; gap: 4px;
}
.nav-capsule .links a {
  color: #4a4a48;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}
.nav-capsule .links a:hover { background: rgba(0,0,0,0.04); color: #000; }
body.dark .nav-capsule .links a { color: #aaa; }
body.dark .nav-capsule .links a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-capsule .buy {
  background: #f97316;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  margin-left: 6px;
  box-shadow: 0 1px 4px rgba(249,115,22,0.3);
  transition: box-shadow 0.2s, transform 0.1s;
}
.nav-capsule .buy:hover { box-shadow: 0 2px 12px rgba(249,115,22,0.45); }
.nav-capsule .buy:active { transform: translateY(1px); }

/* ============= Hero CTA replacement ============= */
.hero-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.hero-cta-primary {
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.hero-cta-primary:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.hero-cta-primary:active { transform: translateY(1px); }
body.dark .hero-cta-primary { background: #f0ede8; color: #000; box-shadow: 0 4px 14px rgba(0,0,0,0.5); }
.hero-cta-secondary {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #f97316;
  text-decoration-thickness: 2px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
body.dark .hero-cta-secondary { color: #f0ede8; }
.hero-version-note {
  font-size: 12px;
  color: #8a8478;
  margin-top: 14px;
}
body.dark .hero-version-note { color: #9a948a; }

/* Scroll chevron — anchor element. Without an explicit color it picks up
   the browser's visited-link purple, which clashes with the warm palette.
   Force a neutral that matches the muted text color in both modes. */
.scroll-chevron {
  display: block;
  margin: 36px auto 0;
  width: 28px;
  height: 28px;
  color: #9f9b93;
  opacity: 0.5;
  animation: chevron-bob 1.8s ease-in-out infinite;
}
.scroll-chevron:visited { color: #9f9b93; }
body.dark .scroll-chevron,
body.dark .scroll-chevron:visited { color: #666; }
.scroll-chevron svg { width: 100%; height: 100%; display: block; }
@keyframes chevron-bob {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.7; }
}

/* ============= Section base ============= */
.section {
  padding: 96px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
}
.section-headline {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
}
body.dark .section-headline { color: #f0ede8; }
.section-subhead {
  font-size: 18px;
  line-height: 1.55;
  color: #6f6b62;
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
body.dark .section-subhead { color: #888; }

@media (max-width: 640px) {
  .section { padding: 64px 22px; }
  .section-headline { font-size: 28px; letter-spacing: -0.6px; }
  .section-subhead { font-size: 16px; margin-bottom: 40px; }
}

/* ============= Pain points (2x2) ============= */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 720px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: #fffdf8;
  border: 1px solid #e8e2d4;
  border-radius: 18px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.6s ease, border-color 0.6s ease;
}
body.dark .pain-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.pain-icon {
  font-size: 26px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 12px;
}
.pain-quote {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #1a1a18;
  letter-spacing: -0.3px;
}
body.dark .pain-quote { color: #ddd; }
.pain-resolution {
  font-size: 14.5px;
  line-height: 1.55;
  color: #6f6b62;
}
body.dark .pain-resolution { color: #888; }
.pain-resolution strong {
  color: #f97316;
  font-weight: 600;
}

/* ============= Feature pillars (alternating rows) ============= */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.flip .feature-copy { order: 2; }
.feature-row.flip .feature-visual { order: 1; }

.feature-copy h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
body.dark .feature-copy h3 { color: #f0ede8; }
.feature-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: #6f6b62;
  margin-bottom: 16px;
}
body.dark .feature-copy p { color: #999; }
.feature-shortcuts {
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  font-size: 13px;
  color: #6f6b62;
}
body.dark .feature-shortcuts { color: #888; }

.feature-visual {
  background: #fffdf8;
  border: 1px solid #e8e2d4;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: #8a8478;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.04);
}
body.dark .feature-visual {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: #9a948a;
}

@media (max-width: 720px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .feature-row.flip .feature-copy { order: 1; }
  .feature-row.flip .feature-visual { order: 2; }
  .feature-copy h3 { font-size: 26px; }
}

/* ============= macOS Native foil seal + credentials (free-standing) ============= */
.credentials-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  max-width: 480px;
  margin: 64px auto 0;
  padding: 8px 0;
}
@media (max-width: 560px) {
  .credentials-block { flex-direction: column; gap: 28px; }
}

/* ---- Foil seal (debossed/embossed-into-foil look) ---- */
.foil-seal {
  width: 128px; height: 128px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 38%),
    radial-gradient(circle at 70% 78%, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0) 50%),
    conic-gradient(from 200deg at 50% 50%,
      #b6b6b6 0deg, #ededed 45deg, #ffffff 90deg, #c8c8c8 145deg,
      #f0f0f0 200deg, #b0b0b0 250deg, #e8e8e8 300deg, #d4d4d4 350deg, #b6b6b6 360deg);
  box-shadow:
    inset 0 -3px 8px rgba(0,0,0,0.18),
    inset 0 3px 8px rgba(255,255,255,0.65),
    0 1px 0 rgba(255,255,255,0.6),
    0 4px 12px rgba(0,0,0,0.18),
    0 14px 30px rgba(0,0,0,0.12);
}
.foil-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(255,255,255,0.4),
    inset 0 1px 1px rgba(0,0,0,0.18);
  pointer-events: none;
}
.foil-seal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: foil-shimmer 5s ease-in-out infinite;
}
@keyframes foil-shimmer {
  0%, 100% { transform: translateX(-25%); opacity: 0.4; }
  50%      { transform: translateX(25%);  opacity: 0.85; }
}
.foil-seal .apple-svg {
  width: 34px; height: 34px;
  margin-bottom: 6px;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,0.7))
    drop-shadow(0 -0.5px 0 rgba(0,0,0,0.4));
}
.foil-seal .apple-svg path { fill: rgba(40,40,40,0.55); }
.foil-seal .seal-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.1;
  color: rgba(40,40,40,0.55);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.7),
    0 -0.5px 0 rgba(0,0,0,0.35);
}

/* ---- Bullet credentials list ---- */
.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credential-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #1a1a18;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 1.3;
}
body.dark .credential-list li { color: #ddd; }
.credential-list li .icon {
  font-size: 16px;
  width: 22px;
  display: inline-flex;
  justify-content: center;
  flex-shrink: 0;
}

/* ============= Indie block (full-width, free-standing) ============= */
.indie-block {
  background: #fffdf8;
  border: 1px solid #e8e2d4;
  border-radius: 22px;
  padding: 36px 40px;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: background 0.6s ease, border-color 0.6s ease;
}
body.dark .indie-block {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
@media (max-width: 560px) {
  .indie-block { padding: 28px 26px; flex-direction: column; gap: 18px; }
}
.indie-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #fbbd41);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 26px;
  flex-shrink: 0;
  overflow: hidden;
}
/* Photo variant: drops the gradient and lets the headshot fill the round
   mask. Used by the indie-block when a real avatar image is supplied. */
.indie-avatar--photo {
  background: #ece6d8;
  border: 1px solid rgba(0,0,0,0.06);
}
body.dark .indie-avatar--photo {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.indie-avatar--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.indie-bio h4 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
  margin-bottom: 8px; color: #1a1a18;
}
body.dark .indie-bio h4 { color: #f0ede8; }
.indie-bio p {
  font-size: 15.5px; line-height: 1.6; color: #4a4a48;
}
body.dark .indie-bio p { color: #aaa; }
.indie-bio p a {
  color: #f97316;
  text-decoration: none;
  border-bottom: 1px solid rgba(249,115,22,0.35);
  transition: border-color 0.2s;
}
.indie-bio p a:hover { border-bottom-color: #f97316; }

/* ============= Testimonials (auto-rotating trio) ============= */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  min-height: 200px;
}
@media (max-width: 900px) { .testimonial-row { grid-template-columns: 1fr; } }

.testimonial {
  background: #fffdf8;
  border: 1px solid #e8e2d4;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(8px);
}
.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}
body.dark .testimonial {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a18;
  font-weight: 500;
  letter-spacing: -0.2px;
}
body.dark .testimonial-quote { color: #ddd; }
.testimonial-author {
  font-size: 13px;
  color: #5a564e;
  display: flex; align-items: center; gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbd41, #f97316);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
/* Photo variant: replaces the gradient background with the actual avatar
   image. The wrapping div keeps the round mask + flex-shrink behaviour
   identical to the initial-letter variant. */
.testimonial-avatar--photo {
  background: #ece6d8;
  border: 1px solid rgba(0,0,0,0.06);
}
body.dark .testimonial-avatar--photo {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.testimonial-avatar--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-name { font-weight: 600; color: #1a1a18; }
body.dark .testimonial-name { color: #ccc; }
.testimonial-role {
  color: #f97316;
  text-decoration: none;
  border-bottom: 1px solid rgba(249,115,22,0.35);
  transition: border-color 0.2s;
}
.testimonial-role:hover { border-bottom-color: #f97316; }

.testimonial-dots {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
/* Real <button>s now (a11y). Strip default button chrome and give them an
   invisible 24×24 hit area via padding so they're easy to tap on mobile —
   the visible 6×6 dot stays the same size as before. */
.testimonial-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 9px;
  background-clip: content-box;
  box-sizing: content-box;
}
.testimonial-dot.active { background: #f97316; background-clip: content-box; }
body.dark .testimonial-dot { background: rgba(255,255,255,0.15); background-clip: content-box; }

/* ============= Final CTA ============= */
.final-cta {
  text-align: center;
  padding: 120px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.4px;
  line-height: 1.1;
  margin-bottom: 18px;
}
body.dark .final-cta h2 { color: #f0ede8; }
.final-cta p {
  font-size: 18px;
  color: #6f6b62;
  margin-bottom: 36px;
}
body.dark .final-cta p { color: #888; }
.final-cta-buttons {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.final-cta-buy {
  background: #f97316;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(249,115,22,0.4);
  transition: box-shadow 0.2s, transform 0.1s;
}
.final-cta-buy:hover { box-shadow: 0 6px 24px rgba(249,115,22,0.55); }
.final-cta-buy:active { transform: translateY(1px); }
.final-cta-trial {
  color: #4a4a48;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #b8b2a6;
}
body.dark .final-cta-trial { color: #aaa; text-decoration-color: #555; }

@media (max-width: 640px) {
  .final-cta h2 { font-size: 30px; letter-spacing: -0.8px; }
  .final-cta-buttons { flex-direction: column; gap: 12px; }
}

/* ============================================
   Feature visuals — starter mockups
   Three illustrations, one per feature row. Each
   sits inside the existing 4:3 .feature-visual
   card. These are intentionally quiet (per the
   "one breathing thing per screen" rule — the hero
   already breathes); a single light motion cue per
   card on intersection is enough.
   ============================================ */

/* Shared keycap used inside feature-visual cards. Smaller than the hero
   keycap (which is 56px at the top of the page) so the chord reads as
   illustrative inside a 4:3 card without competing with the hero. */
.fv-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a18;
  background: linear-gradient(180deg, #fdfcf8 0%, #ece6d8 100%);
  border: 1px solid #c8c2b6;
  border-bottom-width: 2px;
  border-radius: 7px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.85);
}
.fv-key--wide { padding: 0 14px; }
.fv-key-plus {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #b8b2a6;
  margin: 0 4px;
}
body.dark .fv-key {
  color: #d8d3c9;
  background: linear-gradient(180deg, #2c2a26 0%, #201e1b 100%);
  border-color: rgba(255,255,255,0.10);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
body.dark .fv-key-plus { color: #6a6760; }

/* ---- 1) Quick Capture ---- */
.fv-capture {
  padding: 22px;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  text-align: left;
}
.fv-capture-context {
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0.55;
}
.fv-context-bar {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #e6e0d2 0%, #efeadd 100%);
}
body.dark .fv-context-bar {
  background: linear-gradient(90deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 100%);
}

.fv-capture-window {
  background: rgba(255,253,248,0.96);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 12px 14px;
  margin: -22px -4px 0;
  position: relative;
  z-index: 2;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.06),
    0 2px 6px rgba(0,0,0,0.04);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.dark .fv-capture-window {
  background: rgba(28,28,30,0.96);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

.fv-cw-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #6a6760;
}
body.dark .fv-cw-head { color: #9a948a; }
.fv-cw-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.fv-cw-dot--red    { background: #ff6258; }
.fv-cw-dot--yellow { background: #febc2e; }
.fv-cw-dot--green  { background: #29c641; }
.fv-cw-title { margin-left: 6px; letter-spacing: 0.2px; }

.fv-cw-body {
  font-size: 14px;
  line-height: 1.45;
  color: #1a1a18;
  font-weight: 500;
  min-height: 38px;
}
body.dark .fv-cw-body { color: #f0ede8; }
.fv-cw-cursor {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: #f97316;
  margin-left: 2px;
  vertical-align: -2px;
  animation: fv-blink 1.05s steps(2, end) infinite;
}
@keyframes fv-blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fv-cw-cursor { animation: none; opacity: 1; }
}

.fv-cw-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.fv-cw-pill {
  font-size: 11px;
  font-weight: 500;
  color: #6a6760;
  padding: 3px 9px;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
}
body.dark .fv-cw-pill { color: #b8b2a6; background: rgba(255,255,255,0.06); }
.fv-cw-cta {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 4px 11px;
  background: #f97316;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(249,115,22,0.35);
}

.fv-capture-keys {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4px;
}

/* ---- 2) Quick Append ---- */
.fv-append {
  padding: 22px 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  text-align: left;
}
.fv-note {
  background: #fffefa;
  border: 1px solid #ece6d8;
  border-radius: 10px;
  padding: 14px 16px 12px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.02),
    0 8px 24px rgba(0,0,0,0.04);
}
body.dark .fv-note {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.fv-note-head {
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #ece6d8;
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, monospace;
  font-size: 12px;
  color: #6a6760;
}
body.dark .fv-note-head {
  border-bottom-color: rgba(255,255,255,0.08);
  color: #9a948a;
}
.fv-note-glyph { font-size: 13px; }
.fv-note-title { letter-spacing: -0.1px; }

.fv-note-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 7px;
}
.fv-note-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #2a2a26;
}
body.dark .fv-note-list li { color: #d8d3c9; }
.fv-note-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #c8c2b6;
}
body.dark .fv-note-list li::before { background: #555; }

.fv-note-new {
  position: relative;
  animation: fv-slide-in 1.4s ease-out 0.4s both;
}
.fv-note-new::after {
  content: "";
  position: absolute;
  left: 14px; right: 0; bottom: -3px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(249,115,22,0.55), rgba(249,115,22,0));
  border-radius: 2px;
  transform-origin: left center;
  animation: fv-underline 2.2s ease-out 0.4s both;
}
@keyframes fv-slide-in {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fv-underline {
  0%   { transform: scaleX(0); opacity: 0.9; }
  60%  { transform: scaleX(1); opacity: 0.9; }
  100% { transform: scaleX(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fv-note-new,
  .fv-note-new::after { animation: none; opacity: 1; transform: none; }
  .fv-note-new::after { display: none; }
}

.fv-note-stamp {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 500;
  color: #f97316;
  letter-spacing: 0.1px;
}

/* ---- 3) Keyboard-First ---- */
.fv-keys {
  padding: 22px 28px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  align-items: center;
}
.fv-keys-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
}
.fv-keys-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fv-keys-chord {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 76px;
}
.fv-keys-label {
  font-size: 13px;
  color: #4a4a48;
  letter-spacing: -0.1px;
}
body.dark .fv-keys-label { color: #b8b2a6; }

@media (max-width: 720px) {
  .fv-capture-window { margin: 12px 0 0; }
  .fv-keys-list { max-width: 100%; }
}

/* ============================================================================
   v6 ADDITIONS — conversion polish
   Headline eyebrow, trust-row chips, hero stats trio, credentials section
   spacing, demo video card + lightbox, static testimonial grid, inline FAQ
   ============================================================================ */

/* ---- Headline eyebrow (small framed line above H1) ---- */
.headline-eyebrow {
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f97316;
  font-weight: 600;
  margin: 0 auto 18px;
  text-align: center;
}
body.dark .headline-eyebrow { color: #fbbd41; }

@media (max-width: 640px) {
  .headline-eyebrow { font-size: 11px; letter-spacing: 1.4px; margin-bottom: 12px; }
}

/* ---- H1 width cap so the headline doesn't sprawl on wide screens ---- */
.headline {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Decision zone (single primary CTA, subtle trust line, secondary link) ----
   Replaces the old .hero-cta-row + chip-grid + stats-trio stack. The hero now
   asks for ONE decision: download. Buy is a quiet escape hatch underneath. */
.email-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

/* ---- Hero social-proof primer ----
   Tiny credibility token directly above the CTA. Avatars overlap left-to-
   right, then a one-line caption that names the people in the testimonials
   below. The whole row reads as a single quiet line of text — no decoration
   or background — so it never competes with the download button beneath. */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #6f6b62;
  letter-spacing: -0.1px;
  line-height: 1.3;
}
body.dark .hero-social-proof { color: #9a948a; }
.hsp-avatars {
  display: inline-flex;
  flex-shrink: 0;
}
.hsp-avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #faf9f7;
  background: #ece6d8;
  object-fit: cover;
  margin-left: -8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.hsp-avatars img:first-child { margin-left: 0; }
body.dark .hsp-avatars img {
  border-color: #0a0a0a;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
@media (max-width: 560px) {
  .hero-social-proof { font-size: 12.5px; gap: 8px; }
  .hsp-avatars img { width: 24px; height: 24px; }
  .hsp-text { max-width: 200px; }
}
.hero-cta-primary--solo {
  font-size: 17px;
  padding: 16px 30px;
  border-radius: 14px;
  letter-spacing: -0.1px;
  /* Lift the primary CTA so it reads as the ONE thing to do on this screen. */
  box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.hero-cta-primary--solo:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.24), 0 1px 0 rgba(255,255,255,0.04) inset;
  transform: translateY(-1px);
}
.hero-cta-primary--solo svg {
  width: 18px; height: 18px;
}

.hero-trust-line {
  font-size: 13.5px;
  font-weight: 500;
  color: #6f6b62;
  letter-spacing: -0.1px;
  margin: 0;
  max-width: 520px;
  line-height: 1.5;
}
body.dark .hero-trust-line { color: #9a948a; }
.hero-trust-line .trust-dot {
  display: inline-block;
  margin: 0 6px;
  color: #c8c2b6;
  font-weight: 400;
}
body.dark .hero-trust-line .trust-dot { color: #5a564e; }

.hero-cta-buynow {
  font-size: 13px;
  font-weight: 500;
  color: #8a8478;
  text-decoration: none;
  letter-spacing: -0.1px;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.hero-cta-buynow:hover {
  color: #f97316;
  border-bottom-color: rgba(249,115,22,0.4);
}
body.dark .hero-cta-buynow { color: #9a948a; }
body.dark .hero-cta-buynow:hover { color: #fbbd41; border-bottom-color: rgba(251,189,65,0.4); }

@media (max-width: 560px) {
  .hero-cta-primary--solo { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust-line { font-size: 12.5px; }
  .hero-trust-line .trust-dot { margin: 0 4px; }
}

/* ---- Desktop / mobile CTA swap ----
   Phones can't run a .dmg, so on small viewports we hide the desktop
   download button and the social-proof primer (avatars take up vertical
   space that's at a premium on a phone), and surface a mailto: button
   that opens a pre-filled draft the visitor can send to themselves. */
.hero-cta-mobile-only { display: none; }
@media (max-width: 720px) {
  .hero-cta-desktop-only { display: none; }
  .hero-cta-mobile-only { display: inline-flex; }
  .hero-social-proof { display: none; }
}

/* ---- Trust band (credentials-block + stats trio, one zone under hero) ----
   Single proof zone between hero and pain points: macOS-Native foil seal +
   credentials checklist on top, big-number stats trio with hairline dividers
   underneath. Tighter than a normal content section so it reads as a trust
   bar, not a destination. */
.section-trust-band {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.section-trust-band .credentials-block {
  margin: 0 auto;
}

.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 640px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: border-color 0.6s ease;
}
body.dark .trust-stats { border-top-color: rgba(255,255,255,0.08); }

.trust-stats > div:not(.trust-stats-divider) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}
.trust-stats strong {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #1a1a18;
  line-height: 1.05;
}
body.dark .trust-stats strong { color: #f0ede8; }
.trust-stats span {
  font-size: 12.5px;
  color: #8a8478;
  letter-spacing: 0.05px;
  line-height: 1.35;
}
body.dark .trust-stats span { color: #9a948a; }
.trust-stats-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: background 0.6s ease;
}
body.dark .trust-stats-divider { background: rgba(255,255,255,0.10); }

@media (max-width: 640px) {
  .section-trust-band { padding-top: 28px; padding-bottom: 28px; gap: 28px; }
  .trust-stats { gap: 18px; padding-top: 22px; }
  .trust-stats strong { font-size: 22px; }
  .trust-stats span { font-size: 11.5px; }
  .trust-stats-divider { height: 28px; }
}
@media (max-width: 480px) {
  .trust-stats { flex-wrap: wrap; gap: 18px 10px; }
  .trust-stats-divider { display: none; }
  .trust-stats > div:not(.trust-stats-divider) { flex: 1 1 30%; min-width: 80px; }
}

/* ---- Demo video section ---- */
.section-video .video-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .section-video .video-layout { grid-template-columns: 1fr; gap: 36px; }
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid #e8e2d4;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf8 0%, #f6efdf 100%);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 24px 60px rgba(0,0,0,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.6s ease, background 0.6s ease;
  font: inherit;
  color: inherit;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06), 0 32px 70px rgba(0,0,0,0.10);
}
.video-card:active { transform: translateY(0); }
body.dark .video-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 24px 60px rgba(0,0,0,0.5);
}

.video-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.video-browser {
  position: absolute;
  inset: 16px;
  border-radius: 14px;
  background: #ece6d8;
  border: 1px solid #d8d2c4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
body.dark .video-browser {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.video-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: rgba(0,0,0,0.025);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
body.dark .video-browser-bar {
  background: rgba(255,255,255,0.03);
  border-bottom-color: rgba(255,255,255,0.06);
}
.video-browser-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.video-browser-bar span:nth-child(1) { background: #ff6258; }
.video-browser-bar span:nth-child(2) { background: #febc2e; }
.video-browser-bar span:nth-child(3) { background: #29c641; }
.video-browser-body {
  flex: 1;
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.06), transparent 35%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 16px);
}
body.dark .video-browser-body {
  background:
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.10), transparent 35%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 16px);
}

.video-floating-window {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(78%, 320px);
  background: rgba(255,253,248,0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 14px 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.04);
  text-align: left;
}
body.dark .video-floating-window {
  background: rgba(28,28,30,0.96);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55);
}
.video-floating-top {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #6a6760; font-weight: 600;
  margin-bottom: 6px;
}
body.dark .video-floating-top { color: #b8b2a6; }
.video-floating-top img { border-radius: 5px; }
.video-floating-window p {
  font-size: 13px;
  line-height: 1.4;
  color: #1a1a18;
  font-weight: 500;
  margin: 0 0 8px;
}
body.dark .video-floating-window p { color: #f0ede8; }
.video-floating-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #6a6760;
}
body.dark .video-floating-foot { color: #b8b2a6; }
.video-floating-cta {
  background: #f97316;
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
}

.video-play {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 9px;
  background: rgba(26,26,24,0.92);
  color: #fff;
  border-radius: 999px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}
.video-play-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f97316;
  flex-shrink: 0;
  /* Position-anchor for the ::before pseudo-element triangle */
  position: relative;
  /* Subtle inner highlight + drop shadow so the orange pops on the dark pill */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 1px 3px rgba(0,0,0,0.25);
}
/* CSS-only right-pointing triangle: bulletproof, no SVG sizing surprises.
   border-width: top right bottom left
   border-color: top right bottom left
   A 5/0/5/9 border with transparent t/r/b and white left = right-pointing
   triangle, 10px tall × 9px wide. Visible but not YouTube-aggressive.
   The translate uses -42% on x to optically center: a right-pointing triangle's
   visual center sits left of its bounding-box center because the apex is one
   point while the base is a solid edge. */
.video-play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-42%, -50%);
}
.video-play strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.1px;
}
.video-play span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.25;
  margin-top: 1px;
}

@media (max-width: 560px) {
  .video-poster { aspect-ratio: 4 / 3; }
  .video-browser { inset: 12px; }
  .video-play {
    bottom: 14px; left: 14px;
    padding: 8px 14px 8px 10px;
  }
  .video-play strong { font-size: 12.5px; }
  .video-play span { font-size: 11px; }
}

.video-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.video-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a18;
  font-weight: 500;
  letter-spacing: -0.15px;
}
body.dark .video-bullets li { color: #ddd; }
.video-bullet-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,0.10);
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
body.dark .video-bullet-num {
  background: rgba(249,115,22,0.18);
}
.video-fineprint {
  font-size: 12.5px;
  color: #8a8478;
  margin: 0;
}
body.dark .video-fineprint { color: #9a948a; }

/* ---- Demo video lightbox ---- */
body.video-lightbox-open { overflow: hidden; }
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-lightbox[hidden] { display: none; }
.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,18,14,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #1a1a18;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.video-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  background: rgba(255,255,255,0.04);
  color: #f0ede8;
  font-size: 13px;
}
.video-lightbox-close {
  background: rgba(255,255,255,0.10);
  color: #f0ede8;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.video-lightbox-close:hover { background: rgba(255,255,255,0.20); }
.video-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Static testimonial grid (replaces auto-rotator) ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
/* Static cards have no fade-in choreography, so we override the fade
   transitions inherited from .testimonial in styles.css. */
.testimonial-grid .testimonial {
  opacity: 1;
  transform: none;
}

/* ---- Inline FAQ section ---- */
.section-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .section-faq .faq-grid { grid-template-columns: 1fr; }
}
.faq-item {
  background: #fffdf8;
  border: 1px solid #e8e2d4;
  border-radius: 16px;
  padding: 22px 24px;
  transition: background 0.6s ease, border-color 0.6s ease;
}
body.dark .faq-item {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.faq-item h3 {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #1a1a18;
  margin: 0 0 8px;
  line-height: 1.35;
}
body.dark .faq-item h3 { color: #f0ede8; }
.faq-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #6f6b62;
  margin: 0;
}
body.dark .faq-item p { color: #aaa; }

.faq-more {
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: #8a8478;
}
body.dark .faq-more { color: #9a948a; }
.faq-more a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(249,115,22,0.4);
  padding-bottom: 1px;
}
.faq-more a:hover { border-bottom-color: #f97316; }
