/* =========================================================
   MR. STRICH – LANDING PAGE
   Hand-drawn editorial sketchbook style.
   ========================================================= */

:root {
  --white:  #FFFFFF;
  --cream:  #FAF6EE;
  --cream-2:#F2EBDC;
  --ink:    #0F0E0E;
  --ink-60: rgba(15,14,14,0.62);
  --ink-30: rgba(15,14,14,0.30);
  --blue:   #2D7DE5;
  --blue-d: #1F5BB1;
  --red:    #E2342C;
  --yellow: #F7D34A;

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-soft: 0 2px 0 var(--ink);

  --radius: 14px;

  --font-display: "Anton", "Bebas Neue", "Impact", sans-serif;
  --font-hand:    "Patrick Hand", "Comic Sans MS", cursive;
  --font-body:    "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* Subtle paper texture for the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(15,14,14,0.025) 1px, transparent 1px),
    radial-gradient(rgba(15,14,14,0.018) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: multiply;
}

main, footer { position: relative; z-index: 1; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 { margin: 0; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--ink);
}

.section-h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.06;
  margin-bottom: 28px;
}
.section-h2 em {
  font-style: italic;
  font-family: var(--font-hand);
  text-transform: none;
  font-size: 1.1em;
  line-height: 0.85;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-block;
  transform: rotate(-3deg) translateY(-12px);
  margin: 0 0.05em;
  vertical-align: baseline;
}

.eyebrow {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--red);
  margin: 0 0 6px;
  transform: rotate(-1.5deg);
  display: inline-block;
}

.hand { font-family: var(--font-hand); font-size: 1.15em; }

.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 30% -6px 6% -6px;
  background: var(--yellow);
  z-index: -1;
  transform: skewX(-6deg) rotate(-1deg);
  border-radius: 4px;
}

.strike {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 4px;
  opacity: 0.7;
}

/* =========================================================
   BADGES & TAGS  (the "JAPANER vs DU" thumbnail look)
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 7px;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-size: 14px;
  text-transform: uppercase;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.badge-red { background: var(--red); color: #fff; }
.badge.center { margin: 0 auto; }

.hinomaru {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
}
.badge-red .hinomaru { background: #fff; border-color: #fff; }
.hinomaru.small { width: 9px; height: 9px; border-width: 1.5px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn .price { color: var(--yellow); }
.btn .arrow { width: 36px; height: 14px; }
.btn-xl {
  font-size: 28px;
  padding: 22px 34px;
}

/* =========================================================
   1. HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.paper-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(45,125,229,0.08), transparent 50%),
    radial-gradient(circle at 85% 90%, rgba(226,52,44,0.07), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(44px, 6.2vw, 92px);
  margin: 18px 0 22px;
}
.hero-copy h1 em {
  font-family: var(--font-hand);
  text-transform: none;
  font-style: normal;
  font-size: 1.15em;
  line-height: 0.85;
  color: var(--red);
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-block;
  transform: rotate(-4deg) translateY(-12px);
  margin: 0 0.05em;
  vertical-align: baseline;
}

.lede {
  font-size: 20px;
  max-width: 460px;
  margin: 0 0 28px;
  color: var(--ink-60);
}
.lede .hand {
  display: block;
  font-size: 26px;
  color: var(--ink);
  margin-top: 4px;
  transform: rotate(-1deg);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.micro-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-hand);
  font-size: 19px;
  color: var(--ink-60);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

.trust-bar {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0; margin: 0;
  flex-wrap: wrap;
  border-top: 2px dashed var(--ink-30);
  padding-top: 18px;
  max-width: 460px;
}
.trust-bar li {
  font-size: 14px;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  letter-spacing: 1px;
  line-height: 1;
}

/* Hero art frame */
.hero-art { position: relative; }
.art-frame {
  position: relative;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-hard);
  transform: rotate(2deg);
}
.strich-hero {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.annotation {
  position: absolute;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--ink);
  background: var(--yellow);
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  transform: rotate(-3deg);
  white-space: nowrap;
}
.annotation-1 { top: -16px; left: -32px; }
.annotation-2 { bottom: 60px; right: -36px; transform: rotate(4deg); background: var(--red); color: #fff; }

.hero-divider {
  margin-top: 60px;
}
.hero-divider svg { width: 100%; height: 30px; display: block; }

/* =========================================================
   2. JAPANER vs DU
   ========================================================= */
.versus { padding: 90px 0; }

.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 40px 0 48px;
}
.vs-col {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: var(--shadow-hard);
}
.vs-jp  { transform: rotate(-1deg); }
.vs-you { transform: rotate(1deg); }

.vs-tag {
  position: absolute;
  top: -16px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  font-size: 18px;
  padding: 6px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.tag-red  { background: var(--red); color: #fff; }
.tag-ink  { background: var(--ink); color: #fff; }

.vs-col .strich {
  display: block;
  width: auto;
  height: 240px;
  max-width: 100%;
  object-fit: contain;
  margin: 12px auto 18px;
}

.vs-list {
  list-style: none;
  padding: 0; margin: 0;
  font-family: var(--font-hand);
  font-size: 21px;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 2px dashed var(--ink-30);
  padding-top: 16px;
}
.vs-list li::before {
  content: "•";
  margin-right: 10px;
  color: var(--red);
  font-weight: bold;
}
.vs-you .vs-list li::before { color: var(--ink-30); }

.vs-divider {
  display: flex; align-items: center; justify-content: center;
}
.vs-versus {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 2px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 18px 10px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-hard);
  transform: rotate(-6deg);
}

.vs-punch {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}
.vs-punch em {
  color: var(--red);
  font-style: italic;
}
.vs-punch .hand {
  display: block;
  font-size: 0.6em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-60);
  margin-top: 8px;
}

/* =========================================================
   3. BENEFITS
   ========================================================= */
.cream { background: var(--cream-2); }

.benefits { padding: 100px 0; }

.bullet-grid {
  list-style: none;
  padding: 0; margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  counter-reset: bullets;
}
.bullet-grid li {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  position: relative;
  box-shadow: var(--shadow-hard);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.bullet-grid li:hover {
  transform: translate(-3px, -3px) rotate(-0.4deg);
  box-shadow: 9px 9px 0 var(--ink);
}
.bullet-grid li:nth-child(2n)  { transform: rotate(0.6deg); }
.bullet-grid li:nth-child(3n)  { transform: rotate(-0.5deg); }
.bullet-grid li:nth-child(7) {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--cream);
}
.bullet-grid li:nth-child(7) h3 { color: var(--yellow); }
.bullet-grid li:nth-child(7) p  { color: rgba(250,246,238,0.78); }

.bullet-num {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 1px;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.bullet-grid li:nth-child(7) .bullet-num { color: var(--red); }

.bullet-grid h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.bullet-grid p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-60);
}

/* =========================================================
   4. PREVIEW
   ========================================================= */
.preview { padding: 100px 0; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.preview-grid.preview-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.preview-card {
  display: flex; flex-direction: column;
  gap: 14px;
}
.preview-card .caption {
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--ink-60);
  text-align: center;
  margin: 0;
}

.cover-frame {
  aspect-ratio: 3 / 4;
  background: var(--ink);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 6px;
  padding: 28px 22px;
  position: relative;
  box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-2deg);
}
.cover-tag {
  font-family: var(--font-display);
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--red);
}
.cover-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: 1px;
}
.cover-title em {
  color: var(--red);
  font-style: italic;
  font-family: var(--font-hand);
  font-size: 0.7em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.cover-sub {
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--cream);
  opacity: 0.8;
  margin: 0;
}
.cover-author {
  font-family: var(--font-display);
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
}
.cover-stamp {
  position: absolute;
  bottom: 22px; right: 22px;
  width: 52px; height: 52px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: serif;
  font-size: 26px;
  color: var(--red);
  transform: rotate(-12deg);
}

.page-frame {
  aspect-ratio: 3 / 4;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 6px;
  padding: 30px 26px;
  box-shadow: var(--shadow-hard);
  position: relative;
}
.preview-card:nth-child(1) .page-frame { transform: rotate(-1.4deg); }
.preview-card:nth-child(2) .page-frame { transform: rotate(1.2deg); }
.preview-card:nth-child(3) .page-frame { transform: rotate(-0.8deg); }
.preview-card:nth-child(4) .page-frame { transform: rotate(1deg); }

/* PDF-rendered thumbnail variant — canvas drives its own ratio */
.page-frame.pdf-page-thumb {
  padding: 0;
  background: var(--white);
  display: block;
  aspect-ratio: auto;     /* override the 3/4 from .page-frame */
  overflow: hidden;
  line-height: 0;         /* avoid baseline gap below canvas */
}
.page-frame.pdf-page-thumb canvas,
.page-frame.pdf-page-thumb .pdf-thumb-img {
  display: block;
  width: 100%;
  height: auto;
}

.page-frame h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 4px;
}
.page-h {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.page-rule {
  height: 2px;
  background: var(--ink);
  margin-bottom: 18px;
  filter: url(#sketchy);
}
.page-body {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.page-body em { color: var(--blue); font-style: normal; font-weight: 700; }

.tracker .grid-30 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 18px 0;
}
.tracker .grid-30 span {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--ink);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--blue);
}
.tracker .grid-30 span.done { background: var(--blue); color: var(--cream); }
.page-foot {
  font-family: var(--font-hand);
  font-size: 15px;
  color: var(--ink-60);
  margin: 0;
  text-align: center;
}

/* =========================================================
   4b. INTERACTIVE READER (Leseprobe)
   ========================================================= */
.reader { padding: 100px 0; }
.reader-sub {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--ink-60);
  margin: 0 0 32px;
}

.reader-wrap {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 28px 28px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.reader-stage {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 16px;
}

.reader-canvas-wrap {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px dashed var(--ink-30);
  border-radius: 6px;
  padding: 8px;
}
.reader-canvas-wrap canvas {
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 24px rgba(15,14,14,0.10);
}
.reader-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hand);
  font-size: 20px;
  color: var(--ink-60);
  background: var(--cream);
  border-radius: 6px;
}

.reader-nav {
  appearance: none;
  border: 2.5px solid var(--ink);
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 120ms ease, background 120ms ease;
}
.reader-nav:hover:not(:disabled) {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.reader-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reader-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.reader-page-info {
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-size: 16px;
  color: var(--ink);
}
.reader-dots {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.reader-dot {
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  transition: background 120ms ease, transform 120ms ease;
}
.reader-dot.is-active {
  background: var(--ink);
  transform: scale(1.25);
}
.reader-cta {
  font-family: var(--font-display);
  letter-spacing: 1.5px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   5. ABOUT
   ========================================================= */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.about-art {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-hard);
  transform: rotate(-2.5deg);
}
.about-art .strich {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.about-copy p {
  font-size: 18px;
  margin: 0 0 18px;
}
.about-copy .quote {
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 18px;
  margin: 24px 0;
  font-size: 24px;
  color: var(--ink);
  background: rgba(247,211,74,0.18);
}
.link-arrow {
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  text-decoration: none;
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
  padding-bottom: 2px;
  font-size: 18px;
}
.link-arrow:hover { color: var(--red); border-color: var(--red); }

/* =========================================================
   6. FAQ
   ========================================================= */
.faq { padding: 100px 0; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list { margin-top: 36px; }

.faq-list details {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.faq-list details[open] {
  box-shadow: var(--shadow-hard);
  transform: translate(-2px, -2px);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 32px;
  line-height: 1;
  color: var(--red);
  transition: transform 200ms ease;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin: 14px 0 0;
  color: var(--ink-60);
  line-height: 1.6;
}

/* =========================================================
   7. FINAL CTA
   ========================================================= */
.final-cta { padding: 100px 0 120px; }

.final-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 12px 12px 0 var(--ink);
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.final-card::before,
.final-card::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red);
  top: -10px;
  filter: url(#sketchy);
}
.final-card::before { left: 24px; }
.final-card::after  { right: 24px; background: var(--blue); }

.strich-final {
  display: block;
  width: auto;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 18px;
}

.final-h {
  font-size: clamp(40px, 5.5vw, 76px);
  margin: 18px 0 12px;
}
.final-h em {
  color: var(--red);
  font-style: italic;
  font-family: var(--font-hand);
  font-size: 0.85em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-3deg);
}
.final-sub {
  font-size: 22px;
  color: var(--ink-60);
  margin: 0 0 32px;
}

.final-trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--ink-60);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 2px dashed var(--ink-30);
  padding: 32px 0;
  background: var(--cream);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
}
.footer-brand .logo-mark { width: 32px; height: 32px; display: inline-block; }
.footer-brand .logo-mark svg { width: 100%; height: 100%; }
.footer nav { display: flex; gap: 22px; }
.footer nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer nav a:hover { color: var(--red); }
.copy { margin: 0; color: var(--ink-60); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 380px; margin: 0 auto; }
  .annotation-1 { top: -10px; left: 0; }
  .annotation-2 { bottom: 10px; right: -10px; }

  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { transform: rotate(0); }
  .vs-versus { width: 70px; height: 70px; font-size: 44px; margin: -8px auto; }

  .preview-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .preview-grid.preview-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 540px; }

  /* Reader on small screens: canvas fills width, nav buttons overlay */
  .reader-wrap { padding: 18px 14px 16px; }
  .reader-stage {
    display: block;
    position: relative;
  }
  .reader-canvas-wrap { padding: 6px; min-height: 320px; }
  .reader-nav {
    position: absolute;
    top: 50%;
    width: 38px;
    height: 38px;
    font-size: 22px;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(2px);
  }
  .reader-nav.prev { left: 4px; }
  .reader-nav.next { right: 4px; }
  .reader-bar { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 16px; }
  .reader-dots { order: -1; }
  .reader-cta { text-align: center; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-art { max-width: 280px; margin: 0 auto; }

  .footer-grid { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .btn { font-size: 18px; padding: 16px 20px; }
  .btn-xl { font-size: 22px; padding: 18px 24px; }
  .hero { padding: 56px 0 36px; }
  .versus, .benefits, .preview, .about, .faq, .final-cta { padding: 72px 0; }
  .final-card { padding: 40px 22px; }
  .trust-bar { gap: 18px; }
  .trust-bar li { font-size: 12px; }
  .trust-bar strong { font-size: 22px; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .strich-hero .rays { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
