/* ============================================================
   DuelChart — οδηγός για δωρεάν παιχνίδια σκέψης στο Google Play
   Λευκό φόντο, μαύρο κείμενο, μία μοβ πινελιά. Χωρίς διαβαθμίσεις.
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --paper-2: #F9F9FB;
  --paper-3: #F1F1F6;
  --ink: #0C0C0F;
  --ink-2: #33333D;
  --mute: #5C5C68;
  --accent: #6D28D9;
  --accent-dark: #58209F;
  --accent-soft: #F1ECFC;
  --accent-line: #D9CCF7;
  --line: #E7E7EE;
  --line-2: #D6D6E0;

  --face: "Roboto Slab", Georgia, "Times New Roman", serif;
  --text: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --width: 1160px;
  --side: clamp(1.1rem, 4vw, 2.6rem);

  --r-s: 6px;
  --r-m: 12px;
  --r-l: 20px;

  --hat: 66px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shade: 0 1px 2px rgba(12, 12, 15, 0.04), 0 14px 36px rgba(12, 12, 15, 0.06);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--face); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

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

.leap {
  position: absolute;
  left: 12px;
  top: -70px;
  z-index: 300;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-s);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.leap:focus { top: 12px; text-decoration: none; }

.husk {
  width: 100%;
  max-width: var(--width);
  margin-inline: auto;
  padding-inline: var(--side);
}

/* ---------- Ετικέτες ---------- */
.sigil {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.sigil::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
  flex: none;
}

/* ---------- Κουμπιά ---------- */
.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.9em 1.45em;
  border-radius: var(--r-s);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
    color 0.18s var(--ease), transform 0.18s var(--ease);
}
.act:hover { text-decoration: none; }
.act svg { width: 1.05em; height: 1.05em; flex: none; }

.act--solid { background: var(--accent); color: #fff; }
.act--solid:hover { background: var(--accent-dark); }

.act--line { background: var(--paper); color: var(--ink); border-color: var(--line-2); }
.act--line:hover { border-color: var(--accent); color: var(--accent); }

.act--wide { width: 100%; }

/* ---------- 1. Hatline ---------- */
.hatline {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hatline__inner {
  height: var(--hat);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.hatline__sign {
  font-family: var(--face);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.hatline__sign:hover { text-decoration: none; }
.hatline__tone { color: var(--accent); }

.hatline__menu { display: flex; align-items: center; gap: 0.5rem; }
.hatline__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hatline__link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.94rem;
  border-radius: var(--r-s);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.hatline__link:hover { color: var(--accent); background: var(--paper-2); text-decoration: none; }
.hatline__cta { margin-left: 0.4rem; padding: 0.7em 1.1em; }

.hatline__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  border-radius: var(--r-s);
  cursor: pointer;
  padding: 0;
  color: var(--ink);
}
.hatline__toggle svg { width: 22px; height: 22px; margin: auto; }
.hatline__shut { display: none; }
.hatline__toggle.is-open .hatline__open { display: none; }
.hatline__toggle.is-open .hatline__shut { display: block; }

/* ---------- 2. Intro ---------- */
.intro { padding-top: clamp(2.8rem, 7vw, 5.5rem); padding-bottom: clamp(2.4rem, 6vw, 4rem); }
.intro__title {
  margin-top: 1.4rem;
  font-weight: 800;
  font-size: clamp(2.5rem, 7.6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 17ch;
}
.intro__tone { color: var(--accent); }
.intro__lead {
  margin-top: 1.6rem;
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: var(--mute);
}
.intro__acts { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.intro__facts {
  margin-top: 2.6rem;
  padding-top: 1.7rem;
  border-top: 2px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 5vw, 3.4rem);
}
.intro__num {
  font-family: var(--face);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.intro__cap {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Σκελετός ενοτήτων ---------- */
.belt { padding-block: clamp(3rem, 7vw, 5.2rem); }
.belt--tint { background: var(--paper-2); border-block: 1px solid var(--line); }
.belt--edge { border-top: 1px solid var(--line); }
.belt__head { max-width: 64ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.belt__title {
  margin-top: 1rem;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.belt__lead { margin-top: 1rem; color: var(--mute); max-width: 58ch; }

/* ---------- 3. Arena + λωρίδα ---------- */
.arena__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.arena__hint {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--mute);
}
.arena__nudges { display: flex; gap: 0.5rem; flex: none; }
.arena__nudge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease), opacity 0.18s var(--ease);
}
.arena__nudge svg { width: 20px; height: 20px; }
.arena__nudge:hover { border-color: var(--accent); color: var(--accent); }
.arena__nudge[disabled] { opacity: 0.35; cursor: default; border-color: var(--line); color: var(--mute); }

.lane {
  display: flex;
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 1.2rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.lane:focus-visible { outline: 3px solid var(--accent); outline-offset: 6px; }
.lane__cell {
  flex: 0 0 calc((100% - 2 * clamp(0.8rem, 1.8vw, 1.2rem)) / 3);
  scroll-snap-align: start;
  display: flex;
}

.poster {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.poster:hover { border-color: var(--line-2); box-shadow: var(--shade); }
.poster__shot {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--paper-3);
  border-bottom: 1px solid var(--line);
}
.poster__body {
  padding: clamp(1.1rem, 2vw, 1.4rem);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.poster__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex: none;
  border: 3px solid var(--paper);
  background: var(--paper);
  box-shadow: 0 2px 10px rgba(12, 12, 15, 0.14);
  margin-top: -3.5rem;
  position: relative;
}
.poster__name { margin-top: 0.8rem; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.poster__studio { font-size: 0.82rem; color: var(--mute); margin-top: 0.15rem; }
.poster__meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.poster__text { margin-top: 0.9rem; color: var(--mute); font-size: 0.93rem; flex: 1 1 auto; }
.poster__link { margin-top: 1.2rem; align-self: flex-start; }

.stamp {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  padding: 0.4em 0.7em;
  border-radius: 999px;
}

/* ---------- Αστέρια ---------- */
.ranknum { display: inline-flex; align-items: center; gap: 0.4rem; }
.ranknum__row { position: relative; display: inline-block; line-height: 0; }
.ranknum__set { display: flex; gap: 2px; }
.ranknum__set svg { width: 14px; height: 14px; }
.ranknum__base { color: var(--line-2); }
.ranknum__fill {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  overflow: hidden;
  white-space: nowrap;
}
.ranknum__val { font-size: 0.84rem; font-weight: 600; }
.ranknum__count { font-size: 0.78rem; color: var(--mute); }

/* ---------- 4. Lens ---------- */
.lens__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.9rem, 2vw, 1.4rem); }
.lens__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
}
.lens__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-s);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.lens__icon svg { width: 22px; height: 22px; }
.lens__title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.lens__text { margin-top: 0.6rem; color: var(--mute); font-size: 0.95rem; }

/* ---------- 5. Ladder ---------- */
.ladder__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 2rem); }
.ladder__step { border-top: 2px solid var(--ink); padding-top: 1.3rem; }
.ladder__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--face);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ladder__title { margin-top: 1rem; font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.ladder__text { margin-top: 0.6rem; color: var(--mute); font-size: 0.95rem; }

/* ---------- 6. Signup ---------- */
.subscribe__panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(1.6rem, 3.6vw, 2.8rem);
  box-shadow: var(--shade);
}
.subscribe__title {
  margin-top: 1rem;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.subscribe__text { margin-top: 1rem; color: var(--mute); }
.subscribe__note {
  margin-top: 1.2rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-s);
  background: var(--paper-2);
  color: var(--ink-2);
  font-size: 0.86rem;
}
.subscribe__form { display: grid; gap: 0.9rem; }
.subscribe__box { display: flex; flex-direction: column; gap: 0.4rem; }
.subscribe__label { font-size: 0.83rem; font-weight: 600; }
.subscribe__input {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.82em 0.95em;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-s);
  background: var(--paper-2);
  color: var(--ink);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.subscribe__input::placeholder { color: #9797A2; }
.subscribe__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.subscribe__agree { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: var(--mute); }
.subscribe__agree input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.subscribe__agree a { text-decoration: underline; }
.subscribe__done {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-dark);
  padding: 0.9em 1.1em;
  border-radius: var(--r-s);
  font-weight: 600;
  font-size: 0.94rem;
}
.subscribe__done.is-visible { display: flex; }
.subscribe__done svg { width: 20px; height: 20px; flex: none; }

/* ---------- 7. Ask (FAQ) ---------- */
.qbox__list { width: 100%; display: grid; gap: 0.7rem; }
.qbox__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; }
.qbox__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: start;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-family: var(--face);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.qbox__sign { width: 20px; height: 20px; color: var(--accent); flex: none; transition: transform 0.25s var(--ease); }
.qbox__item.is-open .qbox__sign { transform: rotate(45deg); }
.qbox__a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.qbox__inner { padding: 0 1.3rem 1.25rem; color: var(--mute); font-size: 0.96rem; }
.qbox__inner a { text-decoration: underline; }

/* ---------- 8. Saying ---------- */
.saying__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 2vw, 1.3rem); }
.saying__item {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
}
.saying__quote {
  font-family: var(--face);
  font-weight: 600;
  font-size: 1.06rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  flex: 1 1 auto;
}
.saying__foot { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.saying__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--face);
  font-weight: 800;
  font-size: 0.88rem;
  flex: none;
}
.saying__name { font-weight: 600; font-size: 0.95rem; }
.saying__role { font-size: 0.82rem; color: var(--mute); }

/* ---------- 9. Kinds ---------- */
.kinds__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 1.8vw, 1.2rem); }
.kinds__tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
}
.kinds__icon { color: var(--accent); margin-bottom: 0.9rem; }
.kinds__icon svg { width: 26px; height: 26px; }
.kinds__name { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.kinds__text { margin-top: 0.5rem; color: var(--mute); font-size: 0.93rem; }

/* ---------- 10. Ledger ---------- */
.ledger__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
.ledger__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.ledger__li { display: flex; gap: 0.85rem; align-items: flex-start; }
.ledger__li svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.ledger__li b { font-weight: 600; }
.ledger__li span { color: var(--mute); font-size: 0.97rem; }
.ledger__li b { color: var(--ink); }
.ledger__acts { margin-top: 1.6rem; }

/* ---------- 11. Folio ---------- */
.folio { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: clamp(2.8rem, 6vw, 4.2rem) 1.8rem; }
.folio__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.4rem; }
.folio__tagline { margin-top: 1rem; color: var(--mute); max-width: 36ch; font-size: 0.94rem; }
.folio__reach { margin-top: 1.3rem; }
.folio__label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.folio__mail { margin-top: 0.45rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--ink); }
.folio__mail svg { width: 18px; height: 18px; color: var(--accent); }
.folio__mail:hover { color: var(--accent); }
.folio__title { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-bottom: 1rem; }
.folio__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.folio__link { color: var(--ink-2); font-size: 0.94rem; }
.folio__link:hover { color: var(--accent); }
.folio__base {
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--mute);
  font-size: 0.84rem;
}
.folio__note { max-width: 64ch; }

/* ---------- Επιστροφή πάνω ---------- */
.rise {
  position: fixed;
  inset-inline-end: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(109, 40, 217, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 110;
}
.rise.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.rise svg { width: 20px; height: 20px; }

/* ---------- Μπάνερ cookies ---------- */
.crumb {
  position: fixed;
  inset-inline: clamp(0.8rem, 3vw, 1.5rem);
  bottom: clamp(0.8rem, 3vw, 1.5rem);
  z-index: 140;
  max-width: 700px;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-m);
  box-shadow: 0 18px 46px rgba(12, 12, 15, 0.16);
  padding: 1.1rem 1.3rem;
  display: none;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}
.crumb.is-visible { display: flex; }
.crumb__text { font-size: 0.88rem; color: var(--mute); flex: 1 1 260px; }
.crumb__text a { text-decoration: underline; }
.crumb__acts { display: flex; gap: 0.55rem; flex: none; }
.crumb__acts .act { padding: 0.68em 1.05em; font-size: 0.89rem; }

/* ---------- Νομικές σελίδες ---------- */
.papers { padding-block: clamp(2.2rem, 5vw, 3.4rem) clamp(3rem, 7vw, 4.6rem); }
.papers__back { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; }
.papers__back svg { width: 16px; height: 16px; }
.papers__title { font-weight: 800; font-size: clamp(2rem, 4.8vw, 3rem); letter-spacing: -0.035em; line-height: 1.06; }
.papers__date { margin-top: 0.7rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.papers__body { max-width: 780px; margin-top: 2rem; }
.papers__body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.papers__body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.papers__body h3 { font-size: 1.05rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.papers__body p { margin-top: 0.85rem; color: var(--ink-2); }
.papers__body ul { margin-top: 0.85rem; padding-inline-start: 1.2rem; color: var(--ink-2); }
.papers__body li { margin-top: 0.45rem; }
.papers__body a { text-decoration: underline; }
.papers__table { margin-top: 1.1rem; border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; }
.papers__row { display: grid; grid-template-columns: 1.1fr 1.4fr 0.8fr; gap: 0; border-top: 1px solid var(--line); }
.papers__row:first-child { border-top: none; background: var(--paper-2); font-weight: 600; }
.papers__row > div { padding: 0.75rem 0.9rem; font-size: 0.9rem; color: var(--ink-2); }

/* ---------- Ανταπόκριση ---------- */
@media (max-width: 1024px) {
  .lane__cell { flex-basis: calc((100% - clamp(0.8rem, 1.8vw, 1.2rem)) / 2); }
  .ledger__grid { grid-template-columns: 1fr; }
  .kinds__grid { grid-template-columns: repeat(2, 1fr); }
  .subscribe__panel { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hatline__menu { display: none; }
  .hatline__toggle { display: flex; }
  .hatline__cta { display: none; }
  .hatline__menu.is-open {
    display: block;
    position: absolute;
    top: var(--hat);
    inset-inline: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shade);
    padding: 0.8rem var(--side) 1.5rem;
  }
  .hatline__menu.is-open .hatline__list { flex-direction: column; align-items: stretch; gap: 0; }
  .hatline__menu.is-open .hatline__link { padding: 0.85rem 0.4rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .hatline__menu.is-open .hatline__cta { display: inline-flex; margin: 1rem 0 0; }
  .ladder__grid { grid-template-columns: 1fr; }
  .saying__grid { grid-template-columns: 1fr; }
  .papers__row { grid-template-columns: 1fr; }
  .papers__row > div { padding-block: 0.5rem; }
  .papers__row:first-child { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .lane__cell { flex-basis: 80%; }
  .lens__grid { grid-template-columns: 1fr; }
  .kinds__grid { grid-template-columns: 1fr; }
  .folio__top { grid-template-columns: 1fr; gap: 1.8rem; }
  .arena__nudges { display: none; }
  .folio__base { flex-direction: column; }
}

@media (max-width: 380px) {
  .lane__cell { flex-basis: 88%; }
  .intro__facts { gap: 1.2rem 1.8rem; }
}

/* ---------- Προτιμήσεις κίνησης ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lane { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}


/* ---------- Intro centrata ---------- */
.intro { text-align: center; }
.intro__title { max-width: 22ch; margin-inline: auto; }
.intro__lead { margin-inline: auto; }
.intro__acts { justify-content: center; }
.intro__facts { justify-content: center; }
