/* ============================================================
   piotrgerus.pl — design system v2 (REDESIGN.md)
   Editorial index language: hairlines, big display type,
   asymmetric 12-col compositions, mono micro-labels.
   No cards, no marquee, no custom cursor.
   ============================================================ */

/* ---------- Fonts (self-hosted, latin + latin-ext) ---------- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-v22-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-v22-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0A0A;
  --bg-elev: #141414;
  --bg-elev-2: #1C1C1C;
  --text: #EDEDEA;
  --text-dim: #A3A39D;
  --text-faint: #85857F;
  --accent: #E3FC71;
  --accent-ink: #0A0A0A;
  --border: #242424;
  --radius: 12px;
  --radius-sm: 8px;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', monospace;

  --padx: clamp(1.25rem, 4vw, 2.5rem);
  --fs-hero: clamp(3rem, 6.5vw, 5.5rem);
  /* vw ceiling: NBSP-bound pairs ("którymi pracowałem.") stay inside
     ~320px viewports instead of mid-word breaking */
  --fs-statement: min(clamp(2rem, 4.5vw, 3.5rem), 8.9vw);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* scroll-padding-top keeps a focused element clear of the fixed/sticky header
   when the browser scrolls it into view during Tab navigation (2.4.7). */
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
/* Anchor deep-links: jump instantly on page load so the browser doesn't
   smooth-scroll through sections whose reveals haven't fired yet. */
html.hash-jump { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 1rem;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-statement); }
h3 { font-size: 1.25rem; font-weight: 500; }
p { margin: 0 0 1rem; }
ul, ol, dl, dd, dt, figure, blockquote { margin: 0; padding: 0; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}
a:hover { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: var(--text-dim);
  max-width: 42em;
}
.muted { color: var(--text-dim); }

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  padding: 0.6rem 1.1rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-weight: 600;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; color: var(--accent-ink); }

/* ---------- Link language ----------
   Text links: 1px accent underline slides in from the left.
   Arrow links: the arrow glyph translates 4px on hover. */
.tlink {
  padding-bottom: 2px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  transition: background-size 0.3s var(--ease-out), color 0.2s var(--ease-out);
}
.tlink:hover { background-size: 100% 1px; color: var(--text); }

.alink {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.alink .arr {
  display: inline-block;
  transition: transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.alink:hover { color: var(--text); }
.alink:hover .arr { transform: translateX(4px); color: var(--accent); }
.alink:hover .arr-down, .hero-scroll-link:hover .arr { transform: translateY(4px); }
/* Hero secondary CTA is an action, not metadata — one tier brighter than
   the faint status row below it, arrow pre-tinted accent. */
.hero-scroll-link { color: var(--text); }
.hero-scroll-link .arr { color: var(--accent); }

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--padx);
}
.container-narrow { max-width: 800px; }
.section { padding-block: clamp(4rem, 10vw, 7.5rem); } /* legacy sections (404, stubs) */

/* Section shell: full-width hairline top rule + generous air.
   Three padding tiers break the metronomic scroll rhythm:
   compact (~96px: quiz, blog), default (~128px), generous (~176px:
   AI manifesto, opinie). */
.sec {
  border-top: 1px solid var(--border);
  padding-block: clamp(4rem, 9vw, 8rem);
}
.sec-compact { padding-block: clamp(3.25rem, 7vw, 6rem); }
.sec-generous { padding-block: clamp(5.5rem, 12.5vw, 11rem); }
.sec-first { border-top: 0; padding-top: clamp(2.5rem, 6vw, 4.5rem); }

/* Section header pattern: mono index row, then statement + offset support */
.sec-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin: 0 0 clamp(1.75rem, 4vw, 2.75rem);
}
.sec-index-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sec-head-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  align-items: end;
}
.statement {
  grid-column: 1 / 9;
  font-size: var(--fs-statement);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 16ch;
  text-wrap: balance;
  margin: 0;
}
/* Page-level h1 statements: no 16ch cap — their NBSP-bound closing pair
   ("Odpowiadam konkretnie.") must fit the 8-col box on one line. */
.statement-h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.04;
  max-width: none;
}
/* Contact h1 carries the widest bound pair — vw ceiling keeps it on one
   line down to 320px instead of forcing a mid-word emergency break. */
.sec-support {
  grid-column: 9 / 13;
  color: var(--text-dim);
  margin: 0;
  padding-bottom: 0.35em; /* optically aligns with the statement baseline */
}
@media (max-width: 900px) {
  .statement, .sec-support { grid-column: 1 / -1; }
  .sec-support { padding-bottom: 0; max-width: 44ch; }
}

.eyebrow { /* legacy label (404, stubs) */
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}
.eyebrow a { color: inherit; }
.eyebrow a:hover { color: var(--accent); }

/* ---------- Buttons (pills) ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  will-change: transform;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { background: #eeff9a; color: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.row-arrow {
  color: var(--text-faint);
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-list a:hover { color: var(--accent); }
.nav-short { display: none; }
.nav-full { display: inline; }
.nav-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border: 0;
  border-radius: 0;
}
.nav-lang a:hover { color: var(--accent); }
.language-flag {
  display: block;
  width: 1.5rem;
  height: 1rem;
  border-radius: 0;
  box-shadow: none;
}

/* Mobile header: nav wraps to a second, always-visible row of mono links
   + the EN pill. No burger, no overlay — navigation works without JS. */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0;
    min-height: 0;
    padding-block: 0.8rem 0.85rem;
  }
  .site-nav { flex-basis: 100%; min-width: 0; }
  .nav-list {
    width: 100%;
    /* Tighter than desktop: four labels plus the EN pill have to survive a
       320px phone without pushing the document sideways. */
    gap: 1.05rem;
    margin-top: 0.55rem;
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
  .nav-list a {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    /* ~44px tap target; negative margins keep the bar height unchanged */
    padding-block: 0.8rem;
    margin-block: -0.45rem;
  }
  /* One spelling visible at a time, so the accessible name always matches. */
  .nav-full { display: none; }
  .nav-short { display: inline; }

  /* Language flag stays inline after the links; ::before extends the hit area
     to ~44px without adding a visible wrapper. */
  .nav-lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    position: relative;
  }
  .nav-lang .language-flag { width: 1.5rem; height: 1rem; }
  .nav-lang a::before {
    content: "";
    position: absolute;
    inset: -0.7rem -0.4rem;
  }
}

/* ---------- Blog listing (index page) ---------- */
.post-list { list-style: none; }
.post-list-item { border-top: 1px solid var(--border); }
/* No closing hairline — the footer's top rule terminates the list */
.post-list-link {
  position: relative;
  display: block;
  padding: 2rem clamp(0rem, 2vw, 1rem);
  transition: background 0.25s var(--ease-out);
}
.post-list-link:hover { background: var(--bg-elev); color: var(--text); }
.post-list-link:hover .row-arrow { color: var(--accent); transform: translateY(-50%) translateX(6px); }
/* Arrow vertically centered on the row — same anatomy as the home journal rows */
.post-list-link .row-arrow { position: absolute; top: 50%; right: 1rem; transform: translateY(-50%); }
.post-list-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}
.post-list-title { font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 500; margin-bottom: 0.5rem; }
.post-list-desc { color: var(--text-dim); max-width: 46em; margin-bottom: 0.75rem; }
.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}
.link-more {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.link-more:hover { color: var(--accent); }

/* ---------- Post / prose ---------- */
/* Featured image on the post page (self-hosted, grayscale to match the site) */
.post-hero { margin: 0 0 clamp(2rem, 5vw, 3rem); }
.post-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
/* Blog-index rows with a thumbnail: image | body | arrow. Grayscale by
   default, colour returns on hover (subtle, in-style delight). */
.post-list-link--media {
  display: grid;
  grid-template-columns: clamp(150px, 26%, 260px) 1fr auto;
  gap: clamp(1.1rem, 3vw, 2.25rem);
  align-items: center;
}
.post-list-media { min-width: 0; }
.post-list-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: grayscale(1);
  transition: filter 0.35s var(--ease-out);
}
.post-list-link--media:hover .post-list-media img { filter: grayscale(0); }
.post-list-body { min-width: 0; }
.post-list-link--media .row-arrow { position: static; top: auto; transform: none; }
.post-list-link--media:hover .row-arrow { transform: translateX(6px); }
@media (max-width: 640px) {
  .post-list-link--media { grid-template-columns: 1fr; }
  .post-list-link--media .row-arrow { display: none; }
}

.post-header { margin-bottom: 2.5rem; }
.post-header h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.03em; }
.post-header .tag-list { margin-top: 1rem; }
.prose { color: var(--text-dim); }
.prose h2, .prose h3 { color: var(--text); margin-top: 2.5rem; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.prose h3 { font-size: 1.2rem; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(227, 252, 113, 0.3); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose strong { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }
/* List markers speak the site's mono index language, not browser defaults */
.prose li::marker {
  font-family: var(--font-mono);
  font-size: 0.8em;
  color: var(--text-faint);
}
.prose blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin-block: 1.5rem;
  color: var(--text);
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1em 0.35em;
}
.prose pre {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  overflow-x: auto;
  margin-block: 1.5rem;
}
.prose pre code { background: none; border: 0; padding: 0; }
.prose img { border-radius: var(--radius-sm); margin-block: 1.5rem; }
.post-back { margin-top: 3rem; }

/* ---------- Page hero (404) ---------- */
.page-hero h1 { font-size: clamp(2.25rem, 6vw, 4rem); letter-spacing: -0.03em; }
.page-hero .hero-ctas { margin-top: 2.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 7vw, 4.5rem);
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 2.5rem;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  list-style: none;
}
.footer-nav a,
.footer-navlink {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  /* ~44px tap target; negative margins keep the visual rhythm unchanged */
  padding-block: 0.8rem;
  margin-block: -0.8rem;
}
.footer-nav a { text-transform: uppercase; }
/* "Manage cookies" is a <button> (it opens the banner, not a page) — reset it
   to read exactly like the sibling footer links. */
.footer-navlink {
  background: none;
  border: 0;
  padding-inline: 0;
  cursor: pointer;
  text-transform: uppercase;
}
.footer-nav a:hover,
.footer-navlink:hover { color: var(--accent); }
.footer-side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-lang {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.footer-lang:hover { border-color: var(--accent); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}
.footer-top {
  display: inline-block;
  font-size: 1.05rem;
  color: var(--text-dim);
  transition: transform 0.25s var(--ease-out), color 0.2s var(--ease-out);
  /* When .footer-side wraps on mobile, the arrow right-aligns on its row
     instead of dangling bottom-left; no effect on the one-line desktop row. */
  margin-left: auto;
  /* ~44px tap target; negative margins keep the visual rhythm unchanged */
  padding: 0.75rem 0.7rem;
  margin-block: -0.75rem;
  margin-right: -0.7rem;
}
.footer-top:hover { color: var(--accent); transform: translateY(-3px); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll reveals (JS adds .js on <html>) ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Honeypot: submitted by bots that ignore CSS, absent from the visual/a11y UI. */
.hp-field { display: none !important; }

/* ---------- Mobile hardening (<768px) ---------- */
@media (max-width: 768px) {
  body { overflow-wrap: break-word; }
  .sec-head-grid { grid-template-columns: minmax(0, 1fr); }
  .sec-head-grid > * {
    grid-column: auto;
    min-width: 0;
    max-width: 100%;
  }
  .statement, .sec-support { max-width: none; }
}

/* ============================================================
   ENRICH v3 — multimedia layer
   All motion transform/opacity only; everything gated by
   prefers-reduced-motion (see the kill switch at the bottom).
   ============================================================ */

/* Visually hidden — static copies kept in the DOM for assistive tech */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Line masks for heading reveals ----------
   JS splits headings into .lm (clip) > .ln (slides) pairs; the heading keeps
   its full text in aria-label, spans are aria-hidden. No-JS/reduced: static. */
.lm { display: block; overflow: hidden; }
.ln { display: block; }

@media (prefers-reduced-motion: no-preference) {
  html.js .is-split .ln {
    transform: translateY(110%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); /* expo-out */
    transition-delay: calc(var(--i, 0) * 90ms);
  }
  html.js .is-split.lines-in .ln { transform: none; }
}

/* ---------- 6. Cross-document view transitions (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  .site-header { view-transition-name: site-header; }
  .grain { view-transition-name: grain; }
  ::view-transition-old(root) { animation: vt-leave 0.2s ease both; }
  ::view-transition-new(root) { animation: vt-enter 0.25s var(--ease-out) both; }
  /* Header + grain must not flash between pages — no animation, instant swap */
  ::view-transition-old(site-header),
  ::view-transition-new(site-header),
  ::view-transition-old(grain),
  ::view-transition-new(grain) { animation: none; }
}
@keyframes vt-leave { to { opacity: 0; } }
@keyframes vt-enter { from { opacity: 0; transform: translateY(8px); } }

/* ---------- 10. Blog-post reading progress hairline ---------- */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 160;
  background: var(--accent);
  transform: scaleX(0);       /* invisible without JS */
  transform-origin: left;
  pointer-events: none;
}

/* ---------- Reduced motion: kill everything ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    /* Delays must die too, so delayed transitions cannot pop in later. */
    transition-delay: 0s !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .read-progress { display: none; }
  html.js .is-split .ln { transform: none; }
}
