:root {
    --font-body: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--bg: #f7f4ef;
  --surface: #ffffff;
  --surface-muted: #efe8dd;
  --surface-strong: #181512;
  --text: #211c17;
  --text-soft: #62574d;
  --line: rgba(33, 28, 23, 0.12);
  --accent: #8b5e34;
  --accent-dark: #6f4825;
  --shadow: 0 24px 70px rgba(30, 20, 10, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 94, 52, 0.12), transparent 34rem),
    var(--bg);
  font-family:
    var(--font-body);
  line-height: 1.55;
}

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

h1,
h2,
h3,
.brand-name {
  font-family: var(--font-display);
}

.brand-wordmark {
  display: block;
  width: 124px;
  height: auto;
  flex: 0 0 auto;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: inherit;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  box-sizing: border-box;
  border: 1px solid #B8BEC3;
  border-radius: 12px;
  overflow: hidden;
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.main-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.main-nav a,
.footer-nav a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.hero {
  padding: 92px 0 40px;
}

.hero-grid,
.split-grid,
.showcase-grid {
  display: grid;
  gap: 48px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-text {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: 1.25rem;
}

.hero-note,
.beta-note {
  margin: 22px 0 0;
  color: var(--text-soft);
}

.eyebrow,
.mini-label {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-small {
  min-height: 46px;
  padding: 0 20px;
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: rgba(33, 28, 23, 0.25);
}

.button-demo {
  color: #2b1a0b;
  border-color: #8a5f22;
  background: #d6a243;
  box-shadow: none;
}

.button-demo:hover {
  color: #241305;
  border-color: #6f4a18;
  background: #c8912f;
  box-shadow: none;
}

.button-demo:focus-visible {
  outline: 3px solid rgba(214, 162, 67, 0.36);
  outline-offset: 3px;
}

.hero-card,
.code-card,
.feature-card,
.beta-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.workflow-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.workflow-list li {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
}

.workflow-list strong {
  font-size: 1.04rem;
}

.workflow-list span {
  color: var(--text-soft);
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  max-width: 860px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
}

.section-copy {
  color: var(--text-soft);
  font-size: 1.16rem;
}

.section-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: 42px;
}

.card-grid,
.audience-grid {
  display: grid;
  gap: 20px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-card {
  min-height: 116px;
  display: flex;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.showcase-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
}

.showcase-grid p {
  max-width: 720px;
  font-size: 1.15rem;
}

.code-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.code-card .mini-label {
  color: #edc58f;
}

pre {
  margin: 0;
  overflow-x: auto;
  white-space: pre-wrap;
  color: #f7f1ea;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.95rem;
  line-height: 1.65;
}

.beta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.beta-panel h2 {
  margin-bottom: 18px;
}

.beta-panel p {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.beta-actions {
  display: grid;
  justify-items: start;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 104px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.comic-story {
  padding: 0 0 86px;
}

.comic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.comic-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.comic-card-third {
  width: calc(100% + 22px);
  justify-self: start;
}

.comic-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Third regenerated comic contains extra internal frame; zoom it to match panels 1 and 2. */
.comic-card-third img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.26);
  transform-origin: center center;
}

@media (max-width: 1024px) {
  .comic-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid,
  .showcase-grid,
  .beta-panel {
    grid-template-columns: 1fr;
  }

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

  .main-nav {
    display: none;
  }
}

@media (max-width: 720px) {






  .sharing-demo-actions,



  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: 1.4rem;
  }
.shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
  }

  .header-inner .button-small {
    display: none;
  }

  .hero {
    padding: 64px 0 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

  .section {
    padding: 72px 0;
  }

  .card-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .feature-card,
  .code-card,
  .beta-panel {
    padding: 22px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .footer-inner {
    min-height: auto;
    padding: 28px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Public Sharing widget code card: light section contrast fix */
.section-sharing .code-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
}

.section-sharing .code-card .mini-label {
  color: var(--accent-dark);
}

.section-sharing .code-card pre,
.section-sharing .code-card code {
  color: var(--text);
}

.section-sharing .code-card pre {
  margin: 0;
  overflow-x: auto;
  white-space: pre-wrap;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.95rem;
  line-height: 1.65;
}

.sharing-variants {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.sharing-variants strong {
  color: var(--text);
  font-weight: 800;
}

/* Public Sharing final layout */
.section-sharing .showcase-grid {
  align-items: stretch;
}

.section-sharing .sharing-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-height: 100%;
  padding-top: 52px;
  transform: none;
}

.section-sharing .sharing-demo-actions {
  display: flex;
  justify-content: flex-start;
}

.section-sharing .sharing-demo-actions .button {
  min-width: 238px;
}

@media (max-width: 1024px) {
  .section-sharing .sharing-aside {
    padding-top: 0;
    gap: 20px;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .section-sharing .sharing-demo-actions,
  .section-sharing .sharing-demo-actions .button {
    width: 100%;
  }
}

.section-sharing .sharing-variants-right strong {
  color: var(--text);
  font-weight: 800;
}

.section-sharing .sharing-variants-right {
  max-width: 720px;
  margin: 0;
}

.feature-card {
  background: var(--surface-muted);
}

@media (max-width: 1024px) {
  }

/* Quiet decorative icons: keep semantics, restore text readability */
.feature-card,
.audience-card {
  position: relative;
}

.feature-card {
  padding-right: 72px;
}

.audience-card {
  padding-right: 68px;
}

.card-head {
  display: block;
  margin-bottom: 12px;
}

.card-head h3 {
  margin: 0;
}

.audience-inner {
  display: block;
}

.audience-label {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.card-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  opacity: 0.58;
  pointer-events: none;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p {
  margin: 0;
}

@media (max-width: 720px) {
  .feature-card,
  .audience-card {
    padding-right: 62px;
  }

  .card-icon {
    top: 20px;
    right: 20px;
    width: 26px;
    height: 26px;
  }

  .card-icon svg {
    width: 26px;
    height: 26px;
  }
}

/* Demo & Beta-Info section */
.beta-overview {
  display: grid;
  gap: 34px;
}

.beta-intro {
  max-width: 920px;
}

.beta-intro h2 {
  margin-bottom: 18px;
}

.beta-intro p {
  max-width: 820px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.request-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
}

.request-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.request-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.6;
}

.request-card .button {
  align-self: flex-start;
}

.request-note {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.newsletter-note h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.newsletter-note p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.button-disabled,
.button-disabled:hover {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1024px) {
  .request-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .request-card {
    min-height: auto;
    padding: 24px;
  }

  .newsletter-note {
    padding: 22px;
  }

  .request-card .button,
  .newsletter-note .button {
    width: 100%;
  }
}

/* Standalone form pages */
.form-hero {
  padding-top: 72px;
}

.form-shell {
  display: grid;
  gap: 36px;
  max-width: 1040px;
}

.form-shell-compact {
  max-width: 820px;
}

.form-intro {
  max-width: 920px;
}

.form-intro h1 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.form-intro p {
  max-width: 840px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.68;
}

.lead-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-group label,
.field-group legend {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.field-group label span,
.field-group legend span {
  color: var(--accent-dark);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(33, 28, 23, 0.2);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
  padding: 15px 16px;
  outline: none;
}

.field-group textarea {
  resize: vertical;
  min-height: 140px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 94, 52, 0.12);
}

.checkbox-block {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.checkbox-block legend {
  padding: 0 8px;
}

.choice-row,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.choice-row + .choice-row {
  margin-top: 10px;
}

.choice-row input,
.consent-row input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

.consent-row {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(239, 232, 221, 0.72);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
}

.form-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.form-footer a {
  color: var(--accent-dark);
  font-weight: 800;
}

.integration-note {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  .lead-form {
    padding: 22px;
  }

  .form-footer .button {
    width: 100%;
  }
}

/* Live lead form feedback */
.form-feedback {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  line-height: 1.55;
}

.form-feedback-success {
  border: 1px solid rgba(86, 124, 74, 0.28);
  background: rgba(213, 231, 207, 0.78);
  color: #31522a;
}

.form-feedback-error {
  border: 1px solid rgba(148, 72, 61, 0.3);
  background: rgba(242, 218, 214, 0.82);
  color: #71382f;
}

.lead-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

/* Form copy refinement */
.form-intro .form-intro-note {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.65;
}

/* Checkbox sections */
.checkbox-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-group legend {
  padding: 0;
}

.checkbox-group .field-label {
  margin-bottom: 10px;
}

.field-hint {
  margin: -2px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Lead form success state */
.lead-success-state {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(86, 124, 74, 0.28);
  border-radius: var(--radius-md);
  background: rgba(213, 231, 207, 0.78);
  scroll-margin-top: 120px;
}

.lead-success-state[hidden] {
  display: none;
}

.lead-success-state h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.lead-success-state p {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.lead-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .lead-success-state {
    padding: 22px;
  }

  .lead-success-actions .button {
    width: 100%;
  }
}

/* Landing composition refinements */
#problem .section-copy {
  padding-top: 16px;
}

/* Beta / business request cards: align CTA rows and footer notes */
.request-card {
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: start;
}

.request-card > div {
  align-self: start;
}

.request-card .button {
  margin-top: 18px;
}

.request-card .request-note {
  margin-top: 16px;
}

/* Audience section: target-group grid plus vertical comic panel */
.audience-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 29vw, 350px);
  gap: 36px;
  align-items: end;
}

.audience-showcase .audience-grid {
  align-self: end;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-comic-card {
  width: 100%;
  max-width: 350px;
  margin: 0;
  justify-self: end;
  align-self: end;
}

.audience-comic-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Audience section: desktop composition refinement */
@media (min-width: 1025px) {
  #zielgruppen .section-heading {
    margin-bottom: 42px;
  }

  #zielgruppen .audience-showcase {
    position: relative;
    display: block;
    margin-top: 0;
  }

  #zielgruppen .audience-grid {
    width: 760px;
    max-width: calc(100% - 386px);
    gap: 18px;
  }

  #zielgruppen .audience-card {
    min-height: 108px;
    padding: 24px 64px 24px 24px;
  }

  #zielgruppen .audience-inner {
    min-height: auto;
    padding: 0;
  }

  #zielgruppen .audience-label {
    font-size: 1rem;
    line-height: 1.3;
  }

  #zielgruppen .audience-comic-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 350px;
    max-width: 350px;
  }
}

@media (max-width: 1024px) {
  #zielgruppen .section-heading {
    margin-bottom: 24px;
  }

  .audience-showcase {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .audience-comic-card {
    justify-self: start;
    width: min(100%, 360px);
    max-width: 360px;
    margin-top: 6px;
  }
}
/* Lead success spacing */
.form-footer {
  padding-bottom: 32px;
}

.form-footer + .lead-success-state {
  margin-top: 0;
}

.hero-note-wide {
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
  margin-top: 10px;
  padding: 18px 22px;
  border: 1px solid rgba(154, 100, 53, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

/* FAQ page */
.faq-page-hero {
  padding-top: 92px;
}

.faq-grid {
  position: relative;
  display: block;
  max-width: 980px;
  margin-top: 38px;
}

.faq-grid::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(154, 100, 53, 0.22);
}

.faq-grid-page {
  margin-top: 38px;
}

.faq-item {
  position: relative;
  margin: 0;
  padding: 0 0 24px 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 17px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(154, 100, 53, 0.10);
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0 8px;
  color: var(--text);
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: -1px;
  border: 1px solid rgba(154, 100, 53, 0.22);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.78);
}

.faq-item[open] summary::before {
  content: "?";
}

.faq-item[open] summary {
  color: var(--accent-dark);
}

.faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 6px 0 0 58px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.faq-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

@media (max-width: 820px) {
  .faq-grid {
    max-width: none;
  }

  .faq-item {
    padding-left: 42px;
    padding-bottom: 20px;
  }

  .faq-item p {
    padding-left: 18px;
  }

  .faq-cta-row .button {
    width: 100%;
  }
}

/* FAQ tree axis trim */
.faq-grid::before {
  display: none;
}

.faq-item::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 2px;
  background: rgba(154, 100, 53, 0.22);
}

.faq-item:first-child::after {
  top: 22px;
}

.faq-item:last-child::after {
  bottom: calc(100% - 22px);
}

.faq-item::before {
  z-index: 1;
}

/* Landing embedded comic image size guard */
.comic-card {
  max-width: 420px;
  justify-self: center;
}

.comic-card img {
  max-height: min(54vh, 430px);
  object-fit: contain;
}

.audience-comic-card {
  max-width: 320px;
}

.audience-comic-card img {
  max-height: min(46vh, 340px);
  object-fit: contain;
}

@media (max-width: 820px) {
  .comic-card {
    max-width: min(100%, 360px);
  }

  .comic-card img {
    max-height: min(48vh, 360px);
  }

  .audience-comic-card {
    max-width: min(100%, 320px);
  }

  .audience-comic-card img {
    max-height: min(42vh, 300px);
  }
}

/* Audience comic size guard aligned with comic cards */
#zielgruppen .audience-comic-card,
.audience-comic-card {
  width: fit-content;
  max-width: min(26vw, 320px);
  height: auto;
  justify-self: end;
  align-self: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
}

#zielgruppen .audience-comic-card img,
.audience-comic-card img {
  display: block;
  width: auto;
  max-width: min(26vw, 320px);
  height: auto;
  max-height: min(54vh, 430px);
  object-fit: contain;
  transform: none;
  border-radius: inherit;
}

@media (max-width: 1024px) {
  #zielgruppen .audience-comic-card,
  .audience-comic-card {
    max-width: min(42vw, 300px);
  }

  #zielgruppen .audience-comic-card img,
  .audience-comic-card img {
    max-width: min(42vw, 300px);
    max-height: min(48vh, 360px);
  }
}

@media (max-width: 640px) {
  #zielgruppen .audience-comic-card,
  .audience-comic-card {
    max-width: min(84vw, 280px);
    justify-self: start;
  }

  #zielgruppen .audience-comic-card img,
  .audience-comic-card img {
    max-width: min(84vw, 280px);
    max-height: min(42vh, 300px);
  }
}

/* Landing embedded image save guard */
.comic-card,
.audience-comic-card,
img[data-protected-image="true"] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.comic-card img,
.audience-comic-card img,
img[data-protected-image="true"] {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

/* App-like landing navigation */
.main-nav {
  align-items: center;
  gap: 22px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1px;
  color: rgba(67, 57, 46, 0.76);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: #9b6a2b;
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover {
  color: #211c17;
}

.main-nav a:hover::after {
  opacity: 0.42;
  transform: scaleX(0.68);
}

.main-nav a.is-active,
.main-nav a[aria-current="page"],
.main-nav a[aria-current="location"] {
  color: #211c17;
}

.main-nav a.is-active::after,
.main-nav a[aria-current="page"]::after,
.main-nav a[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Header / hero spacing polish */
@media (min-width: 920px) {
  .main-nav {
    margin-left: 22px;
    margin-right: auto;
    transform: translateX(-18px);
  }

  header .button-demo {
    margin-left: -14px;
    margin-right: 8px;
  }
}

.hero-actions {
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 760px) {
  .hero-actions {
    gap: 18px;
  }
}

/* Landing section typography and rhythm polish */
.hero,
.section {
  padding-top: 46px;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 42px;
}

.section-sharing {
  padding-top: 26px;
}

p.eyebrow,
.hero-copy p.eyebrow,
.section p.eyebrow,
.section-heading p.eyebrow,
.beta-intro p.eyebrow {
  margin: 0 0 24px;
  color: #7b4218;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2,
.section-heading h3,
.section-sharing h2,
.beta-intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

@media (max-width: 820px) {
  .hero,
  .section {
    padding-top: 38px;
  }

  p.eyebrow,
  .hero-copy p.eyebrow,
  .section p.eyebrow,
  .section-heading p.eyebrow,
  .beta-intro p.eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.17em;
  }
}

/* Landing anchored scroll alignment */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--landing-scroll-offset, 88px);
}

#top {
  scroll-margin-top: 0;
}

/* Public widget demo page */
.widget-demo-main {
  padding: 58px 0 82px;
}

.widget-demo-shell {
  max-width: 980px;
}

.widget-demo-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.widget-demo-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.widget-demo-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.widget-demo-frame-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.widget-demo-frame {
  display: block;
  width: 286px;
  height: 238px;
  min-height: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.widget-demo-legal {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.widget-demo-legal h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.widget-demo-legal p {
  margin: 0;
}

.widget-demo-legal p + p {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .widget-demo-main {
    padding: 42px 0 64px;
  }

  .widget-demo-heading {
    margin-bottom: 32px;
  }

  .widget-demo-frame {
    width: 286px;
    height: 238px;
  }

  .widget-demo-legal {
    margin-top: 32px;
    border-radius: 20px;
  }
}


.sharing-tech-note-title {
  display: block;
  margin-bottom: 0.4rem;
}


.problem-title {
  font-weight: 800;
}

.comic-card-first img {
  height: calc(100% + 1px);
  object-fit: cover;
  object-position: center;
}

.footer-social-note {
  margin: 0 0 0 0.85rem;
  margin-right: auto;
  color: rgba(76, 64, 51, 0.46);
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .footer-social-note {
    order: 2;
    width: 100%;
    margin: 0.28rem 0 0;
    font-size: 0.72rem;
    white-space: normal;
  }

  .footer-nav {
    order: 3;
  }
}

/* Footer social preparation note alignment */
.footer-inner {
  align-items: baseline;
}

.footer-social-note {
  display: inline;
  margin: 0 0 0 0.85rem;
  margin-right: auto;
  color: rgba(76, 64, 51, 0.42);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.footer-nav {
  align-items: baseline;
}

@media (max-width: 760px) {
  .footer-inner {
    align-items: flex-start;
  }

  .footer-social-note {
    order: 2;
    width: 100%;
    margin: 0.25rem 0 0;
    font-size: 0.7rem;
    line-height: 1.25;
    white-space: normal;
  }

  .footer-nav {
    order: 3;
    align-items: center;
  }
}

/* Compact CTA override */
.button-fit {
  width: fit-content;
  max-width: 100%;
  align-self: center;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
}

.sharing-demo-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sharing-demo-actions .button-fit {
  width: fit-content;
  max-width: 100%;
  flex: 0 1 auto;
}

@media (max-width: 760px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .shell,
  section,
  article,
  aside,
  header,
  footer,
  main,
  div {
    max-width: 100%;
    min-width: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  dd,
  dt,
  blockquote {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  a:not(.button) {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }

  pre,
  code,
  kbd,
  samp,
  .code-block,
  .code-card,
  .embed-code,
  .widget-code,
  .snippet,
  .copy-snippet,
  .sharing-code,
  .sharing-code-card,
  .sharing-demo-code,
  .widget-snippet,
  [class*="code"] pre,
  [class*="code"] code,
  [class*="snippet"] pre,
  [class*="snippet"] code,
  [class*="embed"] pre,
  [class*="embed"] code,
  pre[class],
  code[class] {
    max-width: 100%;
    overflow-x: hidden;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .button-fit,
  .hero-actions .button-fit,
  .cta-actions .button-fit,
  .section-actions .button-fit,
  .widget-actions .button-fit,
  .beta-actions .button-fit,
  .card-actions .button-fit,
  .sharing-demo-actions .button-fit {
    width: fit-content;
    max-width: calc(100vw - 40px);
    flex: 0 1 auto;
    align-self: center;
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Mobile portrait header: one-line compact layout */
@media (max-width: 760px) and (orientation: portrait) {
  .site-header {
    overflow-x: hidden;
  }

  .site-header .header-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    overflow: hidden;
  }

  .site-header .main-nav,
  .header-inner .main-nav {
    display: none !important;
  }

  .site-header .brand,
  .site-header .brand-lockup {
    order: 1;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 112px;
    justify-content: flex-start;
    gap: 6px;
  }

  .site-header .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .site-header .brand-wordmark {
    width: 70px;
    max-width: 70px;
    height: auto;
  }

  .site-header .header-actions {
    order: 2;
    display: flex !important;
    flex: 0 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
    max-width: calc(100vw - 120px);
  }

  .site-header .header-mobile-pill,
  .site-header .button.header-mobile-pill,
  .site-header a.button.header-mobile-pill,
  .site-header .header-actions .header-mobile-pill {
    order: 2;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 34px;
    justify-content: center;
    align-items: center;
    padding: 6px 9px;
    border-radius: 999px;
    white-space: nowrap;
    text-align: center;
    font-size: 0.64rem;
    line-height: 1.05;
  }
}

@media (max-width: 380px) and (orientation: portrait) {
  .site-header .header-inner {
    gap: 5px;
  }

  .site-header .brand,
  .site-header .brand-lockup {
    max-width: 96px;
    gap: 5px;
  }

  .site-header .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .site-header .brand-wordmark {
    width: 60px;
    max-width: 60px;
  }

  .site-header .header-actions {
    gap: 5px;
    max-width: calc(100vw - 102px);
  }

  .site-header .header-mobile-pill,
  .site-header .button.header-mobile-pill,
  .site-header a.button.header-mobile-pill,
  .site-header .header-actions .header-mobile-pill {
    min-height: 32px;
    padding: 5px 7px;
    font-size: 0.6rem;
  }
}

@media (max-width: 420px) {
  .button-fit,
  .hero-actions .button-fit,
  .cta-actions .button-fit,
  .section-actions .button-fit,
  .widget-actions .button-fit,
  .beta-actions .button-fit,
  .card-actions .button-fit,
  .sharing-demo-actions .button-fit {
    max-width: calc(100vw - 32px);
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Mobile portrait FAQ access */
.site-header .header-faq-pill {
  display: none !important;
}

@media (max-width: 760px) and (orientation: portrait) {
  .site-header .shell.header-inner {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
    gap: 4px;
    justify-content: flex-start;
    overflow-x: hidden;
  }

  .site-header .brand,
  .site-header .brand-lockup {
    flex: 0 0 auto;
    max-width: 86px;
    gap: 4px;
  }

  .site-header .brand-mark {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .site-header .brand-wordmark {
    width: 54px;
    max-width: 54px;
  }

  .site-header .header-actions {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    margin-left: auto;
    gap: 4px;
    justify-content: flex-end;
    overflow: hidden;
  }

  .site-header .header-mobile-pill,
  .site-header .button.header-mobile-pill,
  .site-header a.button.header-mobile-pill,
  .site-header .header-actions .header-mobile-pill {
    min-width: 0;
    min-height: 30px;
    padding: 5px 6px;
    font-size: 0.56rem;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .site-header .header-faq-pill,
  .site-header a.button.header-faq-pill,
  .site-header .header-actions .header-faq-pill {
    display: inline-flex !important;
    flex: 0 0 auto;
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 380px) and (orientation: portrait) {
  .site-header .shell.header-inner {
    padding-left: 6px;
    padding-right: 6px;
    gap: 3px;
  }

  .site-header .brand,
  .site-header .brand-lockup {
    max-width: 74px;
    gap: 3px;
  }

  .site-header .brand-mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .site-header .brand-wordmark {
    width: 45px;
    max-width: 45px;
  }

  .site-header .header-actions {
    gap: 3px;
  }

  .site-header .header-mobile-pill,
  .site-header .button.header-mobile-pill,
  .site-header a.button.header-mobile-pill,
  .site-header .header-actions .header-mobile-pill {
    min-height: 28px;
    padding: 4px 5px;
    font-size: 0.52rem;
  }

  .site-header .header-faq-pill,
  .site-header a.button.header-faq-pill,
  .site-header .header-actions .header-faq-pill {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (max-width: 340px) and (orientation: portrait) {
  .site-header .brand,
  .site-header .brand-lockup {
    max-width: 30px;
  }

  .site-header .brand-wordmark {
    display: none;
  }
}
/* End mobile portrait FAQ access */

/* Final mobile FAQ botanic yellow override */
@media (max-width: 760px) and (orientation: portrait) {
  .site-header .header-actions a.button.header-faq-pill,
  .site-header .header-actions .button.header-faq-pill,
  .site-header a.button.button-secondary.header-mobile-pill.header-faq-pill {
    color: #2b1a0b !important;
    border-color: #8a5f22 !important;
    background: #d6a243 !important;
    box-shadow: none !important;
  }

  .site-header .header-actions a.button.header-faq-pill:hover,
  .site-header .header-actions .button.header-faq-pill:hover,
  .site-header a.button.button-secondary.header-mobile-pill.header-faq-pill:hover {
    color: #241305 !important;
    border-color: #6f4a18 !important;
    background: #c8912f !important;
    box-shadow: none !important;
  }

  .site-header .header-actions a.button.header-faq-pill:focus-visible,
  .site-header .header-actions .button.header-faq-pill:focus-visible,
  .site-header a.button.button-secondary.header-mobile-pill.header-faq-pill:focus-visible {
    outline: 3px solid rgba(214, 162, 67, 0.36) !important;
    outline-offset: 3px !important;
  }
}
/* End final mobile FAQ botanic yellow override */

/* Landing mobile footer, audience grid and beta anchor polish */
.beta-scroll-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 78px;
}

.site-footer.site-footer-universal {
  border-top: 1px solid rgba(139, 94, 52, 0.18);
  padding: 14px 0 18px;
}

.site-footer .footer-inner.footer-mobile-stack {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.site-footer .footer-copy {
  margin: 0;
  color: rgba(32, 27, 22, 0.74);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.15;
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.footer-social-link:focus-visible {
  outline: 3px solid rgba(214, 162, 67, 0.36);
  outline-offset: 3px;
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-social-linkedin {
  color: #fff;
  background: #0a66c2;
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.22);
}

.site-footer .footer-nav.footer-legal-fit {
  --footer-legal-font-size: 11px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  gap: clamp(7px, 2.4vw, 18px);
  overflow: visible;
  white-space: nowrap;
}

.site-footer .footer-nav.footer-legal-fit a {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: var(--footer-legal-font-size);
  line-height: 1;
  font-weight: 780;
  letter-spacing: 0.01em;
}

@media (max-width: 760px) and (orientation: portrait) {
  .beta-scroll-anchor {
    scroll-margin-top: 72px;
  }

  #zielgruppen .audience-showcase .audience-grid {
    width: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  #zielgruppen .audience-card {
    min-height: 164px !important;
    padding: 20px 42px 20px 18px !important;
  }

  #zielgruppen .audience-inner {
    min-height: 100%;
    align-items: flex-start;
  }

  #zielgruppen .audience-label {
    max-width: 100%;
    font-size: clamp(17px, 4.6vw, 22px);
    line-height: 1.26;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  #zielgruppen .card-icon {
    top: 24px;
    right: 18px;
    width: 24px;
    height: 24px;
  }

  #zielgruppen .audience-comic-card {
    justify-self: start;
    width: min(100%, 320px);
    max-width: 320px;
    margin-top: 8px;
  }

  .site-footer.site-footer-universal {
    padding: 11px 0 15px;
  }

  .site-footer .footer-inner.footer-mobile-stack {
    gap: 7px;
  }

  .footer-social-link {
    width: 31px;
    height: 31px;
  }

  .footer-social-link svg {
    width: 15px;
    height: 15px;
  }

  .site-footer .footer-nav.footer-legal-fit {
    gap: clamp(4px, 1.7vw, 10px);
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  #zielgruppen .audience-showcase .audience-grid {
    gap: 11px !important;
  }

  #zielgruppen .audience-card {
    min-height: 150px !important;
    padding: 17px 34px 17px 14px !important;
  }

  #zielgruppen .audience-label {
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.25;
  }

  #zielgruppen .card-icon {
    top: 18px;
    right: 14px;
    width: 21px;
    height: 21px;
  }
}


/* Landing mobile comic frame shrink correction */
.beta-scroll-anchor.beta-request-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 0;
  --beta-anchor-offset: 0;
}

@media (max-width: 760px) and (orientation: portrait) {
  .beta-scroll-anchor.beta-request-anchor {
    scroll-margin-top: 0;
    --beta-anchor-offset: 0;
  }

  #zielgruppen .audience-comic-card.landing-mobile-comic-card {
    box-sizing: border-box !important;
    width: fit-content !important;
    max-width: min(236px, calc(100vw - 96px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-self: center !important;
    align-self: center !important;
    display: block !important;
    overflow: hidden !important;
  }

  #zielgruppen .audience-comic-card.landing-mobile-comic-card img {
    display: block !important;
    width: min(236px, calc(100vw - 96px)) !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  #zielgruppen .audience-comic-card.landing-mobile-comic-card {
    max-width: min(220px, calc(100vw - 88px)) !important;
  }

  #zielgruppen .audience-comic-card.landing-mobile-comic-card img {
    width: min(220px, calc(100vw - 88px)) !important;
  }
}


/* Landing mobile footer breathing correction */
.beta-scroll-anchor.beta-request-anchor {
  --beta-anchor-offset: 76px;
}

@media (max-width: 760px) and (orientation: portrait) {
  .beta-scroll-anchor.beta-request-anchor {
    --beta-anchor-offset: 0px;
  }

  .site-footer .footer-inner.footer-mobile-stack {
    gap: 12px !important;
  }

  .site-footer .footer-copy {
    line-height: 1.22;
  }

  .site-footer .footer-social {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .site-footer .footer-nav.footer-legal-fit {
    margin-top: 1px;
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  .site-footer .footer-inner.footer-mobile-stack {
    gap: 10px !important;
  }
}
