:root {
  --ink: #1f2328;
  --parchment: #fafaf8;
  --slate: #4a5d73;
  --gold: #c2a75a;
  --border: rgba(0, 0, 0, 0.06);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --card-bg: #fdfcfa;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 120ms;
  --duration-medium: 200ms;
  --duration-slow: 400ms;
  --transition: 200ms cubic-bezier(0.25, 1, 0.5, 1);
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background-color: var(--parchment);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Typography: Serif headings */
h1, h2, h3, .section-heading, .page-title {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
}

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

a:hover {
  text-decoration: underline;
}

a.button:hover,
a.button:focus-visible,
a.store-badge:hover,
a.store-badge:focus-visible {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(250, 250, 248, 0.85);
  border-bottom: 1px solid var(--border);
  --header-border-opacity: 0;
  --header-shadow-opacity: 0;
  border-bottom-color: rgba(0, 0, 0, calc(0.06 * var(--header-border-opacity)));
  box-shadow: 0 1px 12px rgba(0, 0, 0, calc(0.06 * var(--header-shadow-opacity)));
  transition: box-shadow 200ms ease;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 2px;
  height: 100vh;
  z-index: 20;
  pointer-events: none;
  transform-origin: top center;
  transform: scaleY(0);
  background: var(--gold);
  opacity: 0.55;
  will-change: transform;
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f4f4f1;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

nav {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
  color: var(--slate);
}

nav a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

nav a:hover,
nav a:focus-visible {
  background: rgba(74, 93, 115, 0.08);
  color: var(--ink);
  outline: none;
}

nav a:active {
  background: rgba(74, 93, 115, 0.14);
  transform: scale(0.97);
  transition-duration: 60ms;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 22px 0;
}

/* Scroll-triggered section reveals (only when JS enables them) */
.content-section {
  padding: 48px 0 56px;
  margin: 0 -22px;
  padding-left: 22px;
  padding-right: 22px;
}

.js-reveal .content-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out-quart), transform 600ms var(--ease-out-quart);
}

.js-reveal .content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card/step reveals within sections (scale-up micro-animation) */
.js-reveal .content-section .card,
.js-reveal .content-section .step {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 450ms var(--ease-out-quart), transform 450ms var(--ease-out-quart);
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

.js-reveal .content-section.visible .card,
.js-reveal .content-section.visible .step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered FAQ item reveals */
.js-reveal .content-section .faq-item {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 450ms var(--ease-out-quart), transform 450ms var(--ease-out-quart);
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

.js-reveal .content-section.visible .faq-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .content-section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-reveal .content-section .card,
  .js-reveal .content-section .step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-reveal .content-section .faq-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-reveal .content-section .section-heading {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-reveal .content-section .step-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .scroll-progress {
    display: none;
  }
}

.content-section.alt-bg {
  position: relative;
}

.content-section.alt-bg::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(74, 93, 115, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  pointer-events: none;
  z-index: -1;
}

.content-section .section-heading {
  margin-top: 0;
}


/* Hero warm glow decoration */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(194, 167, 90, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

/* Desktop-only: parallax + perspective for hero tilt effect */
@media (min-width: 901px) {
  .hero-media {
    perspective: 800px;
    will-change: transform;
  }

  .hero-shot {
    will-change: transform;
  }
}

.hero-shot {
  width: min(420px, 100%);
}

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

.trust-blocks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(74, 93, 115, 0.06);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;

  letter-spacing: 0.01em;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--slate);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin: 6px 0 12px;
  border-radius: 10px;
  background: rgba(194, 167, 90, 0.14);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

/* Hero hover: only on hover-capable devices */
@media (hover: hover) {
  .hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  }
}


.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.6;
  max-width: 72ch;
}

.hero-subhead {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 18px;
}


.badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 700;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(194, 167, 90, 0.55);
  box-shadow: 0 12px 26px rgba(31, 35, 40, 0.12);
  outline: none;
}

.button:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition-duration: 60ms;
}

.button.primary {
  background: var(--ink);
  color: var(--parchment);
  border-color: rgba(0, 0, 0, 0.12);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 16px 34px rgba(31, 35, 40, 0.22);
}

.button.secondary {
  background: rgba(74, 93, 115, 0.04);
  border-color: rgba(74, 93, 115, 0.28);
  box-shadow: 0 10px 22px rgba(31, 35, 40, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(74, 93, 115, 0.08);
  border-color: rgba(74, 93, 115, 0.42);
  box-shadow: 0 12px 26px rgba(31, 35, 40, 0.12);
}


.button .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74, 93, 115, 0.1);
  color: var(--slate);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.hero-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--slate);
}

.hero-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(194, 167, 90, 0.18);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(74, 93, 115, 0.04);
}

.step-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--ink);
  background: rgba(194, 167, 90, 0.18);
  border: 1px solid rgba(194, 167, 90, 0.28);
  flex: 0 0 auto;
}

/* Step badge pop-in animation */
@keyframes badge-pop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.js-reveal .content-section .step-badge {
  opacity: 0;
  transform: scale(0);
}

.js-reveal .content-section.visible .step:nth-child(1) .step-badge {
  animation: badge-pop 450ms var(--ease-out-quart) 120ms both;
}

.js-reveal .content-section.visible .step:nth-child(2) .step-badge {
  animation: badge-pop 450ms var(--ease-out-quart) 240ms both;
}

.js-reveal .content-section.visible .step:nth-child(3) .step-badge {
  animation: badge-pop 450ms var(--ease-out-quart) 360ms both;
}

.step-body {
  min-width: 0;
}

.step-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.step-icon {
  width: 16px;
  height: 16px;
  color: var(--slate);
}

.step-desc {
  color: var(--slate);
  line-height: 1.5;
}


.card-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}


.card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  border-color: rgba(74, 93, 115, 0.12);
}

.card:active {
  transform: translateY(0px) scale(0.995);
  transition-duration: 60ms;
}


.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
  max-width: 72ch;
}

.premium-card {
  position: relative;
  border-color: rgba(194, 167, 90, 0.35);
  box-shadow: 0 16px 38px rgba(31, 35, 40, 0.10);
}

.premium-card:hover {
  border-color: rgba(194, 167, 90, 0.5);
  box-shadow: 0 14px 32px rgba(194, 167, 90, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(194, 167, 90, 0.10), rgba(74, 93, 115, 0.06));
  opacity: 0.9;
}

.premium-card > * {
  position: relative;
}

.premium-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.premium-header h3 {
  margin: 0;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(194, 167, 90, 0.16);
  border: 1px solid rgba(194, 167, 90, 0.28);
  color: var(--ink);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-lead {
  margin-top: 12px;
  color: var(--slate);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(74, 93, 115, 0.06);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.01em;
}


.screenshot-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.screenshot-frame {
  position: relative;
  aspect-ratio: 1242 / 2688;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(74, 93, 115, 0.06);
  box-shadow: var(--shadow);
}

.screenshot-frame.hero-shot {
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.14);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel .screenshot-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-rotate 25s infinite;
}

.hero-carousel .screenshot-img:nth-child(1) {
  animation-delay: 0s;
}

.hero-carousel .screenshot-img:nth-child(2) {
  animation-delay: 5s;
}

.hero-carousel .screenshot-img:nth-child(3) {
  animation-delay: 10s;
}

.hero-carousel .screenshot-img:nth-child(4) {
  animation-delay: 15s;
}

.hero-carousel .screenshot-img:nth-child(5) {
  animation-delay: 20s;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 300ms ease;
}

.screenshot-img.fade {
  opacity: 0;
}

@keyframes hero-rotate {
  0% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  24% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel .screenshot-img {
    animation: none;
    opacity: 0;
  }

  .hero-carousel .screenshot-img:first-child {
    opacity: 1;
    position: relative;
  }
}


.screenshot-captions {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 0;
  list-style: none;
}

.screenshot-captions li + li {
  margin-top: 6px;
}

/* Fluid section headings */
.section-heading {
  margin: 0 0 8px;
  font-size: clamp(22px, 2vw + 14px, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Section heading slide-in from left */
.js-reveal .content-section .section-heading {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 550ms var(--ease-out-expo), transform 550ms var(--ease-out-expo);
}

.js-reveal .content-section.visible .section-heading {
  opacity: 1;
  transform: translateX(0);
}


.button-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  width: 180px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74, 93, 115, 0.06);
  border: 1px solid var(--border);
  color: var(--slate);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-badge {
  display: inline-flex;
  align-items: center;
}

.store-badge img {
  height: 56px;
  display: block;
}

.store-badge-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}

.button-stack a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.button-stack a:hover .store-badge-img {
  opacity: 0.8;
}

.reassure-note {
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.micro-note {
  color: var(--slate);
  font-size: 9px;
  letter-spacing: 0.01em;
}

footer {
  border-top: 1px solid var(--border);
  background: rgba(250, 250, 248, 0.9);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px 28px;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--slate);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background-color var(--transition), color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(74, 93, 115, 0.08);
  color: var(--ink);
  outline: none;
  text-decoration: none;
}

.legal-copy {
  font-size: 14px;
}

.footer-credit {
  width: 100%;
  text-align: center;
  padding: 12px 22px 16px;
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-credit:hover {
  opacity: 1;
}

.footer-credit a {
  color: var(--slate);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--gold);
  text-decoration: none;
}

.page-header {
  margin: 10px 0 22px;
}

.page-title {
  margin: 0 0 10px;
  font-size: 30px;
}

.page-lead {
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
  max-width: 72ch;
}

.page-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.page-meta {
  margin-top: 12px;
  color: var(--slate);
  font-size: 14px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  color: var(--slate);
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(194, 167, 90, 0.18);
}

.content-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  line-height: 1.6;
}

.content-card h2,
.content-card h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-card p {
  margin: 10px 0;
  color: var(--ink);
  max-width: 72ch;
}

.content-card ul {
  margin: 10px 0 10px 20px;
  color: var(--slate);
}

.mail-link {
  font-weight: 700;
  color: var(--ink);
}

.badge-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Breadcrumb navigation */
.breadcrumb {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--slate);
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--border);
  font-weight: 400;
}

.breadcrumb a {
  color: var(--slate);
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background-color var(--transition), color var(--transition);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  background: rgba(74, 93, 115, 0.08);
  color: var(--ink);
  text-decoration: none;
}

.breadcrumb [aria-current="page"] {
  font-weight: 700;
  color: var(--ink);
}

/* CTA card (Need help section) */
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-card h3 {
  margin: 0 0 6px;
}

.cta-card p {
  margin: 0;
  color: var(--slate);
}

.cta-card .cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero load orchestration (CSS-only stagger) */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .proof-pill {
  animation: fade-up 600ms var(--ease-out-quart) 100ms both;
}

.hero h1 {
  animation: fade-up 600ms var(--ease-out-quart) 180ms both;
}

.hero .hero-subhead {
  animation: fade-up 600ms var(--ease-out-quart) 260ms both;
}

.hero .badges {
  animation: fade-up 600ms var(--ease-out-quart) 340ms both;
}

.hero .trust-blocks {
  animation: fade-up 500ms var(--ease-out-quart) 420ms both;
}

.hero .hero-list {
  animation: fade-up 500ms var(--ease-out-quart) 480ms both;
}

.hero-media {
  animation: fade-up 700ms var(--ease-out-quart) 300ms both;
}

@media (prefers-reduced-motion: reduce) {
  .hero .proof-pill,
  .hero h1,
  .hero .hero-subhead,
  .hero .badges,
  .hero .trust-blocks,
  .hero .hero-list,
  .hero-media {
    animation: none;
  }
}

/* Gold dot ambient pulse */
@keyframes dot-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(194, 167, 90, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(194, 167, 90, 0.10); }
}

.hero-list .dot,
.checklist .check-dot {
  animation: dot-glow 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-list .dot,
  .checklist .check-dot {
    animation: none;
  }
}

/* FAQ Accordion */
.faq-list {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-top: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--slate);
  transition: transform 300ms var(--ease-out-quart);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--gold);
}

.faq-answer {
  padding: 0 24px 18px;
  color: var(--slate);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 26px;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-shot {
    width: min(420px, 92%);
  }

  .stepper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .navbar {
    padding: 12px 16px;
  }

  .hero {
    padding: 22px;
  }

  .badges {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .button-stack {
    width: 100%;
    gap: 8px;
  }

  .button-stack a.store-link {
    height: auto;
    min-height: 56px;
    justify-content: flex-start;
  }

  .store-link .store-badge-img {
    width: auto;
    max-width: 100%;
    height: clamp(46px, 12.5vw, 56px);
  }

  .button-stack a.button.secondary {
    align-self: flex-start;
    height: clamp(46px, 12.5vw, 56px);
    padding: 0 18px;
  }

  .button-stack .platform-badge {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .page-actions {
    width: 100%;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --parchment: #0f1114;
    --ink: #f5f6f7;
    --slate: #a9b7c7;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    --card-bg: #16191e;
    background-color: var(--parchment);
    color: var(--ink);
  }

  body {
    background: var(--parchment);
    color: var(--ink);
  }

  header {
    background: rgba(15, 17, 20, 0.8);
    border-bottom-color: rgba(255, 255, 255, calc(0.08 * var(--header-border-opacity)));
    box-shadow: 0 1px 12px rgba(0, 0, 0, calc(0.25 * var(--header-shadow-opacity)));
  }

  .hero,
  .card,
  .content-card,
  .button {
    background: var(--card-bg);
    border-color: var(--border);
  }

  .faq-item {
    background: var(--card-bg);
    border-color: var(--border);
  }

  .content-section.alt-bg::before {
    background: rgba(169, 183, 199, 0.05);
  }

  .premium-card::before {
    opacity: 0.35;
  }

  .chip {
    background: rgba(169, 183, 199, 0.10);
    border-color: var(--border);
  }

  .platform-badge {
    background: rgba(169, 183, 199, 0.10);
    border-color: var(--border);
    color: var(--slate);
  }

  .step {
    background: rgba(169, 183, 199, 0.08);
  }

  .button.secondary {
    background: rgba(169, 183, 199, 0.08);
    border-color: rgba(169, 183, 199, 0.35);
  }

  .button.secondary:hover,
  .button.secondary:focus-visible {
    background: rgba(169, 183, 199, 0.14);
    border-color: rgba(169, 183, 199, 0.55);
  }

  .button.primary {
    background: #f5f6f7;
    color: #0f1114;
    border-color: rgba(255, 255, 255, 0.14);
  }

  .trust-blocks li {
    background: rgba(169, 183, 199, 0.12);
    border-color: var(--border);
  }

  nav a:hover,
  nav a:focus-visible {
    background: rgba(169, 183, 199, 0.12);
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    background: rgba(169, 183, 199, 0.12);
    color: var(--ink);
  }

  .shot-placeholder {
    background: linear-gradient(135deg, rgba(74, 93, 115, 0.22), rgba(194, 167, 90, 0.2));
    border-color: rgba(169, 183, 199, 0.5);
  }

  footer {
    background: rgba(15, 17, 20, 0.9);
  }

  .footer-credit a:hover,
  .footer-credit a:focus-visible {
    color: var(--gold);
  }
}
