/* Reading Path landing page — /reading-path/ */

html {
  scroll-behavior: smooth;
}

body.yomikamo-reading-path {
  background: var(--yk-cream, #faf8f5);
  color: var(--yk-ink, #13121a);
  font-family: 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.yk-rp {
  --rp-max: 52rem;
  --rp-gap: 2rem;
  color: var(--yk-ink, #13121a);
}

/* ---- Sections ---- */

.yk-rp__section {
  padding: 4rem 1.25rem;
}

.yk-rp__section--muted {
  background: var(--yk-sand, #ece4da);
}

.yk-rp__section--accent {
  background: #1b7f7a;
  color: #fff;
}

.yk-rp__container {
  max-width: var(--rp-max);
  margin: 0 auto;
}

/* ---- Typography ---- */

.yk-rp h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.yk-rp h1 em {
  color: var(--yk-teal, #1b7f7a);
  font-style: italic;
}

.yk-rp h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}

.yk-rp h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.yk-rp p {
  line-height: 1.65;
  margin: 0 0 1rem;
}

/* ---- Hero ---- */

.yk-rp__hero {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.yk-rp__hero-sub {
  font-size: 1.125rem;
  color: var(--yk-ink-soft, #30303a);
  max-width: 38rem;
}

.yk-rp__hero-for {
  font-size: 0.95rem;
  color: var(--yk-ink-soft, #30303a);
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

.yk-rp__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--yk-ink-soft, #30303a);
  margin-top: 1.5rem;
}

/* ---- Progression diagram ---- */

.yk-rp__progression {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.75rem;
  max-width: min(32rem, 100%);
  overflow: hidden;
}

.yk-rp__progression-step span {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.yk-rp__progression-arrow {
  color: var(--yk-teal, #1b7f7a);
  font-size: 1rem;
  flex-shrink: 0;
  margin: 0 0.25rem;
}

/* ---- CTA buttons ---- */

.yk-rp__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.yk-rp__cta-center {
  text-align: center;
  margin-top: 2rem;
}

.yk-rp__btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: filter 0.15s, transform 0.1s;
  cursor: pointer;
}

.yk-rp__btn:hover {
  filter: brightness(1.08);
}

.yk-rp__btn:active {
  transform: scale(0.98);
}

.yk-rp__btn--primary {
  background: var(--yk-teal, #1b7f7a);
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.yk-rp__section--accent .yk-rp__btn--primary {
  background: #fff;
  color: var(--yk-teal, #1b7f7a);
}

.yk-rp__btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.yk-rp__btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.yk-rp__btn--link {
  color: var(--yk-ink-soft, #30303a);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0;
}

.yk-rp__btn--link:hover {
  color: var(--yk-teal, #1b7f7a);
  filter: none;
}

/* ---- Dash list (problem, stall) ---- */

.yk-rp__dash-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.yk-rp__dash-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 0.35rem 0;
}

.yk-rp__dash {
  color: var(--yk-teal, #1b7f7a);
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* Sound familiar — typewriter style */
.yk-rp__section--muted .yk-rp__dash-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.yk-rp__section--muted .yk-rp__dash-list li {
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 1rem 0 1rem 1.5rem;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  position: relative;
}
.yk-rp__section--muted .yk-rp__dash-list li:last-child {
  border-bottom: none;
}
.yk-rp__section--muted .yk-rp__dash-list li::before {
  content: '\00d7';
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--yk-rp-rose, #d86d62);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- Pull quote ---- */

.yk-rp__pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.5;
  border-left: 3px solid var(--yk-rp-teal, #1b7f7a);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 0;
  background: var(--yk-rp-cream, #f7f3ee);
  border-radius: 0.75rem;
  font-style: italic;
}

.yk-rp__pullquote--subtle {
  border-left-color: rgba(27, 127, 122, 0.35);
  font-style: italic;
}

/* ---- Lede + accent text ---- */

.yk-rp__lede {
  font-size: 1.125rem;
  color: var(--yk-ink-soft, #30303a);
  max-width: 38rem;
}

.yk-rp__callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--yk-teal, #1b7f7a);
  background: rgba(27, 127, 122, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.yk-rp__accent-text {
  font-style: italic;
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--yk-rp-teal, #1b7f7a);
  color: var(--yk-rp-teal, #1b7f7a);
}

/* ---- Card grid (USP) ---- */

.yk-rp__card-grid {
  display: grid;
  gap: 1.25rem;
}

.yk-rp__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: box-shadow 0.25s;
}

.yk-rp__card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.yk-rp__card p {
  font-size: 0.9rem;
  color: var(--yk-ink-soft, #30303a);
}

/* Green checkmark cards */
.yk-rp__card--check {
  position: relative;
}
.yk-rp__card-check {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(27, 127, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #1b7f7a;
}
.yk-rp__card-check svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* ---- Steps (how it works) ---- */

.yk-rp__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.yk-rp__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.yk-rp__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--yk-rp-teal, #1b7f7a);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.yk-rp__step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.yk-rp__step p {
  font-size: 0.9rem;
  color: var(--yk-ink-soft, #30303a);
  margin: 0;
}

/* ---- Check list (proof, offer) ---- */

.yk-rp__check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.yk-rp__check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.55;
  padding: 0.3rem 0;
}

.yk-rp__check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--yk-teal, #1b7f7a);
  flex-shrink: 0;
  margin-top: 0.15em;
}

/* ---- FAQ accordion ---- */

.yk-rp__faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.yk-rp__faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.yk-rp__faq-item[data-open="true"] {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.yk-rp__faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--yk-ink, #13121a);
  text-align: left;
  line-height: 1.4;
}

.yk-rp__faq-trigger:hover {
  color: var(--yk-teal, #1b7f7a);
}

.yk-rp__faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.yk-rp__faq-item[data-open="true"] .yk-rp__faq-chevron {
  transform: rotate(180deg);
}

.yk-rp__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 1.25rem;
}

.yk-rp__faq-item[data-open="true"] .yk-rp__faq-answer {
  max-height: 12rem;
  padding: 0 1.25rem 1rem;
}

.yk-rp__faq-answer p {
  font-size: 0.9rem;
  color: var(--yk-ink-soft, #30303a);
  margin: 0;
}

/* ---- Offer extras ---- */

p.yk-rp__risk-reversal {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yk-ink-soft, #30303a);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

/* ---- Final CTA card ---- */

.yk-rp__section--accent h2,
.yk-rp__section--accent p {
  color: #fff;
}

.yk-rp__final-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 34rem;
  margin: 2rem auto 0;
}

.yk-rp__final-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.yk-rp__final-small {
  font-size: 0.8rem !important;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0 !important;
}

/* ---- Reframe section — light card ---- */

.yk-rp__section--reframe {
  background: var(--yk-rp-sand, #ece4da);
}
.yk-rp__section--reframe .yk-rp__container {
  background: var(--yk-rp-cream, #f7f3ee);
  border-radius: 1rem;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(0,0,0,0.04);
}
@media (max-width: 600px) {
  .yk-rp__section--reframe .yk-rp__container {
    padding: 2rem 1.5rem;
  }
}

/* ---- Before/after comparison cards ---- */

.yk-rp__callout-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .yk-rp__callout-compare { grid-template-columns: 1fr; }
}
.yk-rp__compare-card {
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
}
.yk-rp__compare-card--before {
  background: rgba(216, 109, 98, 0.06);
  border: 1px solid rgba(216, 109, 98, 0.15);
}
.yk-rp__compare-card--after {
  background: rgba(27, 127, 122, 0.06);
  border: 1px solid rgba(27, 127, 122, 0.15);
}
.yk-rp__compare-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.yk-rp__compare-card--before .yk-rp__compare-label {
  color: var(--yk-rp-rose, #d86d62);
}
.yk-rp__compare-card--after .yk-rp__compare-label {
  color: var(--yk-rp-teal, #1b7f7a);
}
.yk-rp__compare-char {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.yk-rp__compare-card p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ---- Final CTA — split with kanji ---- */

.yk-rp__final-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 700px) {
  .yk-rp__final-split { grid-template-columns: 1fr; }
  .yk-rp__final-kanji { display: none; }
}
.yk-rp__final-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.yk-rp__final-text h2 {
  margin-bottom: 1rem;
}
.yk-rp__final-text p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.yk-rp__final-kanji {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.yk-rp__final-kanji-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.yk-rp__final-kanji-grid span {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.15);
  cursor: default;
  position: relative;
  transition: background 0.2s;
}
.yk-rp__final-kanji-grid span:hover {
  background: rgba(255,255,255,0.3);
}
.yk-rp__final-kanji-grid span::after {
  content: attr(data-meaning);
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--yk-rp-ink, #13121a);
  color: #fff;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.yk-rp__final-kanji-grid span:hover::after {
  opacity: 1;
}

/* ---- Scroll reveal ---- */

.yk-rp__reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.yk-rp__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .yk-rp__reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ---- Hero image frame ---- */

.yk-rp__hero-img { display: none; }

.yk-rp__hero-frame {
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 20px 60px rgba(15, 20, 25, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.yk-rp__hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

/* Theme-aware hero frame images: light by default, dark when dark mode is active. */
.yk-rp__hero-frame-img--dark {
  display: none;
}

/* ---- Responsive ---- */

@media (min-width: 48rem) {
  .yk-rp__section {
    padding: 6rem 2rem;
  }

  .yk-rp__hero {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .yk-rp__hero .yk-rp__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .yk-rp__hero-img { display: block; }

  .yk-rp__card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Dark mode (system preference) ---- */

@media (prefers-color-scheme: dark) {
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp {
    --yk-ink: #c0caf5;
    --yk-ink-soft: rgba(192, 202, 245, 0.72);
    --yk-sand: #151921;
    --yk-teal: #7aa2f7;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp h1,
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp h2,
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp h3 {
    color: var(--yk-ink);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp h1 em {
    color: var(--yk-teal);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp p,
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__dash-list li,
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__check-list li {
    color: var(--yk-ink-soft);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__callout {
    background: rgba(115, 218, 202, 0.06);
    border-left-color: #73daca;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__pullquote {
    color: var(--yk-ink);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__accent-text {
    color: var(--yk-teal);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__hero-frame {
    background: rgba(21, 25, 33, 0.92);
    border-color: rgba(192, 202, 245, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.52);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__card,
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__faq-item,
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__progression {
    background: rgba(21, 25, 33, 0.92);
    border-color: rgba(192, 202, 245, 0.12);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__faq-trigger {
    color: var(--yk-ink);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__faq-answer p {
    color: var(--yk-ink-soft);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__btn--primary {
    background: #4b6bbf;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__btn--link {
    color: var(--yk-ink-soft);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--accent {
    background: #1a2744;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--accent .yk-rp__btn--primary {
    background: #fff;
    color: #1a2744;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--accent h2,
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--accent p {
    color: #fff;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--accent .yk-rp__final-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__dash {
    color: var(--yk-teal);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__check {
    color: var(--yk-teal);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__step-num {
    background: #4b6bbf;
    color: #fff;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__risk-reversal {
    color: var(--yk-ink-soft);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__hero-frame-img--light {
    display: none;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__hero-frame-img--dark {
    display: block;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--reframe {
    background: var(--yk-sand);
  }
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--reframe .yk-rp__container {
    background: rgba(21, 25, 33, 0.92);
    border-color: rgba(192, 202, 245, 0.12);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__pullquote {
    background: rgba(21, 25, 33, 0.6);
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--muted .yk-rp__dash-list li {
    border-bottom-color: rgba(192, 202, 245, 0.1);
  }
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__section--muted .yk-rp__dash-list li::before {
    color: #f7768e;
  }

  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__compare-card--before {
    background: rgba(247, 118, 142, 0.06);
    border-color: rgba(247, 118, 142, 0.15);
  }
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__compare-card--after {
    background: rgba(122, 162, 247, 0.06);
    border-color: rgba(122, 162, 247, 0.15);
  }
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__compare-card--before .yk-rp__compare-label {
    color: #f7768e;
  }
  html:not(.yk-theme-light):not(.yk-theme-dark) .yk-rp__compare-card--after .yk-rp__compare-label {
    color: var(--yk-teal);
  }
}

/* ---- Dark mode (explicit toggle) ---- */

html.yk-theme-dark .yk-rp {
  --yk-ink: #c0caf5;
  --yk-ink-soft: rgba(192, 202, 245, 0.72);
  --yk-sand: #151921;
  --yk-teal: #7aa2f7;
}

html.yk-theme-dark .yk-rp h1,
html.yk-theme-dark .yk-rp h2,
html.yk-theme-dark .yk-rp h3 {
  color: var(--yk-ink);
}

html.yk-theme-dark .yk-rp h1 em {
  color: var(--yk-teal);
}

html.yk-theme-dark .yk-rp p,
html.yk-theme-dark .yk-rp__dash-list li,
html.yk-theme-dark .yk-rp__check-list li {
  color: var(--yk-ink-soft);
}

html.yk-theme-dark .yk-rp__callout {
  background: rgba(115, 218, 202, 0.06);
  border-left-color: #73daca;
}

html.yk-theme-dark .yk-rp__pullquote {
  color: var(--yk-ink);
  background: rgba(21, 25, 33, 0.6);
}

html.yk-theme-dark .yk-rp__accent-text {
  color: var(--yk-teal);
}

html.yk-theme-dark .yk-rp__hero-frame {
  background: rgba(21, 25, 33, 0.92);
  border-color: rgba(192, 202, 245, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.52);
}

html.yk-theme-dark .yk-rp__card,
html.yk-theme-dark .yk-rp__faq-item,
html.yk-theme-dark .yk-rp__progression {
  background: rgba(21, 25, 33, 0.92);
  border-color: rgba(192, 202, 245, 0.12);
}

html.yk-theme-dark .yk-rp__faq-trigger {
  color: var(--yk-ink);
}

html.yk-theme-dark .yk-rp__faq-answer p {
  color: var(--yk-ink-soft);
}

html.yk-theme-dark .yk-rp__btn--primary {
  background: #4b6bbf;
}

html.yk-theme-dark .yk-rp__btn--link {
  color: var(--yk-ink-soft);
}

html.yk-theme-dark .yk-rp__section--accent {
  background: #1a2744;
}

html.yk-theme-dark .yk-rp__section--accent .yk-rp__btn--primary {
  background: #fff;
  color: #1a2744;
}

html.yk-theme-dark .yk-rp__section--accent h2,
html.yk-theme-dark .yk-rp__section--accent p {
  color: #fff;
}

html.yk-theme-dark .yk-rp__section--accent .yk-rp__final-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

html.yk-theme-dark .yk-rp__dash {
  color: var(--yk-teal);
}

html.yk-theme-dark .yk-rp__check {
  color: var(--yk-teal);
}

html.yk-theme-dark .yk-rp__step-num {
  background: #4b6bbf;
  color: #fff;
}

html.yk-theme-dark .yk-rp__risk-reversal {
  color: var(--yk-ink-soft);
}

html.yk-theme-dark .yk-rp__hero-frame-img--light {
  display: none;
}

html.yk-theme-dark .yk-rp__hero-frame-img--dark {
  display: block;
}

html.yk-theme-dark .yk-rp__section--reframe {
  background: var(--yk-sand);
}
html.yk-theme-dark .yk-rp__section--reframe .yk-rp__container {
  background: rgba(21, 25, 33, 0.92);
  border-color: rgba(192, 202, 245, 0.12);
}

html.yk-theme-dark .yk-rp__section--muted .yk-rp__dash-list li {
  border-bottom-color: rgba(192, 202, 245, 0.1);
}
html.yk-theme-dark .yk-rp__section--muted .yk-rp__dash-list li::before {
  color: #f7768e;
}

html.yk-theme-dark .yk-rp__compare-card--before {
  background: rgba(247, 118, 142, 0.06);
  border-color: rgba(247, 118, 142, 0.15);
}
html.yk-theme-dark .yk-rp__compare-card--after {
  background: rgba(122, 162, 247, 0.06);
  border-color: rgba(122, 162, 247, 0.15);
}
html.yk-theme-dark .yk-rp__compare-card--before .yk-rp__compare-label {
  color: #f7768e;
}
html.yk-theme-dark .yk-rp__compare-card--after .yk-rp__compare-label {
  color: var(--yk-teal);
}

/* Explicit light override — force light images even when system prefers dark. */
html.yk-theme-light .yk-rp__hero-frame-img--light {
  display: block;
}

html.yk-theme-light .yk-rp__hero-frame-img--dark {
  display: none;
}
