@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/webfonts/fraunces-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/webfonts/inter-latin.woff2") format("woff2");
}

:root {
  --bg: #232323;
  --paper: #2b2b2b;
  --ink: #f3f3f3;
  --muted: rgba(243, 243, 243, 0.78);
  --soft: #1f1f1f;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #a6352f;
  --accent-dark: #8f2b27;
  --hero-red: #a6352f;
  --footer: #181818;
  --max: 1120px;
  --measure: 720px;
  --radius: 8px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-ui: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-detail: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", Consolas, monospace;

  --fs-hero: clamp(2.4rem, 4.8vw, 4.5rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.35rem);
  --fs-lead: clamp(1.2rem, 1.9vw, 1.55rem);
  --fs-lead-mono: clamp(1.05rem, 1.6vw, 1.35rem);
  --fs-eyebrow: 0.8rem;
  --fs-btn: 1rem;
  --fs-btn-nav: 0.9rem;

  --hero-bg: #121312;
  --hero-ink: #f2eee8;
  --hero-ink-soft: rgba(242, 238, 232, 0.82);
  --hero-eyebrow: rgba(216, 207, 191, 0.78);
  --hero-min-h: clamp(460px, 46vh, 620px);

  --hero-min-h-feature: clamp(600px, 68vh, 740px);
  --hero-pad-block: clamp(3rem, 6vw, 4.75rem);
  --hero-pad-inline: max(1rem, calc((100vw - var(--max)) / 2));
  --hero-content-max: min(680px, 54vw);

  --hero-overlay:
    linear-gradient(180deg, rgba(18, 19, 18, 0.16) 0%, rgba(18, 19, 18, 0.6) 100%),
    linear-gradient(90deg, rgba(18, 19, 18, 0.92) 0%, rgba(18, 19, 18, 0.74) 46%, rgba(18, 19, 18, 0.42) 70%, rgba(18, 19, 18, 0.72) 100%);

  --hero-texture:
    radial-gradient(circle at 80% 12%, rgba(127, 53, 47, 0.12), transparent 24rem),
    linear-gradient(180deg, #1a1b19 0%, #121312 56%, #0e0f0d 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p,
ul,
ol,
dl {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

::selection {
  background: rgba(166, 53, 47, 0.32);
}

:focus-visible {
  outline: 3px solid rgba(166, 53, 47, 0.42);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.staging-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  background: #f2c94c;
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-header,
.site-footer,
.button,
.button-secondary,
.header-question,
.nav-toggle,
.nav-close,
.eyebrow,
label,
input,
select,
textarea,
button {
  font-family: var(--font-ui);
}

.staging-banner + .site-header {
  top: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 180;
  background: rgba(35, 35, 35, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

html.nav-open {
  overflow: hidden;
}

html.nav-open body {

  overflow: visible;
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(132px, 10vw, 180px);
  height: auto;
  border-radius: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: #f3f3f3;
  font-size: var(--fs-btn-nav);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-question:hover,
.header-question:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-toggle {
  position: relative;
  z-index: 220;
  display: inline-flex;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(47, 47, 47, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f3f3f3;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(62, 62, 62, 0.96);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-nav {
  position: fixed;
  top: 4.25rem;
  right: 0;
  left: 0;

  height: calc(100dvh - 4.25rem);
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(1.5rem, 4vh, 3rem) max(1rem, calc((100vw - 1360px) / 2));
  background: var(--hero-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-panel {
  width: min(100%, 1360px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav.is-open .nav-overlay-grid {
  transform: translateY(0);
}

.nav-overlay-top {
  position: absolute;
  top: clamp(1.5rem, 3.5vh, 2.75rem);
  left: max(1.5rem, calc((100vw - 1360px) / 2));
  z-index: 5;
  display: flex;
}

.nav-close {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 207, 191, 0.32);
  border-radius: 50%;
  background: rgba(216, 207, 191, 0.05);
  color: var(--hero-ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-close:hover,
.nav-close:focus-visible {
  background: rgba(216, 207, 191, 0.12);
  border-color: rgba(216, 207, 191, 0.6);
}

.nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hero-ink);
}

.nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, fit-content(19rem));
  justify-content: center;
  gap: 0;
  align-items: stretch;
  transform: translateY(-8px);
  transition: transform 0.26s ease;
}

.nav-group {
  padding-inline: clamp(2.5rem, 6vw, 5.5rem);
}

.nav-group:first-child {
  padding-inline-start: 0;
}

.nav-group:last-child {
  padding-inline-end: 0;
}

.nav-group + .nav-group {
  border-left: 1px solid rgba(216, 207, 191, 0.42);
  border-image: linear-gradient(
      180deg,
      transparent,
      rgba(216, 207, 191, 0.42) 14%,
      rgba(216, 207, 191, 0.42) 86%,
      transparent
    )
    1;
}

.nav-group-label {
  margin: 0 0 1.15rem;
  color: rgba(243, 243, 243, 0.52);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.site-nav a {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  max-width: 18ch;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
  padding: 0.28rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-group li + li {
  margin-top: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--hero-red);
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

.home-page .site-header {
  background: #232323;
  border-bottom-color: #3b3b3b;
}

.home-page .site-nav a {
  color: var(--hero-ink);
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible,
.home-page .site-nav a[aria-current="page"] {
  border-bottom-color: var(--hero-red);
}

.home-page .nav-toggle {
  background: #2f2f2f;
  border-color: #4b4b4b;
}

.home-page .nav-toggle span {
  background: #f3f3f3;
}

.page-shell {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.6rem) 0 clamp(4rem, 7vw, 6rem);
}

.home-shell {
  width: 100%;
  padding-top: 0;
}

.price-shell {
  padding-top: 0;
}

.outcome-shell {
  padding-top: 0;
}

.page-hero,
.home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  min-height: var(--hero-min-h);
  padding-block: var(--hero-pad-block);
  padding-inline: var(--hero-pad-inline);
  border-bottom: 0;
  color: var(--hero-ink);
  background: var(--hero-texture), var(--hero-bg);
}

.page-hero > div,
.home-hero-copy,
.page-hero > :is(.eyebrow, h1, .hero-lead, .hero-actions) {
  max-width: var(--hero-content-max);
}

.page-hero .eyebrow,
.home-hero .eyebrow {
  color: var(--hero-eyebrow);
}

.eye-hero,
.price-hero,
.outcome-hero,
.clarity-hero {
  min-height: var(--hero-min-h-feature);
}

.media-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}

.price-hero {
  background:
    var(--hero-overlay),
    url("../images/high-hills.jpg") center / cover no-repeat,
    var(--hero-bg);
}

.price-hero .hero-lead {
  color: var(--hero-ink-soft);
  max-width: 520px;
  margin-top: 1.65rem;
  line-height: 1.5;
}

.price-hero .hero-rotator-item {
  animation-duration: 21s;
}

.price-hero .hero-rotator-item:nth-child(2) {
  animation-delay: 7s;
}

.price-hero .hero-rotator-item:nth-child(3) {
  animation-delay: 14s;
}

.price-hero .hero-rotator-item:nth-child(4) {
  animation-delay: 0s;
}

.price-glance-lead {
  margin: 0.5rem 0 0;
  color: rgba(242, 238, 232, 0.62);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.5;
}

.price-glance-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.price-glance-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-top: 1px solid rgba(216, 207, 191, 0.35);
  border-radius: var(--radius);
}

.price-glance-num {
  margin-bottom: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(242, 238, 232, 0.42);
}

.price-glance-card h3 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.price-glance-arrow {
  align-self: center;
  color: rgba(216, 207, 191, 0.4);
  font-size: 1.5rem;
  line-height: 1;
}

.price-glance-card-accent {
  border-color: #a6352f;
  border-top-width: 2px;
  border-top-color: #a6352f;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.price-glance-card-accent .price-glance-num {
  color: var(--accent);
}

.price-glance-card-cta {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 500;
  transition: transform 0.25s ease;
}

.price-glance-card-accent:hover,
.price-glance-card-accent:focus-visible {
  background: linear-gradient(160deg, rgba(166, 53, 47, 0.18), rgba(166, 53, 47, 0.05));
  border-color: rgba(166, 53, 47, 0.5);
  border-top-color: #a6352f;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.price-glance-card-accent:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.price-glance-card-accent:hover .price-glance-card-cta,
.price-glance-card-accent:focus-visible .price-glance-card-cta {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: no-preference) {
  .price-glance-card-accent:hover,
  .price-glance-card-accent:focus-visible {
    transform: translateY(-4px);
  }
}

.price-glance-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.price-glance-links a {
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.price-glance-links a:hover,
.price-glance-links a:focus-visible {
  border-bottom-color: var(--accent);
}

.price-glance-links .price-glance-jump {
  color: var(--hero-ink-soft);
}

.price-glance-links .price-glance-jump:hover,
.price-glance-links .price-glance-jump:focus-visible {
  border-bottom-color: var(--hero-ink-soft);
}

.price-longread-intro {
  scroll-margin-top: 5.5rem;
}

.price-shell.is-longread-collapsed .price-longread-part {
  display: none;
}

.price-longread-toggle,
.price-longread-collapse {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--hero-ink);
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.price-shell.is-longread-enhanced.is-longread-collapsed .price-longread-toggle {
  display: inline-flex;
}

.price-shell.is-longread-enhanced:not(.is-longread-collapsed) .price-longread-collapse {
  display: inline-flex;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.price-longread-toggle:hover,
.price-longread-toggle:focus-visible,
.price-longread-collapse:hover,
.price-longread-collapse:focus-visible {
  color: var(--accent);
}

.price-longread-toggle:focus-visible,
.price-longread-collapse:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.price-longread-toggle-icon,
.price-longread-collapse-icon {
  font-size: 1.3em;
  line-height: 1;
  color: var(--accent);
}

.price-shell .section.price-longread-intro .eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-longread-intro + .section {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.price-possible-link a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.price-possible-link a:hover,
.price-possible-link a:focus-visible {
  border-bottom-color: var(--accent);
}

@media (max-width: 840px) {
  .price-glance-grid {
    grid-template-columns: 1fr;
  }

  .price-glance-arrow {
    display: none;
  }
}

.outcome-hero {
  background:
    var(--hero-overlay),
    url("../images/Tree.jpg") center / cover no-repeat,
    var(--hero-bg);
}

.outcome-hero h1 {
  position: relative;
  max-width: 16ch;
  padding-top: 1.1rem;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.outcome-hero h1::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 38%);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(166, 53, 47, 0.86), transparent);
}

.outcome-hero .hero-lead {
  max-width: 520px;
  color: var(--hero-ink-soft);
  margin-top: 2rem;
}

.outcome-hero .hero-lead-secondary {
  margin-top: 0.55rem;
  color: rgba(242, 238, 232, 0.68);
}

.outcome-hero .hero-actions {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.outcome-hero .button-secondary {
  background: rgba(5, 5, 5, 0.32);
}

.outcome-hero .eyebrow {
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.75);
}

.outcome-hero h1 {
  max-width: 22ch;
  padding-top: 0;
}

.outcome-hero h1::before {
  display: none;
}

.outcome-hero-break {
  display: none;
}

@media (min-width: 1000px) {
  .outcome-hero-break {
    display: inline;
  }

  .outcome-hero > div {
    max-width: none;
  }

  .outcome-hero h1 {
    max-width: none;
  }

  .outcome-hero .eyebrow,
  .outcome-hero .hero-lead,
  .outcome-hero .hero-actions {
    max-width: 520px;
  }

  .outcome-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: max-content;
  }

  .outcome-hero .hero-actions .button {
    width: 100%;
  }
}

.outcome-glance .section-heading {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.outcome-shell .section.outcome-vertiefung .eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-vertiefung + .section {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.longread-threshold {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
}
.longread-threshold .longread-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(166, 53, 47, 0));
}
.longread-threshold .longread-rule:first-child {
  background: linear-gradient(90deg, rgba(166, 53, 47, 0), var(--accent));
}
.longread-threshold .longread-label {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--font-detail);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 460px) {
  .longread-threshold .longread-label {
    white-space: normal;
    text-align: center;
  }
}

.clarity-color-experiment .clarity-glance {
  position: relative;
}
.clarity-color-experiment .clarity-glance > * {
  position: relative;
  z-index: 1;
}
.clarity-color-experiment .clarity-glance .section-heading {
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}
.clarity-shell .section.clarity-glance .clarity-glance-sub {
  max-width: 52ch;
  margin-top: 0.6rem;
  color: rgba(242, 238, 232, 0.62);
  font-family: var(--font-body);
  font-size: 1.02rem;
  letter-spacing: 0;
}
.clarity-glance-lbl {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(242, 238, 232, 0.55);
  font-family: var(--font-detail);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.outcome-chapter-h {
  grid-column: 1 / -1;
  align-self: start;
  margin: 0 0 clamp(0.4rem, 1.5vw, 0.9rem);
}

.outcome-shell .section.outcome-case .outcome-case-kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .outcome-glance-grid {
    grid-template-columns: 1fr;
  }
}

.outcome-opening,
.outcome-editorial,
.outcome-shift-grid,
.outcome-process-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.outcome-opening {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
}

.outcome-opening-lead {
  padding-left: clamp(1rem, 2vw, 1.4rem);
  border-left: 2px solid rgba(166, 53, 47, 0.72);
}

.outcome-opening-lead p,
.outcome-statement,
.outcome-dependency p:first-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  font-weight: 500;
  line-height: 1.36;
}

.outcome-opening-lead p + p {
  margin-top: 0.7rem;
}

.outcome-opening-copy,
.outcome-editorial > div:first-child,
.outcome-dependency,
.outcome-process-grid > div {
  max-width: var(--measure);
}

.outcome-opening-copy p,
.outcome-editorial p,
.outcome-dependency p,
.outcome-shift-grid p,
.outcome-situation p,
.outcome-process p,
.outcome-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  line-height: 1.68;
}

.outcome-opening-copy p + p,
.outcome-editorial p + p,
.outcome-dependency p + p,
.outcome-shift-grid p + p,
.outcome-situation p + p,
.outcome-process p + p {
  margin-top: 0.9rem;
}

.outcome-editorial {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  align-items: start;
}

.outcome-signal-list,
.outcome-dependency {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.outcome-signal-list p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.outcome-dependency {
  max-width: 980px;
  padding: clamp(2rem, 5vw, 3.4rem);
  border-color: rgba(166, 53, 47, 0.28);
  background:
    radial-gradient(circle at 85% 12%, rgba(166, 53, 47, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(48, 12, 12, 0.32), rgba(255, 255, 255, 0.035));
}

.outcome-dependency p:first-child {
  max-width: 18ch;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.7rem);
}

.outcome-shifts h2,
.outcome-situations h2,
.outcome-process h2 {
  max-width: 20ch;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.outcome-shift-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.outcome-shift-grid > div {
  position: relative;
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.outcome-shift-grid > div::before {
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-bottom: 1.15rem;
  content: "";
  background: rgba(166, 53, 47, 0.72);
}

.outcome-shift-grid p:first-child {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.16rem, 1.6vw, 1.32rem);
  font-weight: 560;
  line-height: 1.42;
}

.outcome-situation-grid {
  counter-reset: outcome-situation;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.7vw, 2rem);
  align-items: stretch;
}

.outcome-situation h3 {
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.34rem, 2vw, 1.62rem);
  font-weight: 560;
  line-height: 1.16;
}

.outcome-situation {
  counter-increment: outcome-situation;
  position: relative;
  overflow: hidden;
  padding: clamp(1.55rem, 3.2vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
}

.outcome-situation::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(166, 53, 47, 0.72), transparent);
}

.outcome-situation h3::before {
  display: block;
  margin-bottom: 1rem;
  color: rgba(166, 53, 47, 0.82);
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  content: counter(outcome-situation, decimal-leading-zero);
}

.outcome-process-grid {
  counter-reset: outcome-process;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.outcome-process-grid > div {
  counter-increment: outcome-process;
  position: relative;
  padding: clamp(1.45rem, 3vw, 2rem);
  border-top: 1px solid rgba(166, 53, 47, 0.36);
  background: rgba(255, 255, 255, 0.018);
}

.outcome-process-grid > div::before {
  display: block;
  margin-bottom: 1rem;
  color: rgba(166, 53, 47, 0.82);
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  content: "0" counter(outcome-process);
}

.outcome-case {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: stretch;
  padding:
    clamp(1.6rem, 4vw, 2.6rem)
    clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(166, 53, 47, 0.2);
  background:
    radial-gradient(circle at 86% 18%, rgba(166, 53, 47, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.025);
}

.outcome-case > div + div {
  padding-left: clamp(1rem, 3vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.outcome-case p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.outcome-case p + p {
  margin-top: 0.9rem;
}

.outcome-divider {
  position: relative;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
}

.outcome-divider::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.58)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.04) 46%, rgba(5, 5, 5, 0.42));
}

.outcome-divider img {
  display: block;
  width: 100%;
  height: clamp(240px, 27vw, 380px);
  object-fit: cover;
  object-position: 55% center;
  opacity: 0.78;
  filter: saturate(0.85) contrast(0.92) brightness(0.82);
}

.outcome-cta {
  margin-top: clamp(3.2rem, 7vw, 5.8rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.4rem);
  border-color: rgba(166, 53, 47, 0.24);
  background:
    radial-gradient(circle at 82% 0%, rgba(166, 53, 47, 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(48, 12, 12, 0.28), rgba(255, 255, 255, 0.035));
}

.outcome-cta p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 1.75vw, 1.4rem);
  line-height: 1.54;
}

.outcome-cta .hero-actions {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.outcome-cta .button {
  min-height: 48px;
  padding-inline: 1.25rem;
}

.outcome-cta .button-secondary {
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.clarity-shell {
  padding-top: 0;
}

.clarity-hero {
  background:
    var(--hero-overlay),
    url("../images/price-threshold-corridor.jpg") 55% center / cover no-repeat,
    var(--hero-bg);
}

.clarity-hero h1 {
  position: relative;
  max-width: 14ch;
  padding-top: 1.1rem;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.46);
}

.clarity-hero h1::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 38%);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(166, 53, 47, 0.86), transparent);
}

.clarity-hero .eyebrow {
  color: rgba(228, 64, 44, 0.95);
  margin-bottom: 1.05rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
}

.clarity-hero .hero-lead {
  max-width: 650px;
  margin-top: 1.8rem;
  color: var(--hero-ink-soft);
}

.clarity-hero .hero-actions {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.clarity-hero .button-secondary {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 5, 5, 0.3);
}

.clarity-theses {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid rgba(166, 53, 47, 0.22);
  background:
    radial-gradient(circle at 88% 8%, rgba(166, 53, 47, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(48, 12, 12, 0.24), rgba(255, 255, 255, 0.03));
}

.clarity-theses h2,
.clarity-board h2,
.clarity-speaking h2,
.clarity-expect h2 {
  max-width: 19ch;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.clarity-theses-grid {
  counter-reset: thesis;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.clarity-theses-grid p {
  counter-increment: thesis;
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  line-height: 1.58;
}

.clarity-theses-grid p:nth-child(1),
.clarity-theses-grid p:nth-child(2) {
  border-top: 0;
}

.clarity-theses-grid p::before {
  position: absolute;
  top: 1rem;
  left: 0;
  color: rgba(166, 53, 47, 0.9);
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: 0.88rem;
  content: counter(thesis, decimal-leading-zero);
}

.clarity-intro {
  max-width: 900px;
}

.clarity-intro-copy,
.clarity-training > div:nth-child(2),
.clarity-expect > div {
  max-width: var(--measure);
}

.clarity-intro p,
.clarity-split p,
.clarity-board p,
.clarity-analogy p,
.clarity-work p,
.clarity-case p,
.clarity-expect p,
.clarity-question p,
.clarity-speaking p,
.clarity-final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  line-height: 1.68;
}

.clarity-intro p + p,
.clarity-split p + p,
.clarity-analogy p + p,
.clarity-work p + p,
.clarity-case p + p,
.clarity-expect p + p,
.clarity-question p + p,
.clarity-speaking p + p {
  margin-top: 0.9rem;
}

.clarity-vertical-list {
  margin: clamp(1.15rem, 2.4vw, 1.6rem) 0;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(166, 53, 47, 0.68);
}

.clarity-vertical-list p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.clarity-vertical-list p + p {
  margin-top: 0.35rem;
}

.clarity-split,
.clarity-analogy,
.clarity-work,
.clarity-expect,
.clarity-speaking {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
}

.clarity-split h2,
.clarity-analogy h2,
.clarity-work h2 {
  max-width: 12ch;
}

.clarity-emphasis-card,
.clarity-analogy-card,
.clarity-question-list,
.clarity-work-note,
.clarity-case,
.clarity-question,
.clarity-speaking {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.clarity-emphasis-card,
.clarity-analogy-card,
.clarity-question-list,
.clarity-work-note,
.clarity-case,
.clarity-question {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.clarity-emphasis-card {
  border-left: 2px solid rgba(166, 53, 47, 0.68);
}

.clarity-key {
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: clamp(1.2rem, 1.8vw, 1.46rem) !important;
  font-weight: 560;
  line-height: 1.42 !important;
}

.clarity-board {
  max-width: 1040px;
}

.clarity-board-rows {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.clarity-board-rows p {
  position: relative;
  padding: 1rem 0 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
}

.clarity-board-rows p::before {
  position: absolute;
  top: 1.75em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  content: "";
  background: rgba(166, 53, 47, 0.78);
}

.clarity-board-final {
  max-width: 620px;
  margin-top: clamp(1.4rem, 3vw, 2rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(166, 53, 47, 0.22);
  background: rgba(48, 12, 12, 0.2);
}

.clarity-board-final p:nth-child(n + 2) {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 560;
}

.clarity-analogy-card a {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--accent);
  font-weight: 600;
}

.clarity-question-list p {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.clarity-question-list p::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  content: "";
  background: rgba(166, 53, 47, 0.76);
}

.clarity-work {
  grid-template-columns: minmax(220px, 0.64fr) minmax(260px, 0.78fr) minmax(0, 1fr);
}

.clarity-work-note {
  border-left: 2px solid rgba(166, 53, 47, 0.42);
}

.clarity-case {
  max-width: 980px;
  border-color: rgba(166, 53, 47, 0.22);
  background:
    radial-gradient(circle at 86% 16%, rgba(166, 53, 47, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.025);
}

.clarity-expect {
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
}

.clarity-question {
  max-width: 1040px;
  border-color: rgba(166, 53, 47, 0.2);
  background: linear-gradient(145deg, rgba(48, 12, 12, 0.26), rgba(255, 255, 255, 0.03));
}

.clarity-question > div {
  margin: clamp(1.3rem, 3vw, 2rem) 0;
  padding-left: clamp(1rem, 2vw, 1.35rem);
  border-left: 2px solid rgba(166, 53, 47, 0.68);
}

.clarity-question > div p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.32rem, 2.2vw, 1.8rem);
  font-weight: 560;
  line-height: 1.35;
}

.clarity-speaking {
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.clarity-speaking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem clamp(1rem, 3vw, 2rem);
}

.clarity-speaking .button {
  justify-self: end;
}

.clarity-final-cta {
  margin-top: clamp(3.2rem, 7vw, 5.8rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.4rem);
  border-color: rgba(166, 53, 47, 0.26);
  background:
    radial-gradient(circle at 82% 0%, rgba(166, 53, 47, 0.14), transparent 22rem),
    linear-gradient(145deg, rgba(48, 12, 12, 0.3), rgba(255, 255, 255, 0.035));
}

.clarity-final-cta p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.18rem, 1.75vw, 1.4rem);
  line-height: 1.54;
}

.clarity-final-cta .button {
  margin-top: clamp(1.4rem, 3vw, 2.1rem);
}

.price-underline-transition {
  width: min(100% - 2rem, var(--max));
  margin: clamp(1.3rem, 3vw, 2.4rem) auto 0;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.price-underline-transition img {
  display: block;
  width: min(32rem, 58vw);
  max-height: 2.8rem;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1) contrast(0.9);
}

.price-continuation {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(2.4rem, 5.5vw, 5rem);
  align-items: center;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.price-continuation-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.025);
}

.price-continuation-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.54) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.46) 100%);
  pointer-events: none;
}

.price-continuation-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  object-position: 42% 38%;
  opacity: 0.62;
  filter: saturate(0.68) contrast(0.9) brightness(0.86);
}

.price-continuation-handwriting {
  align-self: stretch;
  display: flex;
  min-height: 100%;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.price-continuation-handwriting::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.24));
}

.price-continuation-handwriting img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.86;
  filter: grayscale(1) contrast(0.9) brightness(0.82);
}

.price-notes-stack {
  position: relative;
  overflow: visible;
  border: 0;
  background: none;
  padding-bottom: clamp(2rem, 9%, 5rem);
}

.price-notes-stack::after {
  content: none;
}

.price-notes-stack .notes-back {
  display: block;
  width: 82%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(1) contrast(0.92) brightness(0.86);
}

.price-notes-stack .notes-front {
  position: absolute;
  top: 40%;
  left: 30%;
  z-index: 2;
  width: 66%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: grayscale(1) contrast(0.95) brightness(0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
  transform: rotate(1.6deg);
}

.price-continuation-copy {
  max-width: var(--measure);
  font-family: inherit;
}

.price-continuation-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  font-weight: 400;
  line-height: 1.66;
}

.price-continuation-copy p:first-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.34rem, 2.1vw, 1.72rem);
  font-weight: 500;
  line-height: 1.34;
}

.price-continuation-copy p + p {
  margin-top: 0.86rem;
}

.price-continuation-copy p:first-child + p {
  margin-top: clamp(1.35rem, 2.8vw, 2rem);
}

.price-continuation-cta {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  background: #a6352f;
  color: #fff;
  box-shadow: 0 14px 28px rgba(166, 53, 47, 0.16);
}

.price-continuation-cta:hover,
.price-continuation-cta:focus-visible {
  background: #d70b0b;
  transform: translateY(-1px);
}

.price-fit {
  max-width: 1120px;
}

.price-fit-card p {
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2.2vw, 1.38rem);
  font-weight: 500;
  line-height: 1.42;
}

.price-fit h2 {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.price-fit-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
}

.price-fit-arrow {
  margin: 0;
}

.price-fit-arrow img {
  display: block;
  width: min(100%, 240px);
  opacity: 0.68;
  filter: grayscale(1) contrast(0.92);
}

.price-fit-card {
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
}

.price-fit-card p {
  display: grid;
  grid-template-columns: clamp(1.8rem, 3vw, 2.5rem) minmax(0, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.15rem);
  align-items: start;
  margin: 0;
}

.price-fit-card p img {
  display: block;
  width: 100%;
  margin-top: 0.1em;
  opacity: 0.72;
  filter: grayscale(1) contrast(0.95);
}

.price-fit-card p + p {
  margin-top: 1rem;
}

.price-signal-timeline {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding:
    clamp(3rem, 7vw, 6rem)
    max(1rem, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 68% 42%, rgba(166, 53, 47, 0.12), transparent 28rem),
    linear-gradient(180deg, #1b1b1b 0%, #181818 100%);
}

.price-signal-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: start;
}

.price-signal-heading {
  position: sticky;
  top: clamp(6rem, 12vh, 8rem);
}

.price-signal-heading h2 {
  max-width: 12ch;
  margin: 0;
}

.price-signal-path {
  position: relative;
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.6rem);
  padding-left: clamp(1.9rem, 3vw, 2.5rem);
}

.price-signal-path::before {
  position: absolute;
  top: 0.28rem;
  bottom: 0.35rem;
  left: 0.44rem;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(166, 53, 47, 0.18), rgba(166, 53, 47, 0.78), rgba(166, 53, 47, 0.24));
}

.price-signal-path > p,
.price-signal-conclusion {
  position: relative;
}

.price-signal-path > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.58;
}

.price-signal-path > p::before,
.price-signal-conclusion::before {
  position: absolute;
  top: 0.6em;
  left: calc(-1 * clamp(1.9rem, 3vw, 2.5rem));
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  content: "";
  background: #a6352f;
  box-shadow: 0 0 0 5px rgba(166, 53, 47, 0.12), 0 0 18px rgba(166, 53, 47, 0.34);
}

.price-signal-conclusion {
  margin-top: clamp(0.5rem, 1.5vw, 1rem);
  padding: clamp(1.05rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(166, 53, 47, 0.28);
  background: rgba(48, 12, 12, 0.24);
}

.price-signal-conclusion p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 560;
  line-height: 1.36;
}

.price-signal-conclusion p + p {
  margin-top: 0.35rem;
}

.price-threshold {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding:
    clamp(3rem, 7vw, 6rem)
    max(1rem, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #181818 0%, #151515 100%);
}

.price-threshold h2 {
  max-width: 16ch;
  margin-bottom: clamp(1.15rem, 2.6vw, 2rem);
}

.price-threshold-image {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-block: 0 clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #090909;
}

.price-threshold-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.58) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.26) 0%, rgba(5, 5, 5, 0.08) 46%, rgba(5, 5, 5, 0.42) 100%);
  pointer-events: none;
}

.price-threshold-image img {
  display: block;
  width: 100%;
  height: clamp(220px, 22vw, 320px);
  object-fit: cover;
  object-position: 55% center;
  opacity: 0.86;
  filter: saturate(0.9) contrast(0.92) brightness(0.82);
}

.price-threshold-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0;
  align-items: start;
  max-width: 980px;
}

.price-threshold-columns > div {
  padding-inline: clamp(1.5rem, 3.5vw, 2.75rem);
}

.price-threshold-columns > div:first-child {
  padding-inline-start: 0;
}

.price-threshold-columns > div:last-child {
  padding-inline-end: 0;
}

.price-threshold-columns > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.price-threshold p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.price-threshold p + p {
  margin-top: 0.85rem;
}

.price-threshold .price-threshold-columns > div:first-child p {
  color: rgba(242, 238, 232, 0.5);
}

.price-threshold-columns > div:nth-child(2) p:first-child {
  color: #f2eee8;
  font-weight: 500;
}

.price-threshold-conclusion {
  max-width: 820px;
  margin-top: clamp(1.9rem, 4.5vw, 3.25rem);
  padding-left: clamp(1.1rem, 2.2vw, 1.6rem);
  border-left: 2px solid rgba(166, 53, 47, 0.7);
}

.price-threshold-conclusion p {
  color: rgba(255, 255, 255, 0.88);
}

.price-threshold-conclusion p:nth-child(2) {
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.44rem);
  font-weight: 560;
}

.home-shell > .section,
.home-shell > .cta-panel {
  width: min(100% - 2rem, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.eye-hero {
  background:
    var(--hero-overlay),
    url("../images/clear_eye_2.jpg") 188% center / 92% auto no-repeat,
    var(--hero-bg);
}

.eye-hero .home-hero-copy {
  max-width: min(620px, 50vw);
}

.mobile-hero-break {
  display: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.08;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1.06;
}

.page-hero h1,
.home-hero h1 {
  max-width: 15ch;
  color: var(--hero-ink);
}

h2 {
  margin: 0 0 1rem;
  font-size: var(--fs-h2);
  font-weight: 560;
  line-height: 1.12;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: var(--fs-h3);
  font-weight: 600;
}

.hero-lead {
  max-width: 760px;
  margin: 1.15rem 0 0;
  color: var(--hero-ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.45;
}

.eye-hero h1 {
  color: var(--hero-ink);
  max-width: 16ch;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.home-hero h1 .hero-h1-soft {
  color: rgba(242, 238, 232, 0.6);
  font-style: italic;
}

@media (min-width: 981px) {
  .home-hero.eye-hero h1 {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  }
}

.eye-hero .eyebrow {
  margin-bottom: 1rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.75);
}

.eye-hero .hero-lead {
  color: var(--hero-ink-soft);
  max-width: 520px;
  margin-top: 1.65rem;
  line-height: 1.5;
}

.home-hero .hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--hero-ink-soft);
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.home-hero .hero-proof li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.home-hero .hero-proof li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 0.9rem;
  border-radius: 50%;
  background: rgba(216, 207, 191, 0.5);
}

.hero-text-rotator {
  font-family: var(--font-detail);
  font-size: var(--fs-lead-mono);
  min-height: 4.35em;
}

.hero-rotator-track {
  position: relative;
  display: block;
  min-height: inherit;
  overflow: hidden;
}

.hero-rotator-item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateX(42%);
  animation: heroTextSlide 28s cubic-bezier(0.42, 0, 0.24, 1) infinite;
  will-change: transform, opacity;
}

.hero-rotator-item:nth-child(2) {
  animation-delay: 7s;
}

.hero-rotator-item:nth-child(3) {
  animation-delay: 14s;
}

.hero-rotator-item:nth-child(4) {
  animation-delay: 21s;
}

@keyframes heroTextSlide {
  0% {
    opacity: 0;
    transform: translateX(42%);
  }

  6%,
  20% {
    opacity: 1;
    transform: translateX(0);
  }

  25% {
    opacity: 0;
    transform: translateX(-34%);
  }

  100% {
    opacity: 0;
    transform: translateX(-34%);
  }
}

.eye-hero p:not(.eyebrow):not(.hero-lead) {
  color: rgba(255, 255, 255, 0.86);
}

.eye-hero .button {
  background: var(--hero-red);
  border-color: var(--hero-red);
  margin-top: 3rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.eye-hero .button:hover,
.eye-hero .button:focus-visible {
  background: #8f2b27;
  border-color: #8f2b27;
}

.page-hero p:not(.eyebrow):not(.hero-lead),
.home-hero p:not(.eyebrow):not(.hero-lead) {
  max-width: 700px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-hero.eye-hero p:not(.eyebrow):not(.hero-lead) {
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
  line-height: 1.55;
}

.portrait {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
}

.portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.portrait-home img {
  min-height: 480px;
}

.button,
.button-secondary,
.contact-form button,
.form-error-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  padding: 0.68rem 1.15rem;
  font-size: var(--fs-btn);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible,
.form-error-panel button:hover,
.form-error-panel button:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  background: transparent;
  color: #f3d7d7;
  border-color: rgba(243, 215, 215, 0.38);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.home-hero .button,
.page-hero > .button {
  margin-top: 1.45rem;
}

.section {
  margin-top: clamp(2rem, 5vw, 4rem);
}

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

.section-narrow {
  max-width: var(--measure);
}

.section-narrow p,
.split p,
.editorial-card p,
.preview-card p,
.number-detail,
.cta-panel p,
.person-card p,
.contact-aside p,
.proof-note {
  color: var(--muted);
}

.section-narrow p {
  font-size: 1.12rem;
  line-height: 1.68;
}

.responsibility-note {
  padding:
    clamp(2rem, 5vw, 4rem)
    max(1rem, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.95) 0%, rgba(24, 24, 24, 0.84) 54%, rgba(24, 24, 24, 0.72) 100%),
    url("../images/elements/camera_flare-24-web.jpg") center right / cover no-repeat;
}

.home-shell > .section.responsibility-note {
  width: 100%;
  max-width: none;
}

.home-page .home-shell > .section.responsibility-note {
  margin-top: clamp(1.75rem, 3.5vw, 3rem);
}

.responsibility-note-inner {
  max-width: 760px;
  margin: 0 auto;
}

.home-shell .responsibility-note .responsibility-note-inner .eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.responsibility-note h2,
.responsibility-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2.2vw, 1.38rem);
  font-weight: 500;
  line-height: 1.42;
}

.responsibility-note h2 + p,
.responsibility-note p + p {
  margin-top: 0.9rem;
}

.responsibility-note-underlined {
  display: table;
}

.responsibility-note-underlined::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0.3rem 0 0;
  background: url("../images/elements/underline-web-2.png") left top / 100% 100% no-repeat;
  opacity: 0.85;
}

.home-shell .responsibility-note .responsibility-note-inner .responsibility-note-underlined {
  margin-top: clamp(1.1rem, 2.2vw, 1.6rem);
}

.responsibility-note-sectors {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.home-shell .responsibility-note .responsibility-note-inner .responsibility-note-sectors-lead {
  margin: 0 0 clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(242, 238, 232, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  line-height: 1.5;
}

.responsibility-note-sectors-lead strong {
  color: #f2eee8;
  font-weight: 500;
}

.responsibility-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-note-tags li {
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(216, 207, 191, 0.32);
  border-radius: 6px;
  color: #e8e2d8;
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 841px) {
  .responsibility-note-tags {
    flex-wrap: nowrap;
  }
}

.responsibility-note .responsibility-note-closing {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.34;
  text-align: left;
}

.responsibility-note-draw {
  display: inline-block;
  max-width: 100%;
  clip-path: inset(0 100% 0 0);
  animation: responsibility-write 4.8s steps(62, end) 0.4s forwards;
}

@keyframes responsibility-write {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .responsibility-note-draw {
    clip-path: none;
    animation: none;
  }
}

.home-transition {
  width: min(100% - 2rem, var(--max));
  margin: clamp(1.3rem, 3vw, 2.4rem) auto 0;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.home-transition img {
  display: block;
  width: min(86rem, 92vw);
  height: auto;
  max-height: clamp(6rem, 15vw, 13rem);
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.86;
}

.home-opening {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.6rem, 3.5vw, 2.8rem) clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.home-opening-image {
  grid-column: 1;
  margin: 0;
  width: min(100%, 360px);
}

.home-opening-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  filter:
    saturate(1.04)
    brightness(1.03)
    contrast(0.96)
    drop-shadow(0 24px 42px rgba(0, 0, 0, 0.34));
}

.home-opening-caption {
  margin-top: 1.1rem;
}

.home-opening-caption strong {
  display: block;
  color: #f2eee8;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.2;
}

.home-opening-caption span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(242, 238, 232, 0.6);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.home-opening-copy {
  grid-column: 2;
}

.home-shell .home-opening .home-opening-copy .eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-shell .home-opening .home-opening-copy .home-opening-intro {
  color: #f2eee8;
  font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  line-height: 1.5;
}

.portrait-stat {
  position: absolute;
  z-index: 1;
  width: min(8.4rem, 42%);
  padding: 0.48rem 0.56rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(24, 24, 24, 0.66);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.portrait-stat strong,
.portrait-stat span {
  display: block;
}

.portrait-stat strong {
  color: #fff;
  font-size: clamp(0.88rem, 1.45vw, 1.08rem);
  font-weight: 500;
  line-height: 1.05;
}

.portrait-stat span {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  line-height: 1.25;
}

.stat-top-left {
  top: 0.15rem;
  left: 0.35rem;
}

.stat-top-right {
  top: 1.8rem;
  right: -0.15rem;
  text-align: right;
}

.stat-bottom-left {
  bottom: 1.15rem;
  left: -0.1rem;
}

.stat-bottom-right {
  right: 0.6rem;
  bottom: 0.25rem;
  text-align: right;
}

.home-opening-copy {
  max-width: var(--measure);
  margin-left: auto;
  text-align: left;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.2rem;
}

.proof-section .section-heading {
  margin-bottom: calc(1.2rem + 1.4em);
}

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

.card-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-card,
.preview-card,
.number-proof,
.contact-panel,
.contact-aside,
.person-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.editorial-card,
.preview-card,
.number-proof,
.contact-panel,
.contact-aside,
.person-card {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.editorial-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.editorial-card p + p {
  margin-top: 0.8rem;
}

.split p,
.editorial-card p,
.preview-card p,
.person-card p,
.contact-aside p {
  font-size: 1.04rem;
  line-height: 1.62;
}

.preview-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.preview-card:hover,
.preview-card:focus-visible {
  border-color: rgba(166, 53, 47, 0.72);
  transform: translateY(-2px);
}

.preview-card p {
  color: var(--muted);
}

.deep-links-section .section-heading {
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.deep-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.deep-link-grid .preview-card {
  display: block;
  min-height: clamp(12rem, 18vw, 16rem);
  padding: clamp(1.75rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0.28rem solid var(--accent);
  border-radius: 0;
  background: #202020;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.deep-link-grid .preview-card:hover,
.deep-link-grid .preview-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--accent);
  background: #262626;
  transform: translateY(-2px);
}

.deep-link-grid .preview-card h3 {
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.06rem, 2.2vw, 1.38rem);
  font-weight: 500;
  line-height: 1.42;
}

.deep-link-grid .preview-card p {
  max-width: 34rem;
  margin-top: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.06rem, 2.2vw, 1.38rem);
  font-weight: 500;
  line-height: 1.42;
}

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

.number-proof {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.number-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.number-proof-couch::before {
  background-image:
    linear-gradient(90deg, rgba(32, 32, 32, 0.78) 0%, rgba(32, 32, 32, 0.42) 55%, rgba(32, 32, 32, 0.2) 100%),
    url("../images/DorotheeConradCouch-card.jpg");
  opacity: 0.62;
}

.number-proof-doro::before {
  background-image:
    linear-gradient(90deg, rgba(32, 32, 32, 0.78) 0%, rgba(32, 32, 32, 0.42) 55%, rgba(32, 32, 32, 0.2) 100%),
    url("../images/Doro-card.jpg");
  opacity: 0.6;
}

.number-proof > * {
  position: relative;
  z-index: 1;
}

.number-proof:hover,
.number-proof:focus-visible {
  border-color: rgba(166, 53, 47, 0.56);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  transform: translateY(-2px);
}

.number-proof-couch:hover::before,
.number-proof-couch:focus-visible::before,
.number-proof-doro:hover::before,
.number-proof-doro:focus-visible::before {
  opacity: 0.72;
  transform: scale(1.02);
}

.number {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 700;
  line-height: 0.96;
}

.home-shell .number-grid .number:not(.number-long),
.page-shell .number-grid .number:not(.number-long) {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.home-shell .number-grid .number-proof .number-detail,
.page-shell .number-grid .number-proof .number-detail {
  font-size: 1rem;
  line-height: 1.5;
}

.number-long {
  max-width: 11ch;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.08;
}

.number-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.32;
}

.number-detail {
  margin: 1rem 0 0;
  color: rgba(243, 243, 243, 0.78);
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.number-proof:hover .number-detail,
.number-proof:focus-visible .number-detail {
  opacity: 1;
  transform: translateY(0);
}

.proof-note-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(6rem, 9rem);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

.proof-note {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: clamp(1.75rem, 2.7vw, 2.1rem);
  font-weight: 500;
  line-height: 1.34;
}

.proof-note-arrow {
  justify-self: end;
  width: min(100%, 7rem);
  height: auto;
  opacity: 0.82;
}

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

.logo-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem;
}

.stacked-list {
  display: grid;
  gap: 0.7rem;
}

.stacked-list p {
  margin: 0;
  padding: 0 0 0.7rem;
  border-bottom: 1px solid var(--line);
}

.plain-list {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.plain-list li + li {
  margin-top: 0.45rem;
}

.next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.next-links a,
.text-link {
  color: var(--accent);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.cta-panel {
  margin-top: clamp(2.4rem, 6vw, 5rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  background: #202020;
  color: #fff;
}

.cta-panel-with-image {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.cta-panel-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.cta-panel-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  opacity: 0.68;
}

.cta-panel-copy {
  min-width: 0;
}

.cta-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.cta-panel-with-image .button {
  font-weight: 600;
}

.cta-panel .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.longform .section {
  border-top: 1px solid var(--line);
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.person-grid {
  display: grid;
  gap: 1rem;
}

.person-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.person-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.75rem;
}

.person-role,
.person-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.62rem;
}

.contact-form label {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  width: 100%;
  margin-top: 0.35rem;
}

.form-privacy-note {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.form-privacy-note a:hover,
.form-privacy-note a:focus-visible {
  border-bottom-color: var(--accent);
}

.contact-details {
  display: grid;
  gap: 0.9rem;
}

.contact-details div {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.contact-details dt {
  color: var(--ink);
  font-weight: 700;
}

.contact-details dd {
  margin: 0.1rem 0 0;
  color: var(--muted);
}

.form-status {
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  display: none;
  line-height: 1.45;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: rgba(132, 216, 166, 0.14);
  color: #eaf8ee;
  border: 1px solid rgba(132, 216, 166, 0.28);
}

.form-error-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.form-error-modal.open {
  display: flex;
}

.form-error-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.form-error-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: min(100vh - 2rem, 560px);
  overflow-y: auto;
  background: #242424;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem 1.1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.form-error-title {
  margin: 0 0 0.45rem;
  font-size: 1.3rem;
}

.form-error-copy {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.form-error-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 36px;
  height: 36px;
  min-height: 36px;
  margin-top: 0;
  border-radius: var(--radius);
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.site-footer {
  background: var(--footer);
  color: #fff;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1.5rem 0 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.footer-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
  .card-grid,
  .card-grid-compact,
  .logo-grid,
  .number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    position: fixed;
    top: 4.25rem;
    left: 0;
    right: 0;
    height: calc(100dvh - 4.25rem);
    display: block;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    background: var(--hero-bg);
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }

  .js .site-nav[hidden] {
    display: none;
  }

  .home-transition {
    display: block;
    width: min(100% - 2rem, var(--max));
    margin-top: 1rem;
    padding: 1rem 0;
  }

  .home-transition img {
    width: min(24rem, 78vw);
    max-height: 4.75rem;
  }

  .nav-overlay-panel {
    width: 100%;
    max-height: none;
    margin: 0;
    overflow: visible;
    padding: 1.25rem 1.25rem 2.75rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .nav-overlay-top {
    display: none;
  }

  .nav-overlay-grid {
    display: block;
  }

  .nav-group {
    padding-inline: 0;
  }

  .nav-group + .nav-group {
    border-left: 0;
    padding-left: 0;
    margin-top: 1rem;
  }

  .nav-group-label {
    margin-bottom: 0.35rem;
    font-size: 0.66rem;
  }

  .nav-group li + li {
    margin-top: 0.1rem;
  }

  .site-nav a {
    max-width: none;
    padding: 0.35rem 0;
    font-size: 0.96rem;
    line-height: 1.28;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .media-hero,
  .split,
  .price-continuation,
  .price-fit-grid,
  .price-signal-inner,
  .price-threshold-columns,
  .outcome-opening,
  .outcome-editorial,
  .outcome-shift-grid,
  .outcome-situation-grid,
  .outcome-process-grid,
  .outcome-case,
  .clarity-theses-grid,
  .clarity-split,
  .clarity-analogy,
  .clarity-work,
  .clarity-expect,
  .clarity-speaking,
  .clarity-speaking-list,
  .home-opening,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .price-threshold-columns {
    row-gap: clamp(1.6rem, 5vw, 2.4rem);
  }

  .price-threshold-columns > div {
    padding-inline: 0;
  }

  .price-threshold-columns > div + div {
    border-left: 0;
  }

  .media-hero {
    align-items: start;
  }

  .price-hero > div {
    max-width: 640px;
  }

  .price-hero .hero-lead {
    max-width: 520px;
  }

  .outcome-hero {
    background-position: 56% center;
  }

  .outcome-hero > div {
    max-width: 640px;
  }

  .outcome-hero h1 {
    max-width: 14ch;
  }

  .outcome-hero .hero-lead {
    max-width: 520px;
  }

  .clarity-hero > div {
    max-width: 640px;
  }

  .clarity-hero h1 {
    max-width: 14ch;
  }

  .clarity-hero .hero-lead {
    max-width: 520px;
  }

  .clarity-theses-grid p:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .clarity-speaking .button {
    justify-self: start;
  }

  .price-continuation {
    gap: 1.5rem;
    align-items: start;
  }

  .price-continuation-image {
    max-width: min(100%, 520px);
  }

  .price-continuation-image img {
    aspect-ratio: 16 / 10;
    object-position: 42% 34%;
  }

  .price-continuation-handwriting {
    min-height: clamp(18rem, 72vw, 34rem);
  }

  .price-continuation-handwriting img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .price-fit-arrow img {
    width: min(48vw, 180px);
  }

  .price-signal-heading {
    position: static;
  }

  .price-signal-heading h2 {
    max-width: 16ch;
  }

  .home-opening {
    align-items: start;
  }

  .home-opening-image {
    grid-column: auto;
    order: 1;
    width: min(100%, 320px);
  }

  .home-opening-copy {
    grid-column: auto;
    order: 2;
    margin-left: 0;
    max-width: none;
  }

  .portrait-stat {
    width: 8.8rem;
  }

  .eye-hero {
    background-position: 72% center;
    background-size: cover;
  }

  .eye-hero .home-hero-copy {
    max-width: 640px;
  }

  .eye-hero h1 {
    max-width: 14ch;
  }

  .eye-hero .eyebrow {
    max-width: 28ch;
  }

  .eye-hero .hero-lead {
    max-width: 520px;
  }

  .hero-text-rotator {
    min-height: 4.8em;
  }

  .portrait {
    max-width: 360px;
  }

  .portrait-home img {
    min-height: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 621px) and (max-width: 840px) {
  .eye-hero .home-hero-copy {
    max-width: min(430px, 56vw);
  }

  .eye-hero h1 {
    max-width: 16ch;
  }

  .mobile-hero-break {
    display: block;
  }

  .eye-hero .hero-lead {
    max-width: 390px;
  }

  .hero-text-rotator {
    min-height: 5.85em;
  }

  .eye-hero .button {
    margin-top: 2.35rem;
  }

  .outcome-hero > div {
    max-width: min(430px, 56vw);
  }

  .outcome-hero h1 {
    max-width: 16ch;
  }

  .outcome-hero .hero-lead {
    max-width: 390px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-question {
    min-height: 38px;
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
  }

  .portrait-stat-frame {
    width: min(78vw, 260px);
    padding: 0.7rem;
  }

  .portrait-stat {
    position: static;
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.5rem 0.58rem;
    text-align: left;
  }

  .portrait-stat-frame {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .portrait-stat-frame img {
    grid-column: 1 / -1;
  }

  .portrait-stat strong {
    font-size: 0.9rem;
  }

  .portrait-stat span {
    font-size: 0.64rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.25rem, 14vw, 3.55rem);
  }

  .page-hero,
  .home-hero {
    min-height: clamp(360px, 62vh, 560px);
    padding-inline: max(0.85rem, calc((100vw - var(--max)) / 2));
  }

  .eye-hero {
    background-position: 50% center;
  }

  .eye-hero .home-hero-copy {
    max-width: 21rem;
  }

  .price-hero > div {
    max-width: 100%;
  }

  .price-hero .hero-lead {
    max-width: 19rem;
    margin-top: 1.35rem;
  }

  .outcome-hero {
    background-position: 58% center;
  }

  .outcome-hero > div {
    max-width: 21rem;
  }

  .outcome-hero h1 {
    max-width: 18ch;
  }

  .outcome-hero .hero-lead {
    max-width: 19rem;
    margin-top: 1.35rem;
  }

  .outcome-hero .hero-lead-secondary {
    margin-top: 0.45rem;
  }

  .clarity-hero {
    background-position: 55% center;
  }

  .clarity-hero > div {
    max-width: 21rem;
  }

  .clarity-hero h1 {
    max-width: 13ch;
  }

  .clarity-hero .hero-lead {
    max-width: 19rem;
    margin-top: 1.35rem;
  }

  .clarity-hero .hero-actions {
    margin-top: 1.6rem;
  }

  .clarity-theses,
  .clarity-emphasis-card,
  .clarity-analogy-card,
  .clarity-question-list,
  .clarity-work-note,
  .clarity-case,
  .clarity-question,
  .clarity-speaking,
  .clarity-final-cta {
    padding: 1.1rem;
  }

  .clarity-theses-grid p {
    padding: 0.9rem 0 0.9rem 2.4rem;
  }

  .clarity-intro p,
  .clarity-split p,
  .clarity-board p,
  .clarity-analogy p,
  .clarity-work p,
  .clarity-case p,
  .clarity-expect p,
  .clarity-question p,
  .clarity-speaking p,
  .clarity-final-cta p {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .clarity-key,
  .clarity-question > div p {
    font-size: 1.16rem !important;
    line-height: 1.42 !important;
  }

  .clarity-speaking .button,
  .clarity-final-cta .button {
    width: 100%;
  }

  .price-continuation-copy p {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .price-continuation-copy p:first-child {
    font-size: 1.28rem;
    line-height: 1.38;
  }

  .price-continuation-copy p + p {
    margin-top: 0.78rem;
  }

  .price-continuation-copy p:first-child + p {
    margin-top: 1.25rem;
  }

  .price-continuation-cta {
    width: 100%;
    margin-top: 1.45rem;
  }

  .price-underline-transition img {
    width: min(18rem, 72vw);
  }

  .price-fit h2,
  .price-fit-card p {
    font-size: 1.04rem;
    line-height: 1.48;
  }

  .price-fit-card {
    padding: 1.15rem;
  }

  .price-signal-timeline {
    padding-top: 3rem;
    padding-bottom: 3.4rem;
  }

  .price-signal-inner {
    gap: 1.8rem;
  }

  .price-signal-path {
    gap: 1rem;
    padding-left: 1.65rem;
  }

  .price-signal-path::before {
    left: 0.34rem;
  }

  .price-signal-path > p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .price-signal-path > p::before,
  .price-signal-conclusion::before {
    left: -1.65rem;
    width: 0.48rem;
    height: 0.48rem;
  }

  .price-signal-conclusion {
    padding: 1rem;
  }

  .price-signal-conclusion p {
    font-size: 1.12rem;
  }

  .price-threshold {
    padding-top: 3rem;
    padding-bottom: 3.4rem;
  }

  .price-threshold h2 {
    max-width: 14ch;
    margin-bottom: 1.15rem;
  }

  .price-threshold-image {
    margin-bottom: 1.25rem;
  }

  .price-threshold-image img {
    height: clamp(170px, 42vw, 240px);
    object-position: 55% center;
  }

  .price-threshold p {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .price-threshold-conclusion {
    margin-top: 1rem;
  }

  .price-threshold-conclusion p:nth-child(2) {
    font-size: 1.16rem;
  }

  .outcome-opening-lead p,
  .outcome-statement,
  .outcome-dependency p:first-child {
    font-size: 1.22rem;
    line-height: 1.4;
  }

  .outcome-opening-copy p,
  .outcome-editorial p,
  .outcome-dependency p,
  .outcome-shift-grid p,
  .outcome-situation p,
  .outcome-process p,
  .outcome-cta p {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .outcome-signal-list,
  .outcome-dependency,
  .outcome-shift-grid > div,
  .outcome-situation,
  .outcome-process-grid > div {
    padding: 1.1rem;
  }

  .outcome-shift-grid p:first-child {
    font-size: 1.1rem;
  }

  .outcome-divider {
    margin-top: 2rem;
  }

  .outcome-divider img {
    height: clamp(170px, 44vw, 240px);
  }

  .outcome-case {
    padding: 1.1rem;
  }

  .outcome-case > div + div {
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .outcome-case p {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .outcome-situation h3 {
    font-size: 1.16rem;
  }

  .outcome-cta {
    margin-top: 2.6rem;
    margin-bottom: 2rem;
    padding: 1.3rem;
  }

  .eye-hero h1 {
    max-width: 18ch;
    margin-top: 0;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.14;
  }

  .mobile-hero-break {
    display: block;
  }

  .page-hero h1 {
    font-size: 17.6px;
    font-weight: 500;
    line-height: 1.18;
  }

  .eye-hero .eyebrow {
    max-width: 30ch;
    margin-bottom: 1.15rem;
    color: rgba(166, 53, 47, 0.74);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.35;
    text-shadow: none;
  }

  .eye-hero .hero-lead {
    max-width: 20rem;
    margin-top: 1.35rem;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .home-hero .hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-top: 1.3rem;
    font-size: 0.8rem;
    text-shadow: none;
  }

  .home-hero .hero-proof li:not(:last-child)::after {
    display: none;
  }

  .hero-text-rotator {
    min-height: 6.1em;
  }

  .eye-hero .button {
    margin-top: 2rem;
    min-height: 36px;
    padding: 0.45rem 0.68rem;
    font-size: 0.78rem;
  }

  .home-hero.eye-hero p:not(.eyebrow):not(.hero-lead) {
    margin-top: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .card-grid,
  .card-grid-compact,
  .logo-grid,
  .number-grid,
  .person-card {
    grid-template-columns: 1fr;
  }

  .number-proof {
    min-height: 0;
  }

  .number-detail {
    opacity: 1;
    transform: none;
  }

  .number-long {
    max-width: 16ch;
  }

  .number-proof-couch::before,
  .number-proof-doro::before {
    opacity: 0.52;
  }

  .proof-note-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.2rem;
  }

  .proof-note {
    font-size: clamp(1.45rem, 7vw, 1.75rem);
  }

  .responsibility-note {
    padding: 1.35rem max(0.625rem, calc((100vw - var(--max)) / 2));
    background:
      linear-gradient(180deg, rgba(24, 24, 24, 0.96) 0%, rgba(24, 24, 24, 0.88) 100%),
      url("../images/elements/camera_flare-24-web.jpg") center / cover no-repeat;
  }

  .responsibility-note-sectors {
    gap: 0.85rem;
    margin-top: 1.6rem;
  }

  .responsibility-note-arrow {
    width: 40px;
    margin-top: 0.1rem;
  }

  .responsibility-note-tags {
    gap: 0.5rem;
  }

  .responsibility-note-tags li {
    padding: 0.42rem 0.75rem;
  }

  .responsibility-note h2,
  .responsibility-note p {
    font-size: clamp(1rem, 3.4vw, 1.18rem);
    line-height: 1.45;
  }

  .responsibility-note .responsibility-note-closing {
    margin-top: 1.75rem;
    font-size: clamp(1.35rem, 6vw, 1.6rem);
    line-height: 1.34;
  }

  .responsibility-note-underlined::after {
    width: 100%;
    height: clamp(1.2rem, 5vw, 1.7rem);
    margin-top: 0.25rem;
  }

  .proof-note-arrow {
    justify-self: end;
    width: min(42vw, 9rem);
  }

  .person-photo-placeholder {
    min-height: 120px;
  }

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

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

  .cta-panel-with-image {
    grid-template-columns: 1fr;
  }

  .cta-panel-image {
    max-width: 18rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

.outcome-shell .section {
  margin-top: clamp(5rem, 10vw, 9rem);
}

.outcome-shell .section:not(.outcome-hero) {
  font-family: var(--font-ui);
}

.outcome-shell .section h2,
.outcome-shell .section h3 {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

.outcome-shell .section h2 {
  max-width: 15ch;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.outcome-shell .section h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1.08;
}

.outcome-shell .section p {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: clamp(1.06rem, 1.25vw, 1.16rem);
  line-height: 1.78;
}

.outcome-opening {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 9vw, 7rem);
  align-items: center;
}

.outcome-opening-lead {
  padding: 0;
  border-left: 0;
}

.outcome-opening-lead p {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-body) !important;
  font-size: clamp(1.9rem, 3.4vw, 3.5rem) !important;
  font-weight: 400;
  line-height: 1.08 !important;
}

.outcome-opening-copy {
  max-width: 520px;
  margin-left: auto;
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.outcome-editorial {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(3rem, 8vw, 6rem);
  align-items: end;
}

.outcome-statement {
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.outcome-signal-list,
.outcome-dependency,
.outcome-shift-grid > div,
.outcome-situation,
.outcome-process-grid > div,
.outcome-case {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.outcome-signal-list {
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
  border-top: 1px solid rgba(166, 53, 47, 0.42);
  background: transparent;
}

.outcome-signal-list p {
  color: rgba(255, 255, 255, 0.88);
  font-family: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.outcome-dependency {
  max-width: none;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 7vw, 6rem);
  border-top: 1px solid rgba(166, 53, 47, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(166, 53, 47, 0.06), transparent 46%);
}

.outcome-dependency p:first-child {
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-body) !important;
  font-size: clamp(2.3rem, 5vw, 5rem) !important;
  font-weight: 400;
  line-height: 1 !important;
}

.outcome-dependency p:not(:first-child) {
  max-width: 650px;
  margin-left: auto;
}

.outcome-shift-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3.4rem);
}

.outcome-shift-grid > div {
  padding: clamp(1.4rem, 3vw, 2rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.outcome-shift-grid > div::before {
  width: 2.2rem;
  height: 1px;
  margin-bottom: 1.3rem;
  background: rgba(166, 53, 47, 0.72);
}

.outcome-shift-grid p:first-child {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-body) !important;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem) !important;
  font-weight: 400;
  line-height: 1.12 !important;
}

.outcome-situations h2 {
  max-width: 18ch;
}

.outcome-situation-grid {
  gap: clamp(2rem, 4vw, 3.5rem);
}

.outcome-situation {
  padding: clamp(1.75rem, 4vw, 2.8rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.outcome-situation::before {
  height: 1px;
  background: rgba(166, 53, 47, 0.48);
}

.outcome-situation h3::before,
.outcome-process-grid > div::before {
  color: rgba(166, 53, 47, 0.76);
  font-family: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.outcome-case {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 6rem);
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid rgba(166, 53, 47, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.outcome-case > div + div {
  padding-left: 0;
  border-left: 0;
}

.outcome-divider {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: clamp(5rem, 10vw, 8rem);
  margin-bottom: 0;
  border: 0;
}

.outcome-divider img {
  height: clamp(220px, 26vw, 360px);
  opacity: 0.58;
  filter: saturate(0.68) contrast(0.92) brightness(0.72);
}

.outcome-process-grid {
  gap: clamp(2rem, 4vw, 3.2rem);
}

.outcome-process-grid > div {
  padding: clamp(1.5rem, 3vw, 2rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.outcome-cta {
  margin-top: clamp(6rem, 12vw, 10rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border: 0;
  border-top: 1px solid rgba(166, 53, 47, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.outcome-cta p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body) !important;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  font-weight: 400;
  line-height: 1.18 !important;
}

.outcome-cta .button {
  min-height: 44px;
  border-color: rgba(166, 53, 47, 0.82);
}

.outcome-cta .button-secondary {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .outcome-shell .section {
      opacity: 0;
      transform: translateY(8px);
      animation: outcomeEditorialReveal linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 28%;
    }

    .outcome-opening-lead p,
    .outcome-signal-list p,
    .outcome-shift-grid > div,
    .outcome-situation,
    .outcome-process-grid > div {
      opacity: 0;
      transform: translateY(6px);
      animation: outcomeEditorialReveal linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 24%;
    }
  }
}

@keyframes outcomeEditorialReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 840px) {
  .outcome-shell .section {
    margin-top: clamp(4rem, 10vw, 6rem);
  }

  .outcome-opening,
  .outcome-editorial,
  .outcome-shift-grid,
  .outcome-situation-grid,
  .outcome-case,
  .outcome-process-grid {
    grid-template-columns: 1fr;
  }

  .outcome-opening-copy,
  .outcome-dependency p:not(:first-child) {
    max-width: var(--measure);
    margin-left: 0;
  }

  .outcome-shift-grid,
  .outcome-situation-grid,
  .outcome-process-grid {
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  .outcome-shell .section h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .outcome-opening-lead p,
  .outcome-statement,
  .outcome-dependency p:first-child {
    font-size: clamp(1.7rem, 9vw, 2.45rem) !important;
  }

  .outcome-shell .section p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .outcome-cta p {
    font-size: clamp(1.45rem, 8vw, 2.1rem) !important;
  }
}

:root {
  --measure: 680px;
}

.section-narrow,
.home-opening-copy,
.price-continuation-copy,
.price-threshold-conclusion,
.clarity-intro-copy,
.clarity-emphasis-card,
.clarity-analogy-card,
.clarity-work-note,
.clarity-case,
.clarity-expect > div,
.clarity-question,
.clarity-final-cta,
.outcome-opening-copy,
.outcome-dependency,
.outcome-case,
.outcome-cta {
  max-width: 680px;
}

.outcome-cta {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
}

.section-narrow p,
.home-opening-copy p,
.responsibility-note p:not(.responsibility-note-closing),
.price-continuation-copy p,
.price-threshold-columns p,
.price-threshold-conclusion p,
.clarity-intro p,
.clarity-split p,
.clarity-analogy p,
.clarity-work p,
.clarity-case p,
.clarity-expect p,
.clarity-question p,
.clarity-speaking p,
.clarity-final-cta p,
.outcome-opening-copy p,
.outcome-editorial p:not(.outcome-statement),
.outcome-dependency p:not(:first-child),
.outcome-situation p,
.outcome-case p:not(.outcome-statement),
.outcome-process p,
.outcome-cta p {
  max-width: 680px;
  color: #f2eee8;
  font-size: clamp(1.18rem, 1.55vw, 1.375rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.008em;
}

.section-narrow p + p,
.home-opening-copy p + p,
.price-continuation-copy p + p,
.price-threshold-conclusion p + p,
.clarity-intro p + p,
.clarity-split p + p,
.clarity-analogy p + p,
.clarity-work p + p,
.clarity-case p + p,
.clarity-expect p + p,
.clarity-question p + p,
.clarity-final-cta p + p,
.outcome-opening-copy p + p,
.outcome-editorial p + p,
.outcome-dependency p + p,
.outcome-case p + p,
.outcome-process p + p,
.outcome-cta p + p {
  margin-top: clamp(2.5rem, 4vw, 3rem);
}

.clarity-key,
.outcome-shift-grid p:first-child,
.responsibility-note h2,
.responsibility-note p,
.price-continuation-copy p:first-child {
  font-weight: 400;
}

@media (max-width: 620px) {
  .section-narrow p,
  .home-opening-copy p,
  .responsibility-note p:not(.responsibility-note-closing),
  .price-continuation-copy p,
  .price-threshold-columns p,
  .price-threshold-conclusion p,
  .clarity-intro p,
  .clarity-split p,
  .clarity-analogy p,
  .clarity-work p,
  .clarity-case p,
  .clarity-expect p,
  .clarity-question p,
  .clarity-speaking p,
  .clarity-final-cta p,
  .outcome-opening-copy p,
  .outcome-editorial p:not(.outcome-statement),
  .outcome-dependency p:not(:first-child),
  .outcome-situation p,
  .outcome-case p:not(.outcome-statement),
  .outcome-process p,
  .outcome-cta p {
    max-width: 100%;
    font-size: clamp(1.18rem, 5vw, 1.25rem);
    line-height: 1.6;
  }
}

.why-page main {
  --why-heading-font: "Fraunces", Georgia, "Times New Roman", serif;
  --why-body-font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --why-mono-font: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  --why-text: #f2eee8;
  --why-muted: rgba(242, 238, 232, 0.72);
}

.why-page .page-shell > .section,
.why-page .page-shell > .cta-panel {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.why-page .page-shell > .section:not(.page-hero) {
  margin-top: clamp(6rem, 11vw, 10rem);
}

.why-page .page-shell > .section-narrow {
  max-width: 680px;
}

.why-page .page-shell > .section-narrow:nth-of-type(even) {
  margin-left: max(1rem, calc((100vw - min(var(--max), calc(100vw - 2rem))) / 2));
}

.why-page .page-shell > .section-narrow:nth-of-type(odd) {
  margin-right: max(1rem, calc((100vw - min(var(--max), calc(100vw - 2rem))) / 2));
}

.why-page .page-shell > .section h2 {
  max-width: 13ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--why-text);
  font-family: var(--why-heading-font);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.why-page .page-shell > .section h2::before {
  display: block;
  width: 2.75rem;
  height: 1px;
  margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem);
  content: "";
  background: rgba(166, 53, 47, 0.58);
}

.why-page .page-shell > .section p,
.why-page .page-shell > .cta-panel p {
  max-width: 680px;
  color: var(--why-text);
  font-family: var(--why-body-font);
  font-size: clamp(1.2rem, 1.55vw, 1.375rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.why-page .page-shell > .section p + p {
  margin-top: clamp(2.5rem, 4vw, 3rem);
}

.why-page .page-shell > .split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
  padding-top: clamp(2.4rem, 5vw, 4rem);
  border-top: 1px solid rgba(242, 238, 232, 0.12);
}

.why-page .page-shell > .split > div {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.why-page .page-shell > .split > div:nth-child(2) {
  margin-top: clamp(3rem, 8vw, 6rem);
}

.why-page .page-shell > .split h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.why-page .page-shell > .split p {
  color: var(--why-muted);
}

.why-page .page-shell > .cta-panel {
  max-width: none;
  margin-top: clamp(7rem, 12vw, 11rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(3rem, 7vw, 5.5rem) 0 0;
  border: 0;
  border-top: 1px solid rgba(166, 53, 47, 0.34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.why-page .page-shell > .cta-panel p {
  color: var(--why-text);
  font-family: var(--why-heading-font);
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.why-page .page-shell > .cta-panel .button {
  margin-top: clamp(2rem, 4vw, 3rem);
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .why-page .page-shell > .section:not(.page-hero),
    .why-page .page-shell > .cta-panel {
      opacity: 0;
      transform: translateY(8px);
      animation: whyEditorialReveal linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 28%;
    }

    .why-page .page-shell > .section p {
      opacity: 0;
      transform: translateY(5px);
      animation: whyEditorialReveal linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 22%;
    }
  }
}

@keyframes whyEditorialReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .why-page .page-shell > .section:not(.page-hero) {
    margin-top: clamp(4.5rem, 16vw, 6.5rem);
  }

  .why-page .page-shell > .section-narrow:nth-of-type(even),
  .why-page .page-shell > .section-narrow:nth-of-type(odd) {
    margin-right: auto;
    margin-left: auto;
  }

  .why-page .page-shell > .split {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 12vw, 4.5rem);
  }

  .why-page .page-shell > .split > div:nth-child(2) {
    margin-top: 0;
  }

  .why-page .page-shell > .section h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .why-page .page-shell > .section p,
  .why-page .page-shell > .cta-panel p {
    max-width: 100%;
    font-size: clamp(1.18rem, 5vw, 1.25rem);
    line-height: 1.6;
  }
}

:root {
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-readable: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-detail: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  --editorial-text: #f2eee8;
  --editorial-muted: rgba(242, 238, 232, 0.74);
}

.site-nav a {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

.nav-group-label,
.header-question,
.footer-links,
label,
.number-detail,
.number,
.number-label,
.person-role,
.form-status {
  font-family: var(--font-detail);
}

.site-nav {
  color: var(--editorial-text);
}

.nav-overlay-panel {
  background: transparent;
}

.nav-group-label {
  color: var(--hero-eyebrow);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.site-nav a {
  max-width: 20ch;
  color: var(--editorial-text);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  line-height: 1.08;
}

.site-nav a[aria-current="page"] {
  color: #fffaf4;
}

.header-question {
  color: var(--editorial-text);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.page-shell > .section:not(.page-hero),
.home-shell > .section:not(.home-hero),
.page-shell > .contact-layout,
.page-shell > .cta-panel,
.home-shell > .cta-panel,
.longform .section {
  color: var(--editorial-text);
}

.page-shell > .section:not(.page-hero),
.home-shell > .section:not(.home-hero),
.page-shell > .contact-layout,
.page-shell > .cta-panel,
.home-shell > .cta-panel {
  margin-top: clamp(5rem, 10vw, 8.5rem);
}

.page-shell > .section:not(.page-hero) h2,
.home-shell > .section:not(.home-hero) h2,
.page-shell > .section:not(.page-hero) h3,
.home-shell > .section:not(.home-hero) h3,
.longform .section h2,
.longform .section h3,
.contact-panel h2,
.contact-aside h2,
.contact-details dt,
.person-card h2,
.person-card h3,
.cta-panel h2,
.cta-panel h3 {
  color: var(--editorial-text);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

.page-shell > .section:not(.page-hero) p,
.home-shell > .section:not(.home-hero) p,
.longform .section p,
.contact-panel p,
.contact-aside p,
.contact-details dd,
.contact-form input,
.contact-form select,
.contact-form textarea,
.person-card p,
.editorial-card p,
.preview-card p,
.cta-panel p,
.proof-note,
.number-detail {
  max-width: 680px;
  color: var(--editorial-text);
  font-family: var(--font-readable);
  font-size: clamp(1.18rem, 1.55vw, 1.375rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1rem;
}

.page-shell > .section:not(.page-hero) p + p,
.home-shell > .section:not(.home-hero) p + p,
.longform .section p + p,
.contact-panel p + p,
.contact-aside p + p,
.person-card p + p,
.editorial-card p + p,
.preview-card p + p,
.cta-panel p + p {
  margin-top: clamp(2.5rem, 4vw, 3rem);
}

.card-grid,
.person-grid,
.contact-layout {
  gap: clamp(2rem, 5vw, 4rem);
}

.card-grid {
  align-items: start;
}

.editorial-card,
.preview-card,
.number-proof,
.contact-panel,
.contact-aside,
.person-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.editorial-card,
.preview-card,
.person-card {
  padding: clamp(1.4rem, 3vw, 2rem) 0 0;
  border: 0;
  border-top: 1px solid rgba(242, 238, 232, 0.13);
  border-radius: 0;
}

.number-proof {
  border-color: rgba(242, 238, 232, 0.12);
  border-radius: 0;
}

.number,
.number-label,
.number-detail {
  font-weight: 400;
  letter-spacing: 0.01em;
}

.number-label,
.person-role {
  color: var(--editorial-muted);
}

.page-shell > .section:not(.page-hero) .button,
.home-shell > .section:not(.home-hero) .button,

.page-shell > .cta-panel .button,
.home-shell > .cta-panel .button {
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.footer-title,
.footer-copy,
.footer-links a {
  color: var(--editorial-text);
}

.site-footer {
  font-family: var(--font-readable);
  background: #181818;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.footer-copy {
  max-width: 520px;
  color: var(--editorial-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.footer-links a {
  color: rgba(242, 238, 232, 0.72);
  font-family: var(--font-detail);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: #fffaf4;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .page-shell > .section:not(.page-hero),
    .home-shell > .section:not(.home-hero),
    .page-shell > .contact-layout,
    .page-shell > .cta-panel,
    .home-shell > .cta-panel {
      opacity: 0;
      transform: translateY(8px);
      animation: siteEditorialReveal linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 26%;
    }
  }
}

@keyframes siteEditorialReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.clarity-color-experiment {
  --clarity-warm-bg: #2c2925;
  --clarity-graphite: #242522;
  --clarity-taupe: #3a312b;
  --clarity-brown: #4a352d;
  --clarity-deep-stone: #35332e;
  --clarity-stone: #d8cfbf;
  --clarity-ivory: #efe7d7;
  --clarity-sand: #d9cdbb;
  --clarity-sage: #a9b0a0;
  --clarity-sage-soft: #d8dbcf;
  --clarity-ink: #25231f;
  --clarity-light-text: #f2eee8;
  --clarity-muted-light: rgba(242, 238, 232, 0.74);
  --clarity-red: #a6352f;
  --clarity-red-soft: rgba(166, 53, 47, 0.66);
  background:
    linear-gradient(180deg, #24231f 0%, var(--clarity-warm-bg) 24%, #433b34 48%, #d9cdbb 48%, #efe7d7 74%, #342e29 74%, #2b2823 100%);
}

.clarity-color-experiment .site-header {
  background: rgba(42, 39, 34, 0.92);
  border-bottom-color: rgba(238, 231, 216, 0.16);
}

.clarity-color-experiment .header-question,
.clarity-color-experiment .nav-toggle,
.clarity-color-experiment .nav-close {
  border-color: rgba(238, 231, 216, 0.22);
  background: rgba(238, 231, 216, 0.04);
  color: var(--clarity-light-text);
}

.clarity-color-experiment .nav-toggle span,
.clarity-color-experiment .nav-close span {
  background: var(--clarity-light-text);
}

.clarity-color-experiment .site-nav {
  background: var(--hero-bg);
}

.clarity-color-experiment .nav-overlay-panel {
  background: transparent;
}

.clarity-color-experiment .nav-group + .nav-group {
  border-left-color: rgba(238, 231, 216, 0.13);
}

.clarity-color-experiment .nav-group-label,
.clarity-color-experiment .site-nav a,
.clarity-color-experiment .footer-links a {
  color: var(--clarity-light-text);
}

.clarity-color-experiment .site-nav a:hover,
.clarity-color-experiment .site-nav a:focus-visible,
.clarity-color-experiment .site-nav a[aria-current="page"] {
  border-bottom-color: var(--clarity-red);
}

.clarity-color-experiment .clarity-shell {
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-hero {
  min-height: var(--hero-min-h-feature);
  background:
    linear-gradient(90deg, rgba(34, 31, 27, 0.96), rgba(34, 31, 27, 0.72) 48%, rgba(34, 31, 27, 0.88)),
    url("../images/price-threshold-corridor.jpg") 55% center / cover no-repeat,
    #24231f;
}

.clarity-color-experiment .clarity-hero > div {
  max-width: min(740px, 58vw);
}

.clarity-color-experiment .clarity-hero .eyebrow,
.clarity-color-experiment .clarity-hero h1,
.clarity-color-experiment .clarity-hero .hero-lead {
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-hero .eyebrow {
  color: rgba(242, 238, 232, 0.68);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.clarity-color-experiment .clarity-hero h1 {
  max-width: 12ch;
  font-size: var(--fs-hero);
  line-height: 1.02;
}

.clarity-color-experiment .clarity-hero h1::before {
  width: 3.2rem;
  height: 1px;
  background: rgba(166, 53, 47, 0.78);
}

.clarity-color-experiment .clarity-hero .button {
  background: rgba(166, 53, 47, 0.84);
  border-color: rgba(166, 53, 47, 0.9);
  box-shadow: none;
}

.clarity-color-experiment .clarity-hero .button-secondary {
  background: rgba(238, 231, 216, 0.06);
  border-color: rgba(238, 231, 216, 0.34);
}

.clarity-color-experiment .clarity-shell > .section:not(.clarity-hero),
.clarity-color-experiment .clarity-final-cta {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  padding:
    clamp(4.5rem, 9vw, 8rem)
    max(1rem, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.clarity-color-experiment .clarity-shell > .section h2 {
  color: inherit;
}

.clarity-color-experiment .clarity-shell > .section p,
.clarity-color-experiment .clarity-shell > .section a,
.clarity-color-experiment .clarity-final-cta p {
  color: inherit;
}

.clarity-color-experiment .clarity-theses {
  background:
    linear-gradient(135deg, rgba(143, 51, 44, 0.08), transparent 42%),
    var(--clarity-graphite);
  border-color: rgba(216, 207, 191, 0.16);
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-theses-grid p {
  border-top-color: rgba(238, 231, 216, 0.13);
  color: var(--clarity-muted-light);
}

.clarity-color-experiment .clarity-theses-grid p::before,
.clarity-color-experiment .clarity-question-list p::before,
.clarity-color-experiment .clarity-board-rows p::before {
  background: var(--clarity-red);
}

.clarity-color-experiment .clarity-theses-grid p::before {
  color: var(--clarity-sand);
  background: transparent;
}

.clarity-color-experiment .clarity-intro,
.clarity-color-experiment .clarity-training,
.clarity-color-experiment .clarity-analogy,
.clarity-color-experiment .clarity-expect {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%),
    var(--clarity-ivory);
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-intro h2,
.clarity-color-experiment .clarity-training h2,
.clarity-color-experiment .clarity-analogy h2,
.clarity-color-experiment .clarity-expect h2,
.clarity-color-experiment .clarity-work h2,
.clarity-color-experiment .clarity-speaking h2,
.clarity-color-experiment .clarity-question h2,
.clarity-color-experiment .clarity-final-cta h2 {
  color: var(--clarity-ink) !important;
}

.clarity-color-experiment .clarity-intro *,
.clarity-color-experiment .clarity-training *,
.clarity-color-experiment .clarity-analogy *,
.clarity-color-experiment .clarity-expect *,
.clarity-color-experiment .clarity-work *,
.clarity-color-experiment .clarity-speaking *,
.clarity-color-experiment .clarity-question *,
.clarity-color-experiment .clarity-final-cta * {
  color: inherit;
}

.clarity-color-experiment .clarity-intro p,
.clarity-color-experiment .clarity-training p,
.clarity-color-experiment .clarity-analogy p,
.clarity-color-experiment .clarity-expect p {
  color: rgba(37, 35, 31, 0.86) !important;
}

.clarity-color-experiment .clarity-vertical-list {
  border-left-color: var(--clarity-red);
}

.clarity-color-experiment .clarity-vertical-list p {
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-pressure,
.clarity-color-experiment .clarity-board,
.clarity-color-experiment .clarity-case {
  background: var(--clarity-taupe);
  border-color: rgba(216, 207, 191, 0.14);
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-pressure {
  background:
    linear-gradient(90deg, rgba(58, 49, 43, 0.96), rgba(58, 49, 43, 0.78) 46%, rgba(58, 49, 43, 0.56)),
    url("../images/elements/camera_flare-24-web.jpg") right center / cover no-repeat,
    var(--clarity-taupe);
}

.clarity-color-experiment .clarity-board {
  background: var(--clarity-deep-stone);
}

.clarity-color-experiment .clarity-case {
  background:
    linear-gradient(135deg, rgba(74, 53, 45, 0.94), rgba(44, 41, 37, 0.96)),
    var(--clarity-brown);
}

.clarity-color-experiment .clarity-emphasis-card,
.clarity-color-experiment .clarity-analogy-card,
.clarity-color-experiment .clarity-question-list,
.clarity-color-experiment .clarity-work-note,
.clarity-color-experiment .clarity-case,
.clarity-color-experiment .clarity-question,
.clarity-color-experiment .clarity-speaking {
  border-color: rgba(143, 51, 44, 0.2);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.clarity-color-experiment .clarity-analogy-card,
.clarity-color-experiment .clarity-work-note,
.clarity-color-experiment .clarity-question-list {
  border-top: 1px solid rgba(166, 53, 47, 0.3);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
}

.clarity-color-experiment .clarity-emphasis-card {
  border-left-color: var(--clarity-red);
}

.clarity-color-experiment .clarity-key {
  color: inherit !important;
}

.clarity-color-experiment .clarity-board-rows,
.clarity-color-experiment .clarity-board-rows p {
  border-color: rgba(238, 231, 216, 0.14);
}

.clarity-color-experiment .clarity-board-final {
  border-color: rgba(143, 51, 44, 0.24);
  background: rgba(143, 51, 44, 0.13);
}

.clarity-color-experiment .clarity-work,
.clarity-color-experiment .clarity-speaking {
  background:
    linear-gradient(90deg, rgba(216, 219, 207, 0.96), rgba(216, 219, 207, 0.9) 58%, rgba(239, 231, 215, 0.92)),
    var(--clarity-sage-soft);
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-work p,
.clarity-color-experiment .clarity-speaking p {
  color: rgba(37, 35, 31, 0.86) !important;
}

.clarity-color-experiment .clarity-question {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(216, 219, 207, 0.96) 0%, rgba(239, 231, 215, 0.9) 62%, rgba(217, 205, 187, 0.82) 100%);
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-question p {
  color: rgba(37, 35, 31, 0.86) !important;
}

.clarity-color-experiment .clarity-question > div {
  border-left-color: var(--clarity-red);
}

.clarity-color-experiment .clarity-question > div p {
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-speaking .button,
.clarity-color-experiment .clarity-final-cta .button {
  border-color: var(--clarity-red);
  background: transparent;
  color: inherit;
}

.clarity-color-experiment .clarity-speaking {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}

.clarity-color-experiment .clarity-speaking > div {
  display: contents;
}

.clarity-color-experiment .clarity-speaking h2 {
  grid-column: 1;
  max-width: 11ch;
  margin: 0;
}

.clarity-color-experiment .clarity-speaking-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.clarity-color-experiment .clarity-speaking-list p {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(166, 53, 47, 0.28);
  color: rgba(37, 35, 31, 0.88) !important;
}

.clarity-color-experiment .clarity-speaking .button {
  grid-column: 2;
  justify-self: start;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.clarity-color-experiment .clarity-speaking .button:hover,
.clarity-color-experiment .clarity-speaking .button:focus-visible,
.clarity-color-experiment .clarity-final-cta .button:hover,
.clarity-color-experiment .clarity-final-cta .button:focus-visible {
  background: rgba(143, 51, 44, 0.12);
  border-color: rgba(143, 51, 44, 0.92);
}

.clarity-color-experiment .clarity-analogy-card a {
  color: var(--clarity-red);
}

.clarity-color-experiment .clarity-final-cta {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(143, 51, 44, 0.09), transparent 45%),
    var(--clarity-ivory);
  border-color: rgba(143, 51, 44, 0.18);
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-final-cta p {
  color: var(--clarity-ink) !important;
}

.clarity-color-experiment .clarity-hero + .clarity-theses {
  margin-top: clamp(4rem, 8vw, 6.5rem);
}

.clarity-color-experiment .clarity-intro,
.clarity-color-experiment .clarity-analogy,
.clarity-color-experiment .clarity-expect {
  width: 100%;
}

.clarity-color-experiment .clarity-training {
  width: 100%;
  max-width: none;
}

.clarity-color-experiment .clarity-board::after {
  display: block;
  width: min(100%, 680px);
  height: clamp(180px, 26vw, 320px);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(53, 51, 46, 0.08), rgba(53, 51, 46, 0.36)),
    url("../images/price-threshold-corridor.jpg") center / cover no-repeat;
  opacity: 0.72;
  filter: saturate(0.62) brightness(0.9);
}

.clarity-color-experiment .clarity-analogy::before {
  display: block;
  grid-column: 1 / -1;
  width: min(100%, 760px);
  height: clamp(180px, 28vw, 340px);
  margin: 0 0 clamp(3rem, 6vw, 4.8rem) auto;
  content: "";
  background:
    linear-gradient(180deg, rgba(239, 231, 215, 0.08), rgba(239, 231, 215, 0.34)),
    url("../images/clear_eye_2.jpg") center / cover no-repeat;
  opacity: 0.58;
  filter: saturate(0.42) sepia(0.18) brightness(1.03);
}

.clarity-color-experiment .site-footer {
  background: #2b2823;
  border-top-color: rgba(238, 231, 216, 0.12);
}

.clarity-color-experiment .footer-title,
.clarity-color-experiment .footer-copy,
.clarity-color-experiment .footer-links a {
  color: var(--clarity-light-text);
}

@media (max-width: 760px) {
  .clarity-color-experiment .clarity-shell > .section:not(.clarity-hero),
  .clarity-color-experiment .clarity-final-cta {
    padding: clamp(2rem, 8vw, 3rem) 1rem;
  }

  .clarity-color-experiment .clarity-hero > div {
    max-width: 100%;
  }

  .clarity-color-experiment .clarity-speaking {
    grid-template-columns: 1fr;
  }

  .clarity-color-experiment .clarity-speaking h2,
  .clarity-color-experiment .clarity-speaking-list,
  .clarity-color-experiment .clarity-speaking .button {
    grid-column: 1;
  }

  .clarity-color-experiment .clarity-speaking-list {
    grid-template-columns: 1fr;
  }
}

.clarity-color-experiment {
  --clarity-black-stone: #121312;
  --clarity-graphite: #202221;
  --clarity-basalt: #282a29;
  --clarity-slate: #303433;
  --clarity-charcoal: #252626;
  --clarity-black-brown-stone: #1d1b19;
  --clarity-limestone: #cfc4ad;
  --clarity-plaster: #c6b99f;
  --clarity-travertine: #bdae93;
  --clarity-archival: #d2c8b2;
  --clarity-ink: #20201d;
  --clarity-light-text: #f2eee8;
  --clarity-muted-light: rgba(242, 238, 232, 0.72);
  --clarity-red: #71352f;
  --clarity-red-soft: rgba(166, 53, 47, 0.54);
  background:
    radial-gradient(circle at 16% 2%, rgba(189, 174, 147, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--clarity-black-stone) 0%, var(--clarity-graphite) 28%, var(--clarity-basalt) 58%, var(--clarity-black-brown-stone) 100%);
}

.clarity-color-experiment::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(93deg, rgba(242, 238, 232, 0.018) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 80% 14%, rgba(207, 196, 173, 0.06), transparent 24rem);
  opacity: 0.65;
}

.clarity-color-experiment .site-header {
  background: rgba(18, 19, 18, 0.92);
  border-bottom-color: rgba(207, 196, 173, 0.14);
}

.clarity-color-experiment .site-nav {
  background: var(--hero-bg);
}

.clarity-color-experiment .nav-overlay-panel {
  background: transparent;
}

.clarity-color-experiment .header-question,
.clarity-color-experiment .nav-toggle,
.clarity-color-experiment .nav-close {
  background: rgba(207, 196, 173, 0.035);
  border-color: rgba(207, 196, 173, 0.2);
}

.clarity-color-experiment .clarity-hero {
  min-height: var(--hero-min-h-feature);
  background:
    linear-gradient(90deg, rgba(18, 19, 18, 0.98) 0%, rgba(18, 19, 18, 0.84) 44%, rgba(18, 19, 18, 0.92) 100%),
    linear-gradient(180deg, rgba(18, 19, 18, 0.18), rgba(18, 19, 18, 0.78)),
    url("../images/clearvisionhero.jpg") 58% center / cover no-repeat,
    var(--clarity-black-stone);
}

.clarity-color-experiment .clarity-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, var(--clarity-black-stone));
}

.clarity-color-experiment .clarity-hero > div {
  position: relative;
  z-index: 1;
  max-width: min(720px, 54vw);
}

.clarity-color-experiment .clarity-hero .eyebrow {
  color: rgba(207, 196, 173, 0.68);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
}

.clarity-color-experiment .clarity-hero h1 {
  max-width: 11.5ch;
  color: var(--clarity-light-text);
  text-wrap: balance;
}

.clarity-color-experiment .clarity-hero h1::before {
  background: rgba(166, 53, 47, 0.58);
}

.clarity-color-experiment .clarity-hero .hero-lead {
  max-width: 600px;
  color: rgba(242, 238, 232, 0.78);
}

.clarity-color-experiment .clarity-hero .button {
  background: rgba(166, 53, 47, 0.78);
  border-color: rgba(166, 53, 47, 0.86);
}

.clarity-color-experiment .clarity-hero .button-secondary {
  background: rgba(207, 196, 173, 0.04);
  border-color: rgba(207, 196, 173, 0.28);
}

.clarity-color-experiment .clarity-shell > .section:not(.clarity-hero),
.clarity-color-experiment .clarity-final-cta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(6rem, 12vw, 11rem);
  padding-bottom: clamp(6rem, 12vw, 11rem);
}

.clarity-color-experiment .clarity-shell > .section:not(.clarity-hero)::before,
.clarity-color-experiment .clarity-final-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(18, 19, 18, 0.018) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 15% 20%, rgba(242, 238, 232, 0.045), transparent 24rem);
  mix-blend-mode: multiply;
}

.clarity-color-experiment .clarity-theses,
.clarity-color-experiment .clarity-pressure,
.clarity-color-experiment .clarity-board,
.clarity-color-experiment .clarity-case {
  background:
    linear-gradient(135deg, rgba(207, 196, 173, 0.035), transparent 38%),
    var(--clarity-graphite);
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-theses {
  background:
    linear-gradient(180deg, var(--clarity-black-stone), var(--clarity-graphite));
}

.clarity-color-experiment .clarity-pressure {
  background:
    linear-gradient(90deg, rgba(32, 34, 33, 0.98), rgba(32, 34, 33, 0.82) 54%, rgba(32, 34, 33, 0.9)),
    url("../images/Clearvision.jpg") 62% center / cover no-repeat,
    var(--clarity-graphite);
}

.clarity-color-experiment .clarity-board {
  background:
    linear-gradient(180deg, var(--clarity-basalt), var(--clarity-slate));
}

.clarity-color-experiment .clarity-case {
  background:
    linear-gradient(135deg, rgba(29, 27, 25, 0.94), rgba(40, 42, 41, 0.96)),
    var(--clarity-black-brown-stone);
}

.clarity-color-experiment .clarity-intro,
.clarity-color-experiment .clarity-training,
.clarity-color-experiment .clarity-analogy,
.clarity-color-experiment .clarity-expect,
.clarity-color-experiment .clarity-work,
.clarity-color-experiment .clarity-speaking,
.clarity-color-experiment .clarity-question,
.clarity-color-experiment .clarity-final-cta {
  background:
    linear-gradient(135deg, rgba(32, 32, 29, 0.045), transparent 48%),
    var(--clarity-limestone);
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-training {
  background:
    linear-gradient(180deg, var(--clarity-plaster), var(--clarity-limestone));
}

.clarity-color-experiment .clarity-analogy {
  background:
    linear-gradient(180deg, var(--clarity-travertine), var(--clarity-limestone));
}

.clarity-color-experiment .clarity-work,
.clarity-color-experiment .clarity-speaking {
  background:
    linear-gradient(135deg, var(--clarity-archival), var(--clarity-plaster));
}

.clarity-color-experiment .clarity-question,
.clarity-color-experiment .clarity-final-cta {
  background:
    linear-gradient(135deg, var(--clarity-limestone), var(--clarity-travertine));
}

.clarity-color-experiment .clarity-intro h2,
.clarity-color-experiment .clarity-training h2,
.clarity-color-experiment .clarity-analogy h2,
.clarity-color-experiment .clarity-expect h2,
.clarity-color-experiment .clarity-work h2,
.clarity-color-experiment .clarity-speaking h2,
.clarity-color-experiment .clarity-question h2,
.clarity-color-experiment .clarity-final-cta h2,
.clarity-color-experiment .clarity-intro p,
.clarity-color-experiment .clarity-training p,
.clarity-color-experiment .clarity-analogy p,
.clarity-color-experiment .clarity-expect p,
.clarity-color-experiment .clarity-work p,
.clarity-color-experiment .clarity-speaking p,
.clarity-color-experiment .clarity-question p,
.clarity-color-experiment .clarity-final-cta p {
  color: rgba(32, 32, 29, 0.9) !important;
}

.clarity-color-experiment .clarity-emphasis-card,
.clarity-color-experiment .clarity-analogy-card,
.clarity-color-experiment .clarity-question-list,
.clarity-color-experiment .clarity-work-note,
.clarity-color-experiment .clarity-board-final {
  background: transparent;
  border-color: rgba(166, 53, 47, 0.26);
}

.clarity-color-experiment .clarity-key {
  font-weight: 400;
}

.clarity-color-experiment .clarity-theses-grid p,
.clarity-color-experiment .clarity-board-rows p {
  color: rgba(242, 238, 232, 0.76) !important;
}

.clarity-color-experiment .clarity-theses-grid p::before {
  color: rgba(207, 196, 173, 0.72);
}

.clarity-color-experiment .clarity-board-final {
  background: rgba(166, 53, 47, 0.08);
}

.clarity-color-experiment .clarity-board::after,
.clarity-color-experiment .clarity-analogy::before {
  height: clamp(220px, 32vw, 420px);
  border: 1px solid rgba(207, 196, 173, 0.16);
  opacity: 0.64;
  filter: saturate(0.28) brightness(0.78) contrast(1.04);
}

.clarity-color-experiment .clarity-board::after {
  width: min(100%, 860px);
  background:
    linear-gradient(180deg, rgba(32, 34, 33, 0.18), rgba(32, 34, 33, 0.62)),
    url("../images/Clearvision.jpg") center / cover no-repeat;
}

.clarity-color-experiment .clarity-analogy::before {
  width: min(100%, 920px);
  background:
    linear-gradient(180deg, rgba(32, 32, 29, 0.18), rgba(32, 32, 29, 0.52)),
    url("../images/clearvisionhero.jpg") 55% center / cover no-repeat;
}

.clarity-color-experiment .clarity-speaking {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  background:
    linear-gradient(135deg, var(--clarity-archival), var(--clarity-plaster));
}

.clarity-color-experiment .clarity-speaking h2 {
  max-width: 12ch;
  color: var(--clarity-ink) !important;
}

.clarity-color-experiment .clarity-speaking-list {
  gap: clamp(1.6rem, 3vw, 2.4rem) clamp(1.8rem, 4vw, 3.2rem);
}

.clarity-color-experiment .clarity-speaking-list p {
  min-height: 5.8rem;
  padding-top: 1.1rem;
  border-top-color: rgba(166, 53, 47, 0.34);
  color: rgba(32, 32, 29, 0.88) !important;
}

.clarity-color-experiment .clarity-speaking .button,
.clarity-color-experiment .clarity-final-cta .button {
  border-color: rgba(166, 53, 47, 0.62);
  color: var(--clarity-ink);
}

.clarity-color-experiment .clarity-final-cta {
  background:
    linear-gradient(135deg, rgba(166, 53, 47, 0.08), transparent 42%),
    var(--clarity-travertine);
}

.clarity-color-experiment .site-footer {
  background: var(--clarity-black-stone);
  border-top-color: rgba(207, 196, 173, 0.12);
}

@media (min-width: 861px) {
  .clarity-color-experiment .clarity-intro-copy > p,
  .clarity-color-experiment .clarity-emphasis-card > p,
  .clarity-color-experiment .clarity-training > div:nth-child(2) > p,
  .clarity-color-experiment .clarity-board-rows > p,
  .clarity-color-experiment .clarity-analogy > div:first-child > p,
  .clarity-color-experiment .clarity-question-list > p,
  .clarity-color-experiment .clarity-work-note > p,
  .clarity-color-experiment .clarity-expect > div > p,
  .clarity-color-experiment .clarity-question > p,
  .clarity-color-experiment .clarity-question > div > p {
    display: flex;
    align-items: center;
    min-height: clamp(18rem, 42vh, 31rem);
    max-width: 680px;
    margin: 0;
  }

  .clarity-color-experiment .clarity-intro-copy > p,
  .clarity-color-experiment .clarity-training > div:nth-child(2) > p,
  .clarity-color-experiment .clarity-expect > div > p {
    font-size: clamp(1.35rem, 2.3vw, 2.25rem);
    line-height: 1.34;
  }

  .clarity-color-experiment .clarity-emphasis-card > p,
  .clarity-color-experiment .clarity-board-rows > p,
  .clarity-color-experiment .clarity-question-list > p,
  .clarity-color-experiment .clarity-question > div > p {
    font-size: clamp(1.55rem, 2.7vw, 2.7rem);
    line-height: 1.22;
  }

  .clarity-color-experiment .clarity-vertical-list {
    margin-top: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
  }

  @supports (animation-timeline: view()) {
    .clarity-color-experiment .clarity-intro-copy > p,
    .clarity-color-experiment .clarity-emphasis-card > p,
    .clarity-color-experiment .clarity-training > div:nth-child(2) > p,
    .clarity-color-experiment .clarity-board-rows > p,
    .clarity-color-experiment .clarity-analogy > div:first-child > p,
    .clarity-color-experiment .clarity-question-list > p,
    .clarity-color-experiment .clarity-work-note > p,
    .clarity-color-experiment .clarity-expect > div > p,
    .clarity-color-experiment .clarity-question > p,
    .clarity-color-experiment .clarity-question > div > p {
      animation: clarity-thought-reveal both linear;
      animation-timeline: view();
      animation-range: entry 10% exit 85%;
    }
  }
}

@keyframes clarity-thought-reveal {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  24%,
  62% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0.18;
    transform: translateY(-18px);
  }
}

@media (max-width: 860px) {
  .clarity-color-experiment .clarity-hero {
    min-height: var(--hero-min-h);
    background:
      linear-gradient(90deg, rgba(18, 19, 18, 0.98), rgba(18, 19, 18, 0.86)),
      url("../images/clearvisionhero.jpg") 58% center / cover no-repeat,
      var(--clarity-black-stone);
  }

  .clarity-color-experiment .clarity-hero > div {
    max-width: 100%;
  }

  .clarity-color-experiment .clarity-shell > .section:not(.clarity-hero),
  .clarity-color-experiment .clarity-final-cta {
    padding-top: clamp(4rem, 14vw, 6rem);
    padding-bottom: clamp(4rem, 14vw, 6rem);
  }

  .clarity-color-experiment .clarity-speaking {
    grid-template-columns: 1fr;
  }

  .clarity-color-experiment .clarity-speaking h2,
  .clarity-color-experiment .clarity-speaking-list,
  .clarity-color-experiment .clarity-speaking .button {
    grid-column: 1;
  }
}

.clarity-color-experiment .clarity-theses {
  padding-top: clamp(3.5rem, 7vw, 5.5rem) !important;
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem) !important;
}

.clarity-color-experiment .clarity-theses h2 {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.clarity-color-experiment .clarity-theses-grid {
  gap: clamp(1.1rem, 2vw, 1.8rem) clamp(1.4rem, 3vw, 2.6rem);
}

.clarity-color-experiment .clarity-theses-grid p {
  min-height: auto;
  padding-top: 0.85rem;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.55;
}

.clarity-color-experiment .clarity-intro,
.clarity-color-experiment .clarity-pressure,
.clarity-color-experiment .clarity-training,
.clarity-color-experiment .clarity-board,
.clarity-color-experiment .clarity-analogy,
.clarity-color-experiment .clarity-work,
.clarity-color-experiment .clarity-case,
.clarity-color-experiment .clarity-expect,
.clarity-color-experiment .clarity-question {
  display: block;
  isolation: isolate;
  min-height: 100vh;
  border: 0;
}

.clarity-color-experiment .clarity-intro,
.clarity-color-experiment .clarity-training,
.clarity-color-experiment .clarity-analogy,
.clarity-color-experiment .clarity-expect,
.clarity-color-experiment .clarity-question {
  background:
    linear-gradient(180deg, rgba(18, 19, 18, 0.08), transparent 12%, transparent 88%, rgba(18, 19, 18, 0.11)),
    linear-gradient(135deg, var(--clarity-limestone), var(--clarity-plaster));
}

.clarity-color-experiment .clarity-pressure,
.clarity-color-experiment .clarity-board,
.clarity-color-experiment .clarity-work,
.clarity-color-experiment .clarity-case {
  background:
    radial-gradient(circle at 80% 20%, rgba(207, 196, 173, 0.06), transparent 22rem),
    linear-gradient(180deg, var(--clarity-graphite), var(--clarity-basalt));
}

.clarity-color-experiment .clarity-work {
  background:
    linear-gradient(180deg, var(--clarity-slate), var(--clarity-graphite));
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-case {
  background:
    linear-gradient(180deg, var(--clarity-black-brown-stone), var(--clarity-black-stone));
}

.clarity-color-experiment .clarity-intro > *,
.clarity-color-experiment .clarity-pressure > *,
.clarity-color-experiment .clarity-training > *,
.clarity-color-experiment .clarity-board > *,
.clarity-color-experiment .clarity-analogy > *,
.clarity-color-experiment .clarity-work > *,
.clarity-color-experiment .clarity-case > *,
.clarity-color-experiment .clarity-expect > *,
.clarity-color-experiment .clarity-question > * {
  position: relative;
  z-index: 1;
}

.clarity-color-experiment .clarity-split,
.clarity-color-experiment .clarity-analogy,
.clarity-color-experiment .clarity-work {
  grid-template-columns: none;
}

.clarity-color-experiment .clarity-intro-copy,
.clarity-color-experiment .clarity-emphasis-card,
.clarity-color-experiment .clarity-training > div:nth-child(2),
.clarity-color-experiment .clarity-board-rows,
.clarity-color-experiment .clarity-board-final,
.clarity-color-experiment .clarity-analogy > div,
.clarity-color-experiment .clarity-analogy-card,
.clarity-color-experiment .clarity-work > div,
.clarity-color-experiment .clarity-question-list,
.clarity-color-experiment .clarity-work-note,
.clarity-color-experiment .clarity-expect > div,
.clarity-color-experiment .clarity-question > div {
  width: min(100%, 720px);
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.clarity-color-experiment .clarity-pressure h2,
.clarity-color-experiment .clarity-training h2,
.clarity-color-experiment .clarity-board h2,
.clarity-color-experiment .clarity-analogy h2,
.clarity-color-experiment .clarity-work h2,
.clarity-color-experiment .clarity-expect h2 {
  width: min(100%, 720px);
  max-width: 720px;
  margin: 0 auto clamp(5rem, 10vw, 8rem);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-family: var(--font-mono);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clarity-color-experiment .clarity-work h2,
.clarity-color-experiment .clarity-board h2 {
  color: rgba(242, 238, 232, 0.72) !important;
}

.clarity-color-experiment .clarity-work p,
.clarity-color-experiment .clarity-work a,
.clarity-color-experiment .clarity-case p,
.clarity-color-experiment .clarity-board p,
.clarity-color-experiment .clarity-pressure p {
  color: rgba(242, 238, 232, 0.84) !important;
}

.clarity-color-experiment .clarity-vertical-list {
  width: min(100%, 520px);
  margin: clamp(8rem, 18vw, 13rem) auto;
  padding-left: clamp(1.2rem, 3vw, 2rem);
  border-left: 1px solid rgba(166, 53, 47, 0.38);
}

.clarity-color-experiment .clarity-vertical-list p {
  min-height: auto !important;
  padding: 0.7rem 0;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: 0.04em;
}

.clarity-color-experiment .clarity-board-rows,
.clarity-color-experiment .clarity-board-rows p {
  border: 0;
}

.clarity-color-experiment .clarity-board-rows p::before,
.clarity-color-experiment .clarity-question-list p::before {
  display: none;
}

.clarity-color-experiment .clarity-board-final {
  margin-top: clamp(5rem, 14vw, 10rem);
}

.clarity-color-experiment .clarity-analogy-card a {
  display: inline-block;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(166, 53, 47, 0.52);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clarity-color-experiment .clarity-pause {
  position: relative;
  min-height: clamp(420px, 88vh, 900px);
  overflow: hidden;
  background: var(--clarity-black-stone);
}

.clarity-color-experiment .clarity-pause::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(91deg, rgba(242, 238, 232, 0.014) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 50% 50%, rgba(207, 196, 173, 0.055), transparent 30rem);
}

.clarity-color-experiment .clarity-pause-quiet {
  background:
    linear-gradient(180deg, var(--clarity-graphite), var(--clarity-black-stone));
}

.clarity-color-experiment .clarity-pause-limestone {
  background:
    linear-gradient(180deg, var(--clarity-basalt) 0%, var(--clarity-limestone) 48%, var(--clarity-plaster) 100%);
}

.clarity-color-experiment .clarity-pause-image::after {
  position: absolute;
  inset: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  content: "";
  background-position: center;
  background-size: cover;
  opacity: 0.58;
  filter: saturate(0.22) brightness(0.68) contrast(1.08);
}

.clarity-color-experiment .clarity-pause-clearvision::after {
  background-image:
    linear-gradient(180deg, rgba(18, 19, 18, 0.18), rgba(18, 19, 18, 0.54)),
    url("../images/Clearvision.jpg");
}

.clarity-color-experiment .clarity-pause-threshold::after {
  background-image:
    linear-gradient(180deg, rgba(18, 19, 18, 0.24), rgba(18, 19, 18, 0.62)),
    url("../images/clearvisionhero.jpg");
}

.clarity-color-experiment .clarity-speaking {
  min-height: auto;
  padding-top: clamp(6rem, 10vw, 8rem) !important;
  padding-bottom: clamp(6rem, 10vw, 8rem) !important;
}

.clarity-color-experiment .clarity-final-cta {
  min-height: clamp(480px, 72vh, 760px);
}

@media (min-width: 861px) {
  .clarity-color-experiment .clarity-intro-copy > p,
  .clarity-color-experiment .clarity-emphasis-card > p,
  .clarity-color-experiment .clarity-training > div:nth-child(2) > p,
  .clarity-color-experiment .clarity-board-rows > p,
  .clarity-color-experiment .clarity-board-final > p,
  .clarity-color-experiment .clarity-analogy > div:first-child > p,
  .clarity-color-experiment .clarity-analogy-card > p,
  .clarity-color-experiment .clarity-question-list > p,
  .clarity-color-experiment .clarity-work-note > p,
  .clarity-color-experiment .clarity-case > p,
  .clarity-color-experiment .clarity-expect > div > p,
  .clarity-color-experiment .clarity-question > p,
  .clarity-color-experiment .clarity-question > div > p {
    display: flex;
    align-items: center;
    min-height: clamp(620px, 86vh, 880px);
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.7rem, 3.1vw, 3.15rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0.004em;
    text-wrap: balance;
  }

  .clarity-color-experiment .clarity-intro-copy > p:nth-child(1),
  .clarity-color-experiment .clarity-emphasis-card > p:nth-child(3),
  .clarity-color-experiment .clarity-case > p,
  .clarity-color-experiment .clarity-work-note > p {
    font-size: clamp(1.35rem, 2.1vw, 2.15rem);
    line-height: 1.38;
  }

  @supports (animation-timeline: view()) {
    .clarity-color-experiment .clarity-pause::after,
    .clarity-color-experiment .clarity-intro-copy > p,
    .clarity-color-experiment .clarity-emphasis-card > p,
    .clarity-color-experiment .clarity-training > div:nth-child(2) > p,
    .clarity-color-experiment .clarity-board-rows > p,
    .clarity-color-experiment .clarity-board-final > p,
    .clarity-color-experiment .clarity-analogy > div:first-child > p,
    .clarity-color-experiment .clarity-analogy-card > p,
    .clarity-color-experiment .clarity-question-list > p,
    .clarity-color-experiment .clarity-work-note > p,
    .clarity-color-experiment .clarity-case > p,
    .clarity-color-experiment .clarity-expect > div > p,
    .clarity-color-experiment .clarity-question > p,
    .clarity-color-experiment .clarity-question > div > p {
      animation: clarity-chapter-reveal both linear;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
  }
}

@keyframes clarity-chapter-reveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  28%,
  58% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0.08;
    transform: translateY(-34px);
  }
}

@media (max-width: 860px) {
  .clarity-color-experiment .clarity-pause {
    min-height: clamp(280px, 58vh, 520px);
  }

  .clarity-color-experiment .clarity-pause-image::after {
    inset: clamp(2rem, 8vw, 4rem) 1rem;
  }

  .clarity-color-experiment .clarity-pressure h2,
  .clarity-color-experiment .clarity-training h2,
  .clarity-color-experiment .clarity-board h2,
  .clarity-color-experiment .clarity-analogy h2,
  .clarity-color-experiment .clarity-work h2,
  .clarity-color-experiment .clarity-expect h2 {
    margin-bottom: clamp(2.5rem, 10vw, 4rem);
  }
}

.clarity-color-experiment .clarity-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(3rem, 7vw, 7rem);
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    clamp(5rem, 10vw, 8rem)
    max(1rem, calc((100vw - var(--max)) / 2))
    clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 80% 8%, rgba(207, 196, 173, 0.07), transparent 24rem),
    linear-gradient(180deg, var(--clarity-black-stone), var(--clarity-graphite) 24%, var(--clarity-basalt) 68%, var(--clarity-black-stone));
  color: var(--clarity-light-text);
  isolation: isolate;
}

.clarity-color-experiment .clarity-story::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(91deg, rgba(242, 238, 232, 0.012) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(18, 19, 18, 0.22), transparent 45%, rgba(18, 19, 18, 0.18));
}

.clarity-color-experiment .clarity-story-side {
  position: sticky;
  top: clamp(6rem, 12vh, 9rem);
  z-index: 1;
  align-self: start;
  min-height: min(72vh, 760px);
  padding-top: clamp(1rem, 3vw, 2rem);
}

.clarity-color-experiment .clarity-story-kicker {
  margin: 0 0 clamp(1rem, 2vw, 1.6rem);
  color: rgba(207, 196, 173, 0.68);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clarity-color-experiment .clarity-story-side h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--clarity-light-text);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.clarity-color-experiment .clarity-story-side > p:not(.clarity-story-kicker) {
  max-width: 32ch;
  margin: clamp(1.8rem, 3.5vw, 3rem) 0 0;
  color: rgba(242, 238, 232, 0.66);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.clarity-color-experiment .clarity-story-image {
  width: min(100%, 360px);
  height: clamp(150px, 22vw, 260px);
  margin: clamp(2.6rem, 5vw, 4rem) 0 0;
  border: 1px solid rgba(207, 196, 173, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 19, 18, 0.2), rgba(18, 19, 18, 0.66)),
    url("../images/Clearvision.jpg") 58% center / cover no-repeat;
  opacity: 0.58;
  filter: saturate(0.22) brightness(0.7) contrast(1.06);
}

.clarity-color-experiment .clarity-story-flow {
  position: relative;
  z-index: 1;
}

.clarity-color-experiment .clarity-story-flow > .section {
  display: block;
  min-height: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-story-flow > .section::before,
.clarity-color-experiment .clarity-story-flow > .section::after {
  display: none;
}

.clarity-color-experiment .clarity-story-flow .clarity-intro-copy,
.clarity-color-experiment .clarity-story-flow .clarity-emphasis-card,
.clarity-color-experiment .clarity-story-flow .clarity-training > div:nth-child(2),
.clarity-color-experiment .clarity-story-flow .clarity-board-rows,
.clarity-color-experiment .clarity-story-flow .clarity-board-final,
.clarity-color-experiment .clarity-story-flow .clarity-analogy > div,
.clarity-color-experiment .clarity-story-flow .clarity-analogy-card,
.clarity-color-experiment .clarity-story-flow .clarity-work > div,
.clarity-color-experiment .clarity-story-flow .clarity-question-list,
.clarity-color-experiment .clarity-story-flow .clarity-work-note,
.clarity-color-experiment .clarity-story-flow .clarity-case,
.clarity-color-experiment .clarity-story-flow .clarity-expect > div,
.clarity-color-experiment .clarity-story-flow .clarity-question > div {
  width: 100%;
  max-width: 760px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.clarity-color-experiment .clarity-story-flow h2 {
  max-width: 760px;
  margin: clamp(5rem, 10vw, 8rem) 0 clamp(1.8rem, 4vw, 3rem);
  color: rgba(207, 196, 173, 0.7) !important;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clarity-color-experiment .clarity-story-flow p,
.clarity-color-experiment .clarity-story-flow a {
  color: rgba(242, 238, 232, 0.86) !important;
}

.clarity-color-experiment .clarity-story-flow p {
  display: flex;
  align-items: center;
  min-height: clamp(14rem, 38vh, 24rem) !important;
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.7rem) !important;
  font-weight: 400;
  line-height: 1.12 !important;
  letter-spacing: 0;
  text-wrap: balance;
}

.clarity-color-experiment .clarity-story-flow .clarity-intro-copy > p:nth-child(1),
.clarity-color-experiment .clarity-story-flow .clarity-emphasis-card > p:nth-child(3),
.clarity-color-experiment .clarity-story-flow .clarity-case > p,
.clarity-color-experiment .clarity-story-flow .clarity-work-note > p {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem) !important;
  line-height: 1.38 !important;
}

.clarity-color-experiment .clarity-story-flow .clarity-key {
  color: var(--clarity-light-text) !important;
}

.clarity-color-experiment .clarity-story-flow .clarity-vertical-list {
  width: min(100%, 560px);
  margin: clamp(2.5rem, 6vw, 4.5rem) 0;
  padding-left: clamp(1rem, 2.4vw, 1.6rem);
  border-left: 1px solid rgba(166, 53, 47, 0.46);
}

.clarity-color-experiment .clarity-story-flow .clarity-vertical-list p {
  min-height: auto !important;
  padding: 0.45rem 0;
  color: rgba(207, 196, 173, 0.82) !important;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.45vw, 1.28rem) !important;
  line-height: 1.45 !important;
  letter-spacing: 0.04em;
}

.clarity-color-experiment .clarity-story-flow .clarity-board-final {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(166, 53, 47, 0.34);
}

.clarity-color-experiment .clarity-story-flow .clarity-analogy-card a {
  min-height: auto !important;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  color: rgba(207, 196, 173, 0.86) !important;
}

.clarity-color-experiment .clarity-story-flow .clarity-question > div {
  margin: clamp(2rem, 5vw, 4rem) 0;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(166, 53, 47, 0.46);
}

.clarity-color-experiment .clarity-story-flow .clarity-question > div p {
  min-height: clamp(10rem, 28vh, 18rem) !important;
}

@media (min-width: 861px) {
  @supports (animation-timeline: view()) {
    .clarity-color-experiment .clarity-story-flow p {
      animation: clarity-split-thought both linear;
      animation-timeline: view();
      animation-range: entry 8% exit 92%;
    }
  }
}

@keyframes clarity-split-thought {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  24%,
  68% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0.14;
    transform: translateY(-18px);
  }
}

.clarity-color-experiment .clarity-speaking,
.clarity-color-experiment .clarity-final-cta {
  background:
    linear-gradient(135deg, var(--clarity-limestone), var(--clarity-plaster));
}

@media (max-width: 860px) {
  .clarity-color-experiment .clarity-story {
    display: block;
    padding: clamp(3.5rem, 12vw, 5rem) 1rem;
  }

  .clarity-color-experiment .clarity-story-side {
    position: relative;
    top: auto;
    min-height: auto;
    margin-bottom: clamp(3rem, 10vw, 5rem);
  }

  .clarity-color-experiment .clarity-story-side h2 {
    max-width: 12ch;
  }

  .clarity-color-experiment .clarity-story-image {
    width: 100%;
    max-width: 420px;
  }

  .clarity-color-experiment .clarity-story-flow p {
    min-height: auto !important;
    margin: 0 0 clamp(2rem, 8vw, 3rem);
    font-size: clamp(1.65rem, 7vw, 2.45rem) !important;
    line-height: 1.2 !important;
  }

  .clarity-color-experiment .clarity-story-flow h2 {
    margin: clamp(3rem, 12vw, 4.5rem) 0 clamp(1.5rem, 6vw, 2.2rem);
  }
}

.clarity-color-experiment .clarity-story {
  position: relative;
  display: block;
  width: min(94vw, 1600px);
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 2vw, 2rem);
  background:
    radial-gradient(circle at 80% 4%, rgba(207, 196, 173, 0.07), transparent 26rem),
    linear-gradient(180deg, var(--clarity-black-stone), var(--clarity-graphite) 22%, var(--clarity-basalt) 72%, var(--clarity-black-stone));
  color: var(--clarity-light-text);
}

.clarity-color-experiment .clarity-story::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(91deg, rgba(242, 238, 232, 0.012) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(18, 19, 18, 0.18), transparent 40%, rgba(18, 19, 18, 0.1));
}

.clarity-color-experiment .clarity-story-chapter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(3rem, 7vw, 7rem);
  min-height: clamp(620px, 88vh, 860px);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid rgba(207, 196, 173, 0.1);
}

.clarity-color-experiment .clarity-story-chapter:first-child {
  border-top: 0;
}

.clarity-color-experiment .clarity-story-chapter-line::after {
  position: absolute;
  top: clamp(4rem, 8vw, 7rem);
  bottom: clamp(4rem, 8vw, 7rem);
  left: calc(40% + clamp(1.5rem, 3.5vw, 3.5rem));
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(166, 53, 47, 0.58), transparent);
}

.clarity-color-experiment .clarity-story-chapter-shadow {
  background:
    radial-gradient(circle at 18% 18%, rgba(207, 196, 173, 0.06), transparent 18rem),
    linear-gradient(135deg, rgba(18, 19, 18, 0.18), rgba(48, 52, 51, 0.36));
}

.clarity-color-experiment .clarity-story-chapter-final {
  min-height: clamp(720px, 92vh, 940px);
}

.clarity-color-experiment .clarity-story-side {
  position: sticky;
  top: clamp(5.8rem, 10vh, 8rem);
  align-self: start;
  min-height: auto;
  padding-top: 0;
}

.clarity-color-experiment .clarity-story-kicker {
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  color: rgba(207, 196, 173, 0.7);
}

.clarity-color-experiment .clarity-story-side h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5.6vw, 6.4rem);
  line-height: 0.95;
}

.clarity-color-experiment .clarity-story-side > p:not(.clarity-story-kicker) {
  max-width: 34ch;
  color: rgba(242, 238, 232, 0.62);
}

.clarity-color-experiment .clarity-story-image {
  width: min(100%, 500px);
  height: clamp(190px, 24vw, 340px);
  background:
    linear-gradient(180deg, rgba(18, 19, 18, 0.12), rgba(18, 19, 18, 0.68)),
    url("../images/Clearvision.jpg") 58% center / cover no-repeat;
}

.clarity-color-experiment .clarity-story-chapter-type .clarity-story-image,
.clarity-color-experiment .clarity-story-chapter-line .clarity-story-image,
.clarity-color-experiment .clarity-story-chapter-shadow .clarity-story-image,
.clarity-color-experiment .clarity-story-chapter-final .clarity-story-image {
  display: none;
}

.clarity-color-experiment .clarity-story-flow {
  width: 100%;
  max-width: none;
}

.clarity-color-experiment .clarity-story-flow > .section {
  width: 100%;
  max-width: none;
  min-height: auto;
  padding: 0 !important;
  background: transparent !important;
}

.clarity-color-experiment .clarity-story-flow .clarity-intro-copy,
.clarity-color-experiment .clarity-story-flow .clarity-emphasis-card,
.clarity-color-experiment .clarity-story-flow .clarity-training > div:nth-child(2),
.clarity-color-experiment .clarity-story-flow .clarity-board-rows,
.clarity-color-experiment .clarity-story-flow .clarity-board-final,
.clarity-color-experiment .clarity-story-flow .clarity-analogy > div,
.clarity-color-experiment .clarity-story-flow .clarity-analogy-card,
.clarity-color-experiment .clarity-story-flow .clarity-work > div,
.clarity-color-experiment .clarity-story-flow .clarity-question-list,
.clarity-color-experiment .clarity-story-flow .clarity-work-note,
.clarity-color-experiment .clarity-story-flow .clarity-case,
.clarity-color-experiment .clarity-story-flow .clarity-expect > div,
.clarity-color-experiment .clarity-story-flow .clarity-question > div {
  max-width: 980px;
}

.clarity-color-experiment .clarity-story-flow h2 {
  max-width: 980px;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1.2rem, 2.5vw, 2rem);
  color: rgba(207, 196, 173, 0.66) !important;
}

.clarity-color-experiment .clarity-story-flow p {
  min-height: clamp(9rem, 22vh, 16rem) !important;
  max-width: 980px;
  font-size: clamp(2.5rem, 4.9vw, 4rem) !important;
  line-height: 1.08 !important;
  color: rgba(242, 238, 232, 0.88) !important;
}

.clarity-color-experiment .clarity-story-flow .clarity-intro-copy > p:nth-child(1),
.clarity-color-experiment .clarity-story-flow .clarity-emphasis-card > p:nth-child(3),
.clarity-color-experiment .clarity-story-flow .clarity-case > p,
.clarity-color-experiment .clarity-story-flow .clarity-work-note > p {
  max-width: 920px;
  font-size: clamp(1.65rem, 2.8vw, 2.7rem) !important;
  line-height: 1.28 !important;
}

.clarity-color-experiment .clarity-story-flow .clarity-vertical-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem clamp(1.2rem, 3vw, 2.4rem);
  width: 100%;
  max-width: 780px;
  margin: clamp(1.6rem, 4vw, 3rem) 0;
  padding: 0;
  border: 0;
}

.clarity-color-experiment .clarity-story-flow .clarity-vertical-list p {
  min-height: auto !important;
  padding: 0.35rem 0 0.75rem;
  border-top: 1px solid rgba(166, 53, 47, 0.28);
}

.clarity-color-experiment .clarity-story-flow .clarity-board-final,
.clarity-color-experiment .clarity-story-flow .clarity-question > div {
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(1rem, 2.5vw, 1.8rem);
}

.clarity-color-experiment .clarity-story-flow .clarity-question > div p {
  min-height: clamp(8rem, 18vh, 13rem) !important;
}

@media (min-width: 861px) {
  @supports (animation-timeline: view()) {
    .clarity-color-experiment .clarity-story-flow p {
      animation: clarity-wide-thought both linear;
      animation-timeline: view();
      animation-range: entry 5% exit 90%;
    }
  }
}

@keyframes clarity-wide-thought {
  0% {
    opacity: 0.08;
    transform: translateY(18px);
  }

  18%,
  66% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0.16;
    transform: translateY(-16px);
  }
}

@media (max-width: 860px) {
  .clarity-color-experiment .clarity-story {
    width: 100%;
    max-width: none;
    padding: clamp(3rem, 10vw, 5rem) 1rem;
  }

  .clarity-color-experiment .clarity-story-chapter {
    display: block;
    min-height: auto;
    padding: clamp(3rem, 11vw, 5rem) 0;
  }

  .clarity-color-experiment .clarity-story-chapter-line::after {
    display: none;
  }

  .clarity-color-experiment .clarity-story-side {
    position: relative;
    top: auto;
    margin-bottom: clamp(2.5rem, 9vw, 4rem);
  }

  .clarity-color-experiment .clarity-story-side h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .clarity-color-experiment .clarity-story-flow p {
    min-height: auto !important;
    font-size: clamp(1.7rem, 7.2vw, 2.65rem) !important;
  }

  .clarity-color-experiment .clarity-story-flow .clarity-vertical-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-nav a {
    font-size: clamp(1.25rem, 5.4vw, 1.55rem);
    line-height: 1.2;
    padding: 0.2rem 0;
  }

  .nav-group li + li {
    margin-top: 0.55rem;
  }

  .nav-group + .nav-group {
    margin-top: clamp(1.6rem, 6vw, 2.1rem);
    padding-top: clamp(1.6rem, 6vw, 2.1rem);
    border-top: 1px solid rgba(216, 207, 191, 0.16);
  }

  .nav-group-label {
    margin-bottom: 0.7rem;
    letter-spacing: 0.16em;
    opacity: 0.72;
  }

  .page-shell > .section:not(.page-hero),
  .home-shell > .section:not(.home-hero),
  .page-shell > .contact-layout,
  .page-shell > .cta-panel,
  .home-shell > .cta-panel {
    margin-top: clamp(4rem, 14vw, 6rem);
  }

  .page-shell > .section:not(.page-hero) p,
  .home-shell > .section:not(.home-hero) p,
  .longform .section p,
  .contact-panel p,
  .contact-aside p,
  .contact-details dd,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .person-card p,
  .editorial-card p,
  .preview-card p,
  .cta-panel p,
  .proof-note,
  .number-detail {
    max-width: 100%;
    font-size: clamp(1.18rem, 5vw, 1.25rem);
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-text-rotator {
    min-height: auto;
  }

  .hero-rotator-track {
    min-height: auto;
    overflow: visible;
  }

  .hero-rotator-item {
    position: static;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-rotator-item:not(:first-child) {
    display: none;
  }
}

.longread-toggle {
  width: 100%;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  padding: 0.4rem 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  scroll-margin-top: var(--longread-sticky-top, 5rem);
  -webkit-appearance: none;
          appearance: none;
}
.longread-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}
.longread-toggle .longread-label {
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.longread-toggle:hover .longread-label,
.longread-toggle:focus-visible .longread-label {
  color: #d66158;
  letter-spacing: 0.19em;
}
.longread-chevron {
  flex: 0 0 auto;
  width: 0.46rem;
  height: 0.46rem;
  border-right: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.clarity-color-experiment .clarity-shell > .section.clarity-glance {
  padding-bottom: clamp(1.75rem, 4vw, 3rem);
}

.clarity-shell.is-longread-collapsed .clarity-story {
  display: none;
}
.clarity-shell.is-longread-collapsed .longread-chevron {
  animation: longread-bob 1.7s ease-in-out infinite;
}
@keyframes longread-bob {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(2.5px, 2.5px); }
}

.clarity-shell.is-longread-expanded .longread-chevron {
  transform: rotate(225deg);
}
.clarity-shell.is-longread-expanded .clarity-story {
  animation: longread-reveal 0.5s ease both;
}
@keyframes longread-reveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (min-width: 901px) {
  .clarity-shell.is-longread-expanded .longread-toggle {
    position: sticky;
    top: var(--longread-sticky-top, 5rem);
    z-index: 30;
    margin: 0;
    padding: 0.95rem 0;
  }
  .clarity-shell.is-longread-expanded .longread-toggle::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(18, 19, 18, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.45);
  }

  .clarity-shell.is-longread-expanded .clarity-story {
    --clarity-stick-top: calc(var(--longread-sticky-top, 5rem) + 3.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clarity-shell.is-longread-collapsed .longread-chevron { animation: none; }
  .clarity-shell.is-longread-expanded .clarity-story { animation: none; }
  .longread-toggle .longread-label,
  .longread-chevron { transition: none; }
}

.clarity-color-experiment .clarity-glance .clarity-glance-grid {
  align-items: stretch;
}
.clarity-color-experiment .clarity-glance .editorial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem 1.4rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
}
.clarity-color-experiment .clarity-glance .editorial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  width: 2.4rem;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
}
.clarity-color-experiment .clarity-glance .editorial-card h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.2rem, 1.6vw, 1.34rem);
  line-height: 1.15;
}

.clarity-color-experiment .clarity-shell .section.clarity-glance .editorial-card p {
  max-width: none;
  margin: auto 0 0;
  color: rgba(242, 238, 232, 0.6);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}

@media (min-width: 768px) {

  .clarity-color-experiment .clarity-shell > .section.clarity-glance {
    --glance-w: min(94vw, 1900px);
    width: var(--glance-w);
    max-width: none;
    margin-left: calc((100% - var(--glance-w)) / 2);
    margin-right: calc((100% - var(--glance-w)) / 2);
    padding-top: clamp(2rem, 4vw, 3.25rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 2.5vw, 3rem);
    padding-left: clamp(1.5rem, 2.5vw, 3rem);
  }
  .clarity-color-experiment .clarity-glance .section-heading {
    max-width: none;
    margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  }
  .clarity-color-experiment .clarity-glance .clarity-glance-grid {
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
  }
  .clarity-color-experiment .clarity-glance .editorial-card {
    min-height: clamp(19rem, 22vw, 25rem);
    padding: 2.2rem 2.2rem 2rem;
  }
  .clarity-color-experiment .clarity-glance .editorial-card::before {
    left: 2.2rem;
    width: 3rem;
    height: 4px;
  }
  .clarity-color-experiment .clarity-glance .clarity-glance-lbl {
    margin-bottom: 0.9rem;
    font-size: 0.8rem;
  }
  .clarity-color-experiment .clarity-glance .editorial-card h3 {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    line-height: 1.12;
  }
  .clarity-color-experiment .clarity-shell .section.clarity-glance .editorial-card p {
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    line-height: 1.45;
  }
}

.clarity-color-experiment .clarity-shell > .section.clarity-programme {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: clamp(2.75rem, 6vw, 5.5rem) max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  color: #23231f;
  background:
    radial-gradient(circle at 18% -12%, rgba(255, 251, 238, 0.95), transparent 34rem),
    linear-gradient(180deg, rgba(239, 233, 218, 0.99), rgba(227, 219, 202, 0.98));
}

.clarity-color-experiment .clarity-shell > .section.clarity-programme::before {
  display: none;
}

.clarity-color-experiment .clarity-final-cta {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.clarity-color-experiment .clarity-programme .programme-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.clarity-color-experiment .clarity-programme .programme-eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-detail);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.clarity-color-experiment .clarity-programme .programme-intro h2 {
  margin: 0 0 1rem;
  max-width: 18ch;
  color: #1b1c18;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}
.clarity-color-experiment .clarity-programme .programme-sub {
  max-width: 34ch;
  margin: 0 0 1.9rem;
  color: rgba(30, 30, 26, 0.62);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}
.clarity-color-experiment .clarity-programme .programme-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  color: rgba(30, 30, 26, 0.5);
  font-family: var(--font-detail);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.clarity-color-experiment .clarity-programme .programme-label-rule {
  width: 2.6rem;
  height: 1px;
  background: var(--accent);
}

.clarity-color-experiment .clarity-programme .programme-num {
  align-self: start;
  padding-top: 0.35rem;
  color: var(--accent);
  font-family: var(--font-detail);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}
.clarity-color-experiment .clarity-programme .programme-arrow {
  align-self: center;
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

@media (min-width: 900px) {
  .clarity-color-experiment .clarity-programme .programme-inner {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.7fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clarity-color-experiment .clarity-programme .programme-arrow {
    transition: none;
  }
}

.clarity-color-experiment .clarity-shell > .section.clarity-thesen {
  --thesen-w: min(94vw, 1500px);
  position: relative;
  width: var(--thesen-w);
  max-width: none;
  margin-left: calc((100% - var(--thesen-w)) / 2);
  margin-right: calc((100% - var(--thesen-w)) / 2);
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 4.5rem);
  overflow: hidden;
  color: #f5f1ea;
  background: linear-gradient(180deg, #121312 0%, #1c1e1c 55%, #161816 100%);
}
.clarity-color-experiment .clarity-shell > .section.clarity-thesen::before {
  display: none;
}
.clarity-color-experiment .clarity-thesen > * {
  position: relative;
  z-index: 1;
}

.clarity-color-experiment .clarity-thesen .thesen-head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.clarity-color-experiment .clarity-thesen .thesen-head .thesen-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-family: var(--font-detail);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.clarity-color-experiment .clarity-thesen .thesen-head h2 {
  margin: 0;
  max-width: 24ch;
  color: #f6f2ea;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.14;
}
.clarity-color-experiment .clarity-thesen .thesen-head .thesen-label {
  align-self: flex-start;
  margin: 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--accent);
  color: rgba(242, 238, 232, 0.66);
  font-family: var(--font-detail);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.clarity-color-experiment .clarity-thesen .thesen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.5rem, 1.5vw, 0.9rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.clarity-color-experiment .clarity-thesen .thesen-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(1rem, 1.8vw, 1.75rem);
  padding: clamp(1.5rem, 2.4vw, 2.4rem) clamp(1.25rem, 2vw, 2rem);
  padding-bottom: clamp(2.5rem, 3.4vw, 3.4rem);
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.clarity-color-experiment .clarity-thesen .thesen-item::after {
  content: "";
  position: absolute;
  left: clamp(1.25rem, 2vw, 2rem);
  bottom: clamp(1.1rem, 1.8vw, 1.6rem);
  width: 2.4rem;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.clarity-color-experiment .clarity-thesen .thesen-item:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.045);
}
.clarity-color-experiment .clarity-thesen .thesen-item:hover::after {
  width: 4.75rem;
}
.clarity-color-experiment .clarity-thesen .thesen-num {
  display: grid;
  place-items: center;
  width: clamp(2.4rem, 3vw, 2.9rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  color: #fbf6ee;
  font-family: var(--font-detail);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.clarity-color-experiment .clarity-thesen .thesen-grid .thesen-text {
  margin: 0;
  max-width: 32ch;
  color: #f2ede4;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.65vw, 1.5rem);
  line-height: 1.34;
  letter-spacing: 0.005em;
}

@media (min-width: 820px) {
  .clarity-color-experiment .clarity-thesen .thesen-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .clarity-color-experiment .clarity-thesen .thesen-head .thesen-label {
    align-self: flex-end;
  }
  .clarity-color-experiment .clarity-thesen .thesen-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(2rem, 4vw, 4.5rem);
    row-gap: clamp(1rem, 2vw, 1.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clarity-color-experiment .clarity-thesen .thesen-item,
  .clarity-color-experiment .clarity-thesen .thesen-item::after {
    transition: none;
  }
  .clarity-color-experiment .clarity-thesen .thesen-item:hover {
    transform: none;
  }
}

.longread-toggle {
  min-height: 68px;
  padding: 0.6rem clamp(0.5rem, 2vw, 1.5rem);
  gap: clamp(0.85rem, 2.5vw, 1.75rem);
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.longread-toggle:hover,
.longread-toggle:focus-visible {
  background-color: rgba(166, 53, 47, 0.07);
}
.longread-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.longread-toggle-inner {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.longread-toggle .longread-label {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.longread-action {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.longread-action-text {
  color: rgba(245, 241, 234, 0.9);
  font-family: var(--font-ui);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.004em;
  transition: color 0.25s ease;
}
.longread-toggle:hover .longread-action-text,
.longread-toggle:focus-visible .longread-action-text {
  color: #fbf7f0;
}

.longread-toggle .longread-chevron {
  width: 1rem;
  height: 1rem;
  border-right-width: 2px;
  border-bottom-width: 2px;
  transition: transform 0.3s ease;
}

.longread-toggle .longread-rule {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.longread-toggle .longread-rule:first-child { transform-origin: right center; }
.longread-toggle .longread-rule:last-child  { transform-origin: left center; }
.longread-toggle:hover .longread-rule,
.longread-toggle:focus-visible .longread-rule {
  transform: scaleX(1.05);
  opacity: 1;
}

.clarity-shell.is-longread-collapsed .longread-chevron {
  transform: rotate(45deg);
  animation: none;
}
.clarity-shell.is-longread-collapsed .longread-toggle:hover .longread-chevron,
.clarity-shell.is-longread-collapsed .longread-toggle:focus-visible .longread-chevron {
  transform: translateY(4px) rotate(45deg);
}
.clarity-shell.is-longread-expanded .longread-toggle:hover .longread-chevron,
.clarity-shell.is-longread-expanded .longread-toggle:focus-visible .longread-chevron {
  transform: translateY(4px) rotate(225deg);
}

@media (max-width: 600px) {
  .longread-toggle { min-height: 64px; }
  .longread-action-text { font-size: 1.18rem; }
}

@media (prefers-reduced-motion: reduce) {
  .longread-toggle,
  .longread-toggle .longread-rule,
  .longread-toggle .longread-action-text,
  .longread-toggle .longread-label,
  .longread-toggle .longread-chevron {
    transition: none;
  }
  .longread-toggle:hover .longread-rule,
  .longread-toggle:focus-visible .longread-rule {
    transform: none;
  }
  .clarity-shell.is-longread-collapsed .longread-toggle:hover .longread-chevron,
  .clarity-shell.is-longread-collapsed .longread-toggle:focus-visible .longread-chevron {
    transform: rotate(45deg);
  }
  .clarity-shell.is-longread-expanded .longread-toggle:hover .longread-chevron,
  .clarity-shell.is-longread-expanded .longread-toggle:focus-visible .longread-chevron {
    transform: rotate(225deg);
  }
}

.outcome-longread-body > .section:first-child {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.outcome-longread.is-longread-collapsed .outcome-longread-body {
  display: none;
}
.outcome-longread.is-longread-collapsed .longread-chevron {
  transform: rotate(45deg);
  animation: none;
}
.outcome-longread.is-longread-collapsed .longread-toggle:hover .longread-chevron,
.outcome-longread.is-longread-collapsed .longread-toggle:focus-visible .longread-chevron {
  transform: translateY(4px) rotate(45deg);
}

.outcome-longread.is-longread-expanded .longread-chevron {
  transform: rotate(225deg);
}
.outcome-longread.is-longread-expanded .longread-toggle:hover .longread-chevron,
.outcome-longread.is-longread-expanded .longread-toggle:focus-visible .longread-chevron {
  transform: translateY(4px) rotate(225deg);
}
.outcome-longread.is-longread-expanded .outcome-longread-body {
  animation: longread-reveal 0.5s ease both;
}

@media (min-width: 901px) {
  .outcome-longread.is-longread-expanded .longread-toggle {
    position: sticky;
    top: var(--longread-sticky-top, 5rem);
    z-index: 30;
    margin: 0;
    padding: 0.95rem 0;
  }
  .outcome-longread.is-longread-expanded .longread-toggle::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(18, 19, 18, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .outcome-longread.is-longread-expanded .outcome-longread-body {
    animation: none;
  }
  .outcome-longread.is-longread-collapsed .longread-toggle:hover .longread-chevron,
  .outcome-longread.is-longread-collapsed .longread-toggle:focus-visible .longread-chevron {
    transform: rotate(45deg);
  }
  .outcome-longread.is-longread-expanded .longread-toggle:hover .longread-chevron,
  .outcome-longread.is-longread-expanded .longread-toggle:focus-visible .longread-chevron {
    transform: rotate(225deg);
  }
}

.price-vertiefung-body > .section:first-child {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.price-vertiefung.is-vertiefung-collapsed .price-vertiefung-body {
  display: none;
}
.price-vertiefung.is-vertiefung-collapsed .longread-chevron {
  transform: rotate(45deg);
  animation: none;
}
.price-vertiefung.is-vertiefung-collapsed .longread-toggle:hover .longread-chevron,
.price-vertiefung.is-vertiefung-collapsed .longread-toggle:focus-visible .longread-chevron {
  transform: translateY(4px) rotate(45deg);
}

.price-vertiefung.is-vertiefung-expanded .longread-chevron {
  transform: rotate(225deg);
}
.price-vertiefung.is-vertiefung-expanded .longread-toggle:hover .longread-chevron,
.price-vertiefung.is-vertiefung-expanded .longread-toggle:focus-visible .longread-chevron {
  transform: translateY(4px) rotate(225deg);
}
.price-vertiefung.is-vertiefung-expanded .price-vertiefung-body {
  animation: longread-reveal 0.5s ease both;
}

@media (min-width: 901px) {
  .price-vertiefung.is-vertiefung-expanded .longread-toggle {
    position: sticky;
    top: var(--longread-sticky-top, 5rem);
    z-index: 30;
    margin: 0;
    padding: 0.95rem 0;
  }
  .price-vertiefung.is-vertiefung-expanded .longread-toggle::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(18, 19, 18, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-vertiefung.is-vertiefung-expanded .price-vertiefung-body {
    animation: none;
  }
  .price-vertiefung.is-vertiefung-collapsed .longread-toggle:hover .longread-chevron,
  .price-vertiefung.is-vertiefung-collapsed .longread-toggle:focus-visible .longread-chevron {
    transform: rotate(45deg);
  }
  .price-vertiefung.is-vertiefung-expanded .longread-toggle:hover .longread-chevron,
  .price-vertiefung.is-vertiefung-expanded .longread-toggle:focus-visible .longread-chevron {
    transform: rotate(225deg);
  }
}

.price-outro {
  --outro-line: rgba(255, 255, 255, 0.12);
}
.price-shell .section.price-outro .price-outro-eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-detail);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.price-outro-intro h2 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.12;
}
.price-shell .section.price-outro .price-outro-sub {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.price-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 2vw, 1.75rem);
  list-style: none;
  border: 0;
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% -25%, rgba(255, 251, 238, 0.95), transparent 32rem),
    linear-gradient(180deg, rgba(239, 233, 218, 0.99), rgba(228, 220, 203, 0.98));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}
.price-outcomes li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  padding: clamp(0.5rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.6rem);
  text-align: center;
  color: #1c1d18;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  line-height: 1.22;
}
.price-outcomes li + li {
  border-left: 1px solid rgba(28, 29, 24, 0.16);
}
.price-outcome-icon {
  display: inline-flex;
  color: var(--accent);
}
.price-outcome-icon svg {
  width: clamp(2rem, 2.8vw, 2.5rem);
  height: auto;
}

.price-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.price-nav-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0.28rem solid var(--accent);
  background: #202020;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.price-nav-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 3.5vw, 3.2rem);
}

.price-nav-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  background: linear-gradient(90deg, rgba(166, 53, 47, 0.16), rgba(166, 53, 47, 0.03));
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.price-nav-card:hover,
.price-nav-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(166, 53, 47, 0.6);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}
.price-nav-card:hover::before,
.price-nav-card:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}
.price-nav-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.price-nav-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.price-nav-label {
  color: var(--accent);
  font-family: var(--font-detail);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.price-nav-title {
  margin: 0;
  color: #f6f2ea;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.12;
}
.price-nav-card--featured .price-nav-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.price-shell .section.price-outro .price-nav-desc {
  max-width: 46ch;
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}
.price-nav-arrow {
  flex: none;
  align-self: flex-end;
  margin-top: auto;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.price-nav-card--featured .price-nav-arrow {
  align-self: center;
  margin-top: 0;
  font-size: 2rem;
}
.price-nav-card:hover .price-nav-arrow,
.price-nav-card:focus-visible .price-nav-arrow {
  transform: translateX(6px);
}

@media (max-width: 640px) {
  .price-outcomes {
    grid-template-columns: 1fr;
  }
  .price-outcomes li + li {
    border-left: 0;
    border-top: 1px solid rgba(28, 29, 24, 0.16);
  }
  .price-nav-grid {
    grid-template-columns: 1fr;
  }
  .price-nav-card--featured {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-nav-card--featured .price-nav-arrow {
    align-self: flex-end;
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-nav-card,
  .price-nav-card::before,
  .price-nav-arrow {
    transition: none;
  }
  .price-nav-card:hover,
  .price-nav-card:focus-visible {
    transform: none;
  }
  .price-nav-card:hover::before,
  .price-nav-card:focus-visible::before {
    transform: scaleX(1);
  }
  .price-nav-card:hover .price-nav-arrow,
  .price-nav-card:focus-visible .price-nav-arrow {
    transform: none;
  }
}

.price-vertiefung .longread-action-text,
.outcome-longread .longread-action-text,
.clarity-longread .longread-action-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.price-vertiefung .longread-chevrons,
.outcome-longread .longread-chevrons,
.clarity-longread .longread-chevrons {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.price-vertiefung .longread-toggle .longread-chevron,
.outcome-longread .longread-toggle .longread-chevron,
.clarity-longread .longread-toggle .longread-chevron {
  width: 1.85rem;
  height: 1.85rem;
  border-right-width: 3px;
  border-bottom-width: 3px;
  border-right-color: #d66158;
  border-bottom-color: #d66158;
}
.price-vertiefung .longread-chevron + .longread-chevron,
.outcome-longread .longread-chevron + .longread-chevron,
.clarity-longread .longread-chevron + .longread-chevron {
  margin-top: -1.15rem;
}
.price-vertiefung .longread-toggle:hover .longread-chevron,
.price-vertiefung .longread-toggle:focus-visible .longread-chevron,
.outcome-longread .longread-toggle:hover .longread-chevron,
.outcome-longread .longread-toggle:focus-visible .longread-chevron,
.clarity-longread .longread-toggle:hover .longread-chevron,
.clarity-longread .longread-toggle:focus-visible .longread-chevron {
  border-right-color: #e88c83;
  border-bottom-color: #e88c83;
}

.price-vertiefung.is-vertiefung-expanded .longread-toggle-inner,
.outcome-longread.is-longread-expanded .longread-toggle-inner,
.clarity-shell.is-longread-expanded .longread-toggle-inner {
  gap: 1rem;
}

.cta-panel.price-final-cta {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(4.5rem, 8vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  background:
    repeating-linear-gradient(91deg, rgba(28, 29, 24, 0.028) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 50% -30%, rgba(255, 251, 238, 0.95), transparent 30rem),
    linear-gradient(180deg, rgba(239, 233, 218, 0.99), rgba(228, 220, 203, 0.98));
}

.cta-panel.price-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #232323 0,
    transparent clamp(1.5rem, 3vw, 2.5rem),
    transparent calc(100% - clamp(1.5rem, 3vw, 2.5rem)),
    #232323 100%
  );
}
.cta-panel.price-final-cta > * {
  position: relative;
  z-index: 1;
}
.cta-panel.price-final-cta .price-final-eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-family: var(--font-detail);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-panel.price-final-cta p:not(.price-final-eyebrow) {
  max-width: 24ch;
  margin: 0 auto;
  color: #1c1d18;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.16;
  text-wrap: balance;
}

.cta-panel.price-final-cta .button {
  min-height: 52px;
  padding-inline: 1.6rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(166, 53, 47, 0.26);
}
.cta-panel.price-final-cta .button:hover,
.cta-panel.price-final-cta .button:focus-visible {
  background: #8f332c;
  border-color: #8f332c;
}

.card-grid.price-clarify-grid {
  align-items: stretch;
  gap: clamp(0.9rem, 2vw, 1.25rem);
  margin-top: clamp(3rem, 6.5vw, 5.5rem);
}
.price-clarify-grid .editorial-card {
  padding: clamp(1.15rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}
.price-clarify-grid .editorial-card h3 {
  margin-bottom: 0.55rem;
  color: #f6f2ea;
  font-size: clamp(1.1rem, 1.5vw, 1.22rem);
}
.price-clarify-grid .editorial-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.55;
}

.price-threshold {
  margin-top: clamp(1rem, 2.2vw, 1.75rem);
  padding-top: clamp(0.75rem, 1.8vw, 1.4rem);
  background:
    repeating-linear-gradient(91deg, rgba(245, 240, 229, 0.022) 0 1px, transparent 1px 8px),
    #232323;
}

.price-threshold-columns .price-col-neg p {
  position: relative;
  padding-left: clamp(1.9rem, 3.2vw, 2.4rem);
}
.price-threshold-columns .price-col-neg p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.1em;
  height: 1.1em;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a6352f' stroke-width='3.6' stroke-linecap='round'%3E%3Cpath d='M5 5 19 19M19 5 5 19'/%3E%3C/svg%3E");
}

.price-threshold-columns .price-col-pos p {
  position: relative;
  padding-left: clamp(2.1rem, 3.5vw, 2.7rem);
}
.price-threshold-columns .price-col-pos p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.1em;
  height: 1.1em;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236fa06a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5 10 18 19.5 6.5'/%3E%3C/svg%3E");
}

.price-threshold-columns {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.6rem);
  max-width: none;
  margin-inline: 0;
  margin-top: clamp(2.25rem, 5vw, 4.5rem);
  align-items: start;
}
.price-threshold-columns > div {
  padding-block: 0;
  padding-inline: 0;
  border-radius: 0;
  background: none;
}

.price-threshold-columns .price-col-pos {
  padding-left: clamp(1.5rem, 3vw, 2.4rem);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.price-threshold-lead h2 {
  margin: 0;
}
.price-threshold-columns .price-col-neg p {
  color: rgba(242, 238, 232, 0.5);
}
.price-threshold-columns .price-col-pos p {
  color: #f2ede4;
}
.price-threshold-columns .price-col-pos p:first-of-type {
  color: #fff;
  font-weight: 500;
}
.price-col-head {
  display: block;
  margin: 0 0 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.price-col-head-neg { color: var(--accent); }
.price-col-head-pos { color: #6fa06a; }

@media (max-width: 840px) {
  .price-threshold-columns {
    grid-template-columns: 1fr;
    max-width: none;
    margin-inline: 0;
    row-gap: clamp(1.6rem, 5vw, 2.4rem);
  }
  .price-threshold-columns > div,
  .price-threshold-columns .price-col-pos {
    padding-inline: 0;
    border-left: 0;
  }
  .price-threshold-lead h2 {
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }
}

.price-threshold-columns .price-col-neg {
  border-left: 0;
}

@media (min-width: 841px) {
  .price-threshold-conclusion {
    margin-top: clamp(3rem, 6vw, 5.5rem);
  }
}

.deep-link-grid .preview-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.deep-link-grid .preview-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  background: linear-gradient(90deg, rgba(166, 53, 47, 0.16), rgba(166, 53, 47, 0.03));
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.deep-link-grid .preview-card:hover,
.deep-link-grid .preview-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(166, 53, 47, 0.6);
  border-left-color: var(--accent);
  background: #202020;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}
.deep-link-grid .preview-card:hover::before,
.deep-link-grid .preview-card:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}
.preview-card-arrow {
  align-self: flex-end;
  margin-top: auto;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.deep-link-grid .preview-card:hover .preview-card-arrow,
.deep-link-grid .preview-card:focus-visible .preview-card-arrow {
  transform: translateX(6px);
}

@media (prefers-reduced-motion: reduce) {
  .deep-link-grid .preview-card,
  .deep-link-grid .preview-card::before,
  .preview-card-arrow {
    transition: none;
  }
  .deep-link-grid .preview-card:hover,
  .deep-link-grid .preview-card:focus-visible {
    transform: none;
  }
  .deep-link-grid .preview-card:hover::before,
  .deep-link-grid .preview-card:focus-visible::before {
    transform: scaleX(1);
  }
  .deep-link-grid .preview-card:hover .preview-card-arrow,
  .deep-link-grid .preview-card:focus-visible .preview-card-arrow {
    transform: none;
  }
}

.page-shell.outcome-shell .section.situations-triptych {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3.5rem, 8vw, 7rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  color: #2a271f;
  background:
    repeating-linear-gradient(91deg, rgba(40, 33, 24, 0.03) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 18% -20%, rgba(255, 251, 238, 0.9), transparent 34rem),
    linear-gradient(180deg, rgba(239, 233, 218, 0.99), rgba(228, 220, 203, 0.98));
}

.page-shell.outcome-shell .situations-triptych .triptych-intro {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-shell.outcome-shell .situations-triptych .triptych-eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-shell.outcome-shell .situations-triptych .triptych-intro h2 {
  margin: 0;
  max-width: 20ch;
  color: #211f19;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}
.page-shell.outcome-shell .situations-triptych .triptych-sub {
  max-width: 52ch;
  margin: 1.25rem 0 0;
  color: rgba(42, 39, 31, 0.72);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.page-shell.outcome-shell .situations-triptych .triptych-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(35, 32, 25, 0.16);
}
.page-shell.outcome-shell .situations-triptych .triptych-col {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 3vw, 2.9rem) clamp(1.5rem, 2.5vw, 2.4rem);
}
.page-shell.outcome-shell .situations-triptych .triptych-col:first-child {
  padding-left: 0;
}
.page-shell.outcome-shell .situations-triptych .triptych-col:last-child {
  padding-right: 0;
}
.page-shell.outcome-shell .situations-triptych .triptych-col + .triptych-col {
  border-left: 1px solid rgba(35, 32, 25, 0.16);
}

.page-shell.outcome-shell .situations-triptych .triptych-bignum {
  position: absolute;
  top: -0.12em;
  right: 0.1em;
  z-index: 0;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
  color: #211f19;
  opacity: 0.08;
  pointer-events: none;
}
.page-shell.outcome-shell .situations-triptych .triptych-col > *:not(.triptych-bignum) {
  position: relative;
  z-index: 1;
}

.page-shell.outcome-shell .situations-triptych .triptych-label,
.page-shell.outcome-shell .situations-triptych .triptych-outcome-label {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-shell.outcome-shell .situations-triptych .triptych-label {
  margin-bottom: 0.9rem;
}
.page-shell.outcome-shell .situations-triptych .triptych-title {
  margin: 0 0 1.4rem;
  max-width: 18ch;
  color: #211f19;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-shell.outcome-shell .situations-triptych .triptych-signs {
  margin-bottom: 1.7rem;
}
.page-shell.outcome-shell .situations-triptych .triptych-signs p {
  margin: 0 0 0.4rem;
  color: rgba(42, 39, 31, 0.78);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.page-shell.outcome-shell .situations-triptych .triptych-question {
  margin-bottom: 1.8rem;
  padding-left: clamp(0.95rem, 1.6vw, 1.3rem);
  border-left: 2px solid var(--accent);
}
.page-shell.outcome-shell .situations-triptych .triptych-question p {
  margin: 0 0 0.55rem;
  color: #211f19;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.4;
}
.page-shell.outcome-shell .situations-triptych .triptych-question p:last-child {
  margin-bottom: 0;
}

.page-shell.outcome-shell .situations-triptych .triptych-outcome p:not(.triptych-outcome-label) {
  margin: 0;
  color: #2a271f;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .page-shell.outcome-shell .situations-triptych .triptych-grid {
    grid-template-columns: 1fr;
  }
  .page-shell.outcome-shell .situations-triptych .triptych-col,
  .page-shell.outcome-shell .situations-triptych .triptych-col:first-child,
  .page-shell.outcome-shell .situations-triptych .triptych-col:last-child {
    padding-inline: 0;
    padding-block: clamp(2rem, 7vw, 2.75rem);
  }
  .page-shell.outcome-shell .situations-triptych .triptych-col + .triptych-col {
    border-left: 0;
    border-top: 1px solid rgba(35, 32, 25, 0.16);
  }
  .page-shell.outcome-shell .situations-triptych .triptych-intro h2 { font-size: 34px; }
  .page-shell.outcome-shell .situations-triptych .triptych-sub { font-size: 16px; }
  .page-shell.outcome-shell .situations-triptych .triptych-eyebrow { font-size: 12px; }
  .page-shell.outcome-shell .situations-triptych .triptych-bignum { font-size: 72px; }
  .page-shell.outcome-shell .situations-triptych .triptych-title { font-size: 24px; }
  .page-shell.outcome-shell .situations-triptych .triptych-question p { font-size: 20px; }
  .page-shell.outcome-shell .situations-triptych .triptych-outcome p:not(.triptych-outcome-label) { font-size: 18px; }
  .page-shell.outcome-shell .situations-triptych .triptych-label,
  .page-shell.outcome-shell .situations-triptych .triptych-outcome-label { font-size: 11px; }
  .page-shell.outcome-shell .situations-triptych .triptych-signs p { font-size: 16px; }
}

@media (min-width: 741px) {
  .outcome-hero h1 {
    max-width: 24ch;
  }
}

.outcome-glance .outcome-glance-grid {
  align-items: stretch;
}
.outcome-glance .editorial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
}
.outcome-glance .editorial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  width: 2.4rem;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
}
.outcome-glance .editorial-card h3 {
  margin: 0 0 0.6rem;
  color: #f6f2ea;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.34rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}
.outcome-glance .editorial-card p {
  margin: auto 0 0;
  color: rgba(242, 238, 232, 0.62);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

.outcome-shell .section.outcome-case {
  display: block;
  border: 0;
  padding-block: 0;
  background: none;
}
.outcome-case > div {
  max-width: var(--measure, 680px);
}
.outcome-case > div + div {
  margin-top: clamp(1rem, 2.5vw, 1.6rem);
  padding-left: 0;
  border-left: 0;
}

.en-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: clamp(1.6rem, 3.5vw, 2.8rem) clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.en-opening-copy {
  min-width: 0;
}
.en-opening-copy p {
  max-width: 680px;
  font-size: clamp(1.18rem, 1.55vw, 1.375rem);
  line-height: 1.6;
}
.en-opening-figure {
  margin: 0;
  width: min(100%, 420px);
  justify-self: end;
}
.en-opening-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}
@media (max-width: 767px) {
  .en-opening {
    grid-template-columns: 1fr;
  }

  .en-opening-figure {
    order: -1;
    justify-self: start;
    width: min(100%, 360px);
  }
}

.why-page .portrait {
  position: relative;
  border-color: rgba(242, 238, 232, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}
.why-page .portrait img {
  filter: brightness(0.72) saturate(0.45) contrast(1.04);

  object-position: center bottom;
}
.why-page .portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.3), rgba(20, 18, 15, 0.08) 34%, rgba(20, 18, 15, 0.12) 58%, rgba(20, 18, 15, 0.48));
  box-shadow: inset 0 0 4.5rem rgba(20, 18, 15, 0.45);
}

.home-shell > .cta-panel-with-image {
  border: 0;
}

.clarity-color-experiment .cta-panel.price-final-cta::before {
  display: none;
}
.clarity-color-experiment .cta-panel.price-final-cta {
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 clamp(1.5rem, 3vw, 2.5rem),
    #000 calc(100% - clamp(1.5rem, 3vw, 2.5rem)),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 clamp(1.5rem, 3vw, 2.5rem),
    #000 calc(100% - clamp(1.5rem, 3vw, 2.5rem)),
    transparent 100%
  );
}
.clarity-color-experiment .cta-panel.price-final-cta p:not(.price-final-eyebrow) {
  max-width: 30ch;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.clarity-shell .programme-intro-head {
  margin-top: clamp(4rem, 8vw, 6.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);

  scroll-margin-top: 5.5rem;
}
.clarity-shell .programme-intro-head h2 {
  margin: 0;
  max-width: 24ch;
  color: #f6f2ea;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.14;
}
.clarity-shell .programme-intro-head p {
  max-width: 52ch;
  margin: 0.6rem 0 0;
  color: rgba(242, 238, 232, 0.62);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
}

.clarity-shell .programme-intro-head + .clarity-programme {
  margin-top: 0;
}

.clarity-color-experiment .clarity-programme .programme-intro .programme-speaking-btn {
  margin-top: 2.5rem;
  min-height: 48px;
  padding-inline: 1.5rem;
  background: #1c1d18;
  border-color: #1c1d18;
  color: #efe9da;
  box-shadow: none;
}
.clarity-color-experiment .clarity-programme .programme-intro .programme-speaking-btn:hover,
.clarity-color-experiment .clarity-programme .programme-intro .programme-speaking-btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.site-nav .nav-group a {
  display: block;
  max-width: 30ch;
  padding: 0.45rem 0 0.45rem 0.95rem;
  border-bottom: 0;
  border-left: 2px solid transparent;
  font-size: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-nav .nav-group a:hover,
.site-nav .nav-group a:focus-visible,
.site-nav .nav-group a[aria-current="page"] {
  border-left-color: var(--accent);
}
.site-nav .nav-group a[aria-current="page"] .nav-link-title {
  color: #fffaf4;
}

.nav-link-title {
  display: block;
  font-family: var(--font-heading);

  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.nav-link-arrow {
  display: inline-block;
  margin-left: 0.15em;
  color: var(--accent);
  font-size: 0.82em;
  transition: transform 0.2s ease;
}
.site-nav .nav-group a:hover .nav-link-arrow,
.site-nav .nav-group a:focus-visible .nav-link-arrow {
  transform: translateX(4px);
}
.nav-link-desc {
  display: block;
  margin-top: 0.3rem;
  color: rgba(243, 243, 243, 0.55);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.005em;
}
.nav-group li + li {
  margin-top: 1.05rem;
}

.site-nav .nav-lang {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-detail);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.site-nav .nav-lang a,
.site-nav .nav-lang .nav-lang-current {
  max-width: none;
  padding: 0.15rem 0;
  border-bottom: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1;
}
.site-nav .nav-lang a {
  color: rgba(243, 243, 243, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav .nav-lang a:hover,
.site-nav .nav-lang a:focus-visible {
  color: #fff;
}
.site-nav .nav-lang .nav-lang-current {
  color: #fff;
  border-bottom: 1px solid var(--accent);
}
.nav-lang-sep {
  color: rgba(243, 243, 243, 0.3);
}

.site-nav .nav-group .nav-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: none;
  min-height: 46px;
  margin: 1.6rem 0 0 0.95rem;
  padding: 0.68rem 1.3rem;
  border-bottom: 0;
  border-left: 1px solid var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: var(--fs-btn);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

@media (min-width: 841px) {

  .nav-overlay-grid {
    grid-template-columns: repeat(3, fit-content(21rem));
  }

  .site-nav .nav-lang {
    position: absolute;
    top: clamp(1.5rem, 3.5vh, 2.75rem);
    right: max(1.5rem, calc((100vw - 1360px) / 2));
    z-index: 5;
    height: 52px;
    margin: 0;
  }
}

@media (max-width: 840px) {

  .nav-group + .nav-group {
    margin-top: clamp(1.4rem, 5vw, 1.9rem);
    padding-top: clamp(1.4rem, 5vw, 1.9rem);
    border-top: 1px solid rgba(216, 207, 191, 0.16);
    border-left: 0;
  }
  .site-nav .nav-lang {
    margin: 0.25rem 0 1.6rem;
  }
  .site-nav .nav-group a {
    max-width: none;
    padding: 0.35rem 0 0.35rem 0.85rem;
  }
  .nav-link-title {
    font-size: clamp(1.12rem, 4.4vw, 1.35rem);
  }
  .nav-link-desc {
    font-size: 0.84rem;
  }
  .nav-group li + li {
    margin-top: 0.85rem;
  }
  .site-nav .nav-group .nav-contact-btn {
    margin-left: 0.85rem;
  }
}

.netzwerk-nav .price-nav-card {
  max-width: 560px;
}

.netzwerk-nav .price-nav-desc {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.55;
}
.netzwerk-nav .price-nav-arrow {
  animation: netzwerkArrowNudge 1.8s ease-in-out infinite;
}
.netzwerk-nav .price-nav-card:hover .price-nav-arrow,
.netzwerk-nav .price-nav-card:focus-visible .price-nav-arrow {
  animation: none;
  transform: translateX(6px);
}
@keyframes netzwerkArrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .netzwerk-nav .price-nav-arrow {
    animation: none;
  }
}

.t-mobile { display: none; }
@media (max-width: 620px) {
  .t-mobile { display: inline; }
  .t-desktop { display: none; }

  .page-hero > div,
  .page-hero > :is(.eyebrow, h1, .hero-lead, .hero-actions) {
    max-width: none;
  }
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.4rem);
    line-height: 1.08;
  }
  .page-hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .page-hero .hero-lead {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .home-hero h1 {
    font-size: clamp(2rem, 9vw, 2.4rem);
    line-height: 1.1;
  }
  .home-hero .hero-lead {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .outcome-shell .section.outcome-glance h2 {
    font-size: 2.1rem;
  }
  .why-page .page-shell > .section h2 {
    font-size: clamp(1.9rem, 9vw, 2.2rem);
  }

  .why-page .cta-panel-image {
    width: 100%;
    max-width: none;
  }
}

.nav-masthead {
  grid-column: 1 / -1;
  margin: 0 0 clamp(1.4rem, 3vh, 2.2rem);
  padding-bottom: clamp(1.1rem, 2.5vh, 1.6rem);
  border-bottom: 1px solid rgba(216, 207, 191, 0.18);
}
.nav-masthead-name {
  margin: 0;
  color: #fffaf4;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.nav-masthead-role {
  margin: 0.45rem 0 0;
  color: #d66158;
  font-family: var(--font-detail);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-bio {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.2rem 0 1.1rem;
  padding-left: 0.95rem;
}
.nav-bio img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.nav-bio-who strong {
  display: block;
  color: #fffaf4;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
}
.nav-bio-who span {
  display: block;
  margin-top: 0.15rem;
  color: rgba(243, 243, 243, 0.55);
  font-family: var(--font-body);
  font-size: 0.74rem;
}
@media (max-width: 840px) {
  .nav-bio {
    padding-left: 0.85rem;
  }
}

.footer-social {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.35rem;
  color: rgba(242, 238, 232, 0.72);
  transition: color 0.2s ease;
}
.footer-social + .footer-social {
  margin-left: 0.45rem;
}
.footer-social:first-of-type {
  margin-left: -0.35rem;
}

@media (max-width: 620px) {
  .footer-social {
    padding: 0.75rem;
  }
  .footer-social + .footer-social {
    margin-left: 0.15rem;
  }
  .footer-social:first-of-type {
    margin-left: -0.75rem;
  }
}
.footer-social svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-social:hover,
.footer-social:focus-visible {
  color: #fffaf4;
}

.faq-group h2 {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.faq-list {
  max-width: 760px;
  border-top: 1px solid rgba(216, 207, 191, 0.18);
}
.faq-item {
  border-bottom: 1px solid rgba(216, 207, 191, 0.18);
}
.faq-item summary {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0.15rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary h3 {
  margin: 0;
  color: #f2eee8;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
.faq-chevron {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-right: 2px solid #d66158;
  border-bottom: 2px solid #d66158;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(225deg);
}
.faq-item summary:hover h3,
.faq-item summary:focus-visible h3 {
  color: #fffaf4;
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.faq-item > p {
  max-width: 680px;
  margin: 0;
  padding: 0 0.15rem 1.3rem;
  color: rgba(242, 238, 232, 0.78) !important;
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
}
.faq-more {
  margin-top: 1.4rem;
}
.faq-more a {
  color: #d66158;
  font-family: var(--font-detail);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.faq-more a:hover,
.faq-more a:focus-visible {
  color: #e88c83;
}
@media (prefers-reduced-motion: reduce) {
  .faq-chevron {
    transition: none;
  }
}

.person-photo {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.person-card .person-copy h3 {
  margin: 0 0 0.35rem;
  color: #f6f2ea;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 400;
}

.page-shell .person-section .person-card p.person-role {
  max-width: none;
  margin: 0 0 0.9rem;
  color: #d66158;
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.page-shell .person-section .person-card .person-copy p:not(.person-role) {
  max-width: 62ch;
  margin: 0;
  color: rgba(242, 238, 232, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
}
@media (max-width: 620px) {
  .person-photo {
    max-width: 160px;
  }
}

a.person-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
a.person-card:hover,
a.person-card:focus-visible {
  border-color: rgba(166, 53, 47, 0.56);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}
a.person-card:hover .person-copy h3,
a.person-card:focus-visible .person-copy h3 {
  color: #fffaf4;
}
a.person-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.consent-banner {
  position: fixed;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 1rem;
  left: max(1rem, calc((100vw - var(--max)) / 2));
  z-index: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(216, 207, 191, 0.24);
  border-radius: var(--radius);
  background: rgba(24, 24, 24, 0.97);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.consent-banner .consent-text {
  max-width: 62ch;
  margin: 0;
  color: rgba(242, 238, 232, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}
.consent-banner .consent-text a {
  color: #d66158;
}
.consent-actions {
  display: flex;
  gap: 0.6rem;
}
.consent-banner .button {
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
}
@media (max-width: 620px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .consent-actions {
    flex-direction: column;
  }
  .consent-actions .button {
    width: 100%;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(166, 53, 47, 0.56);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.blog-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.25rem;
}
.blog-card-date {
  margin: 0;
  color: rgba(242, 238, 232, 0.55);
  font-family: var(--font-detail);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-card h2 {
  margin: 0;
  color: #f6f2ea;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.22;
}
.page-shell .section .blog-card p {
  max-width: none;
  margin: 0;
  color: rgba(242, 238, 232, 0.68);
  font-size: 0.98rem;
  line-height: 1.55;
}
.blog-card-arrow {
  margin-top: auto;
  padding-top: 0.4rem;
  color: #d66158;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.blog-card:hover .blog-card-arrow,
.blog-card:focus-visible .blog-card-arrow {
  transform: translateX(5px);
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.article-hero-image {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.article-hero-image img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.article-body {
  max-width: 680px;
}
.page-shell .section.article-section h2 {
  margin: clamp(2rem, 4vw, 2.8rem) 0 1rem;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}
.article-body p {
  margin: 0 0 1.2rem;
}
.article-body blockquote {
  margin: 2rem 0;
  padding: 0.4rem 0 0.4rem 1.2rem;
  border-left: 2px solid var(--accent);
  color: #f2eee8;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-style: normal;
  line-height: 1.4;
}
.article-back {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.article-back a {
  color: #d66158;
  font-family: var(--font-detail);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.article-back a:hover,
.article-back a:focus-visible {
  color: #e88c83;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  justify-content: space-between;
  margin-top: clamp(0.8rem, 2vw, 1.4rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(242, 238, 232, 0.12);
}
.footer-legal p {
  margin: 0;
  color: rgba(242, 238, 232, 0.45);
  font-family: var(--font-detail);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.footer-legal a {
  color: rgba(242, 238, 232, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 238, 232, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fffaf4;
  border-bottom-color: rgba(255, 250, 244, 0.6);
}

.impressum-content .impressum-block {
  padding: clamp(1.6rem, 3vw, 2.2rem) 0;
  border-top: 1px solid rgba(216, 207, 191, 0.14);
}
.impressum-content .impressum-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.page-shell .section.impressum-content h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}
.page-shell .section.impressum-content p {
  max-width: 62ch;
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
}
.page-shell .section.impressum-content p:last-child {
  margin-bottom: 0;
}
.impressum-content a {
  color: #d66158;
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 97, 88, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.impressum-content a:hover,
.impressum-content a:focus-visible {
  color: #e88c83;
  border-bottom-color: rgba(232, 140, 131, 0.7);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 500;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 3px solid #fffaf4;
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid #e88c83;
  outline-offset: 3px;
}

.eyebrow,
.home-shell .responsibility-note .responsibility-note-inner .eyebrow,
.home-shell .home-opening .home-opening-copy .eyebrow,
.price-glance-card-accent .price-glance-num,
.price-glance-card-cta,
.price-glance-links a,
.price-longread-collapse:focus-visible,
.price-longread-collapse-icon,
.price-shell .section.price-longread-intro .eyebrow,
.outcome-shell .section.outcome-vertiefung .eyebrow,
.longread-threshold .longread-label,
.outcome-shell .section.outcome-case .outcome-case-kicker,
.text-link,
.form-privacy-note a,
.clarity-color-experiment .clarity-thesen .thesen-head .thesen-eyebrow,
.price-shell .section.price-outro .price-outro-eyebrow,
.price-nav-label,
.price-nav-arrow,
.price-col-head-neg,
.preview-card-arrow,
.nav-link-arrow {
  color: #d66158;
}

.clarity-color-experiment .clarity-programme .programme-sub {
  color: rgba(30, 30, 26, 0.74);
}
.clarity-color-experiment .clarity-programme .programme-label {
  color: rgba(30, 30, 26, 0.68);
}

.footer-legal p {
  color: rgba(242, 238, 232, 0.58);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.45);
}

.contact-details dd a {
  color: #d66158;
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 97, 88, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-details dd a:hover,
.contact-details dd a:focus-visible {
  color: #e88c83;
  border-bottom-color: rgba(232, 140, 131, 0.7);
}

.home-fit .home-fit-inner {
  max-width: 680px;
  margin: 0 auto;
}

.home-fit h2 {
  max-width: 22ch;
}

.home-fit .home-fit-lead {
  margin-top: 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d66158;
}

.home-fit .home-fit-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.home-fit .home-fit-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.7rem;
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
  line-height: 1.55;
}

.home-fit .home-fit-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #d66158;
}

.home-fit .home-fit-closing {
  margin-top: 1.6rem;
  font-family: var(--font-display, inherit);
  font-size: 1.15rem;
  line-height: 1.5;
}

.home-fit .button {
  margin-top: 1.6rem;
}

.clarity-color-experiment .clarity-thesen .thesen-grid .thesen-sub {

  grid-column: 2;
  margin: 0.55rem 0 0;
  max-width: 36ch;
  color: rgba(242, 237, 228, 0.62);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
}

.kurzprofil .kurzprofil-block {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.kurzprofil .kurzprofil-block h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

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

.kurzprofil .kurzprofil-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  line-height: 1.55;
}

.kurzprofil .kurzprofil-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #d66158;
}

.kurzprofil .kurzprofil-clients {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.7;
}

.netzwerk-warum .netzwerk-warum-key {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(242, 238, 232, 0.14);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
}

.home-hero.eye-hero {
  padding-block: clamp(2.5rem, 4vw, 3.25rem);
}

.lead-rotator {
  position: relative;
  margin-top: 1.65rem;
  max-width: 520px;
}

.lead-rotator .hero-lead.lead-rot-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lead-rotator .hero-lead.lead-rot-slide.is-active {
  opacity: 1;
}

.lead-rot-controls {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.lead-rot-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(242, 238, 232, 0.45);
  border-radius: 50%;
  color: rgba(242, 238, 232, 0.85);
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lead-rot-pause:hover,
.lead-rot-pause:focus-visible {
  border-color: #e88c83;
  color: #e88c83;
}

.lead-rot-dots {
  display: inline-flex;
}

.lead-rot-dot {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lead-rot-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(242, 238, 232, 0.32);
  transition: background 0.2s ease;
}

.lead-rot-dot:hover::after,
.lead-rot-dot:focus-visible::after {
  background: rgba(232, 140, 131, 0.7);
}

.lead-rot-dot.is-active::after {
  background: #d66158;
}

@media (max-width: 620px) {
  .lead-rot-controls {
    gap: 0.4rem;
  }

  .lead-rot-pause {
    width: 44px;
    height: 44px;
  }

  .lead-rot-dot {
    width: 28px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-rotator .hero-lead.lead-rot-slide {
    transition: none;
  }
}

.deep-link-grid .preview-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.faq-group .faq-list .faq-item > p {
  padding-bottom: 0.9rem;
}
.faq-group .faq-list .faq-item > p + p {
  margin-top: 0;
}
.faq-group .faq-list .faq-item > p:last-of-type {
  padding-bottom: 1.3rem;
}

.home-shell .responsibility-note .responsibility-note-sectors {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.contact-form .form-consent input[type="checkbox"] {
  flex: none;
  width: 1.2rem;
  height: 1.2rem;
  min-height: 0;
  margin-top: 0.15rem;
  padding: 0;
  accent-color: #a6352f;
  border-radius: 3px;
  cursor: pointer;
}

.contact-form .form-consent label {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.contact-form .form-consent a {
  color: #d66158;
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 97, 88, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-form .form-consent a:hover,
.contact-form .form-consent a:focus-visible {
  color: #e88c83;
  border-bottom-color: rgba(232, 140, 131, 0.7);
}

.contact-form .form-required {
  color: #d66158;
}

.home-shell .responsibility-note .responsibility-note-inner .responsibility-note-closing {
  margin-top: clamp(1.1rem, 2.2vw, 1.6rem);
  color: #f2ede4;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  max-width: 30ch;
  text-wrap: balance;
}

.responsibility-note-closing .responsibility-note-underlined::after {
  width: 55%;
  min-width: 10rem;
  margin-top: clamp(0.9rem, 1.8vw, 1.4rem);
  background-position: left top;
  opacity: 1;
}

.home-shell .responsibility-note .responsibility-note-tags {
  gap: 0.65rem;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border: 1px solid rgba(242, 238, 232, 0.16);
  background: rgba(255, 255, 255, 0.018);
}

.newsletter-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.newsletter-copy h2 {
  margin: 0 0 1rem;
}

.newsletter-gate p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.newsletter-form-slot {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f2ede4;
  border-radius: 4px;
}

.newsletter-form-slot form[id^="_form_"] {
  font-family: var(--font-body) !important;
  background: transparent !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.newsletter-form-slot form[id^="_form_"] ._form-label {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  color: #1e1e1a !important;
}
.newsletter-form-slot form[id^="_form_"] input[type="text"] {
  font-family: var(--font-body) !important;
}

@media (max-width: 840px) {
  .newsletter-panel {

    grid-template-columns: minmax(0, 1fr);
    padding: 1.25rem;
  }

  .newsletter-form-slot {
    padding: 0.9rem;
  }

  .newsletter-form-slot .g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
  }
}

.newsletter-form-slot ._field_header,
.newsletter-form-slot ._field_html {
  display: none !important;
}

@media (max-width: 620px) {
  .home-hero .hero-proof li {
    display: block;
    white-space: normal;
  }
}

.en-glance .outcome-glance-grid {
  align-items: start;
}
.en-glance .editorial-card {
  height: auto;
}

.page-shell .en-glance .outcome-glance-grid .editorial-card p + p {
  margin-top: 0.9rem;
}

.klaro {
  --font-family: var(--font-body);
  --title-font-family: var(--font-display);
  --font-size: 15px;
  --border-radius: 4px;
  --green1: #a6352f;
  --green2: #8d2d28;
  --blue1: #d66158;
  --dark1: #232323;
  --dark2: #2b2b2b;
  --dark3: #333333;
  --button-text-color: #fbf6ee;
  --notice-max-width: 26rem;
}

.klaro .cookie-notice,
.klaro .cookie-modal .cm-modal {
  border: 1px solid rgba(242, 238, 232, 0.16);
}

.klaro .cookie-modal .title,
.klaro .cookie-notice .title {
  font-family: var(--font-display) !important;
  font-size: 1.45rem !important;
  line-height: 1.2 !important;
}

.klaro label,
.klaro .cm-list-label,
.klaro .cm-list-title {
  font-family: var(--font-body) !important;
}

.klaro .cm-list-title {
  font-weight: 600 !important;
}

.klaro .cm-list-description,
.klaro .purposes {
  color: rgba(242, 238, 232, 0.72) !important;
  opacity: 1 !important;
}

.klaro .cm-btn.cm-btn-success,
.klaro .cm-btn.cm-btn-accept,
.klaro .cm-btn.cm-btn-accept-all {
  background: #a6352f !important;
  color: #fbf6ee !important;
}

.klaro .cm-btn.cm-btn-success:hover,
.klaro .cm-btn.cm-btn-accept:hover,
.klaro .cm-btn.cm-btn-accept-all:hover {
  background: #8d2d28 !important;
}

.home-hero .hero-proof li:not(:last-child)::after {
  display: none;
}

.page-shell > .section.impressum-content {
  opacity: 1;
  transform: none;
  animation: none;
}

.newsletter-form-slot .newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.2rem 0 1rem;
}

.newsletter-form-slot .newsletter-consent input[type="checkbox"] {
  flex: none;
  width: 1.15rem !important;
  height: 1.15rem;
  min-height: 0;
  margin: 0.15rem 0 0;
  padding: 0;
  accent-color: #a6352f;
  cursor: pointer;
}

.newsletter-form-slot .newsletter-consent label {
  margin: 0;
  color: rgba(30, 30, 26, 0.82) !important;
  font-family: var(--font-body) !important;
  font-size: 0.86rem !important;
  font-weight: 400 !important;
  line-height: 1.5;
  cursor: pointer;
}

.newsletter-form-slot .newsletter-consent a {
  color: #a6352f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-form-slot .newsletter-consent-hint {
  margin: 0.6rem 0 0;
  color: #a6352f !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  line-height: 1.45;
}

.newsletter-panel .newsletter-copy p.newsletter-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.eye-hero h1 .h1-kicker {
  display: block;
  width: max-content;
  max-width: min(620px, 50vw);
  line-height: 1.62;
}

@media (max-width: 840px) {
  .eye-hero h1 .h1-kicker {
    width: auto;
    max-width: 28ch;
  }
}

@media (max-width: 620px) {

  .eye-hero h1 .h1-kicker {
    max-width: none;
    line-height: 1.35;
  }
}

.card-grid.card-grid-2col {
  align-items: stretch;
}

@media (min-width: 981px) {
  .card-grid.card-grid-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card-grid-2col .editorial-card,
.card-grid-padded .editorial-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

@media (max-width: 620px) {
  .media-hero .hero-actions {
    max-width: 360px;
  }
}

@media (min-width: 621px) and (max-height: 820px) {

  .home-hero.eye-hero {
    padding-block: 2rem;
  }

  .eye-hero .lead-rotator {
    margin-top: 1rem;
  }

  .eye-hero .hero-lead {
    line-height: 1.4;
  }

  .eye-hero .lead-rot-controls {
    margin-top: 0.8rem;
  }

  .home-hero .hero-proof {
    margin-top: 1rem;
  }

  .home-hero .button {
    margin-top: 1rem;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .home-hero.eye-hero h1 {
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  }
}

@media (min-width: 621px) and (max-height: 820px) {
  .page-hero {
    padding-block: 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 3.9vw, 3.5rem);
  }

  .page-hero .hero-lead {
    margin-top: 0.75rem;
    line-height: 1.4;
  }

  .page-hero .hero-actions,
  .page-hero > .button {
    margin-top: 1rem;
  }
}

.page-shell .en-glance .outcome-glance-grid .editorial-card p {
  color: rgba(243, 243, 243, 0.78);
  font-size: 1.0625rem;
  line-height: 1.62;
}

.page-hero h1 .h1-kicker {
  display: block;
  max-width: 100%;
  line-height: 1.62;
}

@media (max-width: 620px) {
  .page-hero h1 .h1-kicker {
    line-height: 1.35;
  }
}

.mediation-hero {
  background:
    var(--hero-overlay),
    url("../images/WieIchArbeite.jpg") center / cover no-repeat,
    var(--hero-bg);
}

.speaking-programme {

  --sp-panel:
    radial-gradient(circle at 18% -12%, rgba(255, 251, 238, 0.95), transparent 34rem),
    linear-gradient(180deg, rgba(239, 233, 218, 0.99), rgba(227, 219, 202, 0.98));
  --sp-ink: #1b1c18;
  --sp-ink-body: rgba(30, 30, 26, 0.74);
  --sp-ink-soft: rgba(30, 30, 26, 0.66);
  --sp-ink-muted: rgba(30, 30, 26, 0.68);
  --sp-ink-faint: rgba(30, 30, 26, 0.5);
  --sp-rule: rgba(30, 30, 26, 0.14);
  --sp-accent: var(--accent);
  --sp-hover: linear-gradient(90deg, rgba(166, 53, 47, 0.1), rgba(166, 53, 47, 0.02));
  --sp-btn-bg: #1c1d18;
  --sp-btn-ink: #efe9da;

  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: clamp(2.75rem, 6vw, 5.5rem) max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: var(--sp-panel);
}

.page-shell > .section.speaking-programme {
  color: var(--sp-ink);
}

.speaking-programme .programme-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.page-shell > .section.speaking-programme .programme-eyebrow {
  margin: 0 0 1rem;
  color: var(--sp-accent);
  font-family: var(--font-detail);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-shell > .section.speaking-programme .programme-intro h2 {
  margin: 0 0 1rem;
  max-width: 18ch;
  color: var(--sp-ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.page-shell > .section.speaking-programme .programme-sub {
  max-width: 34ch;
  margin: 0 0 1.9rem;
  color: var(--sp-ink-body);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.page-shell > .section.speaking-programme .programme-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  color: var(--sp-ink-muted);
  font-family: var(--font-detail);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.speaking-programme .programme-label-rule {
  width: 2.6rem;
  height: 1px;
  background: var(--sp-accent);
}

.speaking-programme .programme-intro .programme-speaking-btn {
  margin-top: 2.5rem;
  min-height: 48px;
  padding-inline: 1.5rem;
  border-color: var(--sp-btn-bg);
  background: var(--sp-btn-bg);
  color: var(--sp-btn-ink);
  box-shadow: none;
}

.speaking-programme .programme-intro .programme-speaking-btn:hover,
.speaking-programme .programme-intro .programme-speaking-btn:focus-visible {
  border-color: var(--sp-accent);
  background: var(--sp-accent);
  color: #fff;
}

.speaking-programme .programme-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--sp-rule);
}

.speaking-programme .programme-row {
  border-bottom: 1px solid var(--sp-rule);
}

.speaking-programme .programme-link {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  padding: clamp(1.1rem, 2vw, 1.7rem) clamp(0.4rem, 1.4vw, 1.1rem);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.speaking-programme .programme-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  background: var(--sp-hover);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.speaking-programme .programme-link:hover::before,
.speaking-programme .programme-link:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.speaking-programme .programme-link:focus-visible {
  outline: 2px solid var(--sp-accent);
  outline-offset: 3px;
}

.speaking-programme .programme-num {
  align-self: start;
  padding-top: 0.35rem;
  color: var(--sp-accent);
  font-family: var(--font-detail);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.speaking-programme .programme-title {
  display: block;
  color: var(--sp-ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.16;
  text-wrap: balance;
}

.speaking-programme .programme-desc {
  display: block;
  margin-top: 0.55rem;
  max-width: 56ch;
  color: var(--sp-ink-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.speaking-programme .programme-kicker {
  display: block;
  margin-top: 0.5rem;
  color: var(--sp-ink-faint);
  font-family: var(--font-detail);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.speaking-programme .programme-arrow {
  align-self: center;
  color: var(--sp-accent);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.speaking-programme .programme-link:hover .programme-arrow,
.speaking-programme .programme-link:focus-visible .programme-arrow {
  transform: translateX(7px);
}

@media (min-width: 900px) {
  .speaking-programme .programme-inner {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.7fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .speaking-programme .programme-link::before {
    transform: none;
    transition: opacity 0.2s ease;
  }

  .speaking-programme .programme-arrow {
    transition: none;
  }

  .speaking-programme .programme-link:hover .programme-arrow,
  .speaking-programme .programme-link:focus-visible .programme-arrow {
    transform: none;
  }
}

.speaking-hero {
  background:
    var(--hero-overlay),
    url("../images/Ronny-Barthel_Portrait-Doro_03.jpg") 70% 15% / cover no-repeat,
    var(--hero-bg);
}

.clarity-color-experiment .clarity-programme .programme-teaser-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(30, 30, 26, 0.14);
}

.clarity-color-experiment .clarity-programme .programme-teaser-list li {
  border-bottom: 1px solid rgba(30, 30, 26, 0.14);
}

.clarity-color-experiment .clarity-programme .programme-teaser-link {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  padding: clamp(0.85rem, 1.5vw, 1.15rem) clamp(0.4rem, 1.4vw, 1.1rem);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.clarity-color-experiment .clarity-programme .programme-teaser-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  background: linear-gradient(90deg, rgba(166, 53, 47, 0.1), rgba(166, 53, 47, 0.02));
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.clarity-color-experiment .clarity-programme .programme-teaser-link:hover::before,
.clarity-color-experiment .clarity-programme .programme-teaser-link:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.clarity-color-experiment .clarity-programme .programme-teaser-link::after {
  content: "\2192";
  color: var(--accent);
  font-size: 1.05rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.clarity-color-experiment .clarity-programme .programme-teaser-link:hover::after,
.clarity-color-experiment .clarity-programme .programme-teaser-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.clarity-color-experiment .clarity-programme .programme-teaser-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.clarity-color-experiment .clarity-programme .programme-teaser-link .programme-num {
  align-self: baseline;
  padding-top: 0;
}

.clarity-color-experiment .clarity-programme .programme-teaser-title {
  color: #1b1c18;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.2;
  text-wrap: balance;
}

.clarity-color-experiment .clarity-programme .programme-teaser a.programme-teaser-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.25rem, 2.5vw, 1.9rem);
  padding: 1rem 1.25rem;
  border: 1px solid #1c1d18;
  color: #1c1d18;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.clarity-color-experiment .clarity-programme .programme-teaser a.programme-teaser-more:hover,
.clarity-color-experiment .clarity-programme .programme-teaser a.programme-teaser-more:focus-visible {
  background: #1c1d18;
  color: #efe9da;
}

.clarity-color-experiment .clarity-programme .programme-teaser a.programme-teaser-more:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.clarity-color-experiment .clarity-programme .programme-teaser-more .programme-arrow {
  transition: transform 0.3s ease;
}

.clarity-color-experiment .clarity-programme .programme-teaser-more:hover .programme-arrow,
.clarity-color-experiment .clarity-programme .programme-teaser-more:focus-visible .programme-arrow {
  transform: translateX(7px);
}

@media (prefers-reduced-motion: reduce) {
  .clarity-color-experiment .clarity-programme .programme-teaser-link::before {
    transform: none;
    transition: opacity 0.2s ease;
  }

  .clarity-color-experiment .clarity-programme .programme-teaser-link::after,
  .clarity-color-experiment .clarity-programme .programme-teaser-more .programme-arrow {
    transition: none;
    transform: none;
  }
}

.speaking-programme .programme-row {
  scroll-margin-top: 5.5rem;
}

.speaking-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.5vw, 0.9rem);
  max-width: 520px;
  margin: clamp(1.6rem, 3vw, 2.2rem) 0 0;
}

@media (min-width: 981px) {
  .speaking-photos {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 1050px;
  }
}
@media (max-width: 620px) {
  .speaking-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }
}
.speaking-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
