/*
 * LUMO 22 — Product pages (dayos.com visual language).
 * Generous whitespace, smart transitions, clear hierarchy. No parallax or layout jumping.
 * Depends on landing.css for --lum-* and nav/footer.
 */

/* ——— Product hero — single headline + supportive subtext ——— */
.product-hero {
  padding: 8rem 1.5rem 5rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
}

.product-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--lum-text);
  margin: 0 0 var(--space-md);
  max-width: 720px;
}

.product-hero-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--lum-text-muted);
  max-width: 560px;
  margin: 0;
}

/* ——— Product sections — full-width background, content constrained ——— */
.product-section {
  padding: 7.5rem var(--space-xl);
  border-top: 1px solid transparent;
  width: 100%;
}

.product-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Alternating backgrounds: soft off-white / near-black (full page width) */
.product-section--light {
  background: #f6f6f4;
  border-top-color: rgba(0, 0, 0, 0.06);
}

/* Dark text on light background */
.product-section--light .product-section-title,
.product-section--light .product-section-desc,
.product-section--light .product-section-label,
.product-section--light .product-section-subtitle,
.product-section--light .product-faq-q,
.product-section--light .product-bullet-list li,
.product-section--light .product-testimonial p { color: #000000; }

.product-section--light .product-section-desc,
.product-section--light .product-faq-a,
.product-section--light .product-smart-note,
.product-section--light .product-trust-note,
.product-section--light .lumo-offer-step p { color: #444; }

.product-section--light .product-section-subtitle { color: #333; }

.product-section--light .lumo-offer-step h3 { color: #000000; }

.product-section--light .product-testimonial cite { color: #555; }

.product-section--light .product-section-label,
.product-section--light .product-bullet-list li::before,
.product-section--light .lumo-offer-step-num { color: #8b6914; }

.product-section--light a:not(.lumo-btn-primary):not(.lumo-btn-secondary) { color: #b8860b; }

.product-section--light a:not(.lumo-btn-primary):not(.lumo-btn-secondary):hover { color: #8b6914; }

.product-section--dark {
  background: #000000;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.product-section--dark .product-section-title,
.product-section--dark .product-section-desc,
.product-section--dark .product-section-label,
.product-section--dark .product-solution-summary,
.product-section--dark .product-modes-list,
.product-section--dark .product-smart-note,
.product-section--dark .product-faq-q { color: var(--lum-text); }

.product-section--dark .product-section-desc,
.product-section--dark .product-faq-a,
.product-section--dark .product-trust-note { color: var(--lum-text-muted); }

.product-section--dark .product-section-label { color: var(--lum-gold); }

.product-section-title {
  font-family: var(--font-h2);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--lum-text);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--lum-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 640px;
}

.product-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lum-gold);
  margin-bottom: var(--space-sm);
}

.product-section-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--lum-text-muted);
  margin: -0.5rem 0 var(--space-md);
}

/* Bullet list (problem / USP) */
.product-bullet-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  max-width: 480px;
}

.product-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
  line-height: 1.6;
  color: inherit;
}

.product-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lum-gold);
}

/* Solution summary — 3-line block */
.product-solution-summary {
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
  color: var(--lum-text-muted);
}

/* 4-step how it works — scannable grid */
.product-steps-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media (max-width: 900px) {
  .product-steps-four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .product-steps-four { grid-template-columns: 1fr; }
}

.product-steps-four .lumo-offer-step {
  padding: var(--space-lg);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lum-border);
}

.product-section--light .product-steps-four .lumo-offer-step {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
}

.product-steps-four .lumo-offer-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lum-gold);
  margin-bottom: var(--space-sm);
}

/* Email control modes */
.product-modes-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  max-width: 520px;
}

.product-modes-list li {
  padding: var(--space-sm) 0;
  font-size: 1.05rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--lum-border);
}

.product-modes-list li:last-child { border-bottom: 0; }

.product-smart-note {
  margin-top: var(--space-xl);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--lum-text-muted);
}

/* Features benefit-first list */
.product-features-benefit {
  max-width: 560px;
}

.product-features-benefit li { margin-bottom: var(--space-sm); }

/* Testimonials */
.product-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  max-width: 900px;
}

@media (max-width: 640px) {
  .product-testimonials { grid-template-columns: 1fr; }
}

.product-testimonial {
  margin: 0;
  padding: var(--space-xl);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  line-height: 1.65;
}

.product-section--dark .product-testimonial {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.product-testimonial p { margin: 0 0 var(--space-sm); color: inherit; }

.product-testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--lum-text-muted);
}

/* Pricing card recommended badge — prominent */
.product-badge-recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--lum-gold);
  color: #000;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 242, 0, 0.35);
}

.lumo-pricing-card.featured { padding-top: 1.5rem; }

/* Trust note under FAQ */
.product-trust-note {
  margin-top: var(--space-xl);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lum-text-muted);
}

/* Captions page — slide in from left (same as landing intro) ——— */
.captions-reveal[data-reveal] .dfd-heading,
.captions-reveal .dfd-heading[data-reveal],
.captions-reveal .dfd-hero-title[data-reveal],
.captions-reveal .product-section-title[data-reveal],
.captions-reveal .product-section-desc[data-reveal],
.captions-reveal .dfd-lead[data-reveal],
.captions-reveal p[data-reveal],
.captions-reveal li[data-reveal],
.captions-reveal blockquote[data-reveal],
.captions-reveal div[data-reveal] {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.captions-reveal[data-reveal].revealed .dfd-heading,
.captions-reveal .dfd-heading[data-reveal].revealed,
.captions-reveal .dfd-hero-title[data-reveal].revealed,
.captions-reveal .product-section-title[data-reveal].revealed,
.captions-reveal .product-section-desc[data-reveal].revealed,
.captions-reveal .dfd-lead[data-reveal].revealed,
.captions-reveal p[data-reveal].revealed,
.captions-reveal li[data-reveal].revealed,
.captions-reveal blockquote[data-reveal].revealed,
.captions-reveal div[data-reveal].revealed {
  opacity: 1;
  transform: translateX(0);
}
.captions-reveal li[data-reveal]:nth-child(1) { transition-delay: 0.1s; }
.captions-reveal li[data-reveal]:nth-child(2) { transition-delay: 0.2s; }
.captions-reveal li[data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.captions-reveal li[data-reveal]:nth-child(4) { transition-delay: 0.4s; }
/* How it works steps stagger ——— */
.dfd-steps .dfd-step[data-reveal]:nth-child(1) { transition-delay: 0.1s; }
.dfd-steps .dfd-step[data-reveal]:nth-child(2) { transition-delay: 0.2s; }
.dfd-steps .dfd-step[data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.dfd-how-section .dfd-how-cta[data-reveal] { transition-delay: 0.4s; }
/* Example grid columns stagger ——— */
.captions-examples-grid > div[data-reveal]:nth-child(1) { transition-delay: 0.1s; }
.captions-examples-grid > div[data-reveal]:nth-child(2) { transition-delay: 0.2s; }
/* Testimonials stagger ——— */
.dfd-testimonials .dfd-testimonial[data-reveal]:nth-child(1) { transition-delay: 0.1s; }
.dfd-testimonials .dfd-testimonial[data-reveal]:nth-child(2) { transition-delay: 0.2s; }
/* Hero section stagger ——— */
.captions-reveal.dfd-hero .dfd-hero-title[data-reveal] { transition-delay: 0.05s; }
.captions-reveal.dfd-hero .dfd-hero-hook[data-reveal] { transition-delay: 0.1s; }
.captions-reveal.dfd-hero .dfd-hero-outcome[data-reveal] { transition-delay: 0.15s; }
.captions-reveal.dfd-hero .dfd-hero-subtitle[data-reveal] { transition-delay: 0.2s; }
.captions-reveal.dfd-hero .dfd-hero-cta[data-reveal] { transition-delay: 0.25s; }

/* Tighter spacing in psychology block (lead + list + copy-paste-post) ——— */
.captions-psychology-tight .dfd-lead { margin-bottom: 0.5rem; }
.captions-psychology-tight ul { margin-top: 0; }
.captions-psychology-tight ul li { margin-bottom: 0.35rem; }
.captions-psychology-tight ul li:last-child { margin-bottom: 0; }

/* Optional scroll reveal (use data-reveal + scroll-reveal.js) ——— */
.product-section[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.product-section[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Captions pricing: use child slide-in only, not section fade ——— */
.captions-reveal.product-section[data-reveal] {
  opacity: 1;
  transform: none;
}
.captions-reveal.product-section[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Product compare table (digital front desk) ——— */
.product-compare-wrap {
  overflow-x: auto;
  margin: var(--space-xl) 0;
}

.product-compare-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.product-compare-table th,
.product-compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--lum-border);
}

.product-compare-table th {
  color: var(--lum-text-muted);
  font-weight: 500;
}

.product-compare-table td { color: var(--lum-text); }

.product-compare-table th:first-child { width: 38%; }

.product-compare-table .tick { color: var(--lum-gold); }

.product-compare-table .add-on { color: var(--lum-text-muted); font-size: 0.9rem; }

.product-addon-note {
  max-width: 560px;
  margin: var(--space-lg) auto 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--lum-surface-elevated);
  border-radius: 8px;
  border: 1px solid var(--lum-border);
  font-size: 0.9rem;
  color: var(--lum-text-muted);
  line-height: 1.6;
}

.product-addon-note a { color: var(--lum-gold); }

.product-secondary-path {
  margin: var(--space-lg) 0 0;
  font-size: 0.95rem;
}
.product-secondary-path a { color: var(--lum-gold); text-decoration: none; }
.product-secondary-path a:hover { text-decoration: underline; }

/* Product CTA block ——— */
/* Product FAQ — semantic dl/dt/dd */
.product-faq {
  max-width: 560px;
  margin: 0;
}

.product-faq-q {
  font-weight: 600;
  color: var(--lum-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.product-faq-q:first-child { margin-top: 0; }

.product-faq-a {
  margin: 0 0 var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lum-text-muted);
}

/* Product CTA block ——— */
.product-cta-block {
  text-align: center;
  padding: 7.5rem var(--space-xl);
  background: #000000;
}

.product-cta-block .product-section-title { margin-bottom: var(--space-sm); color: var(--lum-text); }

.product-cta-block p { margin-bottom: var(--space-xl); color: var(--lum-text-muted); }

/* ═══════════════════════════════════════════════════════════════════════════════
   Digital Front Desk — Redesign (clarity, conversion, left-aligned, rounded)
   ═══════════════════════════════════════════════════════════════════════════════ */

.product-page-dfd {
  --dfd-font-condensed: 'Encode Sans Condensed', 'Bebas Neue', sans-serif;
  --dfd-radius: 14px;
  --dfd-radius-btn: 12px;
  --dfd-space: 2rem;
  --dfd-space-lg: 4rem;
  --dfd-space-xl: 6rem;
}

.product-page-dfd .product-section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

/* Hero — full-width dark, left-aligned, bold condensed, vertically centered */
.dfd-hero {
  position: relative;
  padding: 6rem var(--space-xl) 5rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
}

.dfd-hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-top: 3rem;
}

.dfd-hero-title {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 7.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--lum-text);
  margin: 0 0 var(--dfd-space);
  text-align: left;
  max-width: 66.666%;
}

.dfd-hero-hook {
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--lum-text);
  font-weight: 500;
  max-width: 560px;
  margin: 0 0 0.5rem;
  text-align: left;
}
.dfd-hero-outcome {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--lum-gold);
  font-weight: 500;
  max-width: 520px;
  margin: 0 0 var(--dfd-space);
  text-align: left;
}
.dfd-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--lum-text-muted);
  max-width: 520px;
  margin: 0 0 var(--dfd-space);
  text-align: left;
}

.dfd-hero-cta {
  margin: 0;
}

.dfd-hero-cta .dfd-btn { margin-top: 0; }

.dfd-hero-risk {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* Outcome stats bar — proof under hero */
.dfd-stats-bar {
  background: #0d0d0d;
  padding: 1.25rem var(--dfd-space);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dfd-stats-bar--inline {
  background: transparent;
  border-top: none;
  padding: 0;
  margin-bottom: var(--dfd-space);
}
.dfd-stats-bar--inline .dfd-stats-inner {
  margin: 0;
  gap: 3.5rem;
}
.dfd-stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  align-items: baseline;
}
.dfd-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dfd-stat-value {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--lum-gold);
  letter-spacing: 0.02em;
}
.dfd-stat-label {
  font-size: 0.9rem;
  color: var(--lum-text-muted);
  margin-top: -0.05em;
}

/* Hero CTA — accent color, rounded */
.dfd-btn-hero-cta {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: var(--lum-gold);
  border: none;
  border-radius: var(--dfd-radius-btn);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.dfd-btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 242, 0, 0.35);
  opacity: 0.95;
}

/* Buttons — rounded, consistent, hover (font matches nav) */
.dfd-btn {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--dfd-radius-btn);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.dfd-btn-primary {
  background: var(--lum-text);
  color: #000;
  border: none;
}

.dfd-btn-primary:hover {
  background: var(--lum-ivory);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.dfd-btn-secondary {
  background: transparent;
  color: var(--lum-text);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.dfd-btn-secondary:hover {
  border-color: var(--lum-text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.dfd-btn--large { padding: 1.15rem 2.25rem; font-size: 1.05rem; }

/* Sections — alternating off-white / black, full width */
.dfd-section {
  padding: var(--dfd-space-xl) var(--space-xl);
  width: 100%;
}

.dfd-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.dfd-section--light {
  background: #f5f5f3;
}

.dfd-section--dark {
  background: #000000;
}

/* Headings — bold condensed, left-aligned, larger (dayos-style uppercase) */
.dfd-heading {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  text-align: left;
  text-transform: uppercase;
}

.dfd-section--light .dfd-heading { color: #000000; }

.dfd-section--dark .dfd-heading { color: var(--lum-text); }

.dfd-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 var(--dfd-space-lg);
  text-align: left;
}

.dfd-section--light .dfd-lead { color: #444; }

.dfd-section--dark .dfd-lead { color: var(--lum-text-muted); }

/* Key features grid — rounded cards */
.dfd-features-section .dfd-heading {
  margin-bottom: var(--dfd-space-lg);
}

.dfd-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--dfd-space);
}

@media (max-width: 768px) {
  .dfd-feature-grid { grid-template-columns: 1fr; }
}

/* Features section — off-white, four cards, rounded, subtle shadow, left-aligned */
.dfd-features-section.dfd-section--light {
  background: #f5f5f3;
}

.dfd-feature-card {
  padding: var(--dfd-space);
  background: #fff;
  border: none;
  border-radius: var(--dfd-radius);
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.dfd-feature-card:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }

.dfd-section--dark .dfd-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.dfd-section--dark .dfd-feature-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.dfd-feature-title {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  text-align: left;
}

.dfd-section--light .dfd-feature-title { color: #000000; }

.dfd-section--dark .dfd-feature-title { color: var(--lum-text); }

.dfd-feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.dfd-section--light .dfd-feature-desc { color: #444; }

.dfd-section--dark .dfd-feature-desc { color: var(--lum-text-muted); }

/* How it works — dark by default; light variant for alternating pages (e.g. Captions) */
.dfd-how-section {
  background: #000;
}
.dfd-how-section.dfd-section--light {
  background: #f5f5f3;
}
.dfd-section--light .dfd-step {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.dfd-section--light .dfd-step:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.dfd-section--light .dfd-step-title {
  color: #000000;
}
.dfd-section--light .dfd-step-desc {
  color: #444;
}

.dfd-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--dfd-space);
}

@media (max-width: 900px) {
  .dfd-steps { grid-template-columns: 1fr; }
}

.dfd-step {
  padding: var(--dfd-space);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dfd-radius);
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s ease;
}

.dfd-step:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.dfd-step-icon {
  display: block;
  color: var(--lum-gold);
  margin-bottom: 0.75rem;
}
/* Light section: darker icons for visibility on white cards */
.dfd-section--light .dfd-step-icon {
  color: #1a1a1a;
}

.dfd-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  background: var(--lum-gold);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.dfd-how-cta {
  margin: var(--dfd-space-lg) 0 0;
}

.dfd-btn-accent {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: var(--lum-gold);
  border: none;
  border-radius: var(--dfd-radius-btn);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.dfd-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 242, 0, 0.35);
  opacity: 0.95;
}

.dfd-btn-secondary-outline {
  background: transparent;
  color: #000000;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.dfd-btn-secondary-outline:hover {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.04);
}

/* Chat Assistant section */
.dfd-chat-section.dfd-section--light {
  background: #f5f5f3;
}
.dfd-chat-headline {
  font-family: var(--dfd-font-condensed);
  font-weight: 600;
  font-size: 1.35rem;
  color: #000000;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.dfd-chat-bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  max-width: 480px;
}
.dfd-chat-bullets li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}
.dfd-chat-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lum-gold);
  font-weight: 700;
}
.dfd-chat-price {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.5rem;
  color: #000000;
  margin: 0 0 1.25rem;
}
.dfd-chat-price span { font-size: 1rem; font-weight: 400; color: #666; }
.dfd-chat-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.dfd-chat-ctas .dfd-btn { margin-top: 0; }

.dfd-step-title {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  text-align: left;
  color: var(--lum-text);
}

.dfd-step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--lum-text-muted);
  text-align: left;
}

/* Testimonials — off-white, 3 rounded cards, subtle shadow, left-aligned */
.dfd-testimonials-section.dfd-section--light {
  background: #f5f5f3;
}

.dfd-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--dfd-space);
}

@media (max-width: 900px) {
  .dfd-testimonials { grid-template-columns: 1fr; }
}
.dfd-testimonials--two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .dfd-testimonials--two { grid-template-columns: 1fr; }
}

.dfd-testimonial {
  margin: 0;
  padding: var(--dfd-space);
  background: #fff;
  border: none;
  border-radius: var(--dfd-radius);
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.dfd-testimonials-section .dfd-testimonial:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.dfd-section--dark .dfd-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.dfd-testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.dfd-section--light .dfd-testimonial-text { color: #000000; }

.dfd-section--dark .dfd-testimonial-text { color: var(--lum-text); }

.dfd-testimonial-cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--lum-text-muted);
}

.dfd-section--light .dfd-testimonial-cite { color: #555; }

/* FAQ — off-white, collapsible panels, rounded, left-aligned */
.dfd-faq-section.dfd-section--light {
  background: #f5f5f3;
}

.dfd-faq-list {
  max-width: 640px;
}

.dfd-faq-item {
  margin: 0 0 0.75rem;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: var(--dfd-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.dfd-faq-item:last-child {
  margin-bottom: 0;
}

.dfd-faq-question {
  display: block;
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #000000;
  text-align: left;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.dfd-faq-question::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555;
  transition: transform 0.2s ease;
}

.dfd-faq-item[open] .dfd-faq-question::before {
  transform: translateY(-50%) rotate(180deg);
}

.dfd-faq-question:hover {
  color: #000;
}

.dfd-faq-answer {
  margin: 0;
  padding: 0 1.25rem 1.25rem 3rem;
  padding-top: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

/* Pricing — rounded cards */
.dfd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--dfd-space);
  margin-bottom: var(--dfd-space);
}

@media (max-width: 900px) {
  .dfd-pricing-grid { grid-template-columns: 1fr; }
}

.dfd-pricing-card {
  position: relative;
  padding: var(--dfd-space);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dfd-radius);
  text-align: left;
}

.dfd-pricing-card--featured {
  border-color: var(--lum-gold);
  box-shadow: 0 0 0 1px rgba(255, 242, 0, 0.15);
}

.dfd-pricing-badge {
  position: absolute;
  top: -10px;
  left: var(--dfd-space);
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lum-gold);
  color: #000;
  border-radius: 999px;
}

.dfd-pricing-card--featured { padding-top: 2rem; }

.dfd-pricing-name {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0.25rem;
  color: var(--lum-text);
}

.dfd-pricing-desc {
  font-size: 0.9rem;
  color: var(--lum-text-muted);
  margin: 0 0 1rem;
}

.dfd-pricing-price {
  font-family: var(--dfd-font-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lum-text);
  margin-bottom: 1rem;
}

.dfd-pricing-price span { font-size: 1rem; font-weight: 400; color: var(--lum-text-muted); }

.dfd-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lum-text-muted);
}

.dfd-pricing-features li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.dfd-pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--lum-gold);
  border-radius: 50%;
}

.dfd-pricing-card .dfd-btn { width: 100%; text-align: center; }

/* Pricing add-on toggle */
.dfd-addon-toggle {
  margin: 1rem 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dfd-addon-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--lum-text-muted);
  line-height: 1.4;
}
.dfd-addon-label input {
  width: 1rem;
  height: 1rem;
  accent-color: #fff200;
  flex-shrink: 0;
  vertical-align: middle;
  align-self: center;
  margin: 0;
}
.dfd-addon-label:hover { color: var(--lum-text); }
.dfd-price-note {
  font-size: 0.8rem;
  color: var(--lum-text-muted);
  margin: -0.5rem 0 0.5rem;
}

/* Pricing "Activate now" — same design as nav "Try the concierge" (lumo-nav-cta), full-width in card */
.dfd-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-top: auto;
}

/* Align addon checkbox and CTAs on same line — cards as flex columns, footer pushed to bottom */
.product-page-dfd .lumo-pricing-grid {
  align-items: stretch;
}
.product-page-dfd .lumo-pricing-card {
  display: flex;
  flex-direction: column;
}
.product-page-dfd .lumo-pricing-card .lumo-offer-includes {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}
.product-page-dfd .lumo-pricing-card .lumo-offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.2em 0;
  padding-left: 0;
  position: relative;
}
.product-page-dfd .lumo-pricing-card .lumo-offer-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.4em;
  background: var(--lum-gold);
  border-radius: 50%;
}
.dfd-pricing-footer {
  margin-top: auto;
  padding-top: 0.5rem;
}
.product-page-dfd .lumo-pricing-card .dfd-pricing-cta {
  margin-top: 0;
}

.dfd-pricing-note {
  font-size: 0.9rem;
  color: var(--lum-text-muted);
  margin: 0;
}

.dfd-pricing-note a { color: var(--lum-gold); }

/* ═══════════════════════════════════════════════════════════════════════════════
   Captions page — same design system as Digital Front Desk
   ═══════════════════════════════════════════════════════════════════════════════ */
.product-page-captions {
  --dfd-font-condensed: 'Encode Sans Condensed', 'Bebas Neue', sans-serif;
  --dfd-radius: 14px;
  --dfd-radius-btn: 12px;
  --dfd-space: 2rem;
  --dfd-space-lg: 4rem;
  --dfd-space-xl: 6rem;
}

.product-page-captions .product-section {
  padding: var(--dfd-space-xl) var(--space-xl);
}

/* Platforms dropdown: yellow hover/focus (override browser orange default) */
.product-page-captions #captions-platforms:hover,
.product-page-captions #captions-platforms:focus,
.product-page-captions #captions-platforms:focus-visible,
.product-page-captions #captions-platforms:active {
  border-color: #fff200 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255, 242, 0, 0.4) !important;
}

.product-page-captions .product-section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

.product-page-captions .product-section-desc {
  max-width: 56ch;
  line-height: 1.6;
}
.product-page-captions .product-section-guarantee {
  font-size: 0.95rem;
  color: var(--lum-gold);
  margin: -0.5rem 0 var(--dfd-space);
  max-width: 56ch;
}
.product-page-captions .lumo-pricing-card .lumo-pricing-save {
  font-size: 0.9rem;
  color: var(--lum-gold);
  margin: -0.5rem 0 1rem;
}

.product-page-captions .lumo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--dfd-space);
  max-width: 720px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 640px) {
  .product-page-captions .lumo-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.product-page-captions .lumo-pricing-card {
  display: flex;
  flex-direction: column;
  padding: var(--dfd-space);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dfd-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease;
}

.product-page-captions .lumo-pricing-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.product-page-captions .lumo-pricing-card.featured {
  border-color: var(--lum-gold);
  padding-top: 1.5rem;
}

.product-page-captions .lumo-pricing-card .dfd-pricing-footer {
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-page-captions .lumo-pricing-card .dfd-btn {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.product-page-captions .lumo-pricing-card h3 {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--lum-text);
}

.product-page-captions .lumo-pricing-card .product-badge-captions {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lum-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.product-page-captions .lumo-pricing-card .lumo-pricing-subtitle {
  color: var(--lum-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-page-captions .lumo-pricing-card .lumo-offer-price {
  font-family: var(--dfd-font-condensed);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lum-text);
  margin: 1rem 0;
}

.product-page-captions .lumo-pricing-card .lumo-offer-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--lum-text-muted);
}

.product-page-captions .lumo-pricing-card .lumo-offer-includes {
  margin: 1rem 0;
}
.product-page-captions .lumo-pricing-card .lumo-offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.2em 0;
  padding-left: 0;
  min-height: auto;
  line-height: 1.5;
}
.product-page-captions .lumo-pricing-card .lumo-offer-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  /* Center 6px bullet in first line: (line-height - 0.375em) / 2 ≈ 0.56em */
  margin-top: 0.56em;
  background: var(--lum-gold);
  border-radius: 50%;
}

/* CTA section — left-aligned, prominent */
.dfd-cta-section {
  padding: var(--dfd-space-xl) var(--space-xl);
  background: #000000;
  text-align: left;
}

.dfd-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.dfd-cta-heading {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--lum-text);
  margin: 0 0 0.5rem;
}

.dfd-cta-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--lum-text-muted);
  margin: 0 0 var(--dfd-space);
}

.dfd-cta-btn-wrap { margin: 0; }

/* ——— Sticky CTA (DFD page) ——— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px var(--dfd-space);
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--dfd-radius-btn);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.sticky-cta-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.sticky-cta-btn:hover { transform: translateY(-2px); opacity: 0.95; }
.sticky-cta-btn-accent {
  background: var(--lum-gold);
  color: #000;
  border-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Account page — light background, left sidebar, matching site fonts
   ═══════════════════════════════════════════════════════════════════════════════ */
.account-page-wrap {
  --dfd-font-condensed: 'Encode Sans Condensed', 'Bebas Neue', sans-serif;
  --dfd-radius: 14px;
  --dfd-radius-btn: 12px;
  --dfd-space: 2rem;
  --dfd-space-lg: 4rem;
  --dfd-space-xl: 6rem;
  /* Light page background, match site (landing/product) */
  background: var(--bg-light, #e5e5e5);
  color: var(--text-on-light, #000);
  font-family: var(--font-body, 'Century Gothic', CenturyGothic, 'Apple Gothic', sans-serif);
  min-height: 100vh;
}

.account-page-wrap .lumo-nav {
  background: #000;
}
/* Captions link: same font as landing page nav */
.account-page-wrap .lumo-nav-links a {
  font-family: var(--font-body, 'Century Gothic', CenturyGothic, 'Apple Gothic', sans-serif);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 0.7rem;
  text-decoration: none;
}
.account-page-wrap .lumo-nav-links a:hover {
  color: var(--lum-gold);
}
.account-page-wrap .lumo-nav-cta,
.account-page-wrap .account-nav-logout-btn {
  font-family: 'Bebas Neue', sans-serif;
}
/* Nav "Log out" button: match .lumo-nav-cta look */
.account-page-wrap .account-nav-logout-btn {
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 10px 20px;
  min-height: 44px;
  min-width: 44px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.account-page-wrap .account-nav-logout-btn:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
}
.account-page-wrap .account-nav-logout-btn:active {
  transform: translateY(-1px);
}

/* Two-column layout: sidebar left, main content right. padding-top clears fixed nav. */
.account-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
  min-height: calc(100vh - 60px);
  padding-top: 80px; /* Clear fixed lumo-nav (~64–80px) */
}
.account-sidebar {
  width: 260px;
  flex-shrink: 0;
  padding: 2rem 0 2rem 1.5rem;
  position: sticky;
  top: 80px; /* Align with content below fixed nav */
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #000;
}
.account-sidebar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}
.account-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.account-sidebar-nav li { margin: 0; }
.account-sidebar-nav a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--dfd-radius);
  margin-bottom: 0.25rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.account-sidebar-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}
.account-sidebar-nav a.active {
  color: var(--lum-gold);
  background: rgba(255,242,0,0.12);
  border: 2px solid var(--lum-gold);
  outline: none;
}
.account-sidebar-logout {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.account-sidebar-logout form { margin: 0; }
.account-sidebar-logout .dfd-btn {
  width: 100%;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
}
.account-sidebar-logout .dfd-btn:hover {
  background: var(--lum-gold);
  color: #000;
  border-color: var(--lum-gold);
}

.account-main {
  flex: 1;
  min-width: 0;
  padding: 2rem 1.5rem 4rem;
  max-width: 720px;
}
/* History needs more width so View/Download/Delete stay on one line */
.account-main.account-main--wide {
  max-width: 1000px;
}
.account-section-desc {
  color: #ffffff;
  background: #000;
  padding: 0.5rem 0.75rem;
  border-radius: var(--dfd-radius);
  display: inline-block;
  margin-top: 0;
  margin-bottom: 1rem;
}
/* Bulleted list variant — ensure bullets show */
.account-main .account-section-block > ul.account-section-desc {
  display: block;
  list-style-type: disc;
  padding-left: 1.5rem;
}
.account-main .account-section-block > ul.account-section-desc li {
  margin-bottom: 0.5rem;
}
.account-main .account-section-block > p.account-section-desc {
  color: #ffffff;
}
.account-main h2 {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: #000;
  padding: 0.5rem 0.75rem;
  border-radius: var(--dfd-radius);
  display: inline-block;
  margin: 0 0 1rem;
}
.account-main .account-section-block {
  margin-bottom: 2.5rem;
}
.account-main .account-section-block > p:not(.account-section-desc) {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

/* Account info panel (email, password, billing) */
.account-info-panel {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--dfd-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.account-info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.account-info-row:last-child { border-bottom: none; }
.account-info-label { font-weight: 600; color: #000; font-size: 0.95rem; }
.account-info-value { color: #444; font-size: 0.95rem; }
.account-info-actions a {
  color: #8b6914;
  font-weight: 500;
  text-decoration: none;
}
.account-info-actions a:hover { text-decoration: underline; }
.account-info-row--delete {
  border-top: 1px solid rgba(0,0,0,0.12);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.account-delete-account-btn {
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b00;
  background: transparent;
  border: 1px solid rgba(180,0,0,0.5);
  border-radius: var(--dfd-radius);
  transition: background 0.2s, color 0.2s;
}
.account-delete-account-btn:hover {
  background: rgba(180,0,0,0.08);
  color: #900;
  border-color: #b00;
}

/* Delete account modal */
.account-delete-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.account-delete-modal[hidden] { display: none; }
.account-delete-modal.account-delete-modal--open {
  opacity: 1;
  visibility: visible;
  display: flex;
}
.account-delete-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
.account-delete-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--dfd-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 1.75rem;
  max-width: 420px;
  width: 100%;
}
.account-delete-modal-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: #000;
}
.account-delete-modal-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.account-delete-modal-type-wrap {
  margin-bottom: 1.25rem;
}
.account-delete-modal-type-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
}
.account-delete-modal-type-input {
  display: block;
  width: 100%;
  max-width: 12rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: var(--dfd-radius);
  margin-bottom: 0.35rem;
}
.account-delete-modal-type-input:focus {
  outline: none;
  border-color: #8b6914;
  box-shadow: 0 0 0 2px rgba(139,105,20,0.2);
}
.account-delete-modal-type-hint {
  display: block;
  font-size: 0.8rem;
  color: #666;
}
.account-delete-modal-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 520px) {
  .account-delete-modal-buttons {
    flex-wrap: wrap;
  }
}
.account-delete-modal-btn {
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--dfd-radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.account-delete-modal-cancel-sub {
  color: #8b6914;
  background: transparent;
  border-color: rgba(139,105,20,0.4);
}
.account-delete-modal-cancel-sub:hover {
  background: rgba(139,105,20,0.08);
  color: #6d5010;
}
.account-delete-modal-keep {
  color: #000;
  background: #fff;
  border-color: rgba(0,0,0,0.25);
}
.account-delete-modal-keep:hover {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.35);
}
.account-delete-modal-confirm {
  color: #fff;
  background: #b00;
  border-color: #900;
}
.account-delete-modal-confirm:hover {
  background: #900;
  color: #fff;
}
.account-delete-modal-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.account-delete-modal-confirm:disabled:hover {
  background: #b00;
  color: #fff;
}
.add-stories-modal .account-add-stories-confirm {
  color: #000;
  background: var(--lum-gold, #fff200);
  border-color: var(--lum-gold, #fff200);
}
.add-stories-modal .account-add-stories-confirm:hover {
  background: #e6d900;
  color: #000;
  border-color: #e6d900;
}

/* History: view / download */
.account-history-list {
  width: 100%;
  min-width: 0;
}
.account-history-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--dfd-radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.account-history-item span {
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
}
.account-history-item .account-history-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.account-history-item .account-history-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-left: auto;
}

/* Mobile: pack title on own line, buttons wrap below (left-aligned) */
@media (max-width: 640px) {
  .account-history-item > span:first-of-type {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .account-history-item .account-history-actions {
    margin-left: 0;
    width: 100%;
  }
}
.account-history-item .account-history-type--subscription {
  background: rgba(0,0,0,0.08);
  color: #333;
}
.account-history-item .account-history-type--oneoff {
  background: rgba(0,0,0,0.06);
  color: #666;
  border: 1px solid rgba(0,0,0,0.12);
}
.account-history-item .account-btn-link {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--dfd-radius-btn);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.account-history-item .account-btn-link--primary {
  background: #000;
  color: #fff;
}
.account-history-item .account-btn-link--primary:hover {
  background: #333;
  color: #fff;
}
.account-history-item .account-btn-link--secondary {
  background: rgba(0,0,0,0.06);
  color: #000;
  border: 1px solid rgba(0,0,0,0.1);
}
.account-history-item .account-btn-link--secondary:hover {
  background: rgba(0,0,0,0.1);
}
.account-history-item .account-history-delete {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: #666;
  cursor: pointer;
  font: inherit;
}
.account-history-item .account-history-delete:hover {
  color: #b00;
  border-color: rgba(180,0,0,0.4);
  background: rgba(180,0,0,0.06);
}
.account-history-item .account-history-delete:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Edit form list */
.account-edit-form-list { margin: 0; padding: 0; list-style: none; }
.account-edit-form-list li {
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--dfd-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.account-edit-form-list .account-billing-portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 44px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.account-edit-form-list .account-billing-portal-link:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
  text-decoration: none;
}

/* Pause subscription block */
.account-pause-block {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--dfd-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.account-pause-block .account-settings-desc { color: #444; margin-top: 0.25rem; }

/* Refer a friend on light background */
.account-referral-block {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--dfd-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.account-referral-block .referral-input {
  border-color: rgba(0,0,0,0.15);
  background: #f8f8f6;
  color: #111;
}
.account-referral-block .account-settings-label { color: #000; }
.account-referral-block .account-settings-desc { color: #444; }
.account-referral-block .referral-copy { color: #000; }
.account-referral-block .referral-copy:hover { color: #000; }

/* Toggle on light account page */
.account-page-wrap .account-main .account-toggle {
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.account-page-wrap .account-main .account-toggle.on {
  background: #000;
}
.account-page-wrap .account-main .account-toggle::after {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.account-page-wrap .account-hero {
  display: none;
}
.account-page-wrap .account-logout {
  flex-shrink: 0;
}

/* Footer on account page: light to match */
.account-page-wrap .footer {
  background: var(--bg-light, #e5e5e5);
  color: #333;
}
.account-page-wrap .footer .footer-brand,
.account-page-wrap .footer .footer-tagline,
.account-page-wrap .footer .footer-questions,
.account-page-wrap .footer .footer-questions a,
.account-page-wrap .footer .footer-links a,
.account-page-wrap .footer .footer-bottom { color: #444; }
.account-page-wrap .footer .footer-links a:hover,
.account-page-wrap .footer .footer-questions a:hover { color: #000; }

/* Responsive: stack sidebar on small screens */
@media (max-width: 768px) {
  .account-layout { flex-direction: column; }
  .account-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .account-sidebar-title { margin: 0; padding: 0; border: none; }
  .account-sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .account-sidebar-nav a { padding: 0.4rem 0.6rem; font-size: 1.15rem; }
  .account-sidebar-logout { margin-top: 0; padding-top: 0; border-top: none; margin-left: auto; }
  .account-main { padding: 1.5rem 1rem 3rem; }
}

.account-page-wrap .account-section {
  padding: var(--dfd-space-xl) var(--space-xl);
  width: 100%;
}

.account-page-wrap .account-section--light {
  background: #f5f5f3;
}

.account-page-wrap .account-section--dark {
  background: #000000;
}

.account-page-wrap .account-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.account-page-wrap .account-section-heading {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 var(--dfd-space);
  color: var(--lum-text);
}

.account-page-wrap .account-section--light .account-section-heading {
  color: #000000;
}

.account-page-wrap .account-card-grid {
  display: flex;
  flex-direction: column;
  gap: var(--dfd-space);
}

.account-page-wrap .account-card {
  padding: var(--dfd-space);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--dfd-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.account-page-wrap .account-section--light .account-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.account-page-wrap .account-card-title {
  font-family: var(--dfd-font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--lum-text);
}

.account-page-wrap .account-section--light .account-card-title {
  color: #000000;
}

.account-page-wrap .account-card-meta {
  font-size: 0.9rem;
  color: var(--lum-text-muted);
  margin: 0.25rem 0;
}

.account-page-wrap .account-card-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-page-wrap .account-card-actions a {
  font-size: 0.9rem;
  color: var(--lum-gold);
  text-decoration: none;
  font-weight: 500;
}

.account-page-wrap .account-card-actions a:hover {
  text-decoration: underline;
}

.account-page-wrap .account-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.account-page-wrap .account-badge-dfd { background: rgba(255, 242, 0, 0.2); color: var(--lum-gold); }
.account-page-wrap .account-badge-chat { background: rgba(100, 150, 255, 0.2); color: #6495ed; }
.account-page-wrap .account-badge-captions { background: rgba(76, 175, 80, 0.2); color: #4caf50; }

.account-page-wrap .account-empty {
  color: var(--lum-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.account-page-wrap .account-empty a {
  color: var(--lum-gold);
  text-decoration: none;
}

.account-page-wrap .account-empty a:hover { text-decoration: underline; }

.account-page-wrap .account-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-page-wrap .account-section--light .account-settings-row {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.account-page-wrap .account-settings-row:last-child { border-bottom: none; }

.account-page-wrap .account-settings-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lum-text);
}

.account-page-wrap .account-section--light .account-settings-label { color: #000; }

.account-page-wrap .account-settings-desc {
  font-size: 0.85rem;
  color: var(--lum-text-muted);
  margin-top: 0.25rem;
}

.account-page-wrap .account-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.account-page-wrap .account-toggle.on { background: #000; }

.account-page-wrap .account-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.account-page-wrap .account-toggle.on::after { transform: translateX(20px); }

.account-page-wrap .referral-block {
  max-width: 36rem;
}
.account-page-wrap .referral-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}
.account-page-wrap .referral-input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--dfd-radius);
  background: rgba(0, 0, 0, 0.2);
  color: var(--lum-text);
}
.account-page-wrap .account-section--light .referral-input {
  border-color: rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #111;
}
.account-page-wrap .referral-copy {
  flex-shrink: 0;
  color: #000;
}
.account-page-wrap .referral-copy:hover {
  color: #000;
}

.account-page-wrap .account-pause-badge {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lum-text-muted);
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--dfd-radius);
}
.account-page-wrap .account-section--light .account-pause-badge {
  background: rgba(0, 0, 0, 0.06);
  color: var(--lum-text-muted);
}
.account-page-wrap .account-pause-btn {
  flex-shrink: 0;
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 10px 20px;
  min-height: 44px;
  min-width: 44px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.account-page-wrap .account-pause-btn:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
}
.account-page-wrap .account-pause-btn:active {
  transform: translateY(-1px);
}
.account-page-wrap .account-pause-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.account-page-wrap .account-resume-btn {
  flex-shrink: 0;
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 10px 20px;
  min-height: 44px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.account-page-wrap .account-resume-btn:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
}
.account-page-wrap .account-resume-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.account-page-wrap .account-add-stories-btn {
  flex-shrink: 0;
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 10px 20px;
  min-height: 44px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.account-page-wrap .account-add-stories-btn:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
}
.account-page-wrap .account-add-stories-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.account-add-stories-row,
.account-remove-stories-row {
  align-items: flex-start;
  border-bottom: none;
}
.account-add-stories-row .account-add-stories-text,
.account-remove-stories-row .account-remove-stories-text {
  flex: 1;
  min-width: 0;
}
.account-add-stories-row .account-add-stories-btn,
.account-remove-stories-row .account-remove-stories-btn {
  align-self: flex-start;
}
.account-page-wrap .account-remove-stories-btn {
  flex-shrink: 0;
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 10px 20px;
  min-height: 44px;
  min-width: 44px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.account-page-wrap .account-remove-stories-btn:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
}
.account-page-wrap .account-remove-stories-btn:active {
  transform: translateY(-1px);
}
.account-page-wrap .account-remove-stories-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.account-page-wrap .account-billing-portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 44px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-btn);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.account-page-wrap .account-billing-portal-link:hover {
  transform: translateY(-3px);
  background-color: var(--lum-gold);
  color: #000000;
  text-decoration: none;
}
.account-page-wrap .account-info-actions .account-billing-portal-link,
.account-page-wrap .account-info-actions .account-billing-portal-link:hover {
  text-decoration: none;
}

.account-page-wrap .account-payment-method-select {
  font: inherit;
  font-size: 0.9rem;
  padding: 0.4rem 2.25rem 0.4rem 0.75rem;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: var(--dfd-radius);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
  min-width: 160px;
}
.account-page-wrap .account-payment-method-select-wrap {
  flex-shrink: 0;
}
.account-page-wrap .account-payment-method-no-cards {
  font-size: 0.9rem;
  color: #555;
}
.account-page-wrap .account-payment-method-no-cards a {
  color: #8b6914;
  font-weight: 500;
  text-decoration: none;
}
.account-page-wrap .account-payment-method-no-cards a:hover {
  text-decoration: underline;
}

.account-page-wrap .account-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--dfd-radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.account-page-wrap .account-alert--warn {
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: var(--lum-text);
}

.account-page-wrap .account-alert--error {
  background: rgba(200, 80, 80, 0.12);
  border: 1px solid rgba(200, 80, 80, 0.3);
  color: var(--lum-text);
}

.account-page-wrap .account-footer-link {
  margin-top: var(--dfd-space);
  font-size: 0.95rem;
}

.account-page-wrap .account-footer-link a {
  color: var(--lum-text-muted);
  text-decoration: none;
}

.account-page-wrap .account-footer-link a:hover { color: var(--lum-text); }

.account-page-wrap .embed-pre {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  overflow-x: auto;
  margin: 0.5rem 0;
  border-radius: 8px;
  font-family: monospace;
  color: var(--lum-text);
}

.account-page-wrap .account-section--light .embed-pre {
  background: rgba(0, 0, 0, 0.06);
  color: #333;
}

/* ——— Mobile tap targets (min 44px) ——— */
.product-page-dfd .dfd-btn,
.product-page-dfd .dfd-btn-hero-cta,
.product-page-dfd .dfd-btn-accent,
.product-page-dfd .dfd-pricing-cta,
.product-page-dfd .lumo-nav-cta,
.product-page-captions .dfd-btn,
.product-page-captions .dfd-btn-hero-cta,
.product-page-captions .dfd-btn-accent,
.product-page-captions .lumo-nav-cta,
.account-page-wrap .dfd-btn,
.account-page-wrap .lumo-nav-cta {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-page-dfd .lumo-nav-links a,
.product-page-captions .lumo-nav-links a,
.account-page-wrap .lumo-nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
/* Log in button: rectangle with rounded corners, yellow border (override nav CTA on product pages) */
.product-page-dfd .lumo-nav a.lumo-nav-login,
.product-page-captions .lumo-nav a.lumo-nav-login,
.product-page-dfd .lumo-nav .lumo-nav-login,
.product-page-captions .lumo-nav .lumo-nav-login,
.lumo-nav a.lumo-nav-login,
.lumo-nav .lumo-nav-login {
  border: 2px solid #fff200 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.product-page-dfd .lumo-nav a.lumo-nav-login:hover,
.product-page-captions .lumo-nav a.lumo-nav-login:hover,
.lumo-nav a.lumo-nav-login:hover,
.lumo-nav .lumo-nav-login:hover,
.lumo-nav-cta.lumo-nav-login:hover {
  background: #fff200 !important;
  background-color: #fff200 !important;
  color: #000 !important;
  border-color: #fff200 !important;
}
.lumo-nav-cta.lumo-nav-login {
  border: 2px solid #fff200 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
  border-radius: 8px !important;
}
/* FAQ summary: tap target via original padding (already ~44px+), avoid overriding to prevent arrow overlap */
