    :root {
      --background: #F7F2EA;
      --paper: #FFFDF8;
      --text: #080808;
      --muted: #6B665F;
      --blue: #001EFF;
      --blue-dark: #000CB8;
      --blue-soft: #E8ECFF;
      --yellow: #FFE45C;
      --line: #D8D0C6;
      --max: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--background);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    main {
      overflow: visible;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 253, 248, 0.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      width: min(var(--max), calc(100% - 56px));
      min-height: 72px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 145px 1fr;
      align-items: center;
      gap: 28px;
    }

    .logo {
      display: inline-flex;
      flex-direction: column;
      color: var(--text);
      font-size: 26px;
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: 0;
    }

    .mobile-language-link {
      display: none;
    }

    .header-nav {
      justify-self: end;
      display: flex;
      gap: 24px;
      align-items: center;
      color: var(--text);
      font-size: 13px;
      font-weight: 650;
      letter-spacing: 0;
    }

    .header-nav a {
      padding: 10px 0;
    }

    .header-nav .nav-journal {
      color: var(--blue);
      font-weight: 900;
      text-transform: uppercase;
    }

    .header-nav a:hover,
    .footer-nav a:hover {
      color: var(--blue);
    }

    .button {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 22px;
      border: 2px solid transparent;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: 0;
      text-transform: none;
      transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button.primary {
      background: var(--blue);
      color: var(--paper);
    }

    .button.primary:hover {
      background: var(--blue-dark);
      color: var(--paper);
    }

    .button.secondary {
      border-color: var(--text);
      color: var(--text);
      background: transparent;
    }

    .button.secondary:hover {
      background: var(--text);
      color: var(--paper);
    }

    .section-blue .button.secondary {
      border-color: var(--paper);
      color: var(--paper);
    }

    .section-blue .button.secondary:hover {
      background: var(--paper);
      color: var(--blue);
    }

    .button.light {
      background: var(--paper);
      color: var(--blue);
    }

    .button.light:hover {
      background: var(--yellow);
      color: var(--text);
    }

    .language-select {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0 11px;
      border: 1px solid rgba(0, 30, 255, 0.35);
      border-radius: 2px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .header-nav .language-select a {
      padding: 0;
      color: var(--muted);
    }

    .header-nav .language-select a:hover,
    .header-nav .language-select a[aria-current="page"] {
      color: var(--blue);
    }

    .language-select span {
      color: rgba(8, 8, 8, 0.42);
    }

    .hero {
      width: min(var(--max), calc(100% - 56px));
      margin: 0 auto;
      padding: 74px 0 34px;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
      gap: 52px;
      align-items: center;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 0;
      top: 36px;
      width: 70px;
      height: 2px;
      background: var(--blue);
    }

    .hero-copy {
      padding-left: 104px;
    }

    .hero h1 {
      margin: 0;
      max-width: 610px;
      color: var(--text);
      font-size: 74px;
      font-weight: 900;
      letter-spacing: 0;
      line-height: 0.96;
    }

    .hero-subheadline {
      max-width: 630px;
      margin: 36px 0 0;
      color: var(--text);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.55;
      letter-spacing: 0;
    }

    .hero-result {
      display: inline-flex;
      margin: 18px 0 0;
      padding: 8px 0 10px;
      border-top: 2px solid var(--blue);
      border-bottom: 2px solid var(--blue);
      color: var(--blue);
      font-size: 15px;
      font-style: italic;
      font-weight: 900;
      line-height: 1.4;
      letter-spacing: 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 58px 0 0;
    }

    .hero-freebie-action {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .hero-action-note {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      line-height: 1.35;
      letter-spacing: 0;
    }

    .hero-visual {
      min-height: 456px;
      position: relative;
      display: grid;
      place-items: center;
    }

    .visual-grid {
      position: absolute;
      inset: 34px 0 30px 46px;
      background-image:
        linear-gradient(rgba(0, 30, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 30, 255, 0.18) 1px, transparent 1px);
      background-size: 34px 34px;
      border: 1px solid rgba(0, 30, 255, 0.25);
    }

    .hero-cover-stack {
      position: relative;
      width: min(100%, 520px);
      min-height: 442px;
    }

    .freebie-preview,
    .workbook-preview {
      position: relative;
      width: 300px;
      min-height: 0;
      aspect-ratio: 1190 / 1684;
      background: transparent;
      border: 0;
      box-shadow: 0 30px 36px rgba(0, 0, 0, 0.16);
      isolation: isolate;
      transform: rotate(-3deg);
      padding: 0;
      z-index: 2;
    }

    .freebie-preview::after,
    .workbook-preview::after {
      content: "";
      position: absolute;
      inset: 12px -13px -13px 12px;
      border-right: 2px solid rgba(0, 30, 255, 0.28);
      border-bottom: 2px solid rgba(0, 30, 255, 0.28);
      z-index: -1;
    }

    .product-cover-image {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: transparent;
      transition: opacity 160ms ease;
    }

    .has-js .product-cover-image {
      opacity: 0;
    }

    .has-js .product-cover-image.is-loaded {
      opacity: 1;
    }

    .cover-fallback {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      padding: 28px 30px 30px;
      overflow: hidden;
      background: var(--paper);
      color: var(--blue);
    }

    .cover-fallback::before {
      content: "";
      position: absolute;
      inset: 14px;
      border-top: 1px solid rgba(0, 30, 255, 0.28);
      border-right: 1px solid rgba(0, 30, 255, 0.28);
      pointer-events: none;
    }

    .cover-fallback-kicker {
      position: relative;
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .cover-fallback strong {
      position: relative;
      max-width: 8.5ch;
      margin-top: 54px;
      font-size: 31px;
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: 0;
    }

    .cover-fallback span:not(.cover-fallback-kicker) {
      position: relative;
      max-width: 17ch;
      margin-top: 18px;
      font-size: 11px;
      font-weight: 900;
      line-height: 1.18;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .cover-fallback-brand {
      position: relative;
      margin-top: auto;
      color: inherit;
      font-size: 21px;
      font-style: normal;
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: 0;
    }

    .workbook-cover-fallback {
      background: var(--blue);
      color: var(--paper);
    }

    .workbook-cover-fallback::before {
      border-color: rgba(255, 253, 248, 0.28);
    }

    .workbook-cover-fallback strong {
      max-width: 7.5ch;
    }

    .preview-label {
      display: block;
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .hero-visual .freebie-preview {
      position: absolute;
      left: 34px;
      top: 22px;
      width: 270px;
      z-index: 3;
    }

    .hero-visual .freebie-preview .preview-title {
      margin-top: 70px;
      font-size: 38px;
    }

    .hero-visual .freebie-preview .preview-topics {
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.08;
    }

    .hero-visual .freebie-preview .preview-brand {
      bottom: 28px;
    }

    .hero-visual .workbook-preview {
      position: absolute;
      right: 0;
      bottom: 16px;
      width: 270px;
      background: transparent;
      color: var(--paper);
      transform: rotate(5deg);
      z-index: 2;
    }

    .hero-visual .workbook-preview::after {
      border-right-color: rgba(0, 30, 255, 0.28);
      border-bottom-color: rgba(0, 30, 255, 0.28);
    }

    .hero-visual .workbook-preview .preview-label {
      color: var(--paper);
      font-size: 14px;
    }

    .hero-visual .workbook-preview .preview-title {
      margin-top: 76px;
      color: var(--paper);
      font-size: 38px;
      line-height: 0.94;
      text-transform: none;
    }

    .hero-visual .workbook-preview .preview-topics {
      margin-top: 22px;
      color: var(--paper);
      font-size: 14px;
      line-height: 1.18;
    }

    .hero-visual .workbook-preview .preview-brand {
      color: var(--paper);
    }

    .preview-title {
      margin: 88px 0 0;
      color: var(--blue);
      font-size: 40px;
      font-weight: 900;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .preview-topics {
      margin: 24px 0 0;
      color: var(--text);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.14;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .preview-brand {
      position: absolute;
      left: 30px;
      bottom: 30px;
      color: var(--blue);
      font-size: 22px;
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: 0;
    }

    .sticker {
      position: absolute;
      right: -12px;
      top: 58px;
      width: auto;
      height: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 11px;
      border-radius: 2px;
      background: var(--paper);
      border: 1px solid var(--blue);
      color: var(--blue);
      font-size: 9px;
      font-weight: 900;
      line-height: 1.08;
      text-align: center;
      text-transform: uppercase;
      transform: rotate(4deg);
      letter-spacing: 0;
    }

    .cover-circle {
      position: absolute;
      right: -18px;
      bottom: 62px;
      z-index: 5;
      width: 82px;
      height: 82px;
      display: grid;
      place-items: center;
      border: 1.5px solid var(--yellow);
      border-radius: 54% 46% 52% 48% / 48% 55% 45% 52%;
      background: rgba(255, 253, 248, 0.94);
      color: var(--blue);
      font-family: "Bradley Hand", "Marker Felt", "Comic Sans MS", "Segoe Print", cursive;
      font-size: 12px;
      font-weight: 700;
      line-height: 0.98;
      text-align: center;
      transform: rotate(-10deg);
      box-shadow: 4px 6px 0 rgba(255, 228, 92, 0.55);
    }

    .hero-cover-note {
      right: -6px;
      top: auto;
      bottom: 62px;
      z-index: 6;
    }

    .journal-strip {
      background: var(--paper);
      border-bottom: 1px solid rgba(0, 30, 255, 0.28);
      scroll-margin-top: 92px;
    }

    .journal-inner {
      width: min(var(--max), calc(100% - 56px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 34px;
      align-items: stretch;
    }

    .journal-strip-carousel-only .journal-inner {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .journal-label {
      padding: 24px 0;
      color: var(--blue);
      border-right: 1px solid rgba(0, 30, 255, 0.28);
      font-size: 13px;
      font-weight: 900;
      line-height: 1.2;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .journal-list {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: clamp(240px, 24vw, 340px);
      grid-template-columns: none;
      min-width: 0;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x proximity;
      scrollbar-color: var(--blue) transparent;
      scrollbar-width: thin;
    }

    .journal-list[data-carousel-ready="true"] {
      display: block;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: none;
      scrollbar-width: none;
      cursor: grab;
      touch-action: pan-y;
      scroll-behavior: auto;
    }

    .journal-list[data-carousel-ready="true"][data-dragging="true"] {
      cursor: grabbing;
      user-select: none;
    }

    .journal-list[data-carousel-ready="true"]::-webkit-scrollbar {
      display: none;
    }

    .journal-track {
      display: flex;
      width: max-content;
    }

    .journal-list[data-carousel-ready="true"] .journal-card {
      flex: 0 0 clamp(240px, 24vw, 340px);
      scroll-snap-align: none;
    }

    .journal-list::-webkit-scrollbar {
      height: 6px;
    }

    .journal-list::-webkit-scrollbar-track {
      background: transparent;
    }

    .journal-list::-webkit-scrollbar-thumb {
      background: var(--blue);
    }

    .journal-card {
      display: grid;
      align-content: center;
      min-height: 96px;
      padding: 20px 26px;
      border-right: 1px solid rgba(0, 30, 255, 0.28);
      scroll-snap-align: start;
      transition: background 160ms ease, color 160ms ease;
    }

    .journal-card:last-child {
      border-right: none;
    }

    .journal-card span {
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .journal-card strong {
      margin-top: 8px;
      color: var(--text);
      font-size: 16px;
      font-weight: 850;
      line-height: 1.35;
    }

    .journal-card em {
      margin-top: 12px;
      color: var(--blue);
      font-size: 13px;
      font-style: normal;
      font-weight: 900;
      line-height: 1.2;
    }

    .journal-card:hover,
    .journal-card:focus-visible {
      background: var(--blue);
      outline: none;
    }

    .journal-card:hover span,
    .journal-card:hover strong,
    .journal-card:hover em,
    .journal-card:focus-visible span,
    .journal-card:focus-visible strong,
    .journal-card:focus-visible em {
      color: var(--paper);
    }

    .section {
      scroll-margin-top: 100px;
      border-bottom: 1px solid rgba(0, 30, 255, 0.35);
    }

    .section-anchor {
      position: relative;
      top: -100px;
      display: block;
      height: 0;
      overflow: hidden;
      visibility: hidden;
    }

    .section-inner {
      width: min(var(--max), calc(100% - 56px));
      margin: 0 auto;
      padding: 58px 0;
      display: grid;
      grid-template-columns: minmax(230px, 0.46fr) minmax(0, 1.54fr);
      gap: 58px;
      align-items: start;
    }

    .section-blue {
      background: var(--blue);
      color: var(--paper);
      border-bottom: none;
    }

    .section-paper {
      background: var(--paper);
    }

    .section-number {
      display: inline-block;
      margin-bottom: 18px;
      color: var(--blue);
      border-bottom: 3px solid currentColor;
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
    }

    .section-blue .section-number {
      color: var(--paper);
    }

    .section-side {
      padding-right: 46px;
      border-right: 1px solid rgba(0, 30, 255, 0.45);
    }

    .section-blue .section-side {
      border-right-color: rgba(255, 253, 248, 0.55);
    }

    .section h2,
    .manifest-main,
    .faq-heading {
      margin: 0;
      color: inherit;
      font-size: 38px;
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: 0;
    }

    .section-side p {
      margin: 24px 0 0;
      color: var(--text);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.72;
      letter-spacing: 0;
    }

    .section-main > p,
    .intro-copy {
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 17px;
      font-weight: 600;
      line-height: 1.72;
      letter-spacing: 0;
    }

    .freebie-section .intro-copy {
      max-width: 780px;
      color: #1F1C18;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.66;
      text-wrap: pretty;
    }

    .freebie-section .intro-copy + .intro-copy {
      margin-top: 18px;
    }

    .section-blue .section-side p,
    .section-blue .section-main > p,
    .section-blue .intro-copy {
      color: rgba(255, 253, 248, 0.9);
    }

    .editorial-list {
      border-top: 1px solid rgba(0, 30, 255, 0.45);
    }

    .editorial-row {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(0, 30, 255, 0.45);
    }

    .editorial-row b {
      color: var(--blue);
      font-size: 24px;
      font-weight: 900;
      line-height: 1.2;
    }

    .editorial-row span {
      color: var(--text);
      font-size: 17px;
      font-weight: 650;
      line-height: 1.58;
    }

    .editorial-row strong {
      display: block;
      margin-bottom: 4px;
      font-weight: 900;
    }

    .freebie-section .section-inner {
      grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
      align-items: center;
    }

    #fuer-wen .section-inner {
      grid-template-columns: minmax(330px, 0.62fr) minmax(0, 1.38fr);
      gap: 50px;
    }

    #fuer-wen .photo-block {
      margin-right: calc(-1 * max(28px, calc((100vw - var(--max)) / 2)));
    }

    #worum .section-inner {
      grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.5fr);
      gap: 56px;
      padding-top: 48px;
      padding-bottom: 48px;
    }

    .freebie-figure {
      margin: 0;
      display: grid;
      justify-items: center;
      border-right: 1px solid rgba(0, 30, 255, 0.45);
      padding-right: 46px;
    }

    .freebie-figure .freebie-preview {
      width: 278px;
      min-height: 0;
      transform: rotate(2deg);
      box-shadow: 0 22px 30px rgba(0, 0, 0, 0.13);
    }

    .freebie-figure .preview-title {
      margin-top: 72px;
      font-size: 38px;
    }

    .freebie-figure .preview-topics {
      margin-top: 22px;
      font-size: 15px;
      line-height: 1.08;
    }

    .freebie-figure .preview-brand {
      bottom: 34px;
    }

    .product-list {
      display: grid;
      gap: 12px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }

    .product-list li {
      display: grid;
      grid-template-columns: 24px minmax(0, 1fr);
      gap: 12px;
      color: var(--text);
      font-size: 16px;
      font-weight: 650;
      line-height: 1.5;
    }

    .product-list li::before {
      content: "✓";
      color: var(--blue);
      font-weight: 900;
    }

    .section-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 30px 0 0;
    }

    .hint {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.55;
    }

    .starter-columns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin: 30px 0 0;
      border-top: 1px solid rgba(0, 30, 255, 0.35);
      border-bottom: 1px solid rgba(0, 30, 255, 0.35);
    }

    .starter-columns article {
      min-height: 150px;
      padding: 24px 24px 26px;
      border-right: 1px solid rgba(0, 30, 255, 0.35);
    }

    .starter-columns article:last-child {
      border-right: none;
    }

    .starter-columns b {
      display: block;
      color: var(--blue);
      font-size: 15px;
      font-weight: 900;
      line-height: 1.25;
    }

    .starter-columns p {
      margin: 14px 0 0;
      color: var(--text);
      font-size: 16px;
      font-weight: 650;
      line-height: 1.55;
    }

    .audience-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(220px, 0.34fr);
      gap: 34px;
      align-items: stretch;
    }

    .audience-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 34px 46px;
      border-top: none;
    }

    .audience-list article {
      min-height: 0;
      padding: 0;
      border-right: none;
      border-bottom: none;
      position: relative;
    }

    .audience-list article::before {
      content: none;
    }

    .audience-list b,
    .module-grid b,
    .compare-col b {
      display: block;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .audience-list p,
    .module-grid p {
      margin: 12px 0 0;
      color: var(--text);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.55;
    }

    .photo-block {
      margin: 0;
      height: 100%;
      min-height: 332px;
      position: relative;
      overflow: hidden;
      background: var(--blue);
    }

    .photo-block::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.18), transparent 42%),
        linear-gradient(90deg, rgba(255, 253, 248, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(255, 253, 248, 0.08) 1px, transparent 1px);
      background-size: auto, 34px 34px, 34px 34px;
    }

    .photo-block img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      filter: saturate(0.85) contrast(0.98);
      transition: opacity 160ms ease;
    }

    .has-js .photo-block img {
      opacity: 0;
    }

    .has-js .photo-block img.is-loaded {
      opacity: 1;
    }

    .photo-main {
      aspect-ratio: auto;
    }

    .manifest {
      background: var(--paper);
      border-top: 1px solid rgba(0, 30, 255, 0.35);
      border-bottom: 1px solid rgba(0, 30, 255, 0.35);
    }

    .manifest-inner {
      width: min(var(--max), calc(100% - 56px));
      margin: 0 auto;
      padding: 74px 0;
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) 1px minmax(240px, 0.42fr);
      gap: 44px;
      align-items: center;
    }

    .manifest-main {
      position: relative;
      max-width: 760px;
      margin: 0;
      padding-left: 38px;
      font-size: 54px;
      line-height: 1.04;
    }

    .manifest-main::before {
      content: "„";
      position: absolute;
      left: -2px;
      top: -34px;
      color: var(--blue);
      font-size: 112px;
      font-weight: 900;
      line-height: 1;
    }

    .manifest-main span {
      color: var(--blue);
      display: inline-block;
    }

    .manifest-divider {
      width: 1px;
      min-height: 164px;
      background: var(--blue);
    }

    .manifest-note {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.62;
    }

    .manifest-compact .manifest-inner {
      padding: 48px 0;
      grid-template-columns: minmax(0, 0.95fr) 1px minmax(250px, 0.5fr);
      gap: 36px;
    }

    .manifest-compact .manifest-main {
      font-size: 46px;
    }

    .manifest-side {
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .manifest-photo {
      min-height: 0;
      height: 250px;
    }

    .manifest-photo img {
      object-position: center 36%;
    }

    .workbook-section .section-inner {
      grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
      gap: 56px;
      align-items: stretch;
      padding-top: 48px;
      padding-bottom: 48px;
    }

    .workbook-section {
      background: var(--paper);
      color: var(--text);
      border-top: 1px solid rgba(0, 30, 255, 0.35);
      border-bottom: 1px solid rgba(0, 30, 255, 0.35);
    }

    .workbook-section .section-number {
      color: var(--blue);
    }

    .workbook-figure {
      margin: 0;
      display: grid;
      place-items: center;
      padding-right: 46px;
      border-right: 1px solid rgba(0, 30, 255, 0.35);
    }

    .workbook-preview {
      width: 255px;
      min-height: 0;
      background: transparent;
      color: var(--paper);
      transform: rotate(-4deg);
      box-shadow: 0 22px 30px rgba(0, 0, 0, 0.13);
    }

    .workbook-preview .preview-label,
    .workbook-preview .preview-title,
    .workbook-preview .preview-topics {
      color: var(--paper);
    }

    .workbook-preview .preview-title {
      margin-top: 96px;
      font-size: 52px;
      line-height: 0.92;
      text-transform: none;
    }

    .workbook-preview .preview-topics {
      font-size: 13px;
    }

    .workbook-preview .sticker {
      background: var(--paper);
      border-color: var(--paper);
      color: var(--blue);
    }

    .workbook-content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(235px, 0.45fr);
      gap: 42px;
    }

    .workbook-content h2 {
      margin: 0;
      font-size: 38px;
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: 0;
    }

    .workbook-content p {
      margin: 20px 0 0;
      color: #1F1C18;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.66;
    }

    .product-list li {
      color: var(--text);
    }

    .workbook-section .product-list {
      margin-top: 26px;
      gap: 10px;
    }

    .workbook-section .product-list li {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.45;
    }

    .product-list li::before {
      color: var(--blue);
    }

    .price-box {
      border-left: 1px solid rgba(0, 30, 255, 0.35);
      padding: 4px 0 0 34px;
      align-self: start;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .price-box p {
      margin: 0 0 8px;
      color: var(--muted);
      font-family: inherit;
      font-size: 14px;
      font-weight: 700;
      text-transform: none;
      letter-spacing: 0;
    }

    .price-box strong {
      display: block;
      color: var(--blue);
      font-size: 68px;
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: 0;
    }

    .price-box .price-anchor {
      margin-bottom: 10px;
    }

    .price-box .price-tax {
      margin: 8px 0 0;
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.35;
    }

    .price-box .button {
      width: 100%;
      margin-top: 22px;
      justify-content: space-between;
      white-space: nowrap;
    }

    .price-box .founding-note {
      margin: 16px 0 0;
      color: var(--text);
      font-family: inherit;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.55;
    }

    .price-box .commerce-note {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      line-height: 1.5;
    }

    .price-box .purchase-note {
      margin: 12px 0 0;
      color: var(--text);
      font-size: 13px;
      font-weight: 750;
      line-height: 1.45;
    }

    .workbook-section .button.light {
      background: var(--blue);
      color: var(--paper);
    }

    .workbook-section .button.light:hover {
      background: var(--blue-dark);
      color: var(--paper);
    }

    .workbook-section .button.secondary {
      border-color: var(--text);
      color: var(--text);
    }

    .workbook-section .button.secondary:hover {
      background: var(--text);
      color: var(--paper);
    }

    .legal-note {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.55;
    }

    .price-box .legal-note {
      margin-top: 22px;
      text-transform: none;
      letter-spacing: 0;
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
    }

    .workbook-page-gallery {
      width: min(var(--max), calc(100% - 56px));
      margin: 0 auto;
      border-top: 1px solid rgba(0, 30, 255, 0.35);
      padding-top: 28px;
      padding-bottom: 48px;
      scroll-margin-top: 112px;
    }

    .workbook-page-gallery-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 22px;
    }

    .workbook-page-gallery-head h3 {
      margin: 0;
      color: var(--text);
      font-size: 24px;
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: 0;
    }

    .workbook-page-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: clamp(260px, 24vw, 310px);
      gap: 18px;
      margin: 0;
      padding: 0 0 18px;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-snap-type: inline mandatory;
      scrollbar-color: rgba(0, 30, 255, 0.45) rgba(0, 30, 255, 0.12);
    }

    .workbook-page-track::-webkit-scrollbar {
      height: 8px;
    }

    .workbook-page-track::-webkit-scrollbar-track {
      background: rgba(0, 30, 255, 0.08);
    }

    .workbook-page-track::-webkit-scrollbar-thumb {
      background: rgba(0, 30, 255, 0.42);
    }

    .workbook-page-card {
      scroll-snap-align: start;
      margin: 0;
    }

    .workbook-page-visual {
      position: relative;
      overflow: hidden;
      aspect-ratio: 210 / 297;
      background: #ffffff;
      border: 1px solid rgba(0, 30, 255, 0.22);
      border-radius: 6px;
      box-shadow: 0 16px 26px rgba(28, 24, 18, 0.14);
    }

    .workbook-page-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .workbook-page-card.is-redacted .workbook-page-visual::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 42%;
      background: linear-gradient(180deg, rgba(247, 246, 242, 0.42), rgba(247, 246, 242, 0.96));
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .workbook-page-card figcaption {
      min-height: 44px;
      margin-top: 12px;
      color: var(--text);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: 0;
    }

    .workbook-gallery-cta {
      display: none;
    }

    .module-band {
      width: min(var(--max), calc(100% - 56px));
      margin: 0 auto;
      padding: 0 0 68px;
    }

    .module-band h3 {
      margin: 0 0 26px;
      color: var(--text);
      font-size: 24px;
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: 0;
    }

    .module-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 34px 44px;
      padding-top: 22px;
      border-top: 1px solid rgba(0, 30, 255, 0.16);
      border-bottom: none;
    }

    .module-grid article {
      min-height: 0;
      padding: 0 10px 0 0;
      border-right: none;
      position: relative;
    }

    .module-grid article::before {
      content: none;
    }

    .module-grid b {
      min-height: 0;
      color: var(--blue);
    }

    .module-grid p {
      color: #5F5A52;
      font-weight: 620;
    }

    .compare-section .section-inner {
      grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1.58fr);
    }

    .compare-section {
      border-bottom: 1px solid rgba(0, 30, 255, 0.16);
    }

    #fuer-wen {
      border-bottom-color: rgba(0, 30, 255, 0.16);
    }

    .compare-section .section-side,
    #fuer-wen .section-side {
      padding-right: 42px;
      border-right: 1px solid rgba(0, 30, 255, 0.18);
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(44px, 7vw, 96px);
      padding-top: 0;
      border-top: none;
      border-bottom: none;
      background: transparent;
    }

    .compare-col {
      padding: 0;
      border-top: none;
      position: relative;
    }

    .compare-col:first-child {
      border-right: none;
    }

    .compare-col + .compare-col {
      padding-left: clamp(28px, 4vw, 58px);
    }

    .compare-col + .compare-col::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 4px;
      width: 1px;
      background: rgba(0, 30, 255, 0.14);
    }

    .compare-col h3 {
      margin: 12px 0 24px;
      color: var(--text);
      font-size: 30px;
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: 0;
    }

    .compare-col ul {
      display: grid;
      gap: 11px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .compare-col li {
      display: grid;
      grid-template-columns: 8px minmax(0, 1fr);
      gap: 12px;
      color: var(--text);
      font-size: 16px;
      font-weight: 650;
      line-height: 1.45;
    }

    .compare-col li::before {
      content: "";
      width: 4px;
      height: 4px;
      margin-top: 0.72em;
      border-radius: 999px;
      background: var(--blue);
    }

    .compare-col .button {
      margin-top: 28px;
    }

    .compare-commerce-note {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      line-height: 1.5;
    }

    .compare-section .module-band {
      width: 100%;
      padding: 58px 0 0;
    }

    .compare-section .module-grid {
      grid-template-columns: repeat(5, 1fr);
    }

    .faq-section .section-inner {
      grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1.72fr);
      padding: 44px 0;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      border-top: 1px solid rgba(0, 30, 255, 0.35);
    }

    details {
      min-height: 76px;
      padding: 18px 18px 18px 0;
      border-bottom: 1px solid rgba(0, 30, 255, 0.35);
    }

    details:nth-child(odd) {
      padding-right: 18px;
      border-right: none;
    }

    details:nth-child(even) {
      padding-left: 0;
    }

    summary {
      cursor: pointer;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 24px;
      gap: 16px;
      color: var(--text);
      font-size: 15px;
      font-weight: 900;
      line-height: 1.38;
      letter-spacing: 0;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary b {
      color: var(--blue);
      font-size: 24px;
      line-height: 1;
      text-align: right;
    }

    details p {
      margin: 12px 0 0;
      color: #2C2924;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.62;
      letter-spacing: 0;
    }

    footer {
      width: min(var(--max), calc(100% - 56px));
      margin: 0 auto;
      padding: 34px 0 42px;
      display: grid;
      grid-template-columns: 150px 1fr 1.1fr auto;
      gap: 32px;
      align-items: end;
      color: var(--text);
    }

    .footer-nav {
      display: flex;
      gap: 28px;
      font-size: 13px;
      font-weight: 800;
    }

    footer p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
    }

    footer small {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    @media (max-width: 1120px) {
      .header-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 12px;
        padding: 14px 0 10px;
      }

      .header-nav {
        justify-self: stretch;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        gap: 8px 14px;
        overflow: visible;
        padding: 2px 0 8px;
        white-space: normal;
        font-size: 12px;
      }

      .header-nav a,
      .header-nav .language-select {
        flex: 0 1 auto;
      }

      .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 70px;
      }

      .hero::before {
        display: none;
      }

      .hero-copy {
        padding-left: 0;
        margin-bottom: 16px;
      }

      .hero-visual {
        min-height: 460px;
        margin-top: 10px;
      }

      .section-inner,
      .freebie-section .section-inner,
      .workbook-section .section-inner,
      .compare-section .section-inner,
      .faq-section .section-inner,
      #fuer-wen .section-inner,
      #worum .section-inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .section-side,
      .freebie-figure,
      .workbook-figure,
      .price-box {
        padding-right: 0;
        padding-left: 0;
        border-right: none;
        border-left: none;
      }

      .freebie-section .freebie-figure {
        display: none;
      }

      .audience-layout,
      .workbook-content {
        grid-template-columns: 1fr;
      }

      .photo-block {
        height: auto;
      }

      #fuer-wen .photo-block {
        margin-right: 0;
      }

      .photo-block img {
        height: auto;
      }

      .module-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .compare-section .module-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .module-grid article:nth-child(2n) {
        border-right: none;
      }

      .module-grid article:last-child {
        grid-column: auto;
        min-height: auto;
        border-top: none;
      }

      .compare-section .module-grid article:last-child {
        border-top-color: transparent;
      }

      footer {
        grid-template-columns: 1fr;
        align-items: start;
      }
    }

    @media (max-width: 760px) {
      .header-inner,
      .hero,
      .journal-inner,
      .section-inner,
      .module-band,
      .manifest-inner,
      footer {
        width: min(100% - 32px, var(--max));
      }

      .header-inner {
        min-height: 70px;
        grid-template-columns: 1fr auto;
        gap: 14px;
        position: relative;
      }

      .journal-label {
        display: none;
      }

      .logo {
        font-size: 22px;
      }

      .header-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex !important;
        padding-right: 0;
      }

      .header-nav .language-select {
        display: none;
      }

      .header-nav a[href="#faq"] {
        display: none;
      }

      .mobile-language-link {
        grid-column: 2;
        grid-row: 1;
        position: static;
        z-index: 30;
        display: inline-flex !important;
        justify-self: end;
        align-self: start;
        min-height: 34px;
        min-width: 50px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 30, 255, 0.35);
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .hero {
        padding: 38px 0 28px;
        gap: 18px;
      }

      .hero h1 {
        font-size: 43px;
        line-height: 1;
      }

      .hero-subheadline {
        margin-top: 22px;
        max-width: 330px;
        font-size: 14px;
        line-height: 1.46;
        overflow-wrap: break-word;
      }

      .hero-result {
        display: block;
        margin-top: 14px;
        padding: 7px 0 8px;
        font-size: 12px;
      }

      .hero-actions,
      .section-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions {
        gap: 10px;
        margin-top: 28px;
        max-width: 100%;
        min-width: 0;
        margin-bottom: 24px;
      }

      .hero-freebie-action {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .hero-action-note {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
        text-align: center;
        font-size: 12px;
        overflow-wrap: break-word;
      }

      .button {
        min-height: 44px;
        width: 100%;
        padding-inline: 16px;
        font-size: 11px;
      }

      .hero-visual {
        min-height: clamp(220px, 52vw, 284px);
        margin-top: 18px;
      }

      .visual-grid {
        inset: 28px 24px 12px 38px;
        background-size: 21px 21px;
      }

      .hero-cover-stack {
        width: clamp(286px, 68vw, 360px);
        min-height: clamp(220px, 52vw, 284px);
      }

      .hero-visual .freebie-preview {
        width: clamp(140px, 27vw, 176px);
        min-height: 0;
        left: clamp(20px, 8vw, 52px);
        top: clamp(22px, 7vw, 36px);
      }

      .hero-visual .workbook-preview {
        width: clamp(142px, 28vw, 180px);
        min-height: 0;
        right: clamp(18px, 7vw, 46px);
        bottom: 14px;
      }

      .cover-fallback {
        padding: 15px 16px 16px;
      }

      .cover-fallback::before {
        inset: 8px;
      }

      .cover-fallback-kicker {
        font-size: 7px;
      }

      .cover-fallback strong {
        max-width: 8.8ch;
        margin-top: 28px;
        font-size: 17px;
      }

      .cover-fallback span:not(.cover-fallback-kicker) {
        max-width: 15ch;
        margin-top: 10px;
        font-size: 6.5px;
      }

      .cover-fallback-brand {
        font-size: 13px;
      }

      .freebie-figure .freebie-preview {
        width: 236px;
        min-height: 0;
      }

      .freebie-figure .cover-fallback,
      .workbook-figure .cover-fallback {
        padding: 22px 24px 24px;
      }

      .freebie-figure .cover-fallback-kicker,
      .workbook-figure .cover-fallback-kicker {
        font-size: 10px;
      }

      .freebie-figure .cover-fallback strong,
      .workbook-figure .cover-fallback strong {
        margin-top: 46px;
        font-size: 25px;
      }

      .freebie-figure .cover-fallback span:not(.cover-fallback-kicker),
      .workbook-figure .cover-fallback span:not(.cover-fallback-kicker) {
        margin-top: 15px;
        font-size: 9px;
      }

      .freebie-figure .cover-fallback-brand,
      .workbook-figure .cover-fallback-brand {
        font-size: 18px;
      }

      .freebie-section .freebie-figure {
        display: none;
        justify-items: center;
        padding-bottom: 8px;
      }

      .hero-visual .preview-label {
        font-size: 9px;
      }

      .hero-visual .preview-title {
        margin-top: 36px;
        font-size: 23px;
      }

      .hero-visual .freebie-preview .preview-title {
        margin-top: 36px;
        font-size: 23px;
      }

      .hero-visual .workbook-preview .preview-title {
        margin-top: 42px;
        font-size: 22px;
      }

      .hero-visual .preview-topics {
        margin-top: 14px;
        font-size: 10px;
      }

      .hero-visual .freebie-preview .preview-topics {
        margin-top: 14px;
        font-size: 10px;
      }

      .hero-visual .workbook-preview .preview-label,
      .hero-visual .workbook-preview .preview-topics {
        font-size: 9px;
      }

      .hero-visual .workbook-preview .preview-topics {
        margin-top: 12px;
      }

      .hero-visual .preview-brand {
        left: 16px;
        bottom: 16px;
        font-size: 15px;
      }

      .hero-visual .freebie-preview .preview-brand {
        bottom: 16px;
      }

      .hero-visual .sticker {
        right: -10px;
        top: 34px;
        width: auto;
        height: auto;
        padding: 7px 8px;
        font-size: 7px;
      }

      .hero-visual .cover-circle {
        right: -10px;
        bottom: 30px;
        width: 50px;
        height: 50px;
        font-size: 7px;
        border-width: 1px;
      }

      .hero-visual .hero-cover-note {
        right: -6px;
        top: auto;
        bottom: 34px;
      }

      .freebie-figure .preview-title {
        margin-top: 60px;
        font-size: 31px;
      }

      .freebie-figure .preview-topics {
        font-size: 13px;
      }

      .freebie-figure .preview-brand {
        left: 24px;
        bottom: 24px;
        font-size: 18px;
      }

      .freebie-figure .sticker {
        right: -12px;
        top: 46px;
        width: auto;
        height: auto;
        padding: 8px 10px;
        font-size: 10px;
      }

      .section-inner,
      .manifest-inner {
        padding: 50px 0;
      }

      .workbook-page-gallery {
        width: min(100% - 32px, var(--max));
        padding-top: 28px;
        padding-bottom: 50px;
      }

      .workbook-page-gallery-head {
        display: grid;
        gap: 8px;
        margin-bottom: 18px;
      }

      .workbook-page-track {
        grid-auto-columns: clamp(252px, 78vw, 292px);
        gap: 14px;
        margin: 0;
        padding: 0 0 16px;
      }

      .workbook-page-card figcaption {
        min-height: 50px;
        font-size: 12px;
        line-height: 1.38;
      }

      .workbook-gallery-cta {
        display: grid;
        gap: 14px;
        margin: 24px 0 0;
        padding: 20px;
        border: 1px solid rgba(0, 30, 255, 0.35);
        background: rgba(255, 253, 248, 0.68);
      }

      .workbook-gallery-cta p {
        margin: 0;
        color: var(--text);
        font-size: 14px;
        font-weight: 650;
        line-height: 1.45;
      }

      .workbook-gallery-cta .workbook-gallery-cta-kicker {
        font-size: 22px;
        font-weight: 900;
        line-height: 1.12;
      }

      .workbook-gallery-cta .workbook-gallery-cta-meta {
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
      }

      .workbook-gallery-cta .button {
        width: 100%;
        margin-top: 2px;
        justify-content: space-between;
      }

      .manifest-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
      }

      .manifest-compact .manifest-inner {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .section h2,
      .workbook-content h2,
      .faq-heading {
        font-size: 28px;
        line-height: 1.14;
      }

      .manifest-main {
        font-size: 38px;
        padding-left: 28px;
      }

      .manifest-compact .manifest-main {
        font-size: 38px;
      }

      .manifest-main::before {
        top: -24px;
        font-size: 78px;
      }

      .manifest-divider {
        width: 78px;
        min-height: 0;
        height: 3px;
      }

      .editorial-row {
        grid-template-columns: 28px 1fr;
        gap: 12px;
        padding: 18px 0;
      }

      .editorial-row b {
        font-size: 20px;
      }

      .editorial-row span {
        font-size: 14px;
        line-height: 1.45;
      }

      .journal-inner {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .journal-label {
        padding: 14px 0 10px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 30, 255, 0.28);
      }

      .journal-list {
        grid-auto-columns: minmax(190px, 72vw);
        gap: 10px;
        margin: 0 -16px;
        padding: 12px 16px 14px;
      }

      .journal-list[data-carousel-ready="true"] .journal-card {
        flex-basis: min(72vw, 340px);
        min-width: 190px;
      }

      .journal-card {
        min-height: 0;
        padding: 12px;
        border: 1px solid rgba(0, 30, 255, 0.28);
      }

      .journal-card:last-child {
        border-bottom: 1px solid rgba(0, 30, 255, 0.28);
      }

      .audience-list,
      .compare-grid,
      .faq-grid,
      .module-grid,
      .compare-section .module-grid,
      .starter-columns,
      .manifest-inner,
      footer {
        grid-template-columns: 1fr;
      }

      .compare-grid {
        gap: 30px;
        padding-top: 0;
      }

      .compare-col,
      details,
      details:nth-child(odd),
      details:nth-child(even),
      .module-grid article,
      .module-grid article:nth-child(2n),
      .module-grid article:last-child {
        min-height: 0;
        padding: 24px 0;
        border-right: none;
        border-left: none;
      }

      .compare-col + .compare-col {
        padding-left: 0;
      }

      .compare-col + .compare-col::before {
        display: none;
      }

      .starter-columns article {
        min-height: 0;
        padding: 18px 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 30, 255, 0.35);
      }

      .starter-columns article:last-child {
        border-bottom: none;
      }

      .freebie-section .intro-copy {
        max-width: none;
        margin-top: 18px;
        color: #1F1C18;
        font-size: 16px;
        line-height: 1.62;
      }

      .freebie-section .intro-copy + .intro-copy {
        margin-top: 15px;
      }

      .starter-columns p,
      .compare-col li,
      .audience-list p,
      .module-grid p {
        font-size: 14px;
        line-height: 1.45;
      }

      .compare-col h3 {
        margin-bottom: 14px;
        font-size: 21px;
        line-height: 1.14;
      }

      .compare-section .section-side,
      .compare-section .section-main,
      .compare-col {
        min-width: 0;
      }

      .compare-section .section-side,
      #fuer-wen .section-side {
        padding-right: 0;
        border-right: none;
      }

      .compare-section .section-side p,
      .compare-col h3,
      .compare-col li {
        overflow-wrap: break-word;
      }

      .compare-section .section-side p {
        font-size: 14px;
        line-height: 1.5;
      }

      .compare-section .section-side h2 {
        font-size: 25px;
        line-height: 1.12;
      }

      .compare-col ul {
        gap: 10px;
      }

      .compare-col .button {
        margin-top: 22px;
      }

      .module-grid article,
      .module-grid article:last-child {
        border-bottom: none;
      }

      .compare-section .module-grid article,
      .compare-section .module-grid article:last-child {
        border-bottom-color: transparent;
      }

      .module-grid article:last-child {
        border-bottom: none;
      }

      .audience-list article,
      .audience-list article:nth-child(2n) {
        min-height: 0;
        padding: 18px 0;
        border-right: none;
        border-bottom: none;
      }

      .photo-block {
        grid-template-columns: 1fr;
        height: 220px;
        min-height: 0;
        margin-top: 4px;
      }

      .photo-block img {
        height: 220px;
        object-fit: cover;
        object-position: center 34%;
      }

      .workbook-preview {
        width: 198px;
        min-height: 0;
      }

      .workbook-preview .preview-title {
        margin-top: 74px;
        font-size: 42px;
      }

      .workbook-preview .preview-topics {
        font-size: 11px;
      }

      .price-box {
        padding-top: 22px;
        border-top: 1px solid rgba(0, 30, 255, 0.35);
      }

      .price-box strong {
        font-size: 58px;
      }

      .compare-col:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 30, 255, 0.18);
      }

      .footer-nav {
        flex-direction: column;
        gap: 12px;
      }
    }

/* English homepage adjustments for longer copy. */
html[lang="en"] .manifest-main::before {
  content: "“";
}

@media (max-width: 760px) {
  html[lang="en"] .hero-visual .freebie-preview .preview-title {
    margin-top: 28px;
    font-size: 18px;
    line-height: 0.98;
  }

  html[lang="en"] .hero-visual .freebie-preview .preview-topics {
    margin-top: 10px;
    font-size: 9px;
  }
}

@media (max-width: 540px) {
  html[lang="en"] .workbook-section .workbook-preview {
    min-height: 286px;
  }
}

@media (max-width: 340px) {
  html[lang="en"] .header-nav {
    gap: 8px 8px;
    font-size: 11px;
  }
}
