/* ============================================================
   GLAGOL MARKETING — Landing styles
   Ported from design_handoff_landing_l1 (Atelier theme).
   Bilingual TR (/) + EN (/en/), shared sheet.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---------- Accessibility primitives ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  background: #191714;
  color: #f7f3e9;
  border-radius: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid #d52b1e;
  outline-offset: 2px;
}

/* Focus-visible — keyboard nav only, not mouse clicks */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible,
details:focus-visible {
  outline: 2px solid #d52b1e;
  outline-offset: 3px;
  border-radius: 4px;
}
/* Buttons already have rounded shape — match it */
.btn:focus-visible { outline-offset: 3px; border-radius: 999px; }

/* Sticky-nav anchor jumps: keep section heads clear of the nav */
:target,
section[id],
article[id] {
  scroll-margin-top: 88px;
}

/* ---------- Theme tokens (Atelier) ---------- */
.theme-atelier {
  /* shared structural */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* surfaces */
  --bg:           #f1ede3;
  --bg-elev:      #f7f3e9;
  --bg-card:      #faf7ef;
  --bg-soft:      #e6e0d1;

  /* ink */
  --ink:          #191714;
  --ink-2:        #3b3833;
  --ink-3:        #6e6a61;
  --ink-4:        #9b9588;

  /* lines */
  --line:         #d8d2c2;
  --line-strong:  #c6bfab;

  /* accent — coral */
  --accent:       #d52b1e;
  --accent-soft:  #f8dcd7;
  --accent-deep:  #9e1a10;

  /* secondary accent — Russian-flag blue (informational, pairs with the
     red primary; mirrors the app's --at-blue). */
  --blue:         #0039a6;
  --blue-soft:    #dbe3f6;
  --blue-deep:    #002a7a;

  /* other accents */
  --gold:         #b88a19;
  --leaf:         #2f6f56;
  --berry:        var(--blue); /* legacy alias — Lab chapter accent */

  /* shadow */
  --shadow-card: 0 1px 2px rgba(31,28,23,0.04), 0 8px 24px rgba(31,28,23,0.06);
  --shadow-pop:  0 2px 4px rgba(31,28,23,0.06), 0 18px 40px rgba(31,28,23,0.10);

  /* font */
  --font-serif: 'Unbounded', 'Rubik', sans-serif;
  --font-sans:  'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'Rubik', -apple-system, sans-serif;

  /* layout */
  --max-w: 1180px;
  --gutter: clamp(20px, 4vw, 56px);

  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

/* ---------- Type primitives ---------- */
.serif {
  font-family: var(--font-serif);
  font-feature-settings: 'ss01', 'liga';
  letter-spacing: -0.01em;
}
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
}
.mono { font-family: var(--font-mono); }

.label-cap {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.accent { color: var(--accent); }

/* ---------- Card primitive ---------- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

/* ---------- Button primitive ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease-spring), background 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-accent {
  background: var(--accent);
  color: var(--bg-elev);
  box-shadow: 0 8px 20px rgba(201,83,61,0.25);
}
.btn-accent:hover { background: var(--accent-deep); }
.btn-glow { box-shadow: 0 10px 28px rgba(201,83,61,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--line-strong);
  font-weight: 500;
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-accent-sm {
  background: var(--accent); color: var(--bg-elev);
  border-color: var(--accent);
  padding: 9px 18px; font-size: 13px; font-weight: 600;
}
.btn-accent-sm:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ghost-sm {
  background: transparent; color: var(--ink-2);
  border-color: var(--line-strong);
  padding: 9px 16px; font-size: 13px; font-weight: 500;
}
.btn-ghost-sm:hover { background: var(--bg-soft); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}
.nav-logo {
  width: 42px; height: 42px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-name { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.nav-brand-tag { font-size: 9px; margin-top: 2px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.lang-toggle a { padding: 2px 4px; transition: color 0.18s; }
.lang-toggle a:hover { color: var(--accent); }
.lang-toggle .lang-active { color: var(--ink); }
.lang-sep { color: var(--ink-4); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .nav-brand-tag { display: none; }
  .btn-ghost-sm { display: none; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { padding: 80px var(--gutter); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px var(--gutter) 80px;
}
.hero-watermark {
  position: absolute;
  right: -40px;
  top: -80px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(280px, 38vw, 500px);
  line-height: 1;
  color: rgba(201, 83, 61, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-inner {
  max-width: 920px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.hero-eyebrow-i {
  font-size: 12px;
  color: var(--ink-3);
}
.hero-eyebrow-text {
  color: var(--blue);
  letter-spacing: 0.14em;
}

.hero-title {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 880px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.hero-lede {
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
}

.hero-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-3);
}

/* ============================================================
   2. CHAPTERS — the three rooms
   ============================================================ */
.chapters {
  border-top: 1px solid var(--line);
  padding: 60px var(--gutter);
}
.chapters-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.chapters-foot {
  font-size: 16px;
  color: var(--ink-3);
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.chapter-card {
  padding: 32px 30px;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.chapter-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-pop);
}
.chapter-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.chapter-num {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.chapter-num[data-color="coral"] { color: var(--accent); }
.chapter-num[data-color="gold"]  { color: var(--gold); }
.chapter-num[data-color="leaf"]  { color: var(--leaf); }
.chapter-num[data-color="berry"] { color: var(--berry); }
.chapter-tag {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.chapter-ru {
  margin-top: 18px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.chapter-en {
  font-size: 16px;
  color: var(--ink-3);
}
.chapter-body {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}
.chapter-enter {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
}
.chapter-enter:hover { color: var(--accent-deep); }

@media (max-width: 600px) {
  .chapter-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   3. IN-CONTEXT PREVIEW
   ============================================================ */
.preview {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter);
}
.preview-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.preview-copy .section-h2 { margin: 10px 0 16px; font-size: clamp(28px, 4vw, 40px); }
.preview-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}
.preview-bullets {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preview-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.bullet-mark {
  font-size: 18px;
  line-height: 1.4;
}

/* Sample lesson card */
.sample-card {
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.sample-watermark {
  position: absolute;
  right: -8px;
  bottom: -36px;
  font-size: 220px;
  line-height: 1;
  color: rgba(201, 83, 61, 0.06);
  pointer-events: none;
}
.sample-sentence {
  margin-top: 18px;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.sample-highlight {
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue);
}
.sample-trans {
  margin-top: 8px;
  font-size: 17px;
  color: var(--ink-3);
  position: relative;
  z-index: 1;
}
.sample-lit { color: var(--ink-4); }
.sample-why {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--blue-soft);
  border: 1px solid rgba(0, 57, 166, 0.18);
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.sample-why-title { color: var(--blue-deep); margin-bottom: 6px; }
.sample-why p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .preview-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   4. STATS
   ============================================================ */
.stats {
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter);
}
.stats-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.stats-head .section-h2 { margin-top: 10px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.stat-cell {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-plus { color: var(--accent); font-weight: 500; }
.stat-sep  { color: var(--accent); margin: 0 4px; font-style: italic; }
.stat-label {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-sans);
}

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   5. CLOSING CTA (dark band)
   ============================================================ */
.closing {
  background: var(--ink);
  color: var(--bg-elev);
  position: relative;
  overflow: hidden;
  padding: 80px var(--gutter);
}
.closing-watermark {
  position: absolute;
  left: -50px;
  top: -80px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(240px, 32vw, 420px);
  line-height: 1;
  color: rgba(201, 83, 61, 0.14);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow { color: rgba(245, 239, 228, 0.55); }
.closing-title {
  margin: 12px 0 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.closing-lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.78);
  max-width: 580px;
  margin: 0 auto;
}
.closing-cta-row {
  margin-top: 32px;
  display: inline-flex;
  gap: 12px;
}

/* ============================================================
   6. FOOTER (dark 5-col)
   ============================================================ */
.foot {
  padding: 56px var(--gutter) 40px;
  background: var(--ink);
  color: rgba(245, 239, 228, 0.7);
  border-top: 1px solid rgba(245, 239, 228, 0.08);
}
.foot-inner { max-width: var(--max-w); margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.foot-brand-row { display: flex; align-items: center; gap: 12px; }
.foot-logo { width: 36px; height: 36px; border-radius: 8px; }
.foot-brand-name { font-size: 20px; font-weight: 500; color: var(--bg-elev); }
.foot-tagline {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
}
.foot-stamp {
  margin-top: 18px;
  font-size: 11px;
  color: rgba(245, 239, 228, 0.45);
  letter-spacing: 0.08em;
}

.foot-col-title {
  color: rgba(245, 239, 228, 0.55);
  margin-bottom: 14px;
}
.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col li a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245, 239, 228, 0.78);
}
.foot-col li a:hover { color: var(--bg-elev); }
/* Henüz yayında olmayan mağaza — link değil, soluk bilgi metni. */
.foot-soon {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245, 239, 228, 0.42);
  font-style: italic;
}

.foot-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 228, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 239, 228, 0.45);
}
.foot-bottom-links { display: flex; gap: 18px; }
.foot-bottom-links a:hover { color: var(--bg-elev); }

@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter);
}
.faq .stats-head { margin-bottom: 40px; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-q {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color 0.2s var(--ease-out);
}
.faq-q:hover { color: var(--accent); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-3);
  transition: transform 0.25s var(--ease-spring), background 0.2s, color 0.2s, border-color 0.2s;
}
.faq-item[open] .faq-q::after {
  content: "−";
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq-a {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 64ch;
  font-family: var(--font-serif);
  font-style: italic;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   OKUMA HEDEFİ — etkileşimli okuma bölümü (marketing/reading.js)
   ============================================================ */
.reading .section-inner { text-align: center; }
/* JS yüklenene kadar (defer) fallback metni bulanık kalsın — açılış "0"
   durumuyla tutarlı; metin SEO için DOM'da okunur şekilde durur. */
.reading:not(.ok-ready) .ok-passage,
.reading:not(.ok-ready) .ok-trans { filter: blur(5px); }
.ok-lede { max-width: 46ch; margin: 10px auto 26px; color: var(--ink-3); font-size: 1.02rem; }
.ok-lede b { color: var(--accent); font-style: normal; font-weight: 600; }
.ok-grid { max-width: 640px; margin-inline: auto; text-align: left; }

.ok-card { padding: 22px 20px; }
.ok-caphdr { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.ok-pc { color: var(--accent); }
.ok-passage { font-size: 1.28rem; line-height: 1.75; color: var(--ink); margin: 0; }
.ok-tok { transition: filter 0.3s ease, color 0.3s ease, opacity 0.3s ease; color: var(--ink-4); filter: blur(4.5px); opacity: 0.85; }
.ok-tok.open { filter: none; opacity: 1; color: var(--ink); cursor: help; border-bottom: 1.5px dotted transparent; }
.ok-tok.open:hover { border-bottom-color: var(--gold); }
.ok-tok.sel { color: var(--accent); border-bottom-color: var(--accent); }
.ok-attrib { font-size: 0.86rem; color: var(--ink-3); margin: 14px 0 0; text-align: right; }
.ok-tdiv { height: 1px; background: var(--line); margin: 14px 0 12px; }
.ok-tlabel { display: block; margin-bottom: 7px; }
.ok-trans { font-size: 1rem; line-height: 1.65; color: var(--ink-2); margin: 0; }
.ok-ttok { transition: filter 0.35s ease, opacity 0.35s ease, color 0.35s ease; filter: blur(4px); opacity: 0.8; color: var(--ink-4); }
.ok-ttok.open { filter: none; opacity: 1; color: var(--ink-2); }
.ok-meaning { min-height: 34px; margin-top: 12px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; font-size: 0.95rem; }
.ok-meaning .ok-ru { font-family: var(--font-serif); font-weight: 600; color: var(--accent); }
.ok-meaning .ok-arw { color: var(--ink-4); }
.ok-hint { color: var(--ink-3); font-size: 0.86rem; }

.ok-slider-wrap { max-width: 520px; margin: 26px auto 0; }
.reading input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 10px; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--gold)); outline: none; border: 1px solid var(--line-strong); cursor: pointer; }
.reading input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 2px 6px rgba(25,23,20,0.28); cursor: pointer; }
.reading input[type="range"]::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); cursor: pointer; }
.ok-ticks { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.78rem; color: var(--ink-4); font-weight: 600; }
