    :root {
      --bg: #071310;
      --surface: rgba(11, 27, 23, 0.78);
      --surface-strong: rgba(9, 22, 18, 0.92);
      --line: rgba(153, 190, 175, 0.18);
      --line-strong: rgba(217, 191, 121, 0.2);
      --text: #eef3f0;
      --muted: #b4c5be;
      --muted-strong: #d6dfdb;
      --teal: #54cdbb;
      --gold: #d9bf79;
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 20px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
      line-height: 1.6;
      background:
        radial-gradient(circle at top right, rgba(84, 205, 187, 0.12), transparent 28%),
        radial-gradient(circle at left 20%, rgba(217, 191, 121, 0.1), transparent 20%),
        linear-gradient(180deg, #081512 0%, #071310 52%, #06100d 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at top right, rgba(84, 205, 187, 0.12), transparent 28%),
        radial-gradient(circle at left 20%, rgba(217, 191, 121, 0.1), transparent 20%),
        linear-gradient(180deg, rgba(5, 12, 10, 0.2), rgba(5, 12, 10, 0.76));
      opacity: 0.14;
      mix-blend-mode: normal;
    }

    @media (max-width: 900px), (prefers-reduced-data: reduce) {
      body::before {
        background:
          linear-gradient(180deg, rgba(5, 12, 10, 0.2), rgba(5, 12, 10, 0.76));
        opacity: 0.1;
      }
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 110px 110px;
      mask-image: linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
      opacity: 0.05;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid rgba(240, 214, 149, 0.95);
      outline-offset: 3px;
    }

    .page { position: relative; overflow: clip; }
    .container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.48rem 0.9rem;
      border-radius: 999px;
      border: 1px solid var(--line-strong);
      background: rgba(9, 22, 18, 0.54);
      color: var(--gold);
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #f5e1a8);
      box-shadow: 0 0 0 6px rgba(217, 191, 121, 0.08);
    }

    .hero-title,
    .section-title,
    .quote,
    .final-title {
      font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
      letter-spacing: -0.035em;
      line-height: 0.98;
      margin: 0;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.15rem 0 1.4rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 999px;
      border: 1px solid rgba(217, 191, 121, 0.2);
      background: rgba(9, 22, 18, 0.48);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    }

    .brand img {
      width: 1.7rem;
      height: 1.7rem;
      object-fit: contain;
    }

    .toplink { color: var(--muted); font-size: 0.95rem; }

    .hero {
      padding: 0 0 3.5rem;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 6rem;
      width: min(92vw, 1260px);
      height: min(62vw, 760px);
      transform: translateX(-50%);
      border-radius: 48px;
      background:
        linear-gradient(180deg, rgba(10, 26, 21, 0.9), rgba(8, 18, 15, 0.7)),
        radial-gradient(circle at top right, rgba(84, 205, 187, 0.08), transparent 34%),
        radial-gradient(circle at left 30%, rgba(217, 191, 121, 0.08), transparent 28%);
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow);
      opacity: 0.56;
      z-index: 0;
    }

    @media (max-width: 900px), (prefers-reduced-data: reduce) {
      .hero::before {
        display: none;
      }

      .hero-stage {
        min-height: auto;
      }
    }

    .hero-stage {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.92fr);
      gap: clamp(2rem, 4vw, 4.4rem);
      align-items: center;
      min-height: calc(82vh - 5rem);
      padding: 1.6rem 0 1rem;
    }

    .hero-copy { max-width: 640px; }
    .hero-copy,
    .hero-visual {
      min-width: 0;
    }

    .hero-title {
      margin-top: 1rem;
      font-size: clamp(3.8rem, 10vw, 7.8rem);
    }

    .hero-subtitle {
      margin: 0.8rem 0 1.2rem;
      color: var(--muted-strong);
      font-size: clamp(1.1rem, 2.1vw, 1.38rem);
      letter-spacing: 0.03em;
    }

    .hero-lead {
      margin: 0;
      max-width: 15ch;
      color: #f4f6f3;
      font-size: clamp(1.22rem, 2.4vw, 1.6rem);
    }

    .hero-text {
      margin: 1.3rem 0 0;
      max-width: 60ch;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .hero-note {
      margin-top: 1.6rem;
      padding-left: 1rem;
      border-left: 2px solid rgba(217, 191, 121, 0.5);
      color: #d9e3de;
      max-width: 53ch;
      font-size: 0.98rem;
    }

    .book-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.1rem;
      margin-top: 1.15rem;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .book-meta span {
      position: relative;
    }

    .book-meta span:not(:last-child)::after {
      content: "•";
      position: absolute;
      right: -0.72rem;
      color: rgba(217, 191, 121, 0.55);
    }

    .actions,
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 1.9rem;
    }

    .actions {
      align-items: flex-start;
    }

    .cta-row {
      align-items: stretch;
    }

    .buy-label {
      width: 100%;
      margin: 0 0 -0.15rem;
      color: var(--muted-strong);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.5rem;
      padding: 0.92rem 1.45rem;
      border-radius: 999px;
      font-size: 0.98rem;
      font-weight: 700;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .merchant-button {
      min-width: 10.5rem;
    }

    .merchant-set {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      width: 100%;
    }

    .merchant-card {
      display: flex;
      flex: 1 1 220px;
      min-width: 0;
    }

    .merchant-card-primary {
      flex: 1 1 100%;
    }

    .merchant-card .button {
      width: 100%;
    }

    .button:hover,
    .button:focus-visible { transform: translateY(-2px); }

    .button-primary {
      color: #06120f;
      background: linear-gradient(135deg, #f0d695, var(--gold));
      box-shadow: 0 16px 38px rgba(217, 191, 121, 0.22);
    }

    .button-secondary {
      color: var(--text);
      background: rgba(9, 23, 19, 0.54);
      border: 1px solid rgba(84, 205, 187, 0.24);
    }

    .button-secondary:hover,
    .button-secondary:focus-visible {
      background: rgba(10, 27, 22, 0.74);
      border-color: rgba(84, 205, 187, 0.46);
    }

    .button-tertiary {
      color: #f0f4f1;
      background: rgba(8, 19, 16, 0.82);
      border: 1px solid rgba(217, 191, 121, 0.18);
    }

    .button-tertiary:hover,
    .button-tertiary:focus-visible {
      background: rgba(10, 24, 20, 0.94);
      border-color: rgba(217, 191, 121, 0.4);
    }

    .merchant-card-primary .button-primary {
      box-shadow: 0 18px 40px rgba(217, 191, 121, 0.26);
      min-height: 3.8rem;
      font-size: 1.02rem;
    }

    .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: 1.2rem;
      z-index: 60;
      width: min(calc(100% - 1.6rem), 860px);
      transform: translateX(-50%);
      border: 1px solid rgba(217, 191, 121, 0.18);
      border-radius: 24px;
      background: rgba(6, 16, 13, 0.94);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
      backdrop-filter: blur(18px);
      padding: 1rem 1rem 0.95rem;
    }

    .cookie-banner__inner {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      justify-content: space-between;
    }

    .cookie-banner__content {
      max-width: 56ch;
    }

    .cookie-banner__content strong {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--gold);
      font-size: 0.86rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .cookie-banner__content p {
      margin: 0;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .cookie-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.15rem;
      justify-content: flex-end;
    }

    .cookie-banner__button {
      min-width: 9.5rem;
      border: 0;
      cursor: pointer;
    }

    .cookie-banner__button--secondary {
      background: rgba(9, 23, 19, 0.82);
      color: var(--text);
      border: 1px solid rgba(84, 205, 187, 0.24);
    }

    .cookie-banner__button--secondary:hover,
    .cookie-banner__button--secondary:focus-visible {
      background: rgba(10, 27, 22, 0.96);
      border-color: rgba(84, 205, 187, 0.46);
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
      margin-top: 2.1rem;
    }

    .fact {
      padding: 1rem 1rem 1.05rem;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(8, 20, 17, 0.56);
      backdrop-filter: blur(12px);
    }

    .fact strong {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .fact span {
      display: block;
      color: #ecf2ee;
      line-height: 1.38;
      font-size: 0.98rem;
    }

    .hero-visual {
      position: relative;
      display: grid;
      justify-items: center;
      align-items: center;
      padding: 2rem 0;
    }

    .hero-visual::before,
    .hero-visual::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(18px);
      pointer-events: none;
    }

    .hero-visual::before {
      width: 68%;
      height: 68%;
      background: radial-gradient(circle, rgba(84, 205, 187, 0.24), transparent 72%);
      top: 8%;
      right: 8%;
    }

    .hero-visual::after {
      width: 48%;
      height: 48%;
      background: radial-gradient(circle, rgba(217, 191, 121, 0.18), transparent 72%);
      left: 10%;
      bottom: 10%;
    }

    .cover-stage {
      position: relative;
      width: min(100%, 500px);
      aspect-ratio: 602 / 846;
      padding: clamp(0.8rem, 1.8vw, 1rem);
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(11, 28, 23, 0.88), rgba(8, 17, 14, 0.76));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
    }

    .cover-stage::after {
      content: "";
      position: absolute;
      left: 9%;
      right: 9%;
      bottom: -3.8%;
      height: 12%;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.42);
      filter: blur(24px);
    }

    .cover-stage picture,
    .cover-stage img {
      border-radius: 24px;
      overflow: hidden;
    }

    .cover-stage img {
      width: 100%;
      height: auto;
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
    }

    .hero-caption {
      position: absolute;
      left: 0;
      bottom: 1.4rem;
      padding: 1rem 1.1rem;
      width: min(70%, 280px);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(9, 22, 18, 0.92), rgba(9, 22, 18, 0.72));
      backdrop-filter: blur(12px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    }

    .hero-caption strong {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hero-caption p {
      margin: 0;
      color: #dde7e2;
      line-height: 1.45;
      font-size: 0.94rem;
    }

    main section { padding: 1.5rem 0 0; }
    .section { padding-top: 1.6rem; }

    .section,
    .final,
    footer {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

    .section-heading {
      display: grid;
      gap: 0.9rem;
      margin-bottom: 1.9rem;
      max-width: 780px;
    }

    .section-title {
      font-size: clamp(2.3rem, 5vw, 4.2rem);
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .sample-panel {
      display: grid;
      gap: 1.4rem;
      padding: clamp(1.5rem, 3.1vw, 2.7rem);
      position: relative;
      overflow: hidden;
    }

    .sample-panel::before {
      content: "";
      position: absolute;
      inset: 1.1rem 1.1rem auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(217, 191, 121, 0.54), transparent);
      opacity: 0.58;
      pointer-events: none;
    }

    .sample-panel::after {
      content: "";
      position: absolute;
      right: -10%;
      top: -18%;
      width: 26rem;
      height: 26rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(84, 205, 187, 0.08), transparent 62%);
      pointer-events: none;
    }

    .sample-heading {
      display: grid;
      gap: 0.75rem;
      max-width: 72ch;
      position: relative;
      z-index: 1;
    }

    .sample-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      width: fit-content;
      color: var(--gold);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .sample-label::before {
      content: "";
      width: 2.2rem;
      height: 1px;
      background: linear-gradient(90deg, rgba(217, 191, 121, 0), rgba(217, 191, 121, 0.9));
    }

    .sample-title {
      margin: 0;
      max-width: 12ch;
      color: var(--text);
      font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
      font-size: clamp(2.1rem, 4vw, 3.6rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
    }

    .sample-deck {
      margin: 0;
      max-width: 64ch;
      color: #e5ece8;
      font-size: clamp(1.08rem, 1.5vw, 1.28rem);
      line-height: 1.72;
    }

    .sample-copy {
      display: grid;
      gap: 1.2rem;
      max-width: 66ch;
      position: relative;
      z-index: 1;
    }

    .sample-text {
      margin: 0;
      color: #f0f4f1;
      font-size: clamp(1.02rem, 1.25vw, 1.12rem);
      line-height: 1.92;
      letter-spacing: 0.01em;
    }

    .sample-text p {
      margin: 0;
    }

    .sample-text p + p {
      margin-top: 1.2rem;
    }

    .sample-cta {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: flex-start;
    }

    .chapter-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .chapter-card {
      padding: 1.35rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(217, 191, 121, 0.14);
      background: linear-gradient(180deg, rgba(9, 24, 20, 0.96), rgba(7, 18, 15, 0.9));
      min-height: 220px;
    }

    .chapter-card small {
      display: inline-block;
      margin-bottom: 0.8rem;
      color: var(--gold);
      font-size: 0.76rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .chapter-card h3 {
      margin: 0 0 0.7rem;
      font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
      font-size: 1.4rem;
      line-height: 1.08;
    }

    .chapter-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .panel,
    .audience-panel,
    .final-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(10, 26, 21, 0.86), rgba(8, 19, 16, 0.92));
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
      gap: 1.3rem;
      padding: clamp(1.5rem, 3vw, 2.35rem);
    }

    .intro-grid p {
      margin: 0;
      color: #dde7e2;
      font-size: 1.03rem;
    }

    .intro-aside {
      padding: 1.35rem;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(84, 205, 187, 0.09), rgba(217, 191, 121, 0.08));
      border: 1px solid rgba(84, 205, 187, 0.16);
    }

    .intro-aside strong {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .themes {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .theme {
      padding: 1.45rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(84, 205, 187, 0.14);
      background: linear-gradient(180deg, rgba(9, 24, 20, 0.96), rgba(7, 18, 15, 0.9));
      min-height: 225px;
      position: relative;
      overflow: hidden;
    }

    .theme::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(84, 205, 187, 0.1), transparent 34%);
      pointer-events: none;
    }

    .theme small {
      display: inline-block;
      margin-bottom: 0.9rem;
      color: var(--gold);
      font-size: 0.76rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .theme h3 {
      margin: 0 0 0.75rem;
      font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
      font-size: 1.44rem;
      line-height: 1.08;
    }

    .theme p {
      margin: 0;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .split-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 1.7rem;
      padding: clamp(1.5rem, 3vw, 2.35rem);
    }

    .list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .list li {
      position: relative;
      margin-bottom: 1rem;
      padding-left: 1.25rem;
      color: #e2ebe7;
    }

    .list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 0.48rem;
      height: 0.48rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), #a0f3e2);
      box-shadow: 0 0 0 6px rgba(84, 205, 187, 0.08);
    }

    .note-box {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.4rem;
      border-radius: 24px;
      background: rgba(217, 191, 121, 0.07);
      border: 1px solid rgba(217, 191, 121, 0.18);
      color: #ebefe8;
    }

    .quote-band {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1rem;
      align-items: stretch;
    }

    .quote-hero,
    .quote-list {
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(9, 22, 18, 0.92), rgba(8, 18, 15, 0.88));
      box-shadow: var(--shadow);
    }

    .quote-hero {
      padding: clamp(1.8rem, 3vw, 2.8rem);
      position: relative;
      overflow: hidden;
    }

    .quote-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(217, 191, 121, 0.1), transparent 34%),
        radial-gradient(circle at right top, rgba(84, 205, 187, 0.12), transparent 28%);
      pointer-events: none;
    }

    .quote {
      position: relative;
      z-index: 1;
      font-size: clamp(2rem, 4.2vw, 3.4rem);
      max-width: 12ch;
      text-wrap: balance;
    }

    .quote-hero p {
      position: relative;
      z-index: 1;
      margin: 1rem 0 0;
      max-width: 54ch;
      color: #d5dfda;
      font-size: 1rem;
    }

    .quote-list {
      padding: 1.2rem;
      display: grid;
      gap: 0.75rem;
    }

    .mini-quote {
      padding: 1rem 1rem 1.05rem;
      border-radius: 18px;
      background: rgba(12, 31, 25, 0.62);
      border: 1px solid rgba(217, 191, 121, 0.12);
    }

    .mini-quote strong {
      display: block;
      margin-bottom: 0.4rem;
      color: #f0f4f1;
      font-size: 1.02rem;
      line-height: 1.35;
    }

    .mini-quote span {
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.45;
    }

    .audience-panel {
      padding: clamp(1.5rem, 3vw, 2.35rem);
      position: relative;
      overflow: hidden;
    }

    .author-panel {
      display: grid;
      grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
      gap: 1.4rem;
      padding: clamp(1.5rem, 3vw, 2.35rem);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(10, 26, 21, 0.86), rgba(8, 19, 16, 0.92));
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
      align-items: center;
    }

    .author-visual {
      position: relative;
    }

    .author-visual picture {
      display: block;
    }

    .author-visual::after {
      content: "";
      position: absolute;
      left: 10%;
      right: 10%;
      bottom: -3%;
      height: 12%;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.35);
      filter: blur(18px);
      pointer-events: none;
    }

    .author-visual img {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
      object-fit: cover;
      object-position: center 18%;
    }

    .author-copy h3 {
      margin: 0;
      font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }

    .author-role {
      margin: 0.5rem 0 1rem;
      color: var(--gold);
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .author-copy p {
      margin: 0 0 1rem;
      color: #dbe5e0;
      font-size: 1rem;
    }

    .audience-panel::before {
      content: "";
      position: absolute;
      right: -4rem;
      bottom: -4rem;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(84, 205, 187, 0.14), transparent 72%);
      pointer-events: none;
    }

    .final {
      padding: 1.5rem 0 4rem;
    }

    .final-panel {
      padding: clamp(1.8rem, 3vw, 2.8rem);
      position: relative;
      overflow: hidden;
    }

    .final-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(217, 191, 121, 0.11), transparent 36%),
        radial-gradient(circle at right top, rgba(84, 205, 187, 0.14), transparent 28%);
      pointer-events: none;
    }

    .final-title {
      position: relative;
      z-index: 1;
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      max-width: 12ch;
    }

    .final-panel p {
      position: relative;
      z-index: 1;
      margin: 1rem 0 0;
      max-width: 62ch;
      color: #d5dfda;
      font-size: 1.05rem;
    }

    footer {
      padding: 0 0 2rem;
      color: rgba(180, 197, 190, 0.84);
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.2rem;
      align-items: center;
    }

    .footer-links a {
      color: rgba(214, 223, 219, 0.9);
      border-bottom: 1px solid rgba(217, 191, 121, 0.28);
      transition: color 180ms ease, border-color 180ms ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #f3f6f4;
      border-color: rgba(217, 191, 121, 0.62);
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 980px) {
      .hero-stage,
      .intro-grid,
      .chapter-grid,
      .themes,
      .split-panel,
      .sample-panel,
      .quote-band,
      .author-panel {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-bottom: 2.5rem;
      }

      .hero::before {
        top: 6.5rem;
        height: 72%;
      }

      .hero-stage {
        min-height: auto;
        gap: 1.4rem;
        padding-top: 2rem;
      }

      .hero-visual {
        order: -1;
        padding-top: 1rem;
      }

      .cover-stage {
        width: min(100%, 380px);
      }

      .hero-caption {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 0.85rem;
        font-size: 0.92rem;
      }

      .sample-panel {
        padding: 1.3rem;
      }

      .chapter-card,
      .theme {
        min-height: auto;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 1.2rem), var(--max));
      }

      .topbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-title {
        font-size: clamp(2.7rem, 16vw, 4.4rem);
      }

      .hero-lead {
        max-width: none;
        font-size: 1.08rem;
      }

      .hero-text {
        font-size: 0.98rem;
      }

      .hero-facts {
        margin-top: 1.35rem;
        gap: 0.7rem;
      }

      .fact {
        padding: 0.9rem;
      }

      .fact span {
        font-size: 0.94rem;
      }

      .hero-facts {
        grid-template-columns: 1fr;
      }

      .sample-title {
        max-width: none;
      }

      .sample-text {
        line-height: 1.88;
      }

      .quote {
        max-width: none;
      }

      .quote-band,
      .quote-hero,
      .quote-list,
      .author-panel,
      .final-panel {
        border-radius: 22px;
      }

      .author-copy p,
      .final-panel p,
      .section-heading p,
      .intro-grid p,
      .sample-deck,
      .sample-text,
      .mini-quote span,
      .note-box,
      .list li {
        font-size: 0.98rem;
      }

      .sample-cta .button {
        width: 100%;
      }

      .actions .button,
      .merchant-set .button {
        width: 100%;
      }

      .actions,
      .cta-row {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-row .merchant-card,
      .cta-row > .button {
        width: 100%;
      }

      .cookie-banner {
        bottom: 0.75rem;
        width: min(calc(100% - 0.9rem), 860px);
      }

      .cookie-banner__inner {
        flex-direction: column;
      }

      .cookie-banner__actions {
        width: 100%;
        justify-content: stretch;
      }

      .cookie-banner__button {
        width: 100%;
      }

      .footer-links {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal,
      .reveal.is-visible,
      .button {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
