:root {
  --obsidian-0: #050505;
  --obsidian-1: #080808;
  --obsidian-2: #0b0b0b;
  --obsidian-3: #0f0f0f;
  --platinum: #f0f0f0;
  --platinum-soft: #c9c9c9;
  --gold-1: #a7831a;
  --gold-2: #d4af37;
  --gold-3: #e7c453;
  --gold-4: #f2d06b;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(184, 145, 78, 0.55);
  --glass: rgba(22, 22, 22, 0.68);
  --surface-1: rgba(18, 18, 18, 0.78);
  --surface-2: rgba(12, 12, 12, 0.86);
  --gold-glow: rgba(242, 208, 107, 0.26);
  --cl-scroll-progress: 0;
  --cl-pointer-x: 50%;
  --cl-pointer-y: 18%;
  --cl-active-section: 0;
  --shadow: 0 26px 64px rgba(0, 0, 0, 0.45);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--platinum);
  background:
    radial-gradient(circle at 9% -12%, rgba(212, 175, 55, 0.14), transparent 34%),
    radial-gradient(circle at 94% 118%, rgba(212, 175, 55, 0.08), transparent 38%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #0f0f0f 100%);
  line-height: 1.65;
  min-height: 100%;
  padding-bottom: 84px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 130px 130px;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: -18% -12%;
  pointer-events: none;
  z-index: -3;
  background:
    conic-gradient(from calc(var(--cl-scroll-progress) * 360deg) at 50% 50%, rgba(242, 208, 107, 0.08), rgba(242, 208, 107, 0), rgba(242, 208, 107, 0.08)),
    radial-gradient(circle at 50% 50%, rgba(242, 208, 107, 0.1), rgba(242, 208, 107, 0) 62%);
  filter: blur(36px) saturate(108%);
  opacity: calc(0.36 + (var(--cl-active-section) * 0.02));
  animation: clAuroraRotate 22s linear infinite;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(242, 208, 107, 0.9);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(242, 208, 107, 0.2);
}

.cl-site {
  position: relative;
  overflow: clip;
}

.cl-mesh {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 72vh;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(240, 216, 163, 0.16), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(184, 145, 78, 0.15), transparent 36%),
    radial-gradient(circle at 56% 64%, rgba(255, 255, 255, 0.05), transparent 42%);
  filter: blur(22px) saturate(110%);
  animation: clMeshFloat 14s ease-in-out infinite alternate;
}

.cl-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cl-orbs span {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.2;
  background: radial-gradient(circle, rgba(242, 208, 107, 0.38), rgba(242, 208, 107, 0));
  animation: clOrbFloat 12s ease-in-out infinite alternate;
}

.cl-orbs span:nth-child(1) {
  width: 240px;
  height: 240px;
  left: 6%;
  top: 22%;
}

.cl-orbs span:nth-child(2) {
  width: 320px;
  height: 320px;
  right: 7%;
  top: 40%;
  animation-delay: 1.4s;
}

.cl-orbs span:nth-child(3) {
  width: 200px;
  height: 200px;
  right: 18%;
  top: 76%;
  animation-delay: 2.1s;
}

.cl-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}

.cl-watermark-logo {
  position: fixed;
  right: -48px;
  bottom: 9vh;
  width: clamp(220px, 26vw, 420px);
  height: auto;
  pointer-events: none;
  opacity: 0.08;
  filter: saturate(1.1) contrast(1.06) drop-shadow(0 0 44px rgba(242, 208, 107, 0.18));
  z-index: -1;
  transform: translate3d(0, var(--wm-y, 0px), 0) scale(var(--wm-scale, 1)) rotate(var(--wm-rot, 0deg));
  rotate: 0deg;
  animation: clWatermarkRotate 34s linear infinite;
}

.cl-cursor-aura,
.cl-cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 110;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cl-cursor-aura {
  width: 160px;
  height: 160px;
  margin-left: -80px;
  margin-top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 208, 107, 0.2) 0%, rgba(242, 208, 107, 0.07) 38%, rgba(242, 208, 107, 0) 70%);
  filter: blur(8px);
}

.cl-cursor-dot {
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-4));
  box-shadow: 0 0 20px rgba(242, 208, 107, 0.65), 0 0 0 1px rgba(8, 8, 8, 0.7);
}

.cl-preloader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(240, 216, 163, 0.12), rgba(7, 7, 7, 0.96) 42%),
    #080808;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

html.cl-js .cl-preloader {
  display: grid;
}

.cl-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.cl-preloader-inner {
  text-align: center;
}

.cl-preloader-brand {
  margin: 0;
  font-family: "Playfair Display", "Domine", serif;
  font-size: clamp(2rem, 6.8vw, 4.5rem);
  color: #f4dfb5;
  letter-spacing: 0.08em;
}

.cl-preloader-line {
  margin: 12px 0 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d5b988;
  font-size: 0.8rem;
}

.cl-preloader-line::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: min(320px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 216, 163, 0), rgba(240, 216, 163, 0.95), rgba(240, 216, 163, 0));
  animation: clPulseLine 1.8s ease-in-out infinite;
}

.cl-spotlight {
  position: fixed;
  width: 46vmax;
  height: 46vmax;
  left: 50%;
  top: 12%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.34;
  background: radial-gradient(circle, rgba(240, 216, 163, 0.16) 0%, rgba(240, 216, 163, 0.06) 28%, rgba(240, 216, 163, 0.01) 56%, rgba(240, 216, 163, 0) 72%);
  filter: blur(8px);
  transition: transform 0.12s linear, opacity 0.35s ease;
}

.cl-float-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 75;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(240, 216, 163, 0.2);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.76);
  backdrop-filter: blur(8px);
}

.cl-float-rail a {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e6d2a3;
  background: rgba(255, 255, 255, 0.03);
}

.cl-float-rail a span {
  position: absolute;
  right: 46px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(240, 216, 163, 0.3);
  background: rgba(12, 12, 12, 0.9);
  color: #f0d8a3;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cl-float-rail a:hover span,
.cl-float-rail a:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.cl-float-rail a.is-active {
  border-color: rgba(240, 216, 163, 0.72);
  box-shadow: 0 0 0 2px rgba(240, 216, 163, 0.16), 0 0 18px rgba(240, 216, 163, 0.26);
}

.cl-site > .cl-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

.cl-site [id] {
  scroll-margin-top: 110px;
}

.cl-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cl-skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  background: #111;
  border: 1px solid var(--gold-4);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.cl-skip-link:focus {
  left: 12px;
}

.cl-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cl-orbit-base,
.cl-orbit-progress {
  fill: none;
  stroke-linecap: round;
}

.cl-orbit-base {
  stroke: url(#orbitBase);
  stroke-width: 1.2;
}

.cl-orbit-progress {
  stroke: url(#orbitGlow);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 9px rgba(240, 216, 163, 0.4));
  animation: clOrbitPulse 5.8s ease-in-out infinite;
}

.cl-orbit-node {
  fill: #f2d06b;
  filter: drop-shadow(0 0 10px rgba(242, 208, 107, 0.9));
  opacity: 0.92;
}

.cl-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.82));
  backdrop-filter: blur(10px);
}

.cl-scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.cl-scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-4));
}

.cl-nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cl-scroll-hud {
  display: none;
  min-width: 78px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(242, 208, 107, 0.25);
  background: rgba(10, 10, 10, 0.78);
  text-align: right;
}

.cl-scroll-hud span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: #c6c6c6;
}

.cl-scroll-hud strong {
  display: block;
  font-size: 0.92rem;
  color: #f0d8a3;
  letter-spacing: 0.05em;
}

.cl-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cl-brand img {
  border-radius: 10px;
}

.cl-brand-logo {
  box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.28), 0 8px 24px rgba(0, 0, 0, 0.38), 0 0 24px rgba(242, 208, 107, 0.2);
}

.cl-top-nav {
  display: none;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.cl-top-nav a {
  color: #d3d3d3;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
}

.cl-top-nav a:hover,
.cl-top-nav a.is-active {
  color: #fff6e3;
  border-bottom-color: rgba(240, 216, 163, 0.7);
}

.cl-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 107, 0.28);
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(8px);
}

.cl-lang-switch button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #cccccc;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.cl-lang-switch button:hover {
  color: #fff0cd;
}

.cl-lang-switch button.is-active {
  color: #141414;
  background: linear-gradient(130deg, var(--gold-1), var(--gold-2), var(--gold-4));
  box-shadow: 0 6px 18px rgba(184, 145, 78, 0.35);
}

.cl-nav-cta,
.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.cl-btn-gear {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 999px;
  border: 1px solid rgba(12, 12, 12, 0.45);
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.1));
  font-size: 0.68rem;
  line-height: 1;
  transform-origin: 50% 50%;
}

.cl-btn.is-engaging .cl-btn-gear {
  animation: clGearEngage 520ms cubic-bezier(0.16, 0.84, 0.3, 1);
}

.cl-nav-cta {
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.18), transparent 42%),
    rgba(184, 145, 78, 0.12);
  text-transform: uppercase;
  font-size: 0.82rem;
  animation: clCtaPulse 4.8s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.cl-nav-cta:hover,
.cl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.cl-btn-primary {
  border: 1px solid rgba(240, 216, 163, 0.32);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  color: #141414;
  position: relative;
  overflow: hidden;
  animation: clCtaPulse 3.4s ease-in-out infinite;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cl-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 247, 225, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: clButtonSweep 4.2s ease-in-out infinite;
}

.cl-btn-primary::after {
  content: "";
  position: absolute;
  inset: -24%;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 241, 201, 0.34), rgba(255, 241, 201, 0) 62%);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cl-btn-primary:hover::after,
.cl-btn-primary:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.cl-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: var(--platinum);
}

.cl-magnetic {
  position: relative;
  transform: translate3d(0, 0, 0);
}

.cl-magnetic::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(240, 216, 163, 0.28), rgba(240, 216, 163, 0));
  transition: opacity 0.25s ease;
}

.cl-magnetic:hover::after,
.cl-magnetic:focus-visible::after {
  opacity: 1;
}

.cl-manifesto {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(184, 145, 78, 0.2), transparent 42%),
    linear-gradient(180deg, #050505 0%, #0f0f0f 100%);
}

.cl-manifesto-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: contrast(1.14) saturate(0.72) brightness(0.76);
}

.cl-manifesto-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(240, 216, 163, 0.18), rgba(6, 6, 6, 0.88) 45%),
    #090909;
}

.cl-manifesto-fallback img {
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
}

.cl-fallback-logo {
  width: clamp(120px, 18vw, 180px);
  height: auto;
}

.cl-manifesto-fallback p {
  margin: 0;
  max-width: 58ch;
  color: #e2d3b1;
}

.cl-manifesto.has-video .cl-manifesto-fallback {
  display: none;
}

.cl-manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.75), rgba(6, 6, 6, 0.45) 40%, rgba(6, 6, 6, 0.82));
}

.cl-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    conic-gradient(from calc(var(--cl-scroll-progress, 0) * 360deg) at 50% 52%, rgba(242, 208, 107, 0.12), rgba(242, 208, 107, 0), rgba(242, 208, 107, 0.1)),
    radial-gradient(circle at 50% 50%, rgba(242, 208, 107, 0.08), rgba(242, 208, 107, 0) 62%);
  opacity: 0.4;
  mix-blend-mode: screen;
}

.cl-manifesto-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  pointer-events: none;
  text-align: center;
}

.cl-manifesto-word {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 2.8rem);
  color: var(--gold-4);
  text-shadow: 0 6px 30px rgba(184, 145, 78, 0.35);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cl-manifesto-word.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cl-manifesto-scene,
.cl-manifesto-audio {
  margin: 0;
  max-width: min(88vw, 920px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-size: clamp(0.84rem, 1.8vw, 0.98rem);
  letter-spacing: 0.03em;
}

.cl-manifesto-scene {
  color: #ebd7a9;
}

.cl-manifesto-audio {
  color: #c6c6c6;
}

.cl-manifesto-scene.is-visible,
.cl-manifesto-audio.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cl-manifesto-controls {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px 22px;
}

.cl-manifesto-btn,
.cl-manifesto-skip {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(184, 145, 78, 0.6);
  background: rgba(10, 10, 10, 0.7);
  color: #f6f8fb;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cl-manifesto-btn:hover,
.cl-manifesto-skip:hover {
  border-color: rgba(240, 216, 163, 0.9);
}

.cl-hero {
  --hero-progress: 0;
  min-height: 94vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 110px 0 90px;
  overflow: hidden;
}

body.is-hero-entered .cl-hero-wrap {
  animation: clHeroGrandEnter 980ms cubic-bezier(.2,.94,.24,1) both;
}

.cl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(242, 208, 107, 0) 14%, rgba(242, 208, 107, 0.08) 45%, rgba(242, 208, 107, 0) 74%);
  transform: translateX(calc(-24% + (var(--hero-progress, 0) * 40%)));
  opacity: 0.72;
}

.cl-hero-aura {
  position: absolute;
  width: 72vmax;
  height: 72vmax;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 216, 163, 0.16), rgba(240, 216, 163, 0.03) 44%, rgba(240, 216, 163, 0) 65%);
  filter: blur(4px);
  pointer-events: none;
  animation: clAuraFloat 7s ease-in-out infinite alternate;
}

.cl-hero-rings {
  position: absolute;
  width: min(86vw, 880px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 999px;
  border: 1px solid rgba(240, 216, 163, 0.12);
  box-shadow:
    0 0 0 34px rgba(240, 216, 163, 0.05),
    0 0 0 76px rgba(240, 216, 163, 0.03);
  opacity: 0.44;
}

.cl-hero-main-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(155deg, rgba(5, 5, 5, 0.86), rgba(15, 15, 15, 0.45)),
    radial-gradient(circle at 76% 18%, rgba(242, 208, 107, 0.12), transparent 36%),
    radial-gradient(circle at 20% 82%, rgba(255, 255, 255, 0.05), transparent 30%);
  opacity: 0.8;
}

.cl-hero-wrap {
  position: relative;
  z-index: 2;
}

.cl-hero-main-image {
  width: min(86vw, 680px);
  margin: 0 auto 18px;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 208, 107, 0.28);
  background:
    linear-gradient(145deg, rgba(9, 9, 9, 0.94), rgba(18, 18, 18, 0.86)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.07), transparent 26%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -40px 90px rgba(0, 0, 0, 0.45);
}

.cl-hero-main-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 64% 36%, rgba(242, 208, 107, 0.22), transparent 34%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0) 74%);
  transform: translateX(calc(-10% + (var(--hero-progress, 0) * 14%)));
  pointer-events: none;
}

.cl-hero-main-image img {
  width: min(48%, 330px);
  height: auto;
  display: block;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55));
  opacity: 0.9;
}

.cl-hero-main-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cl-hero-main-orbit::before {
  content: "";
  position: absolute;
  width: 132%;
  height: 132%;
  left: -16%;
  top: -18%;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 107, 0.48);
  transform: rotate(-14deg);
  box-shadow: 0 0 34px rgba(242, 208, 107, 0.24);
}

.cl-hero-main-orbit::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 2px;
  left: 58%;
  top: 38%;
  transform: rotate(-22deg);
  background: linear-gradient(90deg, rgba(242, 208, 107, 0), rgba(242, 208, 107, 0.95), rgba(242, 208, 107, 0));
  box-shadow: 0 0 12px rgba(242, 208, 107, 0.75);
}

.cl-hero-logo {
  display: block;
  margin: 0 auto 12px;
  width: clamp(88px, 13.2vw, 136px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(240, 216, 163, 0.26), 0 0 32px rgba(242, 208, 107, 0.26);
  animation: clHeroLogoFloat 6s ease-in-out infinite alternate, clHeroLogoGlow 4.2s ease-in-out infinite;
}

.cl-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

.cl-mid-burst {
  position: fixed;
  top: 48%;
  left: 62%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%) scale(0.4);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 208, 107, 0.65) 0%, rgba(242, 208, 107, 0.22) 28%, rgba(242, 208, 107, 0.04) 52%, rgba(242, 208, 107, 0) 72%);
  filter: blur(1px);
}

body.is-burst-live .cl-mid-burst {
  animation: clMidBurstFlash 900ms cubic-bezier(.18,.95,.23,1) both;
}

.cl-eyebrow,
.cl-kicker {
  margin: 0;
  color: #e6c98c;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", "Domine", serif;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 7.4vw, 4.9rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cl-hero-title {
  background: linear-gradient(116deg, #f6e6c4 12%, #d8b778 40%, #fff4dd 58%, #b2894a 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  transform: translateY(calc(var(--hero-progress) * -10px));
  filter: saturate(calc(1 + (var(--hero-progress) * 0.18)));
  text-shadow: 0 10px 26px rgba(242, 208, 107, calc(0.12 + (var(--hero-progress) * 0.18)));
}

.cl-hero-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 245, 220, 0.42), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  animation: clShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

h2 {
  font-size: clamp(1.72rem, 5.3vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.008em;
}

h3 {
  font-size: clamp(1.1rem, 2.65vw, 1.42rem);
  font-weight: 700;
}

.cl-subline {
  margin: 18px auto 0;
  max-width: 64ch;
  color: var(--platinum-soft);
  font-size: clamp(1.03rem, 2.45vw, 1.26rem);
  line-height: 1.72;
  opacity: calc(1 - (var(--hero-progress) * 0.2));
  text-wrap: pretty;
}

.cl-hero-clarity {
  margin: 12px auto 0;
  max-width: 62ch;
  color: #f0d8a3;
  font-size: 0.99rem;
  letter-spacing: 0.02em;
}

.cl-ceo-decision {
  padding: 44px 0 24px;
}

.cl-ceo-grid {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-ceo-card {
  border: 1px solid rgba(240, 216, 163, 0.24);
  border-radius: var(--radius);
  padding: 20px;
  background:
    radial-gradient(circle at 100% -20%, rgba(240, 216, 163, 0.12), transparent 34%),
    rgba(14, 14, 14, 0.82);
  box-shadow: var(--shadow);
}

.cl-ceo-card h3 {
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.24rem);
}

.cl-ceo-card p {
  margin: 10px 0 0;
  color: #d2d2d2;
}

.cl-ceo-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.cl-ceo-filter {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-ceo-filter-card {
  border: 1px solid rgba(240, 216, 163, 0.2);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(12, 12, 12, 0.78);
}

.cl-ceo-filter-card h3 {
  margin: 2px 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.cl-ceo-filter-card p {
  margin: 9px 0 0;
  color: #cecece;
}

.cl-ceo-filter-card-fit {
  border-color: rgba(175, 223, 175, 0.35);
}

.cl-ceo-filter-card-not-fit {
  border-color: rgba(240, 216, 163, 0.26);
}

.cl-hero-extended {
  margin: 14px auto 0;
  max-width: 70ch;
  color: #d4d4d4;
  font-size: 1.02rem;
}

.cl-hero-longform {
  margin: 16px auto 0;
  max-width: 74ch;
  padding: 16px 18px;
  border: 1px solid rgba(242, 208, 107, 0.16);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.62);
  text-align: left;
}

.cl-hero-longform p {
  margin: 0;
  color: #d2d2d2;
  font-size: 1rem;
  line-height: 1.74;
}

.cl-hero-longform p + p {
  margin-top: 10px;
}

.cl-hero-dynamic {
  margin: 14px 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #d8d8d8;
}

.cl-hero-dynamic span {
  color: #f2d06b;
  font-weight: 700;
}

.cl-hero-signals {
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.cl-hero-signals span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(242, 208, 107, 0.32);
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.58);
  color: #e9d8b2;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.cl-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cl-hero-proof-points {
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
  max-width: 760px;
  display: grid;
  gap: 8px;
}

.cl-hero-proof-points li {
  padding: 10px 12px;
  border: 1px solid rgba(242, 208, 107, 0.24);
  border-radius: 10px;
  background: rgba(14, 14, 14, 0.62);
  color: #f1e8d5;
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}

.cl-hero-proof-points li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(242, 208, 107, 0.11), rgba(255, 255, 255, 0));
  transform: translateX(-130%);
  animation: clProofSweep 5.8s ease-in-out infinite;
}

.cl-trust {
  margin-top: 34px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.cl-trust-title {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #cfcfcf;
}

.cl-trust-kpi {
  margin: 10px 0 0;
  color: #ecd5a2;
  font-weight: 700;
}

.cl-mode-badge {
  margin: 2px auto 14px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 107, 0.34);
  background: linear-gradient(115deg, rgba(20, 20, 20, 0.84), rgba(12, 12, 12, 0.52));
  color: #f7e6be;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cl-mode-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #f2d06b 0%, #d4af37 100%);
  box-shadow: 0 0 0 0 rgba(242, 208, 107, 0.4);
  animation: clPulseDot 1.8s ease-out infinite;
}

.cl-hero-moment {
  margin: 16px auto 0;
  max-width: 900px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(242, 208, 107, 0.24);
  background: linear-gradient(120deg, rgba(22, 22, 22, 0.76), rgba(12, 12, 12, 0.46));
  color: #efe0ba;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
}

.cl-hero-moment strong {
  color: #f4d988;
  margin-right: 8px;
}

.cl-partner-magnet {
  position: relative;
  isolation: isolate;
}

.cl-partner-magnet::before {
  content: "";
  position: absolute;
  inset: 6% -12% auto -12%;
  height: 280px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(242, 208, 107, 0.13), rgba(242, 208, 107, 0));
  filter: blur(18px);
}

.cl-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cl-partner-card {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(242, 208, 107, 0.2);
  background: linear-gradient(140deg, rgba(22, 22, 22, 0.74), rgba(14, 14, 14, 0.54));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  transition: transform 280ms ease, border-color 220ms ease, box-shadow 280ms ease;
}

.cl-partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 208, 107, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(242, 208, 107, 0.18);
}

.cl-partner-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Domine", serif;
  font-size: 1.14rem;
  line-height: 1.32;
}

.cl-partner-card p {
  margin: 0;
  color: rgba(240, 240, 240, 0.84);
}

.cl-partner-magnet.is-live .cl-partner-card {
  animation: clPartnerCardIn 680ms cubic-bezier(.21,.96,.19,.99) both;
}

.cl-partner-magnet.is-live .cl-partner-card:nth-child(2) {
  animation-delay: 80ms;
}

.cl-partner-magnet.is-live .cl-partner-card:nth-child(3) {
  animation-delay: 160ms;
}

.cl-semantic-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.cl-semantic-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 107, 0.24);
  color: rgba(240, 240, 240, 0.84);
  background: linear-gradient(110deg, rgba(20, 20, 20, 0.88), rgba(14, 14, 14, 0.52));
  transition: border-color 180ms ease, color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.cl-semantic-links a:hover {
  color: #fff7dc;
  border-color: rgba(242, 208, 107, 0.54);
  box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.2), 0 10px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.cl-proof-strip {
  position: relative;
  margin-top: -18px;
  padding: 12px 0;
  border-top: 1px solid rgba(242, 208, 107, 0.2);
  border-bottom: 1px solid rgba(242, 208, 107, 0.2);
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.96));
}

.cl-proof-strip-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.cl-proof-strip-wrap span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(242, 208, 107, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #d9c49a;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cl-proof-strip-wrap span:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 208, 107, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32), 0 0 20px rgba(242, 208, 107, 0.18);
}

.cl-decision-deck {
  position: relative;
  border-top: 1px solid rgba(242, 208, 107, 0.16);
  border-bottom: 1px solid rgba(242, 208, 107, 0.1);
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 208, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.94), rgba(9, 9, 9, 0.94));
}

.cl-decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 0;
}

.cl-decision-card {
  border: 1px solid rgba(242, 208, 107, 0.22);
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.11), transparent 36%),
    rgba(12, 12, 12, 0.8);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.cl-decision-card h3 {
  margin: 8px 0 0;
}

.cl-decision-card p {
  margin: 10px 0 0;
  color: #d5d5d5;
}

.cl-command-center-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cl-command-center-card {
  border: 1px solid rgba(242, 208, 107, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(12, 12, 12, 0.92));
  box-shadow: var(--shadow);
}

.cl-command-center-card h3 {
  margin-top: 6px;
}

.cl-command-center-card p {
  margin: 10px 0 0;
  color: #d6d6d6;
}

.cl-command-pulse {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.cl-command-pulse li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(242, 208, 107, 0.22);
  background: rgba(9, 9, 9, 0.62);
}

.cl-command-pulse li span {
  color: #d8d8d8;
  font-size: 0.88rem;
}

.cl-command-pulse li strong {
  color: #f2d06b;
  font-family: "Playfair Display", "Domine", serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.cl-briefing-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cl-briefing-card {
  border: 1px solid rgba(242, 208, 107, 0.2);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 28px);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.1), transparent 34%),
    rgba(12, 12, 12, 0.82);
  box-shadow: var(--shadow);
}

.cl-briefing-card h3 {
  margin: 0 0 8px;
}

.cl-briefing-card p {
  margin: 0;
  color: #d4d4d4;
  line-height: 1.72;
  text-wrap: pretty;
}

.cl-briefing-card p + p {
  margin-top: 12px;
}

.cl-europe-signature {
  position: relative;
  border-top: 1px solid rgba(242, 208, 107, 0.16);
  border-bottom: 1px solid rgba(242, 208, 107, 0.12);
  background:
    radial-gradient(circle at 84% 10%, rgba(242, 208, 107, 0.14), transparent 34%),
    radial-gradient(circle at 14% 90%, rgba(242, 208, 107, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(6, 6, 6, 0.98));
}

.cl-europe-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cl-europe-card {
  position: relative;
  border: 1px solid rgba(242, 208, 107, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.11), transparent 36%),
    rgba(10, 10, 10, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cl-europe-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(242, 208, 107, 0), rgba(242, 208, 107, 0.26), rgba(242, 208, 107, 0));
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}

.cl-europe-card:hover::before {
  transform: translateX(140%);
}

.cl-europe-card h3 {
  margin: 8px 0 0;
}

.cl-europe-card p {
  margin: 10px 0 0;
  color: #d5d5d5;
}

.cl-europe-ticker {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(242, 208, 107, 0.24);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.86);
}

.cl-europe-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  min-height: 46px;
  padding: 0 16px;
  animation: clEuropeFlow 22s linear infinite;
}

.cl-europe-track span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e8d5ac;
  font-size: 0.75rem;
  white-space: nowrap;
}

.cl-europe-track span::before {
  content: "•";
  margin-right: 10px;
  color: rgba(242, 208, 107, 0.62);
}

.cl-positioning {
  padding: clamp(60px, 8vw, 110px) 0;
}

.cl-positioning-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cl-positioning-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 208, 107, 0.24);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 12, 0.8);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.cl-positioning-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, rgba(242, 208, 107, 0), rgba(242, 208, 107, 0.3), rgba(242, 208, 107, 0));
  transform: translateX(-130%);
  transition: transform 0.5s ease;
}

.cl-positioning-card:hover::before {
  transform: translateX(130%);
}

.cl-positioning-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7ba82;
}

.cl-positioning-card h3 {
  margin: 0 0 8px;
  color: #f2dfbb;
  font-size: 1.08rem;
}

.cl-positioning-card p {
  margin: 0;
  color: #d2d2d2;
}

.cl-positioning-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cl-positioning-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.72);
  padding: 14px;
}

.cl-positioning-metrics p {
  margin: 0;
  color: #cab88d;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cl-positioning-metrics strong {
  display: block;
  margin-top: 6px;
  font-family: "Playfair Display", "Domine", serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.cl-positioning-metrics span {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: #c6c6c6;
}

.cl-legal-note {
  margin-top: 12px;
  color: #b9b9b9;
  font-size: 0.78rem;
  line-height: 1.5;
}

.cl-legal-note a {
  color: #e4c889;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cl-employee-form {
  max-width: 560px;
  margin: 12px auto 0;
  border: 1px solid rgba(242, 208, 107, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.86);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cl-employee-form label {
  margin-top: 4px;
}

.cl-employee-form .cl-form-status {
  margin-top: 10px;
}

.cl-tool-suite {
  margin-top: 16px;
  border: 1px solid rgba(242, 208, 107, 0.26);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.11), transparent 34%),
    linear-gradient(155deg, rgba(18, 18, 18, 0.9), rgba(10, 10, 10, 0.92));
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cl-tool-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.cl-tool-card {
  border: 1px solid rgba(242, 208, 107, 0.2);
  border-radius: 12px;
  background: rgba(12, 12, 12, 0.78);
  padding: 14px;
}

.cl-tool-card h3 {
  margin: 0 0 10px;
  color: #f2d9a4;
}

.cl-tool-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.cl-tool-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 12px;
}

.cl-tool-item strong {
  display: block;
  color: #f5e3ba;
}

.cl-tool-item span {
  display: block;
  margin-top: 4px;
  color: #d2d2d2;
  font-size: 0.88rem;
}

.cl-tool-pinned-block {
  margin-bottom: 10px;
  display: grid;
  gap: 8px;
}

.cl-tool-pinned-title {
  margin: 0;
  color: #f2d9a4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.cl-tool-item-pinned {
  border-color: rgba(144, 238, 144, 0.42);
  background:
    radial-gradient(circle at 100% -10%, rgba(144, 238, 144, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.025);
}

.cl-crm-toolbar {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.cl-crm-filters {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cl-crm-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cl-crm-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9d9d9;
  font-size: 0.84rem;
}

.cl-crm-switch input {
  accent-color: #d4af37;
}

.cl-crm-export {
  min-height: 34px;
  border: 1px solid rgba(242, 208, 107, 0.42);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(242, 208, 107, 0.12);
  color: #f2dba0;
  font-weight: 700;
  cursor: pointer;
}

.cl-crm-filter {
  min-height: 32px;
  min-width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #dfdfdf;
  font-weight: 700;
  cursor: pointer;
}

.cl-crm-filter.is-active {
  border-color: rgba(242, 208, 107, 0.58);
  color: #f4ddb0;
  background: rgba(242, 208, 107, 0.12);
}

.cl-crm-priority {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #d8d8d8;
  font-size: 0.84rem;
}

.cl-crm-priority-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.cl-tier-badge {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-style: normal;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1;
}

.cl-tier-a {
  background: rgba(144, 238, 144, 0.18);
  border: 1px solid rgba(144, 238, 144, 0.55);
  color: #bff5bf;
}

.cl-tier-b {
  background: rgba(242, 208, 107, 0.16);
  border: 1px solid rgba(242, 208, 107, 0.55);
  color: #f2dba0;
}

.cl-tier-c {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #d6d6d6;
}

.cl-tool-form {
  display: grid;
  gap: 8px;
}

.cl-tool-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.75);
  color: #fff;
  padding: 10px 12px;
}

.cl-trust-seals {
  padding: 30px 0 8px;
}

.cl-trust-seals-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cl-trust-seal {
  border: 1px solid rgba(242, 208, 107, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(19, 19, 19, 0.86), rgba(9, 9, 9, 0.86));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  padding: 18px;
}

.cl-trust-seal h3 {
  margin-top: 6px;
  color: #f3dfb8;
}

.cl-trust-seal p {
  margin: 10px 0 0;
  color: #d3d3d3;
}

.cl-coaching-showcase {
  padding: clamp(70px, 10vw, 130px) 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(242, 208, 107, 0.12), transparent 36%),
    linear-gradient(180deg, #0e0e0e 0%, #101010 48%, #0b0b0b 100%);
  border-top: 1px solid rgba(242, 208, 107, 0.2);
  border-bottom: 1px solid rgba(242, 208, 107, 0.2);
}

.cl-coaching-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-coaching-card {
  border: 1px solid rgba(242, 208, 107, 0.24);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(242, 208, 107, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.88), rgba(10, 10, 10, 0.9));
  color: #f0f0f0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.cl-coaching-media {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.cl-coaching-media-1 {
  background:
    linear-gradient(135deg, rgba(31, 24, 13, 0.78), rgba(14, 14, 14, 0.78)),
    radial-gradient(circle at 22% 16%, rgba(242, 208, 107, 0.24), rgba(255, 255, 255, 0));
}

.cl-coaching-media-2 {
  background:
    linear-gradient(135deg, rgba(58, 44, 21, 0.62), rgba(14, 14, 14, 0.8)),
    radial-gradient(circle at 52% 22%, rgba(242, 208, 107, 0.2), rgba(255, 255, 255, 0));
}

.cl-coaching-media-3 {
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.78), rgba(73, 55, 24, 0.62)),
    radial-gradient(circle at 74% 26%, rgba(242, 208, 107, 0.22), rgba(255, 255, 255, 0));
}

.cl-coaching-content {
  padding: 20px 20px 22px;
}

.cl-coaching-content h3 {
  color: #f3dfb8;
}

.cl-coaching-content p {
  margin: 12px 0 0;
  color: #d8d8d8;
  font-size: 1.02rem;
}

.cl-coaching-note {
  margin: 22px 0 0;
  text-align: center;
  color: #ebd7a9;
  font-size: 1.15rem;
}

.cl-coaching-method {
  margin-top: 18px;
  border: 1px solid rgba(242, 208, 107, 0.35);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 30, 56, 0.86), rgba(9, 18, 35, 0.9));
  padding: 18px;
}

.cl-coaching-method h3 {
  margin-top: 6px;
  color: #f2e3bf;
}

.cl-coaching-method p {
  margin-top: 10px;
  color: #d6deed;
}

.cl-coaching-unique {
  margin-top: 18px;
  border: 1px solid rgba(242, 208, 107, 0.42);
  border-radius: 16px;
  padding: 20px;
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 208, 107, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(11, 21, 39, 0.92), rgba(7, 14, 28, 0.94));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
}

.cl-coaching-unique h3 {
  margin-top: 6px;
  color: #f2e3bf;
}

.cl-coaching-unique p {
  margin-top: 10px;
  color: #d6deed;
}

.cl-coaching-unique-close {
  color: #f1dfb2;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.cl-coaching-unique .cl-btn {
  margin-top: 14px;
}

.cl-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.95), rgba(18, 18, 18, 0.94), rgba(13, 13, 13, 0.95));
}

.cl-ticker::before,
.cl-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 78px;
  z-index: 1;
  pointer-events: none;
}

.cl-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 1), rgba(11, 11, 11, 0));
}

.cl-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 11, 11, 1), rgba(11, 11, 11, 0));
}

.cl-ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  min-height: 56px;
  padding: 12px 0;
  animation: clTicker 28s linear infinite;
}

.cl-ticker-track span {
  color: #e9d8b2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  white-space: nowrap;
}

.cl-ticker-track span::before {
  content: "•";
  margin-right: 12px;
  color: rgba(240, 216, 163, 0.52);
}

.cl-command-strip {
  border-top: 1px solid rgba(240, 216, 163, 0.18);
  border-bottom: 1px solid rgba(240, 216, 163, 0.12);
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.95), rgba(20, 20, 20, 0.94), rgba(12, 12, 12, 0.95));
}

.cl-command-grid {
  min-height: 120px;
  display: grid;
  gap: 10px;
  padding: 14px 0;
  grid-template-columns: 1fr;
}

.cl-command-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 14, 0.84);
  border-radius: 12px;
  padding: 12px 14px;
}

.cl-command-item p {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d1b37a;
}

.cl-command-item strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
  font-family: "Playfair Display", "Domine", serif;
  color: #f0d8a3;
}

.cl-command-item span {
  display: block;
  margin-top: 8px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.cl-command-item span i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8f6f3f, #d7b978, #f0d8a3);
  box-shadow: 0 0 14px rgba(240, 216, 163, 0.35);
}

.cl-logo-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cl-logo-row span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: clLogoPulse 4.4s ease-in-out infinite;
}

.cl-logo-row span:nth-child(2) { animation-delay: 0.2s; }
.cl-logo-row span:nth-child(3) { animation-delay: 0.4s; }
.cl-logo-row span:nth-child(4) { animation-delay: 0.6s; }
.cl-logo-row span:nth-child(5) { animation-delay: 0.8s; }
.cl-logo-row span:nth-child(6) { animation-delay: 1s; }

.cl-section {
  --cin-progress: 0;
  --cin-drift: 0px;
  padding: clamp(150px, 16vw, 220px) 0;
  position: relative;
  transform: translate3d(0, calc(var(--cin-drift) * 0.24), 0);
  transition: transform 0.45s ease;
}

.cl-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 208, 107, 0), rgba(242, 208, 107, 0.32), rgba(242, 208, 107, 0));
  opacity: 0.55;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.cl-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cl-pointer-x, 82%) var(--cl-pointer-y, 20%), rgba(242, 208, 107, 0.11), rgba(242, 208, 107, 0) 42%),
    radial-gradient(circle at 85% 22%, rgba(242, 208, 107, 0.06), rgba(242, 208, 107, 0));
  opacity: calc(0.35 + (var(--cin-progress) * 0.5));
  transform: translate3d(0, calc(var(--cin-drift) * -0.4), 0);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.cl-section.is-active::before {
  transform: scaleX(1);
  opacity: 0.9;
}

.cl-section.is-active::after {
  opacity: 1;
  filter: saturate(1.24) brightness(1.05);
  animation: clSectionPulse 3.8s ease-in-out infinite;
}

.cl-section.is-active {
  box-shadow: inset 0 1px 0 rgba(242, 208, 107, 0.32), inset 0 -1px 0 rgba(242, 208, 107, 0.14);
}

.cl-section.is-peaking::after {
  opacity: 1;
  filter: saturate(1.34) brightness(1.12);
}

.cl-section.is-active .cl-section-head::after {
  width: min(320px, 70%);
  background: linear-gradient(90deg, rgba(242, 208, 107, 0.92), rgba(242, 208, 107, 0));
}

.cl-section-dark {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.9), rgba(9, 9, 9, 0.94));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cl-section-luxury {
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 145, 78, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.96));
  border-top: 1px solid rgba(240, 216, 163, 0.14);
  border-bottom: 1px solid rgba(240, 216, 163, 0.14);
}

.cl-section-head {
  position: relative;
  max-width: 820px;
  transform: translate3d(0, calc(var(--cin-drift) * -0.45), 0);
  opacity: calc(0.78 + (var(--cin-progress) * 0.22));
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.cl-section-head::after {
  content: "";
  display: block;
  width: min(220px, 55%);
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(242, 208, 107, 0.65), rgba(242, 208, 107, 0));
}

.cl-section-head h2 {
  margin-top: 10px;
  letter-spacing: 0.01em;
  text-wrap: balance;
  position: relative;
  text-shadow: 0 0 0 rgba(242, 208, 107, 0);
  transition: text-shadow 0.45s ease, filter 0.45s ease;
}

.cl-section-head h2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, rgba(255, 255, 255, 0) 0%, rgba(255, 244, 217, 0.42) 48%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-130%);
  pointer-events: none;
  opacity: 0;
}

.cl-section.is-active .cl-section-head h2 {
  text-shadow: 0 8px 24px rgba(242, 208, 107, 0.18);
  filter: saturate(1.06);
}

.cl-section.is-active .cl-section-head h2::after {
  opacity: 1;
  animation: clHeadingSweep 3.9s ease-in-out infinite;
}

.cl-section-head p {
  margin-top: 10px;
  color: #bcbcbc;
  text-wrap: pretty;
}

.cl-section-head p:not(.cl-kicker) {
  max-width: 72ch;
}

.cl-card-grid,
.cl-proof-grid,
.cl-case-grid,
.cl-steps-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-luxury-columns,
.cl-board-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cl-fit-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cl-fit-card {
  border: 1px solid rgba(242, 208, 107, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% -8%, rgba(242, 208, 107, 0.14), transparent 34%),
    rgba(13, 13, 13, 0.84);
  box-shadow: var(--shadow);
}

.cl-fit-card h3 {
  margin: 8px 0 0;
}

.cl-fit-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #d8d8d8;
}

.cl-fit-list li + li {
  margin-top: 8px;
}

.cl-fit-points {
  margin-top: 14px;
  border: 1px solid rgba(242, 208, 107, 0.2);
  border-radius: 12px;
  padding: 14px;
  background: rgba(12, 12, 12, 0.6);
}

.cl-fit-points p {
  margin: 0;
  color: #d8d8d8;
}

.cl-fit-points p + p {
  margin-top: 8px;
}

.cl-impact-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-impact-card {
  border: 1px solid rgba(240, 216, 163, 0.22);
  border-radius: var(--radius);
  padding: 20px;
  background:
    radial-gradient(circle at 100% -20%, rgba(240, 216, 163, 0.14), transparent 34%),
    rgba(14, 14, 14, 0.82);
  box-shadow: var(--shadow);
}

.cl-impact-card p {
  margin: 10px 0 0;
  color: #d3d3d3;
}

.cl-impact-card strong {
  display: block;
  margin-top: 14px;
  color: #f0d8a3;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.cl-engine-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-engine-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(14, 14, 14, 0.8);
  box-shadow: var(--shadow);
}

.cl-engine-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(240, 216, 163, 0.36);
  color: #f0d8a3;
  font-weight: 700;
  margin-bottom: 12px;
}

.cl-engine-step p {
  margin: 10px 0 0;
  color: #d1d1d1;
}

.cl-authority {
  background:
    radial-gradient(circle at 16% 18%, rgba(240, 216, 163, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.95), rgba(8, 8, 8, 0.96));
}

.cl-signature-grid {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-signature-card {
  border: 1px solid rgba(240, 216, 163, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(240, 216, 163, 0.09), rgba(16, 16, 16, 0.9) 42%),
    rgba(12, 12, 12, 0.9);
  box-shadow: var(--shadow);
}

.cl-signature-card p {
  margin: 10px 0 0;
  color: #d2d2d2;
}

.cl-faq-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-faq-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(13, 13, 13, 0.8);
  box-shadow: var(--shadow);
}

.cl-faq-card p {
  margin: 10px 0 0;
  color: #d4d4d4;
}

.cl-statement {
  background:
    radial-gradient(circle at 84% 22%, rgba(240, 216, 163, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(9, 9, 9, 0.98));
}

.cl-statement-wrap {
  border: 1px solid rgba(240, 216, 163, 0.22);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(240, 216, 163, 0.08), rgba(14, 14, 14, 0.86) 48%),
    rgba(12, 12, 12, 0.9);
  box-shadow: var(--shadow);
}

.cl-statement-wrap h2 {
  max-width: 18ch;
}

.cl-statement-wrap p {
  max-width: 72ch;
  color: #d5d5d5;
}

.cl-statement-wrap p + p {
  margin-top: 10px;
}

.cl-engagement-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-engagement-card {
  border: 1px solid rgba(240, 216, 163, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 216, 163, 0.12), transparent 32%),
    rgba(14, 14, 14, 0.8);
  box-shadow: var(--shadow);
}

.cl-plan-tag {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d1b37a;
}

.cl-engagement-card strong {
  display: block;
  margin-top: 14px;
  color: #f0d8a3;
  font-size: 0.94rem;
}

.cl-card,
.cl-proof-card,
.cl-case,
.cl-step,
.cl-pricing,
.cl-form,
.cl-team-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.72);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.cl-card::before,
.cl-proof-card::before,
.cl-case::before,
.cl-step::before,
.cl-luxury-card::before,
.cl-impact-card::before,
.cl-faq-card::before,
.cl-signature-card::before,
.cl-engagement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(240, 216, 163, 0) 15%, rgba(240, 216, 163, 0.16) 50%, rgba(240, 216, 163, 0) 85%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}

.cl-card:hover::before,
.cl-proof-card:hover::before,
.cl-case:hover::before,
.cl-step:hover::before,
.cl-luxury-card:hover::before,
.cl-impact-card:hover::before,
.cl-faq-card:hover::before,
.cl-signature-card:hover::before,
.cl-engagement-card:hover::before {
  transform: translateX(130%);
}

.cl-card::after,
.cl-proof-card::after,
.cl-case::after,
.cl-step::after,
.cl-luxury-card::after,
.cl-impact-card::after,
.cl-faq-card::after,
.cl-signature-card::after,
.cl-engagement-card::after,
.cl-ecosystem-card::after,
.cl-bento-card::after,
.cl-assessment-dimension::after,
.cl-assessment-q-card::after,
.cl-trust-seal::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(
      420px 220px at var(--tilt-x, 50%) var(--tilt-y, 0%),
      rgba(242, 208, 107, calc(0.2 * var(--tilt-intensity, 0))),
      rgba(242, 208, 107, 0) 62%
    );
  opacity: calc(0.18 + (var(--tilt-intensity, 0) * 0.45));
  mix-blend-mode: screen;
  transition: opacity 0.3s ease, background-position 0.2s ease;
}

.cl-split-frame {
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.96), rgba(11, 11, 11, 0.9));
}

.cl-split-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.cl-split-copy p {
  color: #d4d4d4;
  max-width: 68ch;
  text-wrap: pretty;
}

.cl-core-message {
  position: relative;
  margin: 16px 0 0;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(242, 208, 107, 0.26);
  border-left: 2px solid #d4af37;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.03);
  color: #efe3c6;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 14px 30px rgba(0, 0, 0, 0.26);
  text-wrap: pretty;
}

.cl-core-message::before {
  content: "“";
  position: absolute;
  top: 2px;
  left: 10px;
  font-family: "Playfair Display", "Domine", serif;
  font-size: 1.9rem;
  line-height: 1;
  color: rgba(242, 208, 107, 0.55);
}

.cl-signature {
  background:
    radial-gradient(circle at 84% 18%, rgba(242, 208, 107, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(6, 6, 6, 0.98));
}

.cl-bento-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-bento-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.12), transparent 34%),
    rgba(14, 14, 14, 0.78);
  box-shadow: var(--shadow);
}

.cl-bento-card h3 {
  margin-top: 6px;
}

.cl-bento-card p {
  margin-top: 10px;
  color: #d7d7d7;
}

.cl-signal {
  margin-top: 24px;
  margin-bottom: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  border: 1px solid rgba(242, 208, 107, 0.22);
  border-radius: var(--radius);
  background: rgba(16, 16, 16, 0.68);
  padding: 20px;
}

.cl-signal-ring {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #0b0b0b 54%, transparent 55%),
    conic-gradient(#f2d06b calc(var(--signal-progress, 0) * 1%), rgba(255, 255, 255, 0.16) 0);
  border: 1px solid rgba(242, 208, 107, 0.36);
}

.cl-signal-ring span {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #f2d06b;
}

.cl-signal-copy p {
  color: #d4d4d4;
}

.cl-split-visual {
  min-height: 340px;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 216, 163, 0.22);
  background:
    radial-gradient(circle at 62% 40%, rgba(242, 208, 107, 0.22), rgba(10, 10, 10, 0.2) 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(8, 8, 8, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.cl-gear-visual {
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 60% 45%, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(60deg, rgba(240, 216, 163, 0.06) 0 1px, transparent 1px 16px);
  opacity: 0.7;
}

.cl-ecosystem-grid {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cl-ecosystem-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(22, 22, 22, 0.52);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cl-ecosystem-card:hover {
  border-color: rgba(242, 208, 107, 0.7);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(242, 208, 107, 0.22);
}

.cl-card:hover,
.cl-proof-card:hover,
.cl-case:hover,
.cl-step:hover,
.cl-impact-card:hover,
.cl-signature-card:hover,
.cl-faq-card:hover,
.cl-engagement-card:hover {
  border-color: rgba(242, 208, 107, 0.6);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(242, 208, 107, 0.22);
}

.cl-card,
.cl-proof-card,
.cl-case,
.cl-step,
.cl-impact-card,
.cl-signature-card,
.cl-faq-card,
.cl-engagement-card,
.cl-ecosystem-card,
.cl-bento-card,
.cl-coaching-method,
.cl-coaching-unique,
.cl-trust-seal,
.cl-signal {
  background:
    radial-gradient(circle at var(--cl-pointer-x, 86%) var(--cl-pointer-y, 14%), rgba(242, 208, 107, 0.12), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.08), transparent 34%),
    linear-gradient(155deg, var(--surface-1), var(--surface-2));
  border-color: rgba(242, 208, 107, 0.2);
  backdrop-filter: blur(10px);
}

.cl-card,
.cl-proof-card,
.cl-case,
.cl-step,
.cl-impact-card,
.cl-signature-card,
.cl-faq-card,
.cl-engagement-card,
.cl-ecosystem-card,
.cl-bento-card,
.cl-trust-seal {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.cl-card:hover,
.cl-proof-card:hover,
.cl-case:hover,
.cl-step:hover,
.cl-impact-card:hover,
.cl-signature-card:hover,
.cl-faq-card:hover,
.cl-engagement-card:hover,
.cl-ecosystem-card:hover,
.cl-bento-card:hover,
.cl-trust-seal:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 208, 107, 0.52);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 208, 107, 0.24), 0 0 22px var(--gold-glow);
}

.cl-ecosystem-card p {
  margin-top: 10px;
  color: #d7d7d7;
}

.cl-case-slider {
  margin-top: 30px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  position: relative;
  perspective: 1200px;
}

.cl-case-slider .cl-case {
  scroll-snap-align: start;
  transform-origin: center center;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.32s ease, filter 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  opacity: 0.72;
  filter: saturate(0.86) brightness(0.92);
}

.cl-case-slider .cl-case.is-active {
  opacity: 1;
  filter: saturate(1.1) brightness(1.03);
  transform: translate3d(0, -4px, 0) scale(1.01);
  border-color: rgba(242, 208, 107, 0.6);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 208, 107, 0.2);
}

.cl-case-slider-wrap {
  position: relative;
}

.cl-case-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.cl-case-nav {
  min-width: 38px;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(242, 208, 107, 0.45);
  background: rgba(16, 16, 16, 0.8);
  color: #f2d06b;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cl-case-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 208, 107, 0.78);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.44), 0 0 18px rgba(242, 208, 107, 0.22);
}

.cl-case-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.cl-case-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #f2d06b);
}

.cl-case-slider::after {
  content: "";
  position: sticky;
  right: 0;
  top: 0;
  display: block;
  width: 90px;
  height: 100%;
  pointer-events: none;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0), rgba(11, 11, 11, 0.9));
}

.cl-timeline {
  position: relative;
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.cl-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(242, 208, 107, 0.86), rgba(242, 208, 107, 0.16));
}

.cl-timeline .cl-step {
  margin-left: 26px;
}

.cl-exclusive-note {
  margin-top: 22px;
  color: #f2d06b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.cl-luxury-card {
  border: 1px solid rgba(240, 216, 163, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% -10%, rgba(240, 216, 163, 0.12), transparent 36%),
    rgba(15, 15, 15, 0.78);
  box-shadow: var(--shadow);
}

.cl-luxury-card h3 {
  color: #f5dfb6;
}

.cl-luxury-card p {
  margin: 10px 0 0;
  color: #d3d3d3;
}

.cl-card,
.cl-proof-card,
.cl-case,
.cl-step,
.cl-pricing,
.cl-team-visual {
  padding: 20px;
}

.cl-card,
.cl-proof-card,
.cl-case,
.cl-step {
  backdrop-filter: blur(10px);
}

.cl-card p,
.cl-proof-card p,
.cl-case p,
.cl-step p,
.cl-pricing p {
  margin: 10px 0 0;
  color: #d2d2d2;
}

.cl-proof-card h3 {
  color: #f0d8a3;
}

.cl-count {
  display: inline-block;
  min-width: 5ch;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.cl-case blockquote,
.cl-testimonials blockquote {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #c8a96b;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-style: italic;
}

.cl-case-source {
  margin-top: 10px;
  color: #c5c5c5;
  font-size: 0.9rem;
}

.cl-pricing {
  margin-top: 14px;
  background: linear-gradient(145deg, rgba(184, 145, 78, 0.24), rgba(17, 17, 17, 0.86));
}

.cl-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-4);
}

.cl-team-wrap,
.cl-final-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.cl-team-visual {
  text-align: center;
}

.cl-team-visual img {
  display: block;
  margin: 0 auto 10px;
}

.cl-about-logo {
  width: clamp(110px, 10vw, 152px);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(242, 208, 107, 0.24), 0 0 28px rgba(242, 208, 107, 0.2);
}

.cl-team-visual p {
  margin: 0;
  color: #bcbcbc;
  font-size: 0.92rem;
}

.cl-testimonials {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.cl-testimonials blockquote span {
  display: block;
  margin-top: 8px;
  color: #cacaca;
  font-style: normal;
  font-size: 0.9rem;
}

.cl-final {
  background: linear-gradient(180deg, rgba(184, 145, 78, 0.1), rgba(10, 10, 10, 0.92));
  position: relative;
  overflow: hidden;
}

.cl-final-vault-glow {
  position: absolute;
  inset: -12% -10% auto -10%;
  height: 320px;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(242, 208, 107, 0.32), rgba(242, 208, 107, 0.06) 34%, rgba(242, 208, 107, 0) 64%),
    linear-gradient(180deg, rgba(242, 208, 107, 0.12), rgba(242, 208, 107, 0));
  transform: translateY(18px) scale(0.98);
}

.cl-final.is-vault-open .cl-final-vault-glow {
  animation: clFinalVaultReveal 1100ms cubic-bezier(.2,.9,.22,1) both;
}

.cl-final.is-vault-open .cl-final-copy,
.cl-final.is-vault-open .cl-form {
  animation: clFinalContentLift 760ms cubic-bezier(.2,.9,.22,1) both;
}

.cl-final.is-vault-open .cl-form {
  animation-delay: 100ms;
}

.cl-form {
  padding: 22px;
}

.cl-form-stepper {
  margin-bottom: 10px;
}

.cl-form-step-label {
  margin: 0;
  color: #f0d8a3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.cl-form-step[hidden] {
  display: none !important;
}

.cl-form-step-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cl-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #ead2a0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.75rem;
}

.cl-form input,
.cl-form select,
.cl-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.75);
  color: #fff;
  padding: 11px 12px;
  font: inherit;
}

.cl-form input:focus,
.cl-form select:focus,
.cl-form textarea:focus {
  outline: 2px solid rgba(240, 216, 163, 0.4);
  outline-offset: 1px;
}

.cl-form .cl-btn {
  width: 100%;
  margin-top: 14px;
}

.cl-btn[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.cl-form-status {
  margin: 10px 0 0;
  min-height: 1.3em;
  color: #e9d8b2;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.cl-checkbox {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #d1d1d1;
  font-size: 0.88rem;
  line-height: 1.45;
}

.cl-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #d4af37;
}

.cl-checkbox a {
  color: #f0d8a3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cl-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0b0b;
  padding: 20px 0;
}

.cl-global-cta {
  border-bottom: 1px solid rgba(242, 208, 107, 0.2);
  padding: 14px 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(20, 20, 20, 0.96));
}

.cl-global-cta-wrap {
  display: grid;
  gap: 10px;
}

.cl-global-cta-wrap p {
  margin: 0;
  color: #e9ddb9;
}

.cl-footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #cecece;
  font-size: 0.9rem;
}

.cl-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f1ddb1;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cl-footer-logo {
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(242, 208, 107, 0.24);
}

.cl-footer-wrap p {
  margin: 0;
}

.cl-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.cl-footer-legal a {
  color: #ebebeb;
  border-bottom: 1px solid transparent;
}

.cl-footer-legal .cl-link-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #ebebeb;
  border-bottom: 1px solid transparent;
  font: inherit;
  cursor: pointer;
}

.cl-footer-legal a:hover {
  border-color: rgba(240, 216, 163, 0.8);
}

.cl-footer-legal .cl-link-btn:hover {
  border-color: rgba(240, 216, 163, 0.8);
}

.cl-mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(240, 216, 163, 0.45);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.4);
}

.cl-exec-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 74;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body.cl-exec-bar-visible .cl-exec-cta-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cl-exec-cta-inner {
  display: grid;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(242, 208, 107, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 208, 107, 0.16), transparent 38%),
    rgba(8, 8, 8, 0.94);
  padding: 12px 14px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.46);
}

.cl-exec-cta-inner p {
  margin: 0;
  color: #e4d4ac;
  font-size: 0.9rem;
}

.cl-exec-cta-inner .cl-actions {
  margin: 0;
  gap: 8px;
}

.cl-exec-cta-inner .cl-btn {
  min-height: 42px;
}

.cl-consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 95;
  border: 1px solid rgba(242, 208, 107, 0.34);
  border-radius: 14px;
  padding: 12px;
  background: rgba(8, 8, 8, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.cl-consent p {
  margin: 0 0 8px;
  color: #d9d9d9;
  font-size: 0.9rem;
}

html:not(.cl-js) .reveal {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

html.cl-js .reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.82s cubic-bezier(0.18, 0.78, 0.28, 1), transform 0.82s cubic-bezier(0.18, 0.78, 0.28, 1), filter 0.82s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.cl-js .reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.cl-section.is-peaking .cl-card,
.cl-section.is-peaking .cl-proof-card,
.cl-section.is-peaking .cl-impact-card,
.cl-section.is-peaking .cl-signature-card,
.cl-section.is-peaking .cl-faq-card,
.cl-section.is-peaking .cl-command-center-card,
.cl-section.is-peaking .cl-europe-card,
.cl-section.is-peaking .cl-experience-card,
.cl-section.is-peaking .cl-citation-card {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 208, 107, 0.2), 0 0 22px rgba(242, 208, 107, 0.16);
}

.cl-experience-layer {
  overflow: hidden;
}

.cl-experience-grid {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.cl-experience-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 208, 107, 0.18);
  background:
    radial-gradient(circle at 110% -10%, rgba(242, 208, 107, 0.16), rgba(242, 208, 107, 0) 44%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.9), rgba(10, 10, 10, 0.94));
  backdrop-filter: blur(6px);
}

.cl-experience-card h3 {
  margin-top: 6px;
}

.cl-experience-card p {
  margin-top: 8px;
  color: #d2d2d2;
}

.cl-ai-citation {
  overflow: hidden;
}

.cl-ai-citation::before {
  background: linear-gradient(90deg, rgba(242, 208, 107, 0), rgba(242, 208, 107, 0.38), rgba(242, 208, 107, 0));
  opacity: 0.68;
}

.cl-citation-grid {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.cl-citation-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 208, 107, 0.2);
  background:
    radial-gradient(circle at 120% -20%, rgba(242, 208, 107, 0.2), rgba(242, 208, 107, 0) 46%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.9), rgba(11, 11, 11, 0.95));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.cl-citation-card::before {
  content: "";
  position: absolute;
  inset: -36% auto auto -38%;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 208, 107, 0.24), rgba(242, 208, 107, 0));
  transform: translate3d(calc(var(--cin-progress, 0) * 16px), calc(var(--cin-drift, 0px) * -0.4), 0);
}

.cl-citation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 247, 225, 0.26), rgba(255, 255, 255, 0));
  transform: translateX(-140%);
  animation: clCiteSweep 4.6s ease-in-out infinite;
}

.cl-citation-card h3 {
  margin-top: 8px;
}

.cl-citation-card p {
  margin-top: 8px;
  color: #d3d3d3;
}

.cl-citation-strip {
  margin-top: 18px;
  position: relative;
  display: flex;
  gap: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(242, 208, 107, 0.22);
  border-radius: 999px;
  overflow: auto;
  scrollbar-width: none;
  background: rgba(8, 8, 8, 0.82);
}

.cl-citation-strip::-webkit-scrollbar {
  display: none;
}

.cl-citation-strip span {
  flex: 0 0 auto;
  color: #e6cf9f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  white-space: nowrap;
}

.cl-citation-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 1), rgba(8, 8, 8, 0) 12%, rgba(8, 8, 8, 0) 88%, rgba(8, 8, 8, 1)),
    linear-gradient(180deg, rgba(242, 208, 107, 0.08), rgba(242, 208, 107, 0));
}

.cl-segment-switch {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 6px;
}

.cl-segment-switch button {
  border: 0;
  min-height: 38px;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: #d4d4d4;
}

.cl-segment-switch button.is-active {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  color: #111;
  font-weight: 700;
}

[data-segment-panel] {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

[data-segment-panel].is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  position: absolute;
}

.cl-assessment {
  --assessment-energy: 0;
  border: 1px solid rgba(242, 208, 107, 0.2);
  border-radius: var(--radius);
  background: radial-gradient(circle at top right, rgba(242, 208, 107, 0.08), rgba(14, 14, 14, 0.84) 42%);
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 26px 52px rgba(0, 0, 0, 0.34);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.cl-assessment.is-progressing {
  border-color: rgba(242, 208, 107, 0.38);
}

.cl-assessment.is-ready {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 68px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(242, 208, 107, 0.18);
}

.cl-assessment.is-complete {
  border-color: rgba(242, 208, 107, 0.62);
  filter: saturate(1.08);
}

.cl-assessment.is-result-ready {
  animation: clResultReady 0.9s ease;
}

.cl-assessment label {
  display: block;
  color: #f0d8a3;
  margin-bottom: 10px;
}

.cl-assessment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.cl-assessment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cl-assessment-side {
  border: 1px solid rgba(242, 208, 107, 0.2);
  border-radius: 14px;
  padding: 14px;
  background: rgba(8, 8, 8, 0.58);
}

.cl-assessment-main {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  background: rgba(10, 10, 10, 0.55);
}

.cl-assessment input[type="text"],
.cl-assessment input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.75);
  color: #fff;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.cl-assessment-q {
  margin-top: 10px;
}

.cl-assessment input[type=\"range\"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 107, 0.26);
  background: linear-gradient(90deg, rgba(242, 208, 107, 0.95) 0%, rgba(242, 208, 107, 0.75) var(--range-pct, 50%), rgba(255, 255, 255, 0.14) var(--range-pct, 50%), rgba(255, 255, 255, 0.08) 100%);
}

.cl-assessment input[type=\"range\"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 0.82);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  box-shadow: 0 0 0 3px rgba(242, 208, 107, 0.16);
}

.cl-assessment input[type=\"range\"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 0.82);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  box-shadow: 0 0 0 3px rgba(242, 208, 107, 0.16);
}

.cl-assessment p {
  margin: 10px 0 0;
  color: #d6d6d6;
}

.cl-assessment-progress {
  margin: 12px 0 18px;
  padding: 12px;
  border: 1px solid rgba(242, 208, 107, 0.25);
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.75);
}

.cl-assessment-progress-orb {
  --assessment-energy: 0;
  width: 82px;
  height: 82px;
  margin: 0 0 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 208, 107, 0.35);
  background:
    conic-gradient(from 270deg, rgba(242, 208, 107, 0.96) calc(var(--assessment-energy, 0) * 1turn), rgba(255, 255, 255, 0.12) 0),
    radial-gradient(circle at 28% 22%, rgba(242, 208, 107, 0.35), rgba(18, 18, 18, 0.8) 65%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.96), rgba(8, 8, 8, 0.96));
  transition: box-shadow 0.35s ease, transform 0.3s ease;
}

.cl-assessment.is-ready .cl-assessment-progress-orb {
  box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.25), 0 0 28px rgba(242, 208, 107, 0.22);
}

.cl-assessment.is-complete .cl-assessment-progress-orb {
  animation: clOrbReadyPulse 2.2s ease-in-out infinite;
}

.cl-assessment-progress-orb span {
  color: #f2d06b;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cl-assessment-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cl-assessment-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  transition: width 0.35s ease;
}

.cl-assessment-progress p {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #d9d9d9;
}

.cl-assessment-quick-actions {
  margin-top: 10px;
}

.cl-assessment-side-note {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 18, 0.66);
}

.cl-assessment-nav {
  position: sticky;
  top: 70px;
  z-index: 8;
  margin: 0 0 14px;
  padding: 8px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border: 1px solid rgba(242, 208, 107, 0.24);
  border-radius: 10px;
  background: rgba(12, 12, 12, 0.88);
}

.cl-assessment-nav button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 20, 0.75);
  color: #d8d8d8;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  white-space: nowrap;
  font-size: 0.82rem;
}

.cl-assessment-nav button.is-active {
  border-color: rgba(242, 208, 107, 0.7);
  color: #111;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  font-weight: 700;
}

.cl-assessment-nav button.is-done {
  border-color: rgba(242, 208, 107, 0.4);
  color: #f2d06b;
}

.cl-assessment-wizard-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 8px 0 12px;
}

.cl-assessment-wizard-controls p {
  margin: 0;
  text-align: center;
  color: #ddd;
  font-size: 0.9rem;
}

.cl-assessment-wizard-controls-bottom {
  margin-top: 8px;
}

.cl-assessment-dimension {
  margin: 14px 0 20px;
  padding: 14px;
  border: 1px solid rgba(242, 208, 107, 0.2);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.52);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cl-assessment-dimension.is-current {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cl-assessment-dimension.is-strong {
  box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.3), 0 0 26px rgba(242, 208, 107, 0.12);
}

.cl-assessment-dimension-head h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.cl-assessment-dimension-score {
  margin-top: 8px;
  color: #e5d3a0;
}

.cl-assessment-dimension-score strong {
  color: #f2d06b;
}

.cl-assessment-q-card {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(14, 14, 14, 0.66);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cl-assessment-q-card:hover {
  border-color: rgba(242, 208, 107, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.cl-assessment-dimension:target {
  box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.35), 0 0 28px rgba(242, 208, 107, 0.14);
}

.cl-assessment-result {
  margin-top: 16px;
  border: 1px solid rgba(242, 208, 107, 0.35);
  border-radius: 12px;
  background: rgba(12, 12, 12, 0.85);
  padding: 16px;
}

.cl-assessment-result h3 {
  color: #f2d06b;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.cl-assessment-list {
  margin: 8px 0 14px;
  padding-left: 18px;
  color: #dfdfdf;
}

.cl-assessment-list li {
  margin: 6px 0;
}

.cl-assessment-range-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}

.cl-assessment-range-value {
  min-width: 22px;
  text-align: center;
  color: #f2d06b;
  font-weight: 700;
}

.cl-assessment-range-label {
  min-width: 56px;
  text-align: right;
  color: #d0d0d0;
  font-size: 0.88rem;
}

.cl-assessment-actions {
  margin: 10px 0 16px;
}

.cl-assessment-report-wrap {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 208, 107, 0.25);
}

.cl-assessment-report {
  margin-top: 10px;
}

.cl-assessment-report h4,
.cl-assessment-report h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #f2d06b;
  margin: 0 0 10px;
}

.cl-assessment-report h4 {
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
}

.cl-assessment-report h5 {
  margin-top: 18px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.cl-assessment-report p,
.cl-assessment-report li,
.cl-assessment-report td,
.cl-assessment-report th {
  color: #e9e9e9;
  line-height: 1.62;
  font-size: 0.95rem;
}

.cl-assessment-report ul {
  margin: 8px 0 10px;
  padding-left: 18px;
}

.cl-assessment-report table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.cl-assessment-report th,
.cl-assessment-report td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid rgba(242, 208, 107, 0.22);
}

@media print {
  body {
    background: #fff !important;
    color: #101010 !important;
  }

  header,
  footer,
  .cl-orbit,
  .cl-noise,
  .cl-assessment-form > *:not(#clAssessmentResult),
  #clAssessmentPrint {
    display: none !important;
  }

  #clAssessmentResult {
    display: block !important;
    border: 0 !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .cl-assessment-report {
    max-width: 185mm;
    margin: 0 auto;
    color: #111 !important;
  }

  .cl-assessment-report h4,
  .cl-assessment-report h5 {
    color: #111 !important;
  }

  .cl-assessment-report p,
  .cl-assessment-report li,
  .cl-assessment-report td,
  .cl-assessment-report th {
    color: #111 !important;
  }
}

@keyframes clTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes clAuraFloat {
  from {
    transform: translate(-50%, -52%);
  }
  to {
    transform: translate(-50%, -46%);
  }
}

@keyframes clPulseLine {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes clButtonSweep {
  0%,
  80%,
  100% {
    transform: translateX(-130%);
    opacity: 0;
  }
  24%,
  42% {
    transform: translateX(130%);
    opacity: 1;
  }
}

@keyframes clGearEngage {
  0% {
    transform: scale(0.94) rotate(0deg);
  }
  45% {
    transform: scale(1.08) rotate(160deg);
  }
  100% {
    transform: scale(1) rotate(300deg);
  }
}

@keyframes clCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(242, 208, 107, 0);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.2), 0 0 22px rgba(242, 208, 107, 0.2);
  }
}

@keyframes clProofSweep {
  0%,
  78%,
  100% {
    transform: translateX(-130%);
  }
  28%,
  44% {
    transform: translateX(130%);
  }
}

@keyframes clLogoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(242, 208, 107, 0);
    border-color: rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 16px rgba(242, 208, 107, 0.22);
    border-color: rgba(242, 208, 107, 0.36);
  }
}

@keyframes clShine {
  0%,
  72%,
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
  30%,
  45% {
    transform: translateX(120%);
    opacity: 1;
  }
}

@keyframes clMeshFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  to {
    transform: translate3d(0, 22px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes clOrbFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-20px) scale(1.08);
  }
}

@keyframes clHeroLogoFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-6px);
  }
}

@keyframes clHeroLogoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(242, 208, 107, 0));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(242, 208, 107, 0.28));
  }
}

@keyframes clOrbitPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 9px rgba(240, 216, 163, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(240, 216, 163, 0.62));
  }
}

@keyframes clWatermarkRotate {
  from {
    rotate: -8deg;
  }
  to {
    rotate: 352deg;
  }
}

@keyframes clAuroraRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes clHeadingSweep {
  0% {
    transform: translateX(-130%);
  }
  40% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes clSectionPulse {
  0%,
  100% {
    filter: saturate(1.18) brightness(1.03);
  }
  50% {
    filter: saturate(1.33) brightness(1.1);
  }
}

@keyframes clOrbReadyPulse {
  0%,
  100% {
    transform: translateZ(0) scale(1);
    box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.24), 0 0 16px rgba(242, 208, 107, 0.14);
  }
  50% {
    transform: translateZ(0) scale(1.035);
    box-shadow: 0 0 0 1px rgba(242, 208, 107, 0.42), 0 0 30px rgba(242, 208, 107, 0.28);
  }
}

@keyframes clResultReady {
  0% {
    transform: translateY(0) scale(0.995);
    filter: saturate(0.95);
  }
  45% {
    transform: translateY(-2px) scale(1.006);
    filter: saturate(1.14);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1.08);
  }
}

@keyframes clEuropeFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes clCiteSweep {
  0% {
    transform: translateX(-140%);
  }
  34% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(140%);
  }
}

.cl-legal-page h1 {
  margin: 10px 0 20px;
}

.cl-legal-content {
  max-width: 920px;
}

.cl-legal-content h2 {
  margin: 28px 0 10px;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.cl-legal-content p {
  margin: 0;
  color: #d0d0d0;
}

.cl-legal-content p + p {
  margin-top: 10px;
}

@media (min-width: 780px) {
  body {
    padding-bottom: 0;
  }

  .cl-top-nav {
    display: inline-flex;
  }

  .cl-scroll-hud {
    display: block;
  }

  .cl-logo-row {
    grid-template-columns: repeat(6, 1fr);
  }

  .cl-proof-strip-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cl-decision-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-command-center-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-europe-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-briefing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-trust-seals-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-positioning-grid,
  .cl-positioning-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-coaching-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-card-grid,
  .cl-proof-grid,
  .cl-case-grid,
  .cl-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-assessment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .cl-assessment-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
  }

  .cl-assessment-side {
    position: sticky;
    top: 96px;
  }

  .cl-luxury-columns,
  .cl-board-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-split-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .cl-bento-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-bento-xl {
    grid-column: span 2;
    grid-row: span 2;
  }

  .cl-bento-wide {
    grid-column: span 2;
  }

  .cl-signal {
    grid-template-columns: 170px 1fr;
    align-items: center;
  }

  .cl-ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-engine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-signature-grid,
  .cl-faq-grid,
  .cl-citation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-engagement-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-command-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-hero-proof-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-card-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-team-wrap,
  .cl-final-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .cl-footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cl-global-cta-wrap {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cl-mobile-cta {
    display: none;
  }

  .cl-exec-cta-inner {
    grid-template-columns: 1fr auto;
  }

  .cl-float-rail {
    display: flex;
  }
}

@media (min-width: 1100px) {
  .cl-proof-strip-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .cl-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .cl-bento-xl {
    grid-column: span 2;
  }

  .cl-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cl-signature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .cl-experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-briefing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 780px) {
  .cl-form-step-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-ceo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-ceo-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .cl-ceo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 779px) {
  .cl-hero-main-image {
    width: min(92vw, 560px);
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .cl-hero-main-image img {
    width: min(56%, 270px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .cl-ticker-track {
    animation: none;
  }

  .cl-spotlight {
    display: none;
  }

  .cl-preloader {
    display: none;
  }

  .cl-hero-aura {
    animation: none;
  }

  .cl-hero-logo {
    animation: none;
  }

  .cl-watermark-logo {
    animation: none;
  }

  .cl-btn-primary {
    animation: none;
  }

  .cl-section.is-active::after {
    animation: none;
  }

  .cl-assessment.is-result-ready {
    animation: none;
  }

  .cl-assessment.is-complete .cl-assessment-progress-orb {
    animation: none;
  }

  .cl-exec-cta-bar {
    transition: none;
  }

  .cl-mid-burst,
  .cl-final-vault-glow {
    display: none !important;
  }

  .cl-europe-track {
    animation: none;
  }

  body::after {
    animation: none;
    opacity: 0.2;
  }

  .cl-hero-title::after {
    animation: none;
  }

  .cl-mesh {
    animation: none;
  }

  .cl-orbs {
    display: none;
  }

  .cl-particles {
    display: none;
  }

  .cl-cursor-aura,
  .cl-cursor-dot {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cl-cursor-aura,
  .cl-cursor-dot,
  .cl-scroll-hud {
    display: none !important;
  }

  body::after {
    opacity: 0.24;
  }

  .cl-watermark-logo {
    opacity: 0.05;
  }

  .cl-exec-cta-bar {
    display: none;
  }
}

@media (max-width: 740px) {
  .cl-semantic-links {
    gap: 8px;
  }

  .cl-semantic-links a {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 7px 10px;
  }

  .cl-partner-grid {
    grid-template-columns: 1fr;
  }

  .cl-hero-moment {
    font-size: 0.9rem;
    text-align: left;
  }
}

@keyframes clPulseDot {
  0% { box-shadow: 0 0 0 0 rgba(242, 208, 107, 0.42); }
  70% { box-shadow: 0 0 0 10px rgba(242, 208, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 208, 107, 0); }
}

@keyframes clPartnerCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes clHeroGrandEnter {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px) scale(0.99);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes clMidBurstFlash {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  32% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
}

@keyframes clFinalVaultReveal {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes clFinalContentLift {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
