/* CCM Public Design System v2 · 2026-09-13
   Shared visual layer for the public Markus Horch / CCM page families. */

:root {
  --ccm-black: #000;
  --ccm-canvas: #080808;
  --ccm-surface: #111;
  --ccm-surface-raised: #171717;
  --ccm-surface-high: #202020;
  --ccm-line-soft: rgba(255, 255, 255, .09);
  --ccm-line: rgba(255, 255, 255, .16);
  --ccm-line-strong: rgba(255, 255, 255, .34);
  --ccm-white: #fff;
  --ccm-copy: #d0d0d0;
  --ccm-muted: #a2a2a2;
  --ccm-orange: #a85a18;
  --ccm-green: #57eea3;
  --ccm-silver: linear-gradient(180deg, #fff 0%, #f6f7f8 24%, #c9cdd1 58%, #92979c 79%, #6e7276 100%);
  --ccm-shadow: 0 26px 70px rgba(0, 0, 0, .46);
  --ccm-radius: 18px;
  --ccm-max: 1180px;
  --ccm-reading: 76ch;
}

html:has(body.ccm-public-v2) {
  color-scheme: dark;
  min-height: 100%;
  background: var(--ccm-black);
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body.ccm-public-v2 {
  min-height: 100vh;
  margin: 0;
  color: var(--ccm-white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 74% 34% at 50% -8%, rgba(255, 255, 255, .18), transparent 66%),
    linear-gradient(180deg, #070707 0%, #000 54%, #070707 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: clip;
}

body.ccm-public-v2::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 14%, rgba(255, 255, 255, .025) 31%, transparent 47%),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, .055), transparent 26rem);
}

body.ccm-public-v2::after {
  content: "";
  position: fixed;
  left: 50%;
  bottom: -23rem;
  z-index: -1;
  width: min(1200px, 100vw);
  height: 34rem;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(210, 214, 218, .14), rgba(130, 136, 142, .04) 38%, transparent 69%);
  filter: blur(22px);
}

body.ccm-public-v2 *,
body.ccm-public-v2 *::before,
body.ccm-public-v2 *::after { box-sizing: border-box; }

body.ccm-public-v2 a { text-underline-offset: .2em; }

body.ccm-public-v2 :focus-visible {
  outline: 2px solid #d8dce0 !important;
  outline-offset: 4px;
  border-radius: 6px;
}

body.ccm-public-v2 h1,
body.ccm-public-v2 h2,
body.ccm-public-v2 h3 {
  color: var(--ccm-white);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

body.ccm-public-v2 p,
body.ccm-public-v2 li { text-wrap: pretty; }

body.ccm-public-v2 .ccm-metal {
  display: inline;
  color: #d9dcdf;
  background-image:
    linear-gradient(108deg,
      transparent 34%,
      rgba(255, 255, 255, .12) 40%,
      rgba(255, 255, 255, .88) 47%,
      #fff 50%,
      rgba(255, 255, 255, .86) 53%,
      rgba(255, 255, 255, .12) 60%,
      transparent 66%),
    var(--ccm-silver);
  background-repeat: no-repeat;
  background-size: 240% 100%, 100% 100%;
  background-position: 128% 50%, 0 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 -1px 0 rgba(255, 255, 255, .24))
    drop-shadow(0 0 7px rgba(255, 255, 255, .11))
    drop-shadow(0 2px 1px rgba(0, 0, 0, .52));
  animation: ccm-metal-light 4.8s cubic-bezier(.45, .05, .55, .95) infinite;
}

@keyframes ccm-metal-light {
  0%, 16% { background-position: 128% 50%, 0 50%; }
  62%, 100% { background-position: -28% 50%, 0 50%; }
}

body.ccm-public-v2 .ccm-kicker,
body.ccm-public-v2 .eyebrow,
body.ccm-public-v2 .sec-tag,
body.ccm-public-v2 .sec-eyebrow,
body.ccm-public-v2 .hero-badge,
body.ccm-public-v2 .pill-tag,
body.ccm-public-v2 .badge,
body.ccm-public-v2 .tagline {
  color: var(--ccm-copy) !important;
  border-color: var(--ccm-line) !important;
  background: rgba(255, 255, 255, .035) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06) !important;
}

body.ccm-public-v2 .ccm-kicker::before,
body.ccm-public-v2 .eyebrow .dot,
body.ccm-public-v2 .badge-dot,
body.ccm-public-v2 .pill-tag::before { background: var(--ccm-orange) !important; }

body.ccm-public-v2 header,
body.ccm-public-v2 nav,
body.ccm-public-v2 .site-header,
body.ccm-public-v2 .topbar {
  border-color: var(--ccm-line-soft) !important;
  background-color: rgba(5, 5, 5, .76) !important;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

body.ccm-public-v2 .btn,
body.ccm-public-v2 button,
body.ccm-public-v2 a[class*="cta"],
body.ccm-public-v2 button[class*="cta"],
body.ccm-public-v2 .nav-btn,
body.ccm-public-v2 .back,
body.ccm-public-v2 .pill {
  min-height: 44px;
  border-radius: 999px;
}

body.ccm-public-v2 .btn-primary,
body.ccm-public-v2 .submit-btn,
body.ccm-public-v2 button[type="submit"],
body.ccm-public-v2 .primary {
  border: 1px solid rgba(224, 228, 232, .32) !important;
  color: #f5f6f7 !important;
  background: linear-gradient(180deg, #51575c 0%, #292d31 43%, #111315 53%, #353a3f 100%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .38), inset 0 -1px rgba(0, 0, 0, .7), 0 10px 24px rgba(0, 0, 0, .4) !important;
}

body.ccm-public-v2 .btn-outline,
body.ccm-public-v2 .btn-ghost,
body.ccm-public-v2 .secondary,
body.ccm-public-v2 .nav-btn,
body.ccm-public-v2 .back {
  color: var(--ccm-white) !important;
  border: 1px solid var(--ccm-line-strong) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1) !important;
}

body.ccm-public-v2 .btn:hover,
body.ccm-public-v2 button:hover,
body.ccm-public-v2 a[class*="cta"]:hover,
body.ccm-public-v2 button[class*="cta"]:hover {
  transform: translateY(-2px);
}

body.ccm-public-v2 .back {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  padding: 0 18px !important;
  line-height: 1.1 !important;
  white-space: nowrap;
}

body.ccm-public-v2 input,
body.ccm-public-v2 select,
body.ccm-public-v2 textarea {
  min-height: 46px;
  color: var(--ccm-white) !important;
  border: 1px solid var(--ccm-line) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .045) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035) !important;
}

body.ccm-public-v2 input:focus,
body.ccm-public-v2 select:focus,
body.ccm-public-v2 textarea:focus {
  border-color: rgba(226, 230, 234, .5) !important;
  box-shadow: 0 0 0 3px rgba(226, 230, 234, .09) !important;
}

body.ccm-public-v2 .card,
body.ccm-public-v2 .box,
body.ccm-public-v2 .panel,
body.ccm-public-v2 .feat,
body.ccm-public-v2 .case,
body.ccm-public-v2 .tst,
body.ccm-public-v2 .wcard,
body.ccm-public-v2 .article-card,
body.ccm-public-v2 .glossary-card,
body.ccm-public-v2 details,
body.ccm-public-v2 .mailbox,
body.ccm-public-v2 .proofbox {
  border-color: var(--ccm-line-soft) !important;
  background: linear-gradient(145deg, rgba(31, 31, 31, .82), rgba(12, 12, 12, .92)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .045), var(--ccm-shadow);
}

body.ccm-public-v2 footer {
  border-color: var(--ccm-line-soft) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 42%),
    #050505 !important;
}

body.ccm-public-v2 footer h4,
body.ccm-public-v2 footer strong { color: var(--ccm-copy) !important; }
body.ccm-public-v2 footer p,
body.ccm-public-v2 footer a:not(.btn) { color: var(--ccm-muted) !important; }
body.ccm-public-v2 footer a:hover { color: var(--ccm-white) !important; }

/* Editorial legal family */
body.ccm-public-v2[data-ccm-family="legal"] .wrap {
  width: min(var(--ccm-max), calc(100% - 44px));
  max-width: var(--ccm-max) !important;
  margin-inline: auto;
  padding-top: clamp(28px, 5vw, 72px) !important;
}

body.ccm-public-v2[data-ccm-family="legal"] .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  margin-bottom: clamp(54px, 8vw, 104px) !important;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ccm-line-soft);
}

body.ccm-public-v2[data-ccm-family="legal"] .top .back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px !important;
  border: 1px solid var(--ccm-line-strong);
  border-radius: 999px;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

body.ccm-public-v2[data-ccm-family="legal"] .top .back span[aria-hidden="true"] {
  flex: 0 0 auto;
  font-size: 1.2em;
  line-height: 1;
}

body.ccm-public-v2[data-ccm-family="legal"] h1 {
  display: block;
  width: 100%;
  max-width: 13ch;
  font-size: clamp(42px, 7vw, 84px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  overflow-wrap: anywhere;
}

body.ccm-public-v2[data-ccm-family="legal"] h2 {
  margin-top: 2.8em !important;
  padding-top: 1.15em;
  border-top: 1px solid var(--ccm-line-soft);
  font-size: clamp(19px, 2vw, 26px) !important;
}

body.ccm-public-v2[data-ccm-family="legal"] p,
body.ccm-public-v2[data-ccm-family="legal"] li {
  max-width: var(--ccm-reading);
  color: var(--ccm-copy) !important;
  font-size: clamp(15px, 1.35vw, 17px) !important;
  line-height: 1.82 !important;
}

body.ccm-public-v2[data-ccm-family="legal"] .box {
  max-width: var(--ccm-reading);
  padding: clamp(20px, 3vw, 30px) !important;
  border-left: 1px solid var(--ccm-line-strong) !important;
  border-radius: 14px !important;
}

body.ccm-public-v2[data-ccm-family="legal"] .legalnav {
  margin-top: 72px !important;
  padding: 28px 0 !important;
  border-top: 1px solid var(--ccm-line-soft) !important;
}

/* Funnel and status pages */
body.ccm-public-v2[data-ccm-family="funnel"] main,
body.ccm-public-v2[data-ccm-family="funnel"] .page,
body.ccm-public-v2[data-ccm-family="funnel"] .shell {
  position: relative;
  z-index: 1;
}

body.ccm-public-v2[data-ccm-family="funnel"] h1,
body.ccm-public-v2[data-ccm-family="sales"] .hero h1 {
  letter-spacing: -.055em !important;
  line-height: .98 !important;
}

body.ccm-public-v2[data-ccm-family="funnel"] .card {
  border: 1px solid var(--ccm-line) !important;
}

/* Knowledge pages */
body.ccm-public-v2[data-ccm-family="knowledge"] main,
body.ccm-public-v2[data-ccm-family="knowledge"] article,
body.ccm-public-v2[data-ccm-family="knowledge"] .wrap {
  position: relative;
  z-index: 1;
}

body.ccm-public-v2[data-ccm-family="knowledge"] article,
body.ccm-public-v2[data-ccm-family="knowledge"] .article,
body.ccm-public-v2[data-ccm-family="knowledge"] .content {
  max-width: var(--ccm-reading);
  margin-inline: auto;
}

body.ccm-public-v2[data-ccm-family="knowledge"] h1 {
  letter-spacing: -.045em !important;
  line-height: 1.02 !important;
}

body.ccm-public-v2[data-ccm-family="knowledge"] article p,
body.ccm-public-v2[data-ccm-family="knowledge"] article li,
body.ccm-public-v2[data-ccm-family="knowledge"] .content p,
body.ccm-public-v2[data-ccm-family="knowledge"] .content li {
  color: var(--ccm-copy) !important;
  line-height: 1.82 !important;
}

body.ccm-public-v2[data-ccm-family="knowledge"] blockquote,
body.ccm-public-v2[data-ccm-family="knowledge"] .key,
body.ccm-public-v2[data-ccm-family="knowledge"] .takeaway {
  border-color: var(--ccm-line-strong) !important;
  background: linear-gradient(120deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015)) !important;
}

/* PDF and hand-book family */
body.ccm-public-v2[data-ccm-family="pdf"] .page,
body.ccm-public-v2[data-ccm-family="pdf"] .sheet {
  border-color: var(--ccm-line) !important;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .54) !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] .toolbar {
  background: rgba(6, 6, 6, .88) !important;
  border-color: var(--ccm-line-soft) !important;
  backdrop-filter: blur(18px);
}

body.ccm-public-v2[data-ccm-family="pdf"] .wcard {
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

body.ccm-public-v2[data-ccm-family="pdf"] .wcard:hover {
  transform: translateY(-5px);
  border-color: var(--ccm-line-strong) !important;
}

/* Marketing and sales */
body.ccm-public-v2[data-ccm-family="sales"] .hero {
  position: relative;
  overflow: hidden;
}

body.ccm-public-v2[data-ccm-family="sales"] .hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -9rem;
  height: 13rem;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(215, 219, 223, .15), transparent 67%);
  filter: blur(16px);
}

body.ccm-public-v2[data-ccm-family="sales"] .hero-copy,
body.ccm-public-v2[data-ccm-family="sales"] .hero-visual { position: relative; z-index: 1; }

body.ccm-public-v2[data-ccm-family="sales"] .sec {
  border-top-color: var(--ccm-line-soft) !important;
}

body.ccm-public-v2[data-ccm-family="sales"] .stars { color: var(--ccm-white) !important; }
body.ccm-public-v2[data-ccm-family="sales"] .tp-brand,
body.ccm-public-v2[data-ccm-family="sales"] .vbadge { color: var(--ccm-green) !important; }

/* CCM Public Design System v3
   Brushed silver surfaces and shared page components. */
body.ccm-public-v2 {
  --ccm-panel: linear-gradient(145deg, rgba(32, 32, 32, .88), rgba(7, 7, 7, .96) 68%);
  --ccm-panel-soft: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018) 48%, rgba(0, 0, 0, .22));
  --ccm-metal-line: linear-gradient(90deg, transparent, rgba(255, 255, 255, .66) 34%, rgba(151, 156, 161, .34) 68%, transparent);
}

body.ccm-public-v2 :is(.card,.box,.panel,.feat,.case,.tst,.wcard,.article-card,.glossary-card,.mailbox,.proofbox,.checkout-panel,.feat-row,.qual-card,.final-cta-inner,details) {
  position: relative;
  border: 1px solid rgba(214, 218, 222, .17) !important;
  background: var(--ccm-panel) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 28px 70px rgba(0, 0, 0, .42) !important;
}

/* The PDF dropdown uses a rounded summary as its button. Its details wrapper
   must stay visually neutral so no rectangular frame appears around the pill. */
body.ccm-public-v2 details.pdfwrap {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.ccm-public-v2 :is(.card,.box,.panel,.feat,.case,.tst,.wcard,.article-card,.glossary-card,.mailbox,.proofbox,.checkout-panel,.final-cta-inner)::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 9%;
  right: 9%;
  height: 1px;
  pointer-events: none;
  background: var(--ccm-metal-line);
  opacity: .72;
}

body.ccm-public-v2 :is(.btn-primary,.btn-dark,.submit-btn,button[type="submit"],.primary,.btn-pay,.cta-big,.cta-btn,.hero-cta,a.nav-cta,button.nav-cta,.glow-btn,.knopf:not(.zweit),.sticky-cta a,.foot-cta .btn) {
  position: relative;
  overflow: visible !important;
  color: #090909 !important;
  border: 1px solid rgba(255, 255, 255, .82) !important;
  color: #f4f5f6 !important;
  border-color: rgba(225, 229, 233, .34) !important;
  background-image: linear-gradient(180deg, #555b60 0%, #292d31 42%, #111315 52%, #363b40 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-position: 0 0 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42), inset 0 -1px 0 rgba(0, 0, 0, .72), 0 12px 28px rgba(0, 0, 0, .38) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .78);
  animation: none !important;
}

body.ccm-public-v2 :is(.btn-primary,.btn-dark,.submit-btn,button[type="submit"],.primary,.btn-pay,.cta-big,.cta-btn,.hero-cta,a.nav-cta,button.nav-cta,.glow-btn,.knopf:not(.zweit),.sticky-cta a,.foot-cta .btn)::before {
  content: none !important;
}

body.ccm-public-v2 :is(.btn-primary,.btn-dark,.submit-btn,button[type="submit"],.primary,.btn-pay,.cta-big,.cta-btn,.hero-cta,a.nav-cta,button.nav-cta,.glow-btn,.knopf:not(.zweit),.sticky-cta a,.foot-cta .btn):hover {
  color: #fff !important;
  border-color: rgba(242, 244, 246, .52) !important;
  background-image: linear-gradient(180deg, #656b70 0%, #33383d 44%, #151719 54%, #41464b 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 -1px 0 rgba(0, 0, 0, .76), 0 14px 30px rgba(0, 0, 0, .46) !important;
}

body.ccm-public-v2 :is(.submit-btn,.glow-btn) :is(.submit-main,.glow-text) {
  color: #f4f5f6 !important;
}

body.ccm-public-v2 :is(.submit-btn,.glow-btn) :is(.submit-sub,.glow-sub) {
  color: #c9cdd1 !important;
}

@keyframes ccm-button-shine {
  0%, 16% { background-position: 130% 50%, 0 0; }
  58%, 100% { background-position: -36% 50%, 0 0; }
}

body.ccm-public-v2 :is(.btn-outline,.btn-ghost,.secondary,.nav-btn,.back,.cta-ghost,.knopf.zweit,.nav-back,.pill) {
  color: var(--ccm-white) !important;
  border: 1px solid rgba(218, 222, 226, .36) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .025)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .12), 0 12px 30px rgba(0, 0, 0, .26) !important;
}

body.ccm-public-v2 :is(a.nav-cta,button.nav-cta,.cta-big,.sticky-cta a)::after {
  content: "↗";
  margin-left: .6em;
  color: var(--ccm-orange);
  font-size: 1.08em;
  line-height: 1;
}

body.ccm-public-v2 .section-label,
body.ccm-public-v2 .panel-label,
body.ccm-public-v2 .trust-label {
  color: #c8cbce !important;
  letter-spacing: .16em !important;
}

body.ccm-public-v2 .section-label::before,
body.ccm-public-v2 .panel-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #c66a1a;
  box-shadow: none;
  vertical-align: 1px;
}

/* Checkout is the conversion page, so its grid and components are purpose-built. */
body.ccm-public-v2[data-ccm-page="checkout"] .hero-wrap {
  width: min(1320px, calc(100% - 56px));
  max-width: 1320px;
  padding: 52px 0 84px;
  grid-template-columns: minmax(0, 1.35fr) minmax(390px, .65fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

body.ccm-public-v2[data-ccm-page="checkout"] .hero-left {
  position: sticky;
  top: 96px;
  align-self: start;
  min-width: 0;
  padding-top: 0;
}

body.ccm-public-v2[data-ccm-page="checkout"] .hero-badge {
  width: auto;
  max-width: none;
  padding: 8px 16px;
  margin-bottom: 26px;
  border-color: rgba(220, 224, 228, .26) !important;
}

body.ccm-public-v2[data-ccm-page="checkout"] .hero-h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: .96 !important;
  margin-bottom: 26px;
}

body.ccm-public-v2[data-ccm-page="checkout"] .hero-desc {
  max-width: 680px;
  color: #c8c8c8;
  font-size: 17px;
}

body.ccm-public-v2[data-ccm-page="checkout"] .hero-mockup {
  width: min(810px, 112%);
  margin: 8px 0 12px -6%;
  padding: 0;
}

body.ccm-public-v2[data-ccm-page="checkout"] .hero-mockup img {
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, .58));
}

body.ccm-public-v2[data-ccm-page="checkout"] .hero-pill {
  color: #d4d5d6;
  border-color: rgba(225, 228, 231, .2);
  background: var(--ccm-panel-soft);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

body.ccm-public-v2[data-ccm-page="checkout"] .checkout-panel {
  position: sticky;
  top: 96px;
  min-height: 0;
  padding: 34px;
  border-radius: 24px;
}

body.ccm-public-v2[data-ccm-page="checkout"] .panel-title {
  font-size: 26px;
  letter-spacing: -.035em;
  margin-bottom: 26px;
}

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-list { gap: 14px; }

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-card {
  min-height: 92px;
  padding: 20px 20px;
  border: 1px solid rgba(213, 217, 221, .18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
}

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-card:hover {
  border-color: rgba(235, 238, 241, .55);
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
}

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-card.selected {
  border-color: rgba(244, 246, 248, .78);
  background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(126, 131, 136, .035) 62%, rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px rgba(255, 255, 255, .16), 0 0 0 1px rgba(255, 255, 255, .08), 0 18px 45px rgba(0, 0, 0, .38);
}

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-card.selected::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c66a1a;
  box-shadow: none;
}

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-badge {
  color: #f2f3f4;
  background: linear-gradient(180deg, #5b6065, #24282c);
  box-shadow: inset 0 1px rgba(255, 255, 255, .3), 0 8px 18px rgba(0, 0, 0, .34);
}

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-name { font-size: 17px; }
body.ccm-public-v2[data-ccm-page="checkout"] .pkg-price { padding-right: 22px; }
body.ccm-public-v2[data-ccm-page="checkout"] .today-row { margin-top: 24px; padding: 22px 0; }
body.ccm-public-v2[data-ccm-page="checkout"] .today-price { font-size: 32px; }
body.ccm-public-v2[data-ccm-page="checkout"] .btn-pay { min-height: 58px; border-radius: 999px; }

body.ccm-public-v2[data-ccm-page="checkout"] .feat-section {
  border: 0;
  gap: 16px;
  overflow: visible;
}

body.ccm-public-v2[data-ccm-page="checkout"] .feat-row {
  border-radius: 18px;
  overflow: hidden;
}

body.ccm-public-v2[data-ccm-page="checkout"] .final-cta-inner { border-radius: 26px; }

body.ccm-public-v2[data-ccm-family="pdf"] .hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 222, 226, .2) !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, .13), transparent 31%),
    linear-gradient(145deg, rgba(27, 27, 27, .94), rgba(5, 5, 5, .97)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 30px 70px rgba(0, 0, 0, .38);
}

body.ccm-public-v2[data-ccm-family="pdf"] .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--ccm-metal-line);
}

body.ccm-public-v2[data-ccm-family="pdf"] .hero .stat,
body.ccm-public-v2[data-ccm-family="pdf"] .tag {
  color: #d8dade !important;
  border: 1px solid rgba(218, 222, 226, .24) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .08) !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] .thumb {
  border-color: rgba(220, 224, 228, .14) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}

body.ccm-public-v2[data-ccm-family="pdf"] .top .brain img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

body.ccm-public-v2[data-ccm-family="pdf"] .top .brain {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(222, 225, 229, .22);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
}

/* CCM Public Design System v4
   Onyx and dark brushed silver. Orange is reserved for tiny orientation cues. */
body.ccm-public-v2 {
  --orange: #b9bec3;
  --orange2: #eef0f2;
  --ccm-orange: #a85a18;
  --ccm-accent: #a85a18;
  --ccm-copy: #c8cbce;
  --ccm-muted: #8b9095;
  --ccm-panel: linear-gradient(145deg, rgba(27, 29, 31, .94), rgba(5, 6, 7, .98) 72%);
  --ccm-panel-soft: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .014) 54%, rgba(0, 0, 0, .28));
  background:
    radial-gradient(ellipse 68% 26% at 50% -8%, rgba(218, 222, 226, .14), transparent 68%),
    linear-gradient(180deg, #060708 0%, #000 54%, #050607 100%);
}

body.ccm-public-v2::before {
  background:
    linear-gradient(104deg, transparent 0 18%, rgba(255, 255, 255, .018) 34%, transparent 51%),
    radial-gradient(circle at 76% 18%, rgba(199, 204, 209, .038), transparent 27rem);
}

body.ccm-public-v2 .glut { display: none !important; }

body.ccm-public-v2 :focus-visible {
  outline-color: #d8dce0 !important;
  box-shadow: 0 0 0 4px rgba(216, 220, 224, .12) !important;
}

body.ccm-public-v2 .ccm-metal {
  color: #c9cdd1;
  background-image:
    linear-gradient(108deg, transparent 38%, rgba(255, 255, 255, .18) 44%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .16) 56%, transparent 62%),
    linear-gradient(180deg, #f0f2f3 0%, #c4c8cc 36%, #777d82 68%, #b5b9bd 100%) !important;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .65));
  animation-duration: 6.8s;
}

body.ccm-public-v2 :is(
  .hero h1 .hl,
  h1 .hl,
  h2 .hl,
  h1 em,
  h2 em,
  .sec-tag,
  .section-label,
  .panel-label,
  .hub-tag,
  .kicker,
  .case-num,
  .case .label,
  .case .result-label,
  .kap-label,
  .fk-num,
  .meta-line,
  .rc-cat,
  .cta-note b,
  .article a
) {
  color: #c6cacf !important;
  -webkit-text-fill-color: currentColor !important;
  background-image: none !important;
  text-shadow: none !important;
}

body.ccm-public-v2 :is(.eyebrow,.hero-badge,.pill-tag,.badge,.sec-eyebrow,.ccm-kicker) {
  color: #c9cdd1 !important;
  border-color: rgba(215, 219, 223, .18) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09) !important;
}

body.ccm-public-v2 :is(.eyebrow .dot,.badge-dot,.pill-tag::before,.ccm-kicker::before,.section-label::before,.panel-label::before) {
  background: #a85a18 !important;
  box-shadow: none !important;
}

body.ccm-public-v2 input:focus,
body.ccm-public-v2 select:focus,
body.ccm-public-v2 textarea:focus,
body.ccm-public-v2 :is(.f-input,.cc-search,.phone-num,.field input,.field select,.tool-field input):focus {
  border-color: rgba(226, 230, 234, .5) !important;
  box-shadow: 0 0 0 3px rgba(226, 230, 234, .09) !important;
}

body.ccm-public-v2 :is(
  .btn-primary,
  .btn-dark,
  .submit-btn,
  button[type="submit"],
  .primary,
  .btn-pay,
  .cta-big,
  .cta-btn,
  .premium-cta,
  .hero-cta,
  a.nav-cta,
  button.nav-cta,
  .glow-btn,
  .knopf:not(.zweit),
  .sticky-cta a,
  .termin-banner .tb-btn,
  .fc-btn,
  .ic-btn,
  .btn-orange,
  .primary-link,
  .pill.primary,
  .pill.start-reading,
  .platform-btn.active,
  .foot-cta .btn
) {
  color: #f5f6f7 !important;
  border: 1px solid rgba(224, 228, 232, .32) !important;
  background: linear-gradient(180deg, #51575c 0%, #292d31 43%, #111315 53%, #353a3f 100%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .38), inset 0 -1px rgba(0, 0, 0, .7), 0 10px 24px rgba(0, 0, 0, .4) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .8) !important;
  animation: none !important;
}

body.ccm-public-v2 :is(
  .btn-primary,
  .btn-dark,
  .submit-btn,
  button[type="submit"],
  .primary,
  .btn-pay,
  .cta-big,
  .cta-btn,
  .premium-cta,
  .hero-cta,
  a.nav-cta,
  button.nav-cta,
  .glow-btn,
  .knopf:not(.zweit),
  .sticky-cta a,
  .termin-banner .tb-btn,
  .fc-btn,
  .ic-btn,
  .btn-orange,
  .primary-link,
  .pill.primary,
  .pill.start-reading,
  .platform-btn.active,
  .foot-cta .btn
):hover {
  color: #fff !important;
  border-color: rgba(246, 248, 249, .52) !important;
  background: linear-gradient(180deg, #62686d 0%, #32373b 43%, #151719 53%, #40464a 100%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .46), inset 0 -1px rgba(0, 0, 0, .76), 0 12px 28px rgba(0, 0, 0, .48) !important;
}

body.ccm-public-v2 :is(.submit-btn,.glow-btn) :is(.submit-main,.submit-sub,.glow-text,.glow-sub) {
  color: #f3f4f5 !important;
}

body.ccm-public-v2 :is(.btn-outline,.btn-ghost,.secondary,.nav-btn,.back,.cta-ghost,.knopf.zweit,.nav-back,.pill) {
  color: #d8dbde !important;
  border-color: rgba(218, 222, 226, .24) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09), 0 10px 22px rgba(0, 0, 0, .3) !important;
}

body.ccm-public-v2 :is(.btn-outline,.btn-ghost,.secondary,.nav-btn,.back,.cta-ghost,.knopf.zweit,.nav-back,.pill):hover {
  color: #fff !important;
  border-color: rgba(238, 240, 242, .42) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .028)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .14), 0 12px 25px rgba(0, 0, 0, .36) !important;
}

body.ccm-public-v2 :is(
  .antiguru,
  .ctaband,
  .guideband,
  .guarantee,
  .termin-banner,
  .cta-card,
  .ctabox,
  .sumbox,
  .kurz-box,
  .proofbox,
  .mailbox,
  .highlight-box,
  .pdf-delivery,
  .final-cta-inner,
  .inline-cta,
  .fruehe-cta,
  .learn-card,
  .case .pcol,
  .case .result,
  .calc-sum,
  .merk,
  .praxis,
  .beispiel,
  .score,
  .disc-card,
  .callout,
  .member,
  .mod.bonus,
  .cover .quote,
  .rel-card,
  .call,
  .tool,
  [data-ccm-family="legal"] .disclaimer
) {
  color: #eef0f2 !important;
  border-color: rgba(218, 222, 226, .18) !important;
  background: linear-gradient(145deg, rgba(37, 40, 43, .9), rgba(7, 8, 9, .97) 72%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 24px 54px rgba(0, 0, 0, .4) !important;
}

body.ccm-public-v2 :is(
  .case .tags span,
  .tag,
  .pdf-badge,
  .hero .stat,
  .cta-badge,
  .chip.on,
  .tab-btn.active,
  .hub-tag,
  .kap-label,
  .cmp .us,
  .toggle .save,
  .member .ribbon
) {
  color: #d4d7da !important;
  border-color: rgba(218, 222, 226, .24) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .022)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09) !important;
}

body.ccm-public-v2 :is(
  .feat-icon,
  .fpill-ico,
  .submit-icon,
  .glow-icon,
  .step-number,
  .mod .mnr,
  .case .initials,
  .haken,
  .ico,
  .ic,
  .guarantee .seal
) {
  color: #d6d9dc !important;
  border-color: rgba(218, 222, 226, .22) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .018)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1) !important;
}

body.ccm-public-v2 :is(.feat-icon,.fpill-ico,.submit-icon,.glow-icon) :is(svg,path,line,polyline,circle) {
  stroke: #d6d9dc !important;
}

body.ccm-public-v2 :is(.haken,.ico,.ic,.guarantee .seal) :is(svg,path,line,polyline,circle) {
  color: #d6d9dc !important;
  fill: none;
  stroke: #d6d9dc !important;
}

body.ccm-public-v2 :is(
  .ctaband,
  .guideband,
  .antiguru,
  .cta-card,
  .hero-shot,
  .termin-banner,
  .learn-card,
  .case .pcol,
  .case .result,
  .tab-btn.active,
  .platform-btn.active,
  .chip.on,
  .disc-card,
  .member,
  .mod.bonus,
  .haken,
  .page + .page::after
) {
  text-shadow: none !important;
  filter: none !important;
}

body.ccm-public-v2 :is(.ctaband,.guideband,.antiguru,.cta-card,.hero-shot)::after {
  background: radial-gradient(circle, rgba(214, 218, 222, .07), transparent 70%) !important;
  box-shadow: none !important;
}

body.ccm-public-v2 .disc-card::before {
  background: linear-gradient(90deg, transparent, rgba(224, 228, 232, .44), transparent) !important;
  box-shadow: none !important;
}

body.ccm-public-v2 .disc-label::before,
body.ccm-public-v2 .disc-label::after {
  background: rgba(224, 228, 232, .32) !important;
}

body.ccm-public-v2 .ph-note { display: none !important; }

body.ccm-public-v2 #ccm-consent a {
  color: #c8ccd0 !important;
  border-color: transparent !important;
}

body.ccm-public-v2 #ccm-consent-no {
  color: #d8dbde !important;
  border: 1px solid rgba(218, 222, 226, .24) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09) !important;
}

body.ccm-public-v2 #ccm-consent-yes {
  color: #f5f6f7 !important;
  border: 1px solid rgba(224, 228, 232, .32) !important;
  background: linear-gradient(180deg, #51575c 0%, #292d31 43%, #111315 53%, #353a3f 100%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .38), inset 0 -1px rgba(0, 0, 0, .7), 0 10px 24px rgba(0, 0, 0, .4) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .8) !important;
}

body.ccm-public-v2 .page + .page::after {
  background: #8f959a !important;
  box-shadow: none !important;
}

body.ccm-public-v2 :is(.case,.tst,.persona,.feat,.pillar,.member,.tool,.wcard,.hub-card,.news-card,.rel-card,.learn-card,.slide-card):hover {
  border-color: rgba(226, 230, 234, .3) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .11), 0 22px 48px rgba(0, 0, 0, .42) !important;
}

body.ccm-public-v2[data-ccm-page="checkout"] .pkg-badge {
  color: #f4f5f6 !important;
  background: linear-gradient(180deg, #5d6368, #25292d) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .32), 0 8px 18px rgba(0, 0, 0, .34) !important;
}

body.ccm-public-v2 :is(a.nav-cta,button.nav-cta,.cta-big,.sticky-cta a)::after {
  color: #a85a18;
}

@media (max-width: 960px) {
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-wrap {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
  }
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-mockup {
    width: 100%;
    margin-left: 0;
  }
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-left,
  body.ccm-public-v2[data-ccm-page="checkout"] .checkout-panel { position: relative; top: auto; }
}

@media (max-width: 640px) {
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-wrap {
    width: min(100% - 28px, 620px);
    padding-top: 24px;
  }
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-left { padding-top: 0; }
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-h1 { font-size: clamp(30px, 9.8vw, 44px); }
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-mockup { width: 100%; margin-left: 0; }
  body.ccm-public-v2[data-ccm-page="checkout"] .hero-mockup img { width: 100%; max-width: 100%; }
  body.ccm-public-v2[data-ccm-page="checkout"] .checkout-panel { padding: 24px 18px; border-radius: 20px; }
  body.ccm-public-v2[data-ccm-page="checkout"] .pkg-card { min-height: 82px; padding: 18px 14px; }
}

@media (max-width: 760px) {
  body.ccm-public-v2[data-ccm-family="legal"] .wrap { width: min(100% - 36px, var(--ccm-max)); }
  body.ccm-public-v2[data-ccm-family="legal"] h1 { font-size: clamp(38px, 13vw, 62px) !important; }
  body.ccm-public-v2[data-ccm-family="legal"] .top {
    gap: 12px !important;
  }
  body.ccm-public-v2[data-ccm-family="legal"] .top img {
    max-width: min(44vw, 148px);
    height: auto;
  }
  body.ccm-public-v2[data-ccm-family="legal"] .top .back {
    min-height: 40px;
    padding-inline: 12px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 600px) {
  body.ccm-public-v2 .nav-inner,
  body.ccm-public-v2 nav,
  body.ccm-public-v2 .site-header,
  body.ccm-public-v2 .topbar {
    min-width: 0;
  }

  body.ccm-public-v2 .nav-cta {
    max-width: 52vw;
    min-width: 0;
    text-align: center;
    white-space: normal !important;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    align-items: center;
    padding: 10px 14px !important;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar > b {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar > span {
    grid-column: 1 / -1;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar .sp { display: none; }

  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar .back {
    align-self: center;
    min-width: 0;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar .pdfwrap {
    grid-column: 1 / -1;
    min-width: 0;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar .pdfwrap > button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .thumb iframe {
    transform: scale(.18) !important;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .page,
  body.ccm-public-v2[data-ccm-family="pdf"] .sheet {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
    overflow-wrap: anywhere;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .kop {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .kop .brand {
    min-width: 0;
    flex-wrap: wrap;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .kop .meta {
    max-width: 100%;
    margin-left: auto;
    overflow-wrap: anywhere;
    text-align: right;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] figure,
  body.ccm-public-v2[data-ccm-family="pdf"] .merk,
  body.ccm-public-v2[data-ccm-family="pdf"] .praxis,
  body.ccm-public-v2[data-ccm-family="pdf"] .chk,
  body.ccm-public-v2[data-ccm-family="pdf"] .formel,
  body.ccm-public-v2[data-ccm-family="pdf"] .beispiel,
  body.ccm-public-v2[data-ccm-family="pdf"] .score {
    min-width: 0;
    max-width: 100%;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .score {
    flex-wrap: wrap;
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .score .bar {
    flex-basis: min(130px, 100%);
  }

  body.ccm-public-v2[data-ccm-family="pdf"] .score button {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  body.ccm-public-v2[data-ccm-family="sales"] .nav .login {
    display: none;
  }

  body.ccm-public-v2[data-ccm-family="sales"] .nav > a:first-child {
    min-width: 0;
    flex: 0 1 auto;
  }

  body.ccm-public-v2[data-ccm-family="sales"] .nav .logo {
    max-width: min(112px, 36vw);
    height: auto;
  }

  body.ccm-public-v2[data-ccm-family="sales"] .nav .nav-cta {
    min-width: 0;
    gap: 8px;
  }

  body.ccm-public-v2[data-ccm-family="sales"] .nav .btn-sm {
    max-width: 48vw;
    padding: 10px 12px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 520px) {
  body.ccm-public-v2[data-ccm-page="checkout"] nav .nav-cta { display: none !important; }
  body.ccm-public-v2[data-ccm-page="checkout"] nav .nav-inner { justify-content: center; padding-inline: 18px; }

  body.ccm-public-v2[data-ccm-family="funnel"] .tabs {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.ccm-public-v2[data-ccm-family="funnel"] .tab-btn {
    width: 100%;
    min-width: 0;
  }

  body.ccm-public-v2[data-ccm-family="knowledge"] .cards,
  body.ccm-public-v2[data-ccm-family="knowledge"] .related,
  body.ccm-public-v2[data-ccm-family="knowledge"] .calc {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.ccm-public-v2[data-ccm-family="knowledge"] .news-card,
  body.ccm-public-v2[data-ccm-family="knowledge"] .rel-card,
  body.ccm-public-v2[data-ccm-family="knowledge"] .calc-box,
  body.ccm-public-v2[data-ccm-family="knowledge"] .calc-sum {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.ccm-public-v2[data-ccm-family="knowledge"] .calc-sum {
    flex-wrap: wrap;
    gap: 10px;
  }

  body.ccm-public-v2[data-ccm-family="funnel"] .lockup,
  body.ccm-public-v2[data-ccm-family="funnel"] .lk-slot,
  body.ccm-public-v2[data-ccm-family="funnel"] .cd-unit {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  body.ccm-public-v2[data-ccm-family="pdf"] .top {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
  }
  body.ccm-public-v2[data-ccm-family="pdf"] .top .back {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    margin-left: 0;
  }

  body.ccm-public-v2[data-ccm-family="funnel"] .lockup,
  body.ccm-public-v2[data-ccm-family="funnel"] .lk-slot {
    overflow-x: clip;
  }

  body.ccm-public-v2[data-ccm-family="legal"] .wrap { width: min(100% - 28px, var(--ccm-max)); }
  body.ccm-public-v2[data-ccm-family="legal"] h1 {
    font-size: clamp(34px, 11.5vw, 48px) !important;
    letter-spacing: -.045em !important;
  }
  body.ccm-public-v2[data-ccm-family="legal"] .top .back {
    font-size: 11px !important;
    padding-inline: 10px !important;
  }
}

/* PDF formulas follow the same quiet onyx and silver surface as the rest of v4. */
body.ccm-public-v2[data-ccm-family="pdf"] .formel {
  border-color: rgba(218, 222, 226, .22) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .07) !important;
}

/* CCM Public Design System v5
   The 3:1 guide is the visual source of truth: black, graphite and quiet silver. */
body.ccm-public-v2 {
  --orange: #c8cdd1;
  --orange2: #eef0f2;
  --ccm-orange: #c8cdd1;
  --ccm-accent: #c8cdd1;
}

body.ccm-public-v2[data-ccm-family="pdf"] .toolbar button,
body.ccm-public-v2[data-ccm-family="pdf"] :is(.download,.dl-btn,.pdf-download,.save-pdf) {
  color: #e9ebed !important;
  border: 1px solid rgba(218, 222, 226, .25) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09), 0 10px 22px rgba(0, 0, 0, .3) !important;
  text-shadow: none !important;
  animation: none !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] .toolbar button:hover,
body.ccm-public-v2[data-ccm-family="pdf"] :is(.download,.dl-btn,.pdf-download,.save-pdf):hover {
  color: #fff !important;
  border-color: rgba(238, 240, 242, .42) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .028)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .14), 0 12px 25px rgba(0, 0, 0, .36) !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] :is(h1,h2,h3) span,
body.ccm-public-v2[data-ccm-family="pdf"] :is(.kicker,.kap-label,.tag,.fk-num,.merk b,.cover .quote b) {
  color: #d4d7da !important;
  -webkit-text-fill-color: currentColor !important;
  background-image: none !important;
  text-shadow: none !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] :is(.kap-label,.tag,.fk-num) {
  border-color: rgba(218, 222, 226, .22) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .08) !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] :is(.merk,.cover .quote,.praxis,.beispiel) {
  border-color: rgba(218, 222, 226, .2) !important;
  border-left-color: rgba(235, 238, 240, .5) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012) 72%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .065) !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] :is(.ic,.ico,.icon,.emotion-icon,.card-icon,.feature-icon,.step-icon) {
  color: #eef0f2 !important;
  border-color: rgba(218, 222, 226, .24) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .016)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09) !important;
  filter: none !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] :is(.ic,.ico,.icon,.emotion-icon,.card-icon,.feature-icon,.step-icon) svg,
body.ccm-public-v2[data-ccm-family="pdf"] :is(.ic,.ico,.icon,.emotion-icon,.card-icon,.feature-icon,.step-icon) :is(path,line,polyline,circle,rect) {
  color: #eef0f2 !important;
  stroke: #eef0f2 !important;
  filter: none !important;
}

body.ccm-public-v2 .ccm-inline-icon {
  display: inline-flex;
  width: 1.05em;
  height: 1.05em;
  margin-right: .42em;
  color: #eef0f2;
  vertical-align: -.16em;
}

body.ccm-public-v2 .ccm-inline-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.ccm-public-v2 .screenshot-label::before {
  content: "" !important;
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  margin-right: .42em;
  vertical-align: -.16em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 5 13 3H9L7.5 5H5a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z'/%3E%3Ccircle cx='11' cy='12' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 5 13 3H9L7.5 5H5a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z'/%3E%3Ccircle cx='11' cy='12' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* CCM Public Design System v6
   Orange is a micro accent only: small labels, dots and directional marks. */
body.ccm-public-v2 {
  --ccm-micro-orange: #e88424;
}

body.ccm-public-v2 :is(
  .eyebrow,
  .hero-badge,
  .pill-tag,
  .sec-eyebrow,
  .ccm-kicker,
  .sec-tag,
  .section-label,
  .panel-label,
  .hub-tag,
  .kicker,
  .cover-kicker,
  .guide-section-label,
  .form-card-label,
  .success-label,
  .freu,
  .support a,
  .fuss a,
  .cta-badge,
  .pdf-badge,
  .pkg-badge,
  .today-label,
  .disc-label,
  .cd-label,
  .qual-head-label,
  .f-label,
  .fpill-label,
  .stat-label,
  .trust-label,
  .sec-label,
  .step .n,
  .case .cnum,
  .case .blk .lab,
  .case .result .lab,
  .case .tags span,
  .dt .by,
  .chrow .thm,
  .chrow .col.n .lab,
  .chrow .arw,
  .rescard .pair .lev,
  .kap-label,
  .fk-num,
  .meta-line,
  .rc-cat,
  .nc-cat
) {
  color: var(--ccm-micro-orange) !important;
  -webkit-text-fill-color: currentColor !important;
  background-image: none !important;
  text-shadow: none !important;
}

body.ccm-public-v2[data-ccm-family="legal"] h3 {
  color: #d8dce0 !important;
  text-shadow: none !important;
}

body.ccm-public-v2[data-ccm-family="legal"] h2 {
  color: #d4d7da !important;
}

body.ccm-public-v2[data-ccm-family="legal"] h2::before {
  content: "";
  display: inline-block;
  width: .28em;
  height: .28em;
  margin-right: .52em;
  border-radius: 50%;
  background: var(--ccm-micro-orange);
  vertical-align: .18em;
}

body.ccm-public-v2[data-ccm-family="legal"] h3::before {
  content: "";
  display: inline-block;
  width: .26em;
  height: .26em;
  margin-right: .5em;
  border-radius: 50%;
  background: var(--ccm-micro-orange);
  vertical-align: .18em;
}

body.ccm-public-v2 :is(
  .eyebrow .dot,
  .badge-dot,
  .guide-free-dot,
  .pdf-live-dot,
  .pill-tag::before,
  .ccm-kicker::before,
  .section-label::before,
  .panel-label::before,
  .case .bullets .d
) {
  background: var(--ccm-micro-orange) !important;
  box-shadow: none !important;
}

body.ccm-public-v2[data-ccm-family="pdf"] :is(.kap-label,.tag,.fk-num) {
  color: var(--ccm-micro-orange) !important;
}

body.ccm-public-v2 :is(.ccm-inline-icon,.ccm-inline-icon svg),
body.ccm-public-v2 :is(.kap-label,.tag,.fk-num) .ccm-inline-icon {
  color: #eef0f2 !important;
  -webkit-text-fill-color: currentColor !important;
}

/* Sales callouts stay translucent so the page texture remains visible. */
body.ccm-public-v2[data-ccm-family="sales"] .qband {
  background: linear-gradient(145deg, rgba(61, 65, 69, .36), rgba(12, 14, 16, .58)) !important;
  border: 1px solid rgba(226, 230, 234, .16) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 18px 42px rgba(0, 0, 0, .28) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.ccm-public-v2[data-ccm-family="sales"] .qband h3 {
  color: #eef0f2 !important;
}

body.ccm-public-v2[data-ccm-family="sales"] .qband p {
  color: #b7bcc1 !important;
}

/* Keep author identity and the Google source control in one left-aligned block. */
body.ccm-public-v2[data-ccm-family="knowledge"] .article .meta {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
}

body.ccm-public-v2[data-ccm-family="knowledge"] .article .meta .author-pic {
  grid-column: 1;
  grid-row: 1;
}

body.ccm-public-v2[data-ccm-family="knowledge"] .article .meta .meta-txt {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

body.ccm-public-v2[data-ccm-family="knowledge"] .article .meta .pref-src {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: start;
  justify-content: flex-start !important;
  width: max-content !important;
  max-width: 100%;
  margin: 12px 0 0 !important;
  white-space: normal !important;
}

@media (max-width: 420px) {
  body.ccm-public-v2[data-ccm-family="legal"] nav .nav-inner {
    width: 100%;
    min-width: 0;
    padding-inline: 10px !important;
  }

  body.ccm-public-v2[data-ccm-family="legal"] nav .nav-clock {
    display: none;
  }

  body.ccm-public-v2[data-ccm-family="legal"] nav .nav-logo img {
    width: 126px;
    max-width: 42vw;
    height: auto !important;
  }

  body.ccm-public-v2[data-ccm-family="legal"] nav .nav-live {
    max-width: 44vw;
    padding: 6px 9px !important;
    gap: 6px;
    font-size: 9px !important;
    letter-spacing: .045em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.ccm-public-v2) { scroll-behavior: auto; }
  body.ccm-public-v2 *,
  body.ccm-public-v2 *::before,
  body.ccm-public-v2 *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  body.ccm-public-v2 .ccm-metal { background-position: 0 50%, 0 50%; }
}

@media print {
  body.ccm-public-v2[data-ccm-family="pdf"] {
    color: #111 !important;
    background: #fff !important;
  }
  body.ccm-public-v2[data-ccm-family="pdf"]::before,
  body.ccm-public-v2[data-ccm-family="pdf"]::after,
  body.ccm-public-v2[data-ccm-family="pdf"] .toolbar { display: none !important; }
  body.ccm-public-v2[data-ccm-family="pdf"] .ccm-metal {
    color: #222 !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    filter: none !important;
  }
}

/* CCM Public Design System v7: orange light appears only while a control is hovered. */
body.ccm-public-v2.ccm-public-v2 :is(
  a.btn,
  button.btn,
  a[class$="-btn"],
  button[class$="-btn"],
  a[class*="-btn "],
  button[class*="-btn "],
  a[class^="btn-"],
  button[class^="btn-"],
  a[class*="cta"],
  button[class*="cta"],
  button[type="submit"],
  input[type="submit"],
  .btn-pay,
  .cta-big,
  .glow-btn,
  .back,
  .nav-back,
  .pill,
  .knopf,
  .primary-link,
  .sticky-cta a,
  [role="button"].btn,
  [data-ccm-button]
) {
  color: #f5f6f7 !important;
  -webkit-text-fill-color: currentColor !important;
  transition:
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    background-image .18s ease,
    transform .18s ease !important;
}

body.ccm-public-v2.ccm-public-v2 :is(
  a.btn,
  button.btn,
  a[class$="-btn"],
  button[class$="-btn"],
  a[class*="-btn "],
  button[class*="-btn "],
  a[class^="btn-"],
  button[class^="btn-"],
  a[class*="cta"],
  button[class*="cta"],
  button[type="submit"],
  .btn-pay,
  .cta-big,
  .glow-btn,
  .back,
  .nav-back,
  .pill,
  .knopf,
  .primary-link,
  .sticky-cta a,
  [role="button"].btn,
  [data-ccm-button]
) :is(span,strong,small,.submit-main,.submit-sub,.glow-text,.glow-sub) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body.ccm-public-v2.ccm-public-v2 :is(
  a.btn,
  button.btn,
  a[class$="-btn"],
  button[class$="-btn"],
  a[class*="-btn "],
  button[class*="-btn "],
  a[class^="btn-"],
  button[class^="btn-"],
  a[class*="cta"],
  button[class*="cta"],
  button[type="submit"],
  input[type="submit"],
  .btn-pay,
  .cta-big,
  .glow-btn,
  .back,
  .nav-back,
  .pill,
  .knopf,
  .primary-link,
  .sticky-cta a,
  [role="button"].btn,
  [data-ccm-button]
):not(:disabled):hover,
body.ccm-public-v2.ccm-public-v2[data-ccm-family="pdf"] .toolbar button:not(:disabled):hover,
body.ccm-public-v2.ccm-public-v2[data-ccm-family="pdf"] :is(.download,.dl-btn,.pdf-download,.save-pdf):not(:disabled):hover {
  color: #ff8a24 !important;
  -webkit-text-fill-color: currentColor !important;
  border-color: rgba(255, 138, 36, .82) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .34),
    inset 0 -1px 0 rgba(0, 0, 0, .74),
    0 0 0 1px rgba(255, 138, 36, .18),
    0 0 18px rgba(255, 126, 24, .46),
    0 0 36px rgba(255, 112, 12, .22),
    0 12px 28px rgba(0, 0, 0, .48) !important;
}

body.ccm-public-v2.ccm-public-v2 :is(
  a.btn,
  button.btn,
  a[class$="-btn"],
  button[class$="-btn"],
  a[class*="-btn "],
  button[class*="-btn "],
  a[class^="btn-"],
  button[class^="btn-"],
  a[class*="cta"],
  button[class*="cta"],
  button[type="submit"],
  .btn-pay,
  .cta-big,
  .glow-btn,
  .back,
  .nav-back,
  .pill,
  .knopf,
  .primary-link,
  .sticky-cta a,
  [role="button"].btn,
  [data-ccm-button]
):not(:disabled):hover :is(span,strong,small,.submit-main,.submit-sub,.glow-text,.glow-sub) {
  color: #ff8a24 !important;
  -webkit-text-fill-color: currentColor !important;
}

/* CCM Public Design System v8: every button label stays straight and centered. */
body.ccm-public-v2.ccm-public-v2 :is(
  a.btn,
  button.btn,
  a[class$="-btn"],
  button[class$="-btn"],
  a[class*="-btn "],
  button[class*="-btn "],
  a[class^="btn-"],
  button[class^="btn-"],
  a[class*="cta"],
  button[class*="cta"],
  button[type="submit"],
  .btn-pay,
  .cta-big,
  .glow-btn,
  .back,
  .nav-back,
  .pill,
  .knopf,
  .primary-link,
  .sticky-cta a,
  [role="button"].btn,
  [data-ccm-button]
) {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  vertical-align: middle !important;
  font-style: normal !important;
  transform: none !important;
}

body.ccm-public-v2.ccm-public-v2 input[type="submit"] {
  text-align: center !important;
  font-style: normal !important;
  transform: none !important;
}

body.ccm-public-v2.ccm-public-v2 :is(a.nav-cta,button.nav-cta,.cta-big,.sticky-cta a)::after {
  content: none !important;
  display: none !important;
}

/* CCM Public Design System v9: restrained orange wayfinding accents. */
body.ccm-public-v2.ccm-public-v2:not([data-ccm-family="legal"]):not([data-ccm-family="pdf"]) h2::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: .68em;
  margin-right: .42em;
  border-radius: 999px;
  vertical-align: .02em;
  background: linear-gradient(180deg, #f29a43 0%, var(--ccm-micro-orange) 100%);
  box-shadow: none;
  opacity: .82;
}

body.ccm-public-v2.ccm-public-v2 :is(ul,ol) > li::marker {
  color: var(--ccm-micro-orange);
  font-size: .9em;
}

body.ccm-public-v2.ccm-public-v2 p a:not([class*="btn"]):not([class*="cta"]) {
  text-decoration-color: rgba(232, 132, 36, .58) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: .2em;
}
