:root {
  --white: #ffffff;
  --tomato-jam: #c63b35;
  --flag-red: #c3302a;
  --cool-steel: #a4abb3;
  --cool-steel-2: #8f97a2;

  --bg: #22262c;
  --surface: #2f3339;
  --surface-soft: #3a3f46;
  --text: #ffffff;
  --muted: #d7dce1;
  --line: rgba(255, 255, 255, 0.14);

  --brand: var(--tomato-jam);
  --brand-strong: var(--flag-red);
  --brand-soft: rgba(198, 59, 53, 0.13);

  --primary: var(--cool-steel);
  --primary-strong: var(--cool-steel-2);
  --primary-soft: rgba(164, 171, 179, 0.18);

  --shadow: 0 16px 36px rgba(143, 151, 162, 0.28);
  --shadow-soft: 0 8px 20px rgba(143, 151, 162, 0.18);
  --radius: 10px;
  --max: 1160px;
  --band-a: color-mix(in srgb, var(--surface) 90%, var(--primary-soft));
  --band-b: color-mix(in srgb, var(--surface) 90%, var(--brand-soft));
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="light"] {
  --bg: #eef2f5;
  --surface: var(--white);
  --surface-soft: #e7ebef;
  --text: #1d2a38;
  --muted: #526274;
  --line: rgba(119, 132, 146, 0.34);

  --brand: var(--tomato-jam);
  --brand-strong: var(--flag-red);
  --brand-soft: rgba(198, 59, 53, 0.12);

  --primary: var(--cool-steel);
  --primary-strong: var(--cool-steel-2);
  --primary-soft: rgba(143, 151, 162, 0.18);

  --shadow: 0 12px 30px rgba(95, 109, 124, 0.22);
  --shadow-soft: 0 6px 18px rgba(95, 109, 124, 0.14);
  --band-a: color-mix(in srgb, var(--bg) 82%, var(--primary-soft));
  --band-b: color-mix(in srgb, var(--bg) 82%, var(--brand-soft));
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bg) 82%, var(--primary-soft)) 0%, var(--bg) 48%, color-mix(in srgb, var(--bg) 86%, var(--brand-soft)) 100%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: clip;
  transition: background 0.28s ease, color 0.28s ease;
}

body::before {
  content: none;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(8, 18, 28, 0.2));
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, var(--brand) 0%, #c3302a 100%);
  box-shadow: 0 10px 24px rgba(198, 59, 53, 0.24);
}

.brand-text {
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 10px;
  padding: 0.42rem 0.62rem;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav {
  display: block;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.18s var(--ease-out-quart),
    transform 0.22s var(--ease-out-quart),
    clip-path 0.24s var(--ease-out-quint);
}

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

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.mobile-nav .container {
  padding: 0.65rem 0 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.mobile-nav a {
  text-decoration: none;
  padding: 0.56rem 0.2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  color: var(--muted);
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a.active {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a.nav-highlight {
  border-bottom: none;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, #c3302a 100%);
  box-shadow:
    0 8px 20px rgba(198, 59, 53, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform 0.18s var(--ease-out-quart), box-shadow 0.18s var(--ease-out-quart);
}

.nav-links a.active,
.nav-links a:hover {
  border-bottom-color: var(--brand);
  color: var(--text);
}

.nav-links a.nav-highlight.active,
.nav-links a.nav-highlight:hover {
  border-bottom-color: transparent;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow:
    0 12px 24px rgba(198, 59, 53, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.theme-toggle {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: transform 0.16s var(--ease-out-quart), border-color 0.18s var(--ease-out-quart), background 0.18s var(--ease-out-quart);
}

.theme-toggle:hover {
  border-color: color-mix(in srgb, var(--primary) 60%, var(--line));
}

.theme-toggle:active,
.menu-toggle:active,
.btn:active {
  transform: scale(0.97);
}

.theme-toggle-icon {
  width: 1.15rem;
  display: inline-grid;
  place-items: center;
}

.hero {
  margin-top: 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 450px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(132deg, rgba(47, 51, 57, 0.94) 0%, rgba(58, 63, 70, 0.9) 56%, rgba(86, 63, 65, 0.9) 100%),
    radial-gradient(circle at 86% 24%, rgba(198, 59, 53, 0.12), transparent 54%),
    radial-gradient(circle at 14% 14%, rgba(195, 48, 42, 0.34), transparent 62%),
    radial-gradient(circle at 74% 88%, rgba(195, 48, 42, 0.22), transparent 60%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-modern-it.svg");
  background-repeat: no-repeat;
  background-size: 112% auto;
  background-position: 82% 46%;
  opacity: 0.4;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.18) 26%,
    rgba(0, 0, 0, 0.78) 48%,
    rgba(0, 0, 0, 1) 62%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.18) 26%,
    rgba(0, 0, 0, 0.78) 48%,
    rgba(0, 0, 0, 1) 62%
  );
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1.02);
  transform-origin: 78% 48%;
}

html[data-theme="light"] .hero {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 250, 0.94) 58%, rgba(164, 171, 179, 0.42) 100%),
    radial-gradient(circle at 86% 24%, color-mix(in srgb, var(--primary-soft) 78%, transparent), transparent 56%),
    radial-gradient(circle at 17% 16%, rgba(198, 59, 53, 0.08), transparent 58%),
    radial-gradient(circle at 76% 86%, rgba(195, 48, 42, 0.055), transparent 58%);
}

html[data-theme="light"] .hero::before {
  opacity: 0.22;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.2;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.js .hero.reveal.visible::before {
  animation: heroDiagramSettle 0.82s var(--ease-out-expo) both;
}

.js .hero.reveal.visible::after {
  animation: heroGridSweep 0.72s var(--ease-out-quart) both;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 4.6vw, 3.4rem);
  display: grid;
  gap: 1.3rem;
  max-width: 100%;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  position: relative;
  z-index: 1;
  padding: clamp(0.6rem, 1.8vw, 1.2rem);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(2.05rem, 5.2vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  margin: 0;
  color: #e8edf4;
  max-width: 58ch;
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.62;
  font-weight: 500;
}

html[data-theme="light"] .hero h1 {
  color: var(--text);
}

html[data-theme="light"] .hero p {
  color: var(--muted);
}

html[data-theme="light"] .hero .tag {
  color: var(--flag-red);
  background: rgba(198, 59, 53, 0.1);
  border-color: rgba(195, 48, 42, 0.28);
}

.hero-copy-row {
  max-width: 760px;
}

.hero-copy-row p {
  max-width: none;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem 1.1rem;
  max-width: 980px;
  margin-top: 0.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.38;
}

.hero-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  min-width: min(100%, 215px);
}

.hero-facts strong {
  color: #fff;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

html[data-theme="light"] .hero-facts {
  border-top-color: color-mix(in srgb, var(--primary) 20%, transparent);
  color: var(--muted);
}

html[data-theme="light"] .hero-facts strong {
  color: var(--text);
}

.js .hero.reveal.visible .tag,
.js .hero.reveal.visible h1,
.js .hero.reveal.visible .hero-copy-row > p,
.js .hero.reveal.visible .hero-actions,
.js .hero.reveal.visible .hero-facts,
.js .hero.reveal.visible .partner-badge {
  animation: heroContentIn 0.58s var(--ease-out-expo) both;
}

.js .hero.reveal.visible .tag { animation-delay: 0.04s; }
.js .hero.reveal.visible h1 { animation-delay: 0.11s; }
.js .hero.reveal.visible .hero-copy-row > p { animation-delay: 0.18s; }
.js .hero.reveal.visible .hero-actions { animation-delay: 0.25s; }
.js .hero.reveal.visible .hero-facts { animation-delay: 0.31s; }
.js .hero.reveal.visible .partner-badge { animation-delay: 0.36s; }

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroDiagramSettle {
  from {
    opacity: 0;
    transform: translate3d(1.2rem, -0.6rem, 0) scale(1.06);
    filter: saturate(0.82);
  }
  to {
    opacity: 0.4;
    transform: translate3d(0, 0, 0) scale(1.02);
    filter: saturate(1);
  }
}

@keyframes heroGridSweep {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }
  to {
    opacity: 0.2;
    transform: translate3d(0, 0, 0);
  }
}

.partner-badge {
  position: absolute;
  top: clamp(0.7rem, 1.6vw, 1.1rem);
  right: clamp(0.7rem, 1.6vw, 1.1rem);
  z-index: 3;
  width: min(420px, calc(100% - 1.4rem));
}

.partner-badge summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid color-mix(in srgb, var(--primary) 44%, var(--line));
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  background: color-mix(in srgb, var(--surface-soft) 84%, transparent);
  color: #dceff5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 22px rgba(4, 14, 24, 0.34);
}

.partner-badge summary::-webkit-details-marker {
  display: none;
}

.partner-badge summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.partner-badge[open] summary::after {
  transform: rotate(45deg);
}

.partner-badge-panel {
  margin-top: 0.42rem;
  border: 1px solid color-mix(in srgb, var(--primary) 42%, var(--line));
  border-radius: 8px;
  padding: 0.82rem;
  background:
    linear-gradient(170deg, color-mix(in srgb, var(--surface-soft) 94%, var(--brand-soft)) 0%, color-mix(in srgb, var(--surface) 96%, var(--primary-soft)) 100%);
  box-shadow: 0 16px 34px rgba(4, 14, 24, 0.44);
}

.partner-badge-panel h3 {
  margin: 0 0 0.34rem;
  font-size: 0.98rem;
  line-height: 1.25;
}

.partner-badge-panel p {
  margin: 0;
  color: color-mix(in srgb, var(--text) 90%, var(--muted));
  font-size: 0.9rem;
  line-height: 1.5;
}

.partner-badge-panel ul {
  margin: 0.62rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.34rem;
  color: color-mix(in srgb, var(--text) 92%, #fff);
  font-size: 0.86rem;
}

html[data-theme="light"] .partner-badge summary {
  color: color-mix(in srgb, var(--primary-strong) 76%, #2b1f1c);
  background: color-mix(in srgb, var(--surface) 95%, var(--primary-soft));
}

html[data-theme="light"] .partner-badge-panel {
  background: linear-gradient(170deg, color-mix(in srgb, var(--surface) 99%, var(--primary-soft)) 0%, var(--surface) 100%);
}

html[data-theme="light"] .partner-badge-panel p {
  color: var(--muted);
}

html[data-theme="light"] .partner-badge-panel ul {
  color: color-mix(in srgb, var(--text) 90%, #2b1f1c);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 800;
  font-size: 0.92rem;
  transition:
    transform 0.16s var(--ease-out-quart),
    box-shadow 0.2s var(--ease-out-quart),
    background 0.2s var(--ease-out-quart),
    border-color 0.2s var(--ease-out-quart);
}

.btn-primary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 92%, #ffffff) 0%, var(--brand-strong) 100%);
  color: #fff;
  box-shadow:
    0 12px 26px rgba(198, 59, 53, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.btn-primary::after {
  content: "↗";
  font-size: 0.88em;
  line-height: 1;
  opacity: 0.9;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(198, 59, 53, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 66%, #ffffff);
  outline-offset: 3px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .btn-secondary {
  background: color-mix(in srgb, var(--brand-soft) 44%, rgba(255, 255, 255, 0.94));
  color: var(--text);
  border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
  box-shadow:
    0 8px 18px rgba(198, 59, 53, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .btn-secondary:hover,
html[data-theme="light"] .btn-secondary:focus-visible {
  background: color-mix(in srgb, var(--brand-soft) 68%, rgba(255, 255, 255, 0.96));
  border-color: color-mix(in srgb, var(--brand) 64%, var(--line));
  transform: translateY(-1px);
  box-shadow:
    0 12px 24px rgba(198, 59, 53, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.btn-consulting {
  background: color-mix(in srgb, var(--primary) 16%, var(--surface));
  color: var(--text);
  border-color: color-mix(in srgb, var(--primary) 44%, var(--line));
  box-shadow: 0 6px 16px rgba(8, 18, 28, 0.16);
}

.btn-consulting:hover {
  background: color-mix(in srgb, var(--primary) 22%, var(--surface));
  border-color: color-mix(in srgb, var(--primary) 60%, var(--line));
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(8, 18, 28, 0.22);
}

.wave {
  display: none;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -1px 0 clamp(3.25rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-strip article {
  display: grid;
  gap: 0.22rem;
  min-height: 112px;
  padding: clamp(0.9rem, 2vw, 1.2rem);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.js .proof-strip.reveal.visible article {
  animation: listItemRise 0.42s var(--ease-out-quart) both;
}

.js .proof-strip.reveal.visible article:nth-child(1) { animation-delay: 0.04s; }
.js .proof-strip.reveal.visible article:nth-child(2) { animation-delay: 0.1s; }
.js .proof-strip.reveal.visible article:nth-child(3) { animation-delay: 0.16s; }

.proof-strip strong {
  color: var(--text);
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.15;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: stretch;
  margin-top: clamp(1.2rem, 3vw, 1.8rem);
}

.feature-lead {
  min-height: 100%;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid color-mix(in srgb, var(--brand) 34%, var(--line));
  border-radius: 8px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 88%, var(--brand-soft)) 0%, var(--surface) 100%);
}

.feature-lead h3 {
  margin: 0 0 0.65rem;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
  text-wrap: balance;
}

.feature-lead p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.62;
}

.reason-list {
  display: grid;
  gap: 0.75rem;
}

.reason-list article {
  padding: 0 0 0.85rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
}

.js .compact-overview.reveal.visible .feature-lead,
.js .compact-overview.reveal.visible .reason-list article {
  animation: listItemRise 0.46s var(--ease-out-quart) both;
}

.js .compact-overview.reveal.visible .feature-lead { animation-delay: 0.05s; }
.js .compact-overview.reveal.visible .reason-list article:nth-child(1) { animation-delay: 0.12s; }
.js .compact-overview.reveal.visible .reason-list article:nth-child(2) { animation-delay: 0.18s; }
.js .compact-overview.reveal.visible .reason-list article:nth-child(3) { animation-delay: 0.24s; }

.reason-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.reason-list h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.reason-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  max-width: 64ch;
}

.journey-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.1rem, 3.6vw, 2rem);
  align-items: stretch;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.journey-anchor {
  position: relative;
  min-height: 100%;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid color-mix(in srgb, var(--brand) 34%, var(--line));
  border-radius: 10px;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 88%, var(--brand-soft)) 0%, var(--surface) 100%);
  overflow: hidden;
}

.journey-anchor::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
  border-radius: 50%;
  opacity: 0.52;
}

.journey-anchor h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.7rem;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
  text-wrap: balance;
}

.journey-anchor p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.62;
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: stretch;
  padding-top: 1.1rem;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: calc(100% / 6);
  right: calc(100% / 6);
  top: 0.44rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), color-mix(in srgb, var(--primary) 70%, var(--brand)));
  opacity: 0.56;
}

.journey-steps article {
  position: relative;
  min-height: 224px;
  padding: clamp(0.95rem, 2vw, 1.1rem);
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.journey-steps article::before {
  content: "";
  position: absolute;
  top: -1.05rem;
  left: 50%;
  width: 0.78rem;
  height: 0.78rem;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-soft) 80%, transparent);
  transform: translateX(-50%);
}

.journey-steps span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: color-mix(in srgb, var(--brand) 78%, #ffffff);
  font-weight: 800;
  font-size: 0.82rem;
}

.journey-steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  line-height: 1.22;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

@keyframes listItemRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  margin: clamp(2.3rem, 5vw, 4rem) 0;
  position: relative;
  padding: clamp(1rem, 2.8vw, 1.8rem) 0.1rem;
}

.home-main .compact-overview {
  margin: clamp(3rem, 6vw, 4.8rem) 0 clamp(3.5rem, 7vw, 5.25rem);
}

.home-main .quick-links {
  margin: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.section::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: -1.2rem;
  bottom: -1.2rem;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in srgb, var(--band-a) 36%, transparent) 14%,
      color-mix(in srgb, var(--band-a) 70%, transparent) 50%,
      color-mix(in srgb, var(--band-a) 36%, transparent) 86%,
      transparent 100%
    );
}

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

main.container > .section:nth-of-type(even)::before {
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in srgb, var(--band-b) 36%, transparent) 14%,
      color-mix(in srgb, var(--band-b) 70%, transparent) 50%,
      color-mix(in srgb, var(--band-b) 36%, transparent) 86%,
      transparent 100%
    );
}

.section h2 {
  margin: 0 0 0.62rem;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.42em;
  height: 1.42em;
  border-radius: 999px;
  color: color-mix(in srgb, var(--brand) 58%, #fff);
  background: color-mix(in srgb, var(--brand-soft) 58%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  font-weight: 700;
  box-shadow: 0 2px 7px rgba(198, 59, 53, 0.12);
}

.ki-page {
  display: grid;
  gap: 1.5rem;
  padding-top: 1.2rem;
}

.ki-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(118deg, rgba(47, 51, 57, 0.94) 0%, rgba(58, 63, 70, 0.9) 56%, rgba(86, 63, 65, 0.88) 100%),
    url("./assets/hero-modern-it.svg");
  background-repeat: no-repeat;
  background-size: auto, 88% auto;
  background-position: center, 118% 42%;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  padding: clamp(1.2rem, 4vw, 2.8rem);
}

html[data-theme="light"] .ki-hero {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 245, 246, 0.92) 58%, rgba(164, 171, 179, 0.52) 100%),
    url("./assets/hero-modern-it.svg");
  background-repeat: no-repeat;
  background-size: auto, 88% auto;
  background-position: center, 118% 42%;
}

.ki-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 24%, color-mix(in srgb, var(--primary) 72%, #ffffff) 0 0.24rem, transparent 0.26rem),
    radial-gradient(circle at 84% 34%, color-mix(in srgb, var(--brand) 68%, #ffffff) 0 0.2rem, transparent 0.22rem),
    radial-gradient(circle at 76% 53%, color-mix(in srgb, var(--primary) 70%, #ffffff) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 91% 62%, color-mix(in srgb, var(--brand) 62%, #ffffff) 0 0.22rem, transparent 0.24rem),
    linear-gradient(112deg, transparent 0 54%, color-mix(in srgb, var(--primary) 42%, transparent) 54.2% 54.45%, transparent 54.7%),
    linear-gradient(44deg, transparent 0 61%, color-mix(in srgb, var(--brand) 34%, transparent) 61.2% 61.45%, transparent 61.7%),
    linear-gradient(152deg, transparent 0 66%, color-mix(in srgb, var(--primary) 32%, transparent) 66.2% 66.45%, transparent 66.7%),
    radial-gradient(circle at 82% 44%, color-mix(in srgb, var(--primary-soft) 92%, transparent), transparent 32%);
  opacity: 0.42;
  transform: translate3d(0, 0, 0);
  animation: kiDataFlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.ki-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.14;
  pointer-events: none;
}

html[data-theme="light"] .ki-hero::before {
  opacity: 0.64;
}

html[data-theme="light"] .ki-hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  opacity: 0.2;
}

@keyframes kiDataFlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: saturate(0.92);
  }
  100% {
    transform: translate3d(-1.2rem, 0.7rem, 0) scale(1.025);
    filter: saturate(1.08);
  }
}

@keyframes kiWorkflowStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kiWorkflowAccentIn {
  from {
    opacity: 0;
    transform: scaleX(0.45);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.ki-hero > * {
  position: relative;
  z-index: 1;
}

.js .ki-hero.reveal.visible .tag,
.js .ki-hero.reveal.visible h1,
.js .ki-hero.reveal.visible .ki-hero-copy > p,
.js .ki-hero.reveal.visible .ki-hero-actions,
.js .ki-hero.reveal.visible .ki-hero-panel {
  animation: heroContentIn 0.56s var(--ease-out-expo) both;
}

.js .ki-hero.reveal.visible .tag { animation-delay: 0.04s; }
.js .ki-hero.reveal.visible h1 { animation-delay: 0.1s; }
.js .ki-hero.reveal.visible .ki-hero-copy > p { animation-delay: 0.17s; }
.js .ki-hero.reveal.visible .ki-hero-actions { animation-delay: 0.24s; }
.js .ki-hero.reveal.visible .ki-hero-panel { animation-delay: 0.3s; }

.ki-hero-copy {
  display: grid;
  gap: 1rem;
  align-content: end;
  max-width: 760px;
}

.ki-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(2.25rem, 5.7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.ki-hero p {
  margin: 0;
  color: #e8edf4;
  max-width: 67ch;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.62;
  font-weight: 600;
}

html[data-theme="light"] .ki-hero h1 {
  color: var(--text);
}

html[data-theme="light"] .ki-hero p {
  color: var(--muted);
}

.ki-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ki-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface-soft) 74%, transparent);
  box-shadow: 0 18px 36px rgba(4, 14, 24, 0.32);
  backdrop-filter: blur(8px);
}

.ki-panel-kicker,
.ki-role-label {
  margin: 0;
  color: color-mix(in srgb, var(--primary) 78%, #ffffff);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ki-hero-panel ul {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.ki-hero-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.6rem;
  color: #eef3f8;
  font-weight: 700;
  line-height: 1.42;
}

html[data-theme="light"] .ki-hero-panel {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(20, 38, 56, 0.24);
}

html[data-theme="light"] .ki-hero-panel .ki-panel-kicker {
  color: color-mix(in srgb, var(--primary-strong) 82%, var(--brand));
}

html[data-theme="light"] .ki-hero-panel li {
  border-top-color: color-mix(in srgb, var(--line) 72%, transparent);
  color: var(--text);
}

.ki-status,
.ki-roles,
.ki-workflow,
.ki-final-cta {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  padding: clamp(1rem, 3vw, 1.45rem);
}

.ki-status {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: stretch;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--surface) 94%, var(--primary-soft)) 0%, color-mix(in srgb, var(--surface) 96%, transparent) 100%);
}

.ki-status h2,
.ki-roles h2,
.ki-workflow h2,
.ki-final-cta h2 {
  margin: 0;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.ki-status p,
.ki-role p,
.ki-workflow p,
.ki-final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.ki-status > div:first-child {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

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

.ki-status-grid article {
  border: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
  background: color-mix(in srgb, var(--surface-soft) 76%, transparent);
  border-radius: 8px;
  padding: 0.85rem;
  box-shadow: inset 0 3px 0 color-mix(in srgb, var(--brand) 76%, var(--primary));
}

.ki-status-grid h3,
.ki-role h3,
.ki-workflow h3 {
  margin: 0 0 0.32rem;
  font-size: 1rem;
  line-height: 1.25;
}

.ki-section-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.95rem;
}

.ki-partner-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: -0.2rem 0 1rem;
}

.ki-partner-strip-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ki-partner-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 10px;
  padding: 0.42rem 0.58rem;
  text-decoration: none;
}

.ki-partner-mark-light {
  background: rgba(255, 255, 255, 0.92);
}

.ki-partner-mark-dark {
  background: linear-gradient(135deg, rgba(11, 17, 23, 0.96) 0%, rgba(28, 36, 46, 0.94) 100%);
}

.ki-partner-mark img {
  display: block;
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
}

.ki-role-stack {
  display: grid;
  gap: 0.75rem;
}

.ki-role {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 1rem;
  align-items: start;
  border-top: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  padding-top: 0.85rem;
}

.ki-role:first-child {
  border-top: 0;
  padding-top: 0;
}

.ki-role-label {
  margin-bottom: 0.3rem;
  color: color-mix(in srgb, var(--primary) 78%, #ffffff);
}

.ki-panel-kicker {
  color: color-mix(in srgb, var(--primary) 78%, #ffffff);
}

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

.ki-workflow-grid article {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 8px;
  padding: 0.95rem;
  background: color-mix(in srgb, var(--surface-soft) 70%, transparent);
}

.ki-workflow-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  width: auto;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--brand) 76%, var(--primary)),
    color-mix(in srgb, var(--primary) 70%, var(--brand))
  );
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left;
}

.js .ki-workflow.reveal.visible .ki-workflow-grid article {
  animation: kiWorkflowStepIn 0.5s cubic-bezier(0.22, 0.88, 0.32, 1) both;
}

.js .ki-workflow.reveal.visible .ki-workflow-grid article::before {
  animation: kiWorkflowAccentIn 0.54s ease both;
}

.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(1),
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(1)::before { animation-delay: 0.06s; }
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(2),
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(2)::before { animation-delay: 0.14s; }
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(3),
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(3)::before { animation-delay: 0.22s; }
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(4),
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(4)::before { animation-delay: 0.3s; }
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(5),
.js .ki-workflow.reveal.visible .ki-workflow-grid article:nth-child(5)::before { animation-delay: 0.38s; }

.ki-workflow-grid span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: color-mix(in srgb, var(--brand) 72%, #ffffff);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.ki-final-cta {
  margin-bottom: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 1.6rem);
  border-color: color-mix(in srgb, var(--brand) 34%, var(--line));
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-soft) 82%, var(--brand-soft)) 0%, color-mix(in srgb, var(--surface) 90%, var(--primary-soft)) 100%);
  box-shadow:
    0 18px 38px color-mix(in srgb, var(--bg) 60%, transparent),
    inset 0 3px 0 color-mix(in srgb, var(--brand) 82%, #ffffff);
}

.ki-final-cta > div {
  display: grid;
  gap: 0.45rem;
  max-width: 780px;
}

.ki-final-cta .btn-primary,
.cta .btn-primary {
  padding-inline: clamp(1rem, 2.4vw, 1.35rem);
  min-height: 46px;
  white-space: nowrap;
}

.intro {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.62;
  font-weight: 500;
}

.service-aggregation {
  position: relative;
  margin-top: 1rem;
  padding-bottom: 1.1rem;
}

.managed-grid {
  position: relative;
  z-index: 2;
}

.aggregate-target {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 1.2rem));
  margin: 2.35rem auto 0;
  padding: 0.9rem 1rem;
  border-color: color-mix(in srgb, var(--brand) 34%, var(--line));
  background: linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 88%, var(--brand-soft)) 0%, var(--surface) 100%);
  box-shadow:
    0 18px 32px color-mix(in srgb, var(--bg) 66%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary) 20%, transparent);
}

.aggregate-target h3 {
  margin-bottom: 0.42rem;
  font-size: clamp(1.06rem, 2.4vw, 1.2rem);
}

.aggregate-target p {
  max-width: 54ch;
}

.aggregate-lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.aggregate-line {
  fill: none;
  stroke: color-mix(in srgb, var(--primary) 78%, var(--brand) 22%);
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--primary) 42%, transparent));
  stroke-dasharray: var(--path-len, 140);
  stroke-dashoffset: var(--path-len, 140);
  marker-end: url(#aggregate-arrow);
}

.aggregate-lines marker path {
  fill: color-mix(in srgb, var(--primary) 82%, var(--brand) 18%);
}

.service-aggregation.is-active .aggregate-line {
  animation: aggregateDraw 1.15s var(--ease-out-quart) forwards;
}

.aggregate-line[data-line="0"] {
  animation-delay: 0.05s;
}

.aggregate-line[data-line="1"] {
  animation-delay: 0.1s;
}

.aggregate-line[data-line="2"] {
  animation-delay: 0.15s;
}

.aggregate-line[data-line="3"] {
  animation-delay: 0.2s;
}

.aggregate-line[data-line="4"] {
  animation-delay: 0.25s;
}

@keyframes aggregateDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: var(--path-len, 140);
  }
  18% {
    opacity: 0.85;
  }
  100% {
    opacity: 0.58;
    stroke-dashoffset: 0;
  }
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

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

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

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

.card {
  position: relative;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  padding: 1.05rem;
  box-shadow: none;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.card:focus-within {
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border-color: color-mix(in srgb, var(--primary) 28%, var(--line));
}

.card.gradient-red,
.card.gradient-blue {
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
}

.card.gradient-red:hover,
.card.gradient-red:focus-within {
  border-color: color-mix(in srgb, var(--primary) 28%, var(--line));
}

.card.gradient-blue:hover,
.card.gradient-blue:focus-within {
  border-color: color-mix(in srgb, var(--primary) 28%, var(--line));
}

.card.gradient-red h3,
.card.gradient-blue h3 {
  color: var(--text);
}

.card.gradient-red p,
.card.gradient-blue p {
  color: var(--muted);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
  max-width: 50ch;
}

.story-showcase {
  max-width: 980px;
  margin-top: 1rem;
  margin-inline: auto;
}

.story-shell {
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.story-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin: 0;
  padding: 0.72rem 0.72rem 0.62rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-soft) 90%, transparent) 0%, color-mix(in srgb, var(--surface) 88%, transparent) 100%);
}

.story-tab {
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  background: color-mix(in srgb, var(--surface-soft) 76%, transparent);
  color: var(--muted);
  border-radius: 11px 11px 0 0;
  padding: 0.38rem 0.72rem 0.34rem;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transform: translateY(3px);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.story-tab:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--primary) 45%, var(--line));
}

.story-tab.is-active {
  color: var(--text);
  border-color: color-mix(in srgb, var(--primary) 38%, var(--line));
  border-bottom-color: color-mix(in srgb, var(--surface) 95%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary-soft) 38%, var(--surface-soft)) 0%, color-mix(in srgb, var(--surface) 96%, transparent) 100%);
  transform: translateY(1px);
}

.story-stage {
  padding: 0.78rem;
  display: grid;
  min-height: 224px;
}

.story-panel {
  grid-area: 1 / 1;
  min-height: 188px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  padding: 1rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.story-panel.gradient-red {
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
}

.story-panel.gradient-blue {
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
}

.story-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.story-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.story-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ai-highlight {
  margin-top: 0.85rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  padding: 1rem;
  box-shadow: none;
}

.compact-overview .grid-2 {
  margin-top: 0.9rem;
  gap: 0.85rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.compact-overview .card {
  padding: 1rem;
  min-height: 182px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.compact-overview .grid-2 .ai-highlight,
.compact-overview .grid-2 .positioning-highlight {
  margin-top: 0;
  min-height: 182px;
  height: 100%;
}

.compact-overview .grid-2 .ai-highlight .btn {
  margin-top: auto;
  align-self: flex-start;
}

.ai-highlight h3 {
  margin: 0 0 0.4rem;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
}

.ai-highlight p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.quick-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 2.25rem);
  align-items: start;
}

.quick-heading {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.25rem;
}

.quick-heading .intro {
  max-width: 34ch;
}

.entry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.35rem);
  align-items: stretch;
}

.link-tile {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  border: 0;
  border-top: 2px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(0.95rem, 2vw, 1.08rem) 0 0;
}

.link-tile.gradient-red,
.link-tile.gradient-blue {
  background: transparent;
  border: 0;
  border-top: 2px solid color-mix(in srgb, var(--line) 78%, transparent);
}

.entry-list .link-tile.gradient-red:hover,
.entry-list .link-tile.gradient-red:focus-within,
.entry-list .link-tile.gradient-blue:hover,
.entry-list .link-tile.gradient-blue:focus-within,
.entry-list .link-tile:hover,
.entry-list .link-tile:focus-within {
  background: transparent;
  border-color: color-mix(in srgb, var(--primary) 36%, var(--line));
}

.link-tile h3 {
  margin-bottom: 0.55rem;
}

.link-tile p {
  max-width: 52ch;
}

.link-tile .btn {
  margin-top: auto;
  align-self: flex-start;
}

.communal-highlight {
  margin-top: 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  padding: 1rem;
}

.positioning-highlight {
  margin-top: 0.85rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  padding: 1rem;
}

.positioning-highlight h3 {
  margin: 0 0 0.35rem;
}

.positioning-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.partner-flyout-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem;
  background: linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 88%, var(--primary-soft)) 0%, var(--surface) 100%);
}

.partner-flyout-panel h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.partner-flyout-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-side-panel {
  border: 1px solid color-mix(in srgb, var(--primary) 52%, var(--line));
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 86%, var(--primary-soft)) 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.partner-side-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: color-mix(in srgb, var(--primary) 72%, #edf3f8);
}

.partner-side-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  line-height: 1.24;
}

.partner-side-panel p {
  margin: 0;
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
  font-size: 0.93rem;
  line-height: 1.56;
}

.partner-side-preview {
  margin: 0;
}

.partner-accordion {
  margin-top: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-soft) 96%, var(--brand-soft));
  overflow: hidden;
}

.partner-accordion summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--primary) 76%, #e4edf7);
  padding: 0.62rem 0.78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  background: color-mix(in srgb, var(--surface-soft) 92%, var(--brand-soft));
}

.partner-accordion summary:hover,
.partner-accordion summary:focus-visible {
  color: color-mix(in srgb, var(--primary) 90%, #f1f7ff);
}

.partner-accordion summary::-webkit-details-marker {
  display: none;
}

.partner-accordion summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  color: inherit;
  transition: transform 0.22s ease;
}

.partner-accordion[open] summary::after {
  transform: rotate(45deg);
}

.partner-accordion-body {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  border-top: 1px solid color-mix(in srgb, var(--primary) 22%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, var(--primary-soft)) 0%, color-mix(in srgb, var(--surface-soft) 96%, var(--brand-soft)) 100%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.partner-accordion[open] .partner-accordion-body {
  opacity: 1;
  transform: translateY(0);
}

.partner-accordion[open] {
  border-color: color-mix(in srgb, var(--primary) 48%, var(--line));
}

.partner-side-panel ul {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.36rem;
  font-size: 0.9rem;
}

.partner-accordion-body ul {
  margin: 0;
  padding: 0.72rem 0.92rem 0.25rem 1.35rem;
  color: color-mix(in srgb, var(--text) 96%, #ffffff);
  gap: 0.4rem;
}

.partner-side-panel .partner-flyout-panel {
  margin: 0.62rem 0.92rem 0.82rem;
  font-size: 0.86rem;
  color: color-mix(in srgb, var(--text) 98%, #ffffff);
  font-weight: 700;
  border-color: color-mix(in srgb, var(--primary) 44%, var(--line));
  background: linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 88%, var(--primary-soft)) 0%, color-mix(in srgb, var(--surface) 96%, var(--primary-soft)) 100%);
}

html[data-theme="light"] .partner-side-panel {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--line));
  background:
    radial-gradient(circle at 90% 8%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 48%),
    linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 86%, var(--primary-soft)) 0%, var(--surface) 100%);
}

html[data-theme="light"] .partner-side-kicker {
  color: color-mix(in srgb, var(--primary-strong) 75%, #2b1f1c);
}

html[data-theme="light"] .partner-side-panel .partner-flyout-panel {
  color: color-mix(in srgb, var(--primary-strong) 72%, #2b1f1c);
}

html[data-theme="light"] .partner-accordion {
  border-color: color-mix(in srgb, var(--primary) 26%, var(--line));
  background: color-mix(in srgb, var(--surface) 98%, var(--primary-soft));
}

html[data-theme="light"] .partner-accordion summary {
  color: color-mix(in srgb, var(--primary-strong) 78%, #2b1f1c);
  background: color-mix(in srgb, var(--surface) 97%, var(--primary-soft));
}

html[data-theme="light"] .partner-accordion-body {
  border-top-color: color-mix(in srgb, var(--primary) 18%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 99%, var(--primary-soft)) 0%, var(--surface) 100%);
}

html[data-theme="light"] .partner-accordion-body ul {
  color: color-mix(in srgb, var(--text) 92%, #2b1f1c);
}

@media (min-width: 841px) {
  .partner-side-panel {
    opacity: 0.92;
    transform: translateY(0);
  }

  .partner-side-panel:hover,
  .partner-side-panel:focus-within,
  .partner-side-panel:has(.partner-accordion[open]) {
    opacity: 1;
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary) 68%, var(--line));
    box-shadow: 0 22px 44px rgba(4, 14, 24, 0.46);
    background: linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 84%, var(--primary-soft)) 0%, var(--surface) 100%);
  }
}

.evolution-note {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.92rem;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-soft) 88%, var(--primary-soft)) 0%, var(--surface) 100%);
}

.evolution-note h3 {
  margin: 0 0 0.32rem;
}

.evolution-note p {
  margin: 0;
  color: var(--muted);
}

.communal-highlight h3 {
  margin: 0 0 0.35rem;
}

.communal-highlight p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.path-steps {
  counter-reset: step;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.sequence-flow {
  position: relative;
  --progress: 0;
  --steps-total: 7;
  --rail-x: calc(0.95rem + 17px);
  --rail-pad: calc(0.95rem + 17px);
}

.sequence-flow::before {
  content: "";
  position: absolute;
  left: var(--rail-x);
  top: var(--rail-pad);
  bottom: var(--rail-pad);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--primary) 72%, transparent) 0%,
    color-mix(in srgb, var(--brand) 64%, transparent) 100%
  );
  opacity: 0.34;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 12%, transparent);
}

.journey-flow::after {
  content: "";
  position: absolute;
  left: var(--rail-x);
  top: var(--rail-pad);
  bottom: var(--rail-pad);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--primary) 84%, #ffffff) 0%,
    color-mix(in srgb, var(--brand) 76%, #ffffff) 100%
  );
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--primary) 24%, transparent),
    0 0 14px color-mix(in srgb, var(--primary) 35%, transparent);
  transform-origin: top center;
  transform: scaleY(var(--progress));
  transition: transform 0.55s cubic-bezier(0.22, 0.88, 0.32, 1);
  pointer-events: none;
}

.diagram-wrap {
  margin-top: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    var(--surface);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.diagram-wrap .mermaid {
  overflow-x: auto;
}

.path-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  padding: 0.95rem;
  transition: border-color 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.path-step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: color-mix(in srgb, var(--brand) 86%, #ffffff);
  position: relative;
  z-index: 1;
}

.path-step h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.path-step p {
  margin: 0;
  color: var(--muted);
}

.step-tags {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.step-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--surface-soft) 86%, transparent);
  color: color-mix(in srgb, var(--text) 92%, var(--muted));
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.2rem 0.48rem;
}

.js .reveal.visible .sequence-flow .path-step {
  opacity: 1;
  transform: translateY(0);
  animation: pathStepIn 0.58s cubic-bezier(0.22, 0.88, 0.32, 1) both;
}

.js .reveal.visible .sequence-flow .path-step:nth-child(1) { animation-delay: 0.05s; }
.js .reveal.visible .sequence-flow .path-step:nth-child(2) { animation-delay: 0.11s; }
.js .reveal.visible .sequence-flow .path-step:nth-child(3) { animation-delay: 0.17s; }
.js .reveal.visible .sequence-flow .path-step:nth-child(4) { animation-delay: 0.23s; }
.js .reveal.visible .sequence-flow .path-step:nth-child(5) { animation-delay: 0.29s; }
.js .reveal.visible .sequence-flow .path-step:nth-child(6) { animation-delay: 0.35s; }
.js .reveal.visible .sequence-flow .path-step:nth-child(7) { animation-delay: 0.41s; }

.sequence-flow .path-step.is-current {
  border-color: color-mix(in srgb, var(--primary) 52%, var(--line));
  background: color-mix(in srgb, var(--surface) 98%, var(--primary-soft));
  transform: translateY(-1px);
}

.sequence-flow .path-step.is-current::before {
  background: color-mix(in srgb, var(--primary) 70%, var(--brand));
}

.sequence-flow .path-step.is-current .step-tags span {
  border-color: color-mix(in srgb, var(--primary) 48%, var(--line));
  background: color-mix(in srgb, var(--primary-soft) 42%, var(--surface-soft));
  color: var(--text);
}

@keyframes pathStepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta {
  margin: 2.8rem 0 3.5rem;
  position: relative;
  padding: clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand) 34%, var(--line));
  border-radius: 10px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-soft) 84%, var(--brand-soft)) 0%, color-mix(in srgb, var(--surface) 92%, var(--primary-soft)) 100%);
  box-shadow:
    0 18px 38px color-mix(in srgb, var(--bg) 58%, transparent),
    inset 0 3px 0 color-mix(in srgb, var(--brand) 82%, #ffffff);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 1.6rem);
}

.cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 62%, color-mix(in srgb, var(--brand-soft) 92%, transparent) 62% 100%);
  pointer-events: none;
}

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

.cta h3 {
  margin: 0;
  font-family: "Barlow Semi Condensed", "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  line-height: 1.12;
  text-wrap: balance;
}

.cta p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.optional-cta {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.optional-cta .btn {
  padding: 0.54rem 0.92rem;
  font-size: 0.86rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .ki-hero,
  .ki-status {
    grid-template-columns: 1fr;
  }

  .ki-hero {
    min-height: 0;
    background-size: auto, 110% auto;
    background-position: center, 100% 28%;
  }

  .ki-status-grid,
  .ki-workflow-grid {
    grid-template-columns: 1fr;
  }

  .ki-workflow-grid article {
    min-height: 0;
  }

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

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .feature-split,
  .journey-map {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 1rem;
  }

  .journey-steps::before {
    left: 0.32rem;
    right: auto;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--primary) 70%, var(--brand)));
  }

  .journey-steps article {
    min-height: 0;
  }

  .journey-steps article::before {
    top: 1.05rem;
    left: -1.07rem;
    transform: none;
  }

  .quick-layout {
    grid-template-columns: 1fr;
  }

  .quick-heading .intro {
    max-width: 64ch;
  }

  .aggregate-lines {
    display: none;
  }

}

@media (max-width: 980px) {
  .header-controls {
    gap: 0.5rem;
  }

  .theme-toggle-label {
    display: none;
  }

  .brand-logo {
    height: 46px;
  }
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .home-main .proof-strip {
    margin-bottom: clamp(2.25rem, 9vw, 3.25rem);
  }

  .entry-list {
    grid-template-columns: 1fr;
  }

  .ki-page {
    gap: 1rem;
    padding-top: 0.9rem;
  }

  .ki-hero {
    border-radius: 8px;
    padding: 1rem;
    background-size: auto, 150% auto;
    background-position: center, 68% 10%;
  }

  .ki-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .ki-hero-panel,
  .ki-status,
  .ki-roles,
  .ki-workflow,
  .ki-final-cta {
    border-radius: 8px;
  }

  .ki-role {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .ki-final-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 2.4rem;
  }

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

  .cta .btn-primary,
  .ki-final-cta .btn-primary {
    width: 100%;
    white-space: normal;
  }

  .compact-overview .card {
    min-height: unset;
  }

  .hero {
    min-height: 440px;
    border-radius: 12px;
  }

  .proof-strip article {
    min-height: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.4rem;
  }

  .hero-copy-row {
    max-width: none;
  }

  .hero::before {
    background-size: 132% auto;
    background-position: 74% 56%;
    opacity: 0.24;
  }

  .partner-badge {
    position: static;
    width: 100%;
    margin: 0 0.9rem 0.8rem;
  }

  .story-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.22rem;
  }

  .story-tab {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .js .hero.reveal .tag,
  .js .hero.reveal h1,
  .js .hero.reveal .hero-copy-row > p,
  .js .hero.reveal .hero-actions,
  .js .hero.reveal .hero-facts,
  .js .hero.reveal .partner-badge,
  .js .ki-hero.reveal .tag,
  .js .ki-hero.reveal h1,
  .js .ki-hero.reveal .ki-hero-copy > p,
  .js .ki-hero.reveal .ki-hero-actions,
  .js .ki-hero.reveal .ki-hero-panel,
  .js .proof-strip.reveal article,
  .js .compact-overview.reveal .feature-lead,
  .js .compact-overview.reveal .reason-list article {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .sequence-flow .path-step {
    opacity: 1;
    transform: none;
  }

  .ki-workflow.reveal .ki-workflow-grid article,
  .ki-workflow-grid article::before {
    opacity: 1;
    transform: none;
  }
}
