.kcap {
  --kcap-navy: #06375d;
  --kcap-navy-deep: #022d4e;
  --kcap-blue: #0878bd;
  --kcap-blue-bright: #1496d4;
  --kcap-teal: #0f8c88;
  --kcap-teal-soft: #62d4d0;
  --kcap-ink: #0b3152;
  --kcap-copy: #496a80;
  --kcap-line: #d9e6ed;
  --kcap-soft: #f1f7fa;
  --kcap-soft-2: #eaf4f8;
  --kcap-white: #ffffff;
  --kcap-shadow: 0 24px 60px rgba(3, 52, 84, .10);
  --kcap-radius-lg: 30px;
  --kcap-radius-md: 22px;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: clip;
  isolation: isolate;
  color: var(--kcap-ink);
  background: var(--kcap-white);
  font-family: inherit;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.kcap,
.kcap *,
.kcap *::before,
.kcap *::after {
  box-sizing: border-box;
}

.kcap img,
.kcap svg {
  display: block;
}

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

.kcap button,
.kcap a {
  -webkit-tap-highlight-color: transparent;
}

.kcap-shell {
  width: min(1240px, calc(100% - clamp(32px, 7vw, 96px)));
  margin-inline: auto;
}

.kcap-hero {
  position: relative;
  overflow: hidden;
  min-height: min(810px, 88vh);
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vw, 128px) 0 clamp(64px, 7vw, 100px);
  background:
    radial-gradient(circle at 84% 18%, rgba(8, 120, 189, .15), transparent 30%),
    radial-gradient(circle at 4% 74%, rgba(15, 140, 136, .08), transparent 26%),
    linear-gradient(122deg, #fbfdfe 0%, #f6fafc 50%, #ecf5f9 100%);
}

.kcap-hero::before,
.kcap-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(8, 120, 189, .09);
  border-radius: 50%;
}

.kcap-hero::before {
  width: clamp(360px, 44vw, 720px);
  aspect-ratio: 1;
  left: clamp(-420px, -26vw, -210px);
  bottom: clamp(-410px, -29vw, -180px);
}

.kcap-hero::after {
  width: clamp(220px, 24vw, 420px);
  aspect-ratio: 1;
  right: -12vw;
  top: -16vw;
}

.kcap-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.kcap-hero__copy {
  min-width: 0;
}

.kcap-eyebrow,
.kcap-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--kcap-teal);
  font-size: clamp(11px, .88vw, 13px);
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kcap-eyebrow::before,
.kcap-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kcap-blue), var(--kcap-teal));
}

.kcap-hero h1 {
  max-width: 780px;
  margin: 19px 0 21px;
  color: var(--kcap-navy-deep);
  font-size: clamp(48px, 5.6vw, 83px);
  font-weight: 790;
  letter-spacing: -.055em;
  line-height: .99;
}

.kcap-hero__intro {
  max-width: 720px;
  margin: 0;
  color: var(--kcap-copy);
  font-size: clamp(17px, 1.32vw, 21px);
  line-height: 1.65;
}

.kcap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.kcap-button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.kcap-button > svg,
.kcap-product__link > svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.kcap-button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--kcap-blue), #0b6398);
  box-shadow: 0 15px 28px rgba(8, 120, 189, .22);
}

.kcap-button--primary:hover {
  box-shadow: 0 18px 34px rgba(8, 120, 189, .30);
}

.kcap-button--secondary {
  color: var(--kcap-navy-deep);
  border-color: rgba(6, 55, 93, .16);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 9px 22px rgba(3, 45, 76, .07);
}

.kcap-button--secondary:hover {
  border-color: rgba(8, 120, 189, .32);
  background: #fff;
}

.kcap-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--kcap-ink);
  font-size: 12px;
  font-weight: 720;
}

.kcap-hero__notes > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.kcap-hero__notes svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  flex: 0 0 15px;
  fill: none !important;
  stroke: var(--kcap-teal) !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.kcap-hero__visual {
  min-width: 0;
}

.kcap-hero__visual-card {
  position: relative;
  min-height: clamp(420px, 38vw, 550px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(6, 55, 93, .09);
  border-radius: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(circle at 70% 22%, rgba(98, 212, 208, .2), transparent 23%),
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(235,246,250,.93));
  box-shadow: 0 34px 80px rgba(3, 48, 78, .14);
}

.kcap-hero__visual-card::before,
.kcap-hero__visual-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8, 120, 189, .11);
  border-radius: 50%;
  pointer-events: none;
}

.kcap-hero__visual-card::before {
  width: 260px;
  height: 260px;
  left: -110px;
  top: -115px;
}

.kcap-hero__visual-card::after {
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -65px;
}

.kcap-hero-art {
  position: relative;
  z-index: 1;
  width: min(94%, 620px) !important;
  height: auto !important;
  max-height: 520px;
}

.kcap-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.kcap-hero__image--builtin {
  object-fit: contain;
  padding: clamp(22px, 4vw, 54px);
}

.kcap-hero__metric {
  position: absolute;
  z-index: 2;
  min-width: 112px;
  display: grid;
  gap: 1px;
  padding: 11px 14px;
  border: 1px solid rgba(6, 55, 93, .10);
  border-radius: 16px;
  color: var(--kcap-ink);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 30px rgba(3, 49, 80, .10);
  backdrop-filter: blur(10px);
}

.kcap-hero__metric strong {
  color: var(--kcap-blue);
  font-size: 18px;
  line-height: 1.1;
}

.kcap-hero__metric span {
  color: var(--kcap-copy);
  font-size: 11px;
  font-weight: 670;
}

.kcap-hero__metric--one {
  left: 5%;
  bottom: 9%;
}

.kcap-hero__metric--two {
  right: 5%;
  top: 12%;
}

.kcap-hero__metric--three {
  right: 7%;
  bottom: 9%;
}

.kcap-solution-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--kcap-line);
  background: #fff;
}

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

.kcap-solution-mini {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 15px;
  padding: 27px 24px;
  border-right: 1px solid var(--kcap-line);
}

.kcap-solution-mini:first-child {
  border-left: 1px solid var(--kcap-line);
}

.kcap-solution-mini__icon,
.kcap-selection-card__icon,
.kcap-step__icon {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--kcap-navy-deep), #0b5277);
}

.kcap-solution-mini__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.kcap-solution-mini__icon svg,
.kcap-selection-card__icon svg,
.kcap-step__icon svg {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.kcap-solution-mini__icon svg *,
.kcap-selection-card__icon svg *,
.kcap-step__icon svg * {
  fill: none !important;
  stroke: currentColor !important;
}

.kcap-solution-mini__number {
  display: block;
  margin-bottom: 4px;
  color: #b3c8d5;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
}

.kcap-solution-mini h2 {
  margin: 0;
  color: var(--kcap-navy-deep);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.25;
}

.kcap-solution-mini p {
  margin: 8px 0 0;
  color: var(--kcap-copy);
  font-size: 12.5px;
  line-height: 1.5;
}

.kcap-section {
  position: relative;
  padding: clamp(74px, 8vw, 116px) 0;
}

.kcap-section--intro {
  background: #fff;
}

.kcap-section-head {
  margin-bottom: clamp(32px, 4.5vw, 58px);
}

.kcap-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
}

.kcap-section-head--center {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.kcap-section-head--center .kcap-kicker {
  justify-content: center;
}

.kcap-section-head h2,
.kcap-applications__copy h2,
.kcap-cta h2 {
  margin: 15px 0 0;
  color: var(--kcap-navy-deep);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 790;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.kcap-section-head > p,
.kcap-section-head--center p,
.kcap-applications__copy > p {
  margin: 0;
  color: var(--kcap-copy);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
}

.kcap-section-head--center p {
  margin-top: 18px;
}

.kcap-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.kcap-filter button {
  min-height: 43px;
  padding: 9px 15px;
  border: 1px solid var(--kcap-line);
  border-radius: 999px;
  color: var(--kcap-copy);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.kcap-filter button:hover,
.kcap-filter button:focus-visible {
  color: var(--kcap-blue);
  border-color: rgba(8, 120, 189, .35);
  outline: none;
  transform: translateY(-1px);
}

.kcap-filter button.is-active {
  color: #fff;
  border-color: var(--kcap-blue);
  background: var(--kcap-blue);
  box-shadow: 0 10px 20px rgba(8, 120, 189, .18);
}

.kcap-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.kcap-product {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--kcap-line);
  border-radius: var(--kcap-radius-md);
  background: #fff;
  box-shadow: 0 18px 45px rgba(3, 48, 78, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.kcap-product:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 120, 189, .25);
  box-shadow: 0 25px 60px rgba(3, 48, 78, .12);
}

.kcap-product[hidden] {
  display: none !important;
}

.kcap-product__media {
  position: relative;
  min-height: 235px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(98, 212, 208, .18), transparent 27%),
    linear-gradient(145deg, #eff7fa, #e6f1f6);
}

.kcap-product__media::before,
.kcap-product__media::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8, 120, 189, .10);
  border-radius: 50%;
}

.kcap-product__media::before {
  width: 150px;
  height: 150px;
  left: -55px;
  top: -70px;
}

.kcap-product__media::after {
  width: 120px;
  height: 120px;
  right: -50px;
  bottom: -55px;
}

.kcap-product__category {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  max-width: calc(100% - 30px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  color: var(--kcap-teal);
  background: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(3, 48, 78, .07);
  backdrop-filter: blur(7px);
}

.kcap-product__media > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 235px;
  object-fit: contain;
  object-position: center;
  padding: 38px 32px 18px;
}

.kcap-product__photo {
  filter: drop-shadow(0 14px 18px rgba(3, 48, 78, .13));
  transition: transform .24s ease;
}

.kcap-product:hover .kcap-product__photo {
  transform: translateY(-3px) scale(1.025);
}

.kcap-product-art {
  position: relative;
  z-index: 2;
  width: 94% !important;
  height: auto !important;
  max-height: 215px;
}

.kcap-product__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 24px;
}

.kcap-product__subtitle {
  margin: 0 0 7px;
  color: var(--kcap-blue);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kcap-product h3 {
  margin: 0;
  color: var(--kcap-navy-deep);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 780;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.kcap-product__description {
  margin: 13px 0 0;
  color: var(--kcap-copy);
  font-size: 14px;
  line-height: 1.65;
}

.kcap-product__features {
  display: grid;
  gap: 8px;
  margin: 18px 0 23px;
  padding: 0;
  list-style: none;
}

.kcap-product__features li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--kcap-ink);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.4;
}

.kcap-product__features svg {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  fill: none !important;
  stroke: var(--kcap-teal) !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.kcap-product__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--kcap-blue);
  font-size: 13px;
  font-weight: 790;
}

.kcap-product__link:hover {
  color: var(--kcap-teal);
}

.kcap-empty {
  margin: 22px 0 0;
  padding: 20px;
  border: 1px dashed var(--kcap-line);
  border-radius: 16px;
  color: var(--kcap-copy);
  text-align: center;
}

.kcap-section--selection {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 140, 136, .08), transparent 25%),
    linear-gradient(180deg, var(--kcap-soft), #fff);
}

.kcap-selection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kcap-selection-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--kcap-line);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 38px rgba(3, 48, 78, .06);
}

.kcap-selection-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  bottom: -70px;
  border: 1px solid rgba(8,120,189,.10);
  border-radius: 50%;
}

.kcap-selection-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #c2d2dc;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.kcap-selection-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(2,45,78,.17);
}

.kcap-selection-card h3 {
  margin: 0;
  color: var(--kcap-navy-deep);
  font-size: 20px;
  font-weight: 770;
  line-height: 1.25;
}

.kcap-selection-card p {
  margin: 12px 0 0;
  color: var(--kcap-copy);
  font-size: 13.5px;
  line-height: 1.65;
}

.kcap-section--applications {
  background: #fff;
}

.kcap-applications {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.kcap-applications__visual {
  position: relative;
  min-height: clamp(380px, 37vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(6,55,93,.10);
  border-radius: clamp(26px, 3vw, 40px);
  background:
    radial-gradient(circle at 74% 28%, rgba(98,212,208,.25), transparent 26%),
    radial-gradient(circle at 22% 72%, rgba(8,120,189,.17), transparent 30%),
    linear-gradient(145deg, #e7f4f8, #f8fbfd);
  box-shadow: var(--kcap-shadow);
}

.kcap-applications__cell {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid rgba(8,120,189,.36);
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  box-shadow: inset 0 0 28px rgba(8,120,189,.10), 0 18px 30px rgba(3,48,78,.08);
}

.kcap-applications__cell span {
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--kcap-teal);
  box-shadow: 18px -9px 0 -8px var(--kcap-blue), -15px 13px 0 -10px var(--kcap-teal-soft);
}

.kcap-applications__cell--one {
  width: 180px;
  height: 180px;
  top: 45px;
  left: 45px;
}

.kcap-applications__cell--two {
  width: 126px;
  height: 126px;
  top: 80px;
  right: 50px;
}

.kcap-applications__cell--three {
  width: 220px;
  height: 220px;
  right: 80px;
  bottom: -55px;
}

.kcap-applications__panel {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 35px;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 20px;
  color: #fff;
  background: rgba(2,45,78,.88);
  box-shadow: 0 18px 34px rgba(2,45,78,.20);
  backdrop-filter: blur(12px);
}

.kcap-applications__panel svg {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  flex: 0 0 34px;
  fill: none !important;
  stroke: var(--kcap-teal-soft) !important;
  stroke-width: 1.7 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.kcap-applications__panel strong {
  font-size: 15px;
  line-height: 1.4;
}

.kcap-applications__copy h2 {
  margin-bottom: 21px;
}

.kcap-application-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.kcap-application-chips span {
  padding: 8px 11px;
  border: 1px solid var(--kcap-line);
  border-radius: 999px;
  color: var(--kcap-ink);
  background: var(--kcap-soft);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.2;
}

.kcap-section--support {
  border-top: 1px solid var(--kcap-line);
  background: #fbfdfe;
}

.kcap-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kcap-step {
  position: relative;
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--kcap-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 17px 38px rgba(3, 48, 78, .055);
}

.kcap-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.kcap-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  box-shadow: 0 11px 23px rgba(2,45,78,.16);
}

.kcap-step__number {
  color: #bdced8;
  font-size: 25px;
  font-weight: 850;
  line-height: 1;
}

.kcap-step h3 {
  margin: 0;
  color: var(--kcap-navy-deep);
  font-size: 21px;
  font-weight: 770;
}

.kcap-step p {
  margin: 12px 0 0;
  color: var(--kcap-copy);
  font-size: 13.5px;
  line-height: 1.65;
}

.kcap-cta {
  padding: clamp(68px, 8vw, 108px) 0 36px;
  background: #fff;
}

.kcap-cta__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  padding: clamp(35px, 5vw, 68px);
  border-radius: clamp(26px, 3vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(98,212,208,.30), transparent 32%),
    linear-gradient(135deg, var(--kcap-navy-deep), #0a5478 70%, #087d82);
  box-shadow: 0 30px 70px rgba(2,45,78,.22);
}

.kcap-cta__card::before,
.kcap-cta__card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}

.kcap-cta__card::before {
  width: 270px;
  height: 270px;
  right: -95px;
  top: -120px;
}

.kcap-cta__card::after {
  width: 190px;
  height: 190px;
  left: -80px;
  bottom: -105px;
}

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

.kcap-kicker--light {
  color: #8be0dc;
}

.kcap-kicker--light::before {
  background: #8be0dc;
}

.kcap-cta h2 {
  max-width: 760px;
  color: #fff;
}

.kcap-cta p {
  max-width: 790px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}

.kcap-button--light {
  min-width: 235px;
  color: var(--kcap-navy-deep);
  background: #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,.15);
}

.kcap-button--light:hover {
  background: #eafafa;
}

.kcap-disclaimer {
  margin: 19px auto 0;
  color: #7890a0;
  font-size: 11.5px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1120px) {
  .kcap-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
    gap: 44px;
  }

  .kcap-solution-strip__grid,
  .kcap-selection-grid,
  .kcap-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kcap-solution-mini:nth-child(2) {
    border-right: 0;
  }

  .kcap-solution-mini:nth-child(n+3) {
    border-top: 1px solid var(--kcap-line);
  }

  .kcap-solution-mini:nth-child(3) {
    border-left: 1px solid var(--kcap-line);
  }

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

@media (max-width: 900px) {
  .kcap-shell {
    width: min(100% - 34px, 760px);
  }

  .kcap-hero {
    min-height: 0;
    padding-top: 64px;
  }

  .kcap-hero__grid,
  .kcap-section-head--split,
  .kcap-applications,
  .kcap-cta__card {
    grid-template-columns: 1fr;
  }

  .kcap-hero__visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .kcap-hero__visual-card {
    min-height: clamp(390px, 72vw, 540px);
  }

  .kcap-section-head--split {
    gap: 18px;
    align-items: start;
  }

  .kcap-section-head--split > p {
    max-width: 720px;
  }

  .kcap-applications {
    gap: 48px;
  }

  .kcap-applications__visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .kcap-cta__card {
    gap: 28px;
  }

  .kcap-button--light {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .kcap-shell {
    width: min(100% - 26px, 620px);
  }

  .kcap-hero {
    padding-top: 52px;
  }

  .kcap-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .kcap-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .kcap-button {
    width: 100%;
  }

  .kcap-hero__notes {
    display: grid;
    grid-template-columns: 1fr;
  }

  .kcap-hero__visual-card {
    min-height: 390px;
  }

  .kcap-hero-art {
    width: 112% !important;
    max-width: none !important;
  }

  .kcap-hero__metric {
    min-width: 94px;
    padding: 9px 10px;
  }

  .kcap-hero__metric strong {
    font-size: 15px;
  }

  .kcap-hero__metric span {
    font-size: 9.5px;
  }

  .kcap-hero__metric--one {
    left: 3%;
    bottom: 5%;
  }

  .kcap-hero__metric--two {
    right: 3%;
    top: 5%;
  }

  .kcap-hero__metric--three {
    right: 3%;
    bottom: 5%;
  }

  .kcap-solution-strip__grid,
  .kcap-products,
  .kcap-selection-grid,
  .kcap-steps {
    grid-template-columns: 1fr;
  }

  .kcap-solution-mini,
  .kcap-solution-mini:first-child,
  .kcap-solution-mini:nth-child(3) {
    border-left: 1px solid var(--kcap-line);
    border-right: 1px solid var(--kcap-line);
  }

  .kcap-solution-mini + .kcap-solution-mini {
    border-top: 1px solid var(--kcap-line);
  }

  .kcap-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -13px;
    padding: 0 13px 9px;
    scrollbar-width: thin;
  }

  .kcap-filter button {
    flex: 0 0 auto;
  }

  .kcap-product__media {
    min-height: 220px;
  }

  .kcap-product__media > img {
    height: 220px;
    padding: 34px 24px 16px;
  }

  .kcap-selection-card,
  .kcap-step {
    min-height: 0;
  }

  .kcap-applications__visual {
    min-height: 385px;
  }

  .kcap-applications__cell--one {
    width: 145px;
    height: 145px;
    left: 23px;
  }

  .kcap-applications__cell--two {
    width: 104px;
    height: 104px;
    right: 23px;
  }

  .kcap-applications__cell--three {
    width: 180px;
    height: 180px;
    right: 30px;
  }

  .kcap-applications__panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .kcap-cta__card {
    padding: 30px 24px;
  }

  .kcap-button--light {
    min-width: 0;
    justify-self: stretch;
  }
}

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


/* v1.2.0 additions */
.kcap-solution-strip__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kcap-product__details {
  margin: 0 0 18px;
  border: 1px solid rgba(8, 120, 189, .14);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fcfe, #ffffff);
  overflow: hidden;
}

.kcap-product__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--kcap-navy-deep);
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.kcap-product__details summary::-webkit-details-marker { display:none; }
.kcap-product__details summary svg {
  width: 16px !important;
  height: 16px !important;
  stroke: var(--kcap-blue) !important;
  transition: transform .2s ease;
}
.kcap-product__details[open] summary svg { transform: rotate(90deg); }
.kcap-product__details-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 0 16px 16px;
}
.kcap-product__detail-visual {
  overflow: hidden;
  border-radius: 16px;
  background: #eef6fa;
  border: 1px solid rgba(8,120,189,.10);
}
.kcap-product__detail-visual img {
  display:block;
  width:100%;
  height:100%;
  max-height: 240px;
  object-fit: cover;
}
.kcap-product__detail-copy {
  display: grid;
  gap: 12px;
}
.kcap-product__detail-block h4 {
  margin: 0 0 8px;
  color: var(--kcap-navy-deep);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .02em;
}
.kcap-product__detail-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--kcap-copy);
  font-size: 12.6px;
  line-height: 1.55;
}
.kcap-product__detail-block li + li { margin-top: 6px; }

.kcap-app-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}
.kcap-app-card {
  overflow: hidden;
  border: 1px solid var(--kcap-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(3, 48, 78, .07);
}
.kcap-app-card__media {
  background: linear-gradient(160deg, #edf7fb, #e2eef4);
}
.kcap-app-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.kcap-app-card__body {
  padding: 20px 22px 24px;
}
.kcap-app-card__tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--kcap-teal);
  background: rgba(15, 140, 136, .08);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kcap-app-card h3 {
  margin: 14px 0 0;
  color: var(--kcap-navy-deep);
  font-size: 22px;
  line-height: 1.18;
}
.kcap-app-card p {
  margin: 12px 0 0;
  color: var(--kcap-copy);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .kcap-solution-strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .kcap-products,
  .kcap-app-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kcap-product__details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .kcap-solution-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .kcap-products,
  .kcap-app-gallery,
  .kcap-solution-strip__grid { grid-template-columns: 1fr; }
  .kcap-app-card__media img { height: 205px; }
}


/* v1.3.0 comparison matrix */
.kcap-section--matrix {
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
}
.kcap-matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--kcap-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(3, 48, 78, .06);
}
.kcap-matrix {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}
.kcap-matrix thead th {
  padding: 18px 18px;
  text-align: left;
  color: var(--kcap-navy-deep);
  background: #eef6fa;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--kcap-line);
}
.kcap-matrix tbody td {
  padding: 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(201, 216, 224, .7);
  color: var(--kcap-copy);
  font-size: 13.5px;
  line-height: 1.55;
}
.kcap-matrix tbody tr:nth-child(even) {
  background: rgba(244, 249, 252, .5);
}
.kcap-matrix__product {
  min-width: 250px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.kcap-matrix__product img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(8,120,189,.10);
  background: linear-gradient(145deg, #f6fbfd, #edf4f8);
  padding: 8px;
}
.kcap-matrix__product strong {
  display: block;
  color: var(--kcap-navy-deep);
  font-size: 14px;
  line-height: 1.35;
}
@media (max-width: 1024px) {
  .kcap-matrix__product { min-width: 220px; }
}

/* v1.4.0 page navigation and comparison CTA */
.kcap-page-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-top: 1px solid rgba(6, 55, 93, .08);
  border-bottom: 1px solid rgba(6, 55, 93, .12);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 30px rgba(3, 45, 76, .06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.admin-bar .kcap-page-nav { top: 32px; }
.kcap-page-nav__inner {
  width: min(1240px, calc(100% - clamp(32px, 7vw, 96px)));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
}
.kcap-page-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--kcap-copy, #496a80);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.kcap-page-nav a:hover,
.kcap-page-nav a:focus-visible {
  color: var(--kcap-navy-deep, #022d4e);
  background: #eef6fa;
  outline: none;
}
.kcap-page-nav a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--kcap-blue, #0878bd), #0b6398);
  box-shadow: 0 8px 18px rgba(8, 120, 189, .20);
}
.kcap-button--comparison {
  color: #fff;
  border-color: rgba(15, 140, 136, .18);
  background: linear-gradient(135deg, var(--kcap-teal, #0f8c88), #0878bd);
  box-shadow: 0 15px 28px rgba(15, 140, 136, .20);
}
.kcap-button--comparison:hover {
  box-shadow: 0 18px 34px rgba(15, 140, 136, .29);
}
.kcap-button--comparison > svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.kcap #kcap-platforms,
.kcap #kcap-comparison,
.kcap #kcap-selection,
.kcap #kcap-applications,
.kcap #kcap-support {
  scroll-margin-top: 92px;
}
@media (max-width: 782px) {
  .admin-bar .kcap-page-nav { top: 46px; }
}
@media (max-width: 640px) {
  .kcap-page-nav__inner {
    width: calc(100% - 24px);
    padding: 8px 0;
  }
  .kcap-page-nav a {
    padding: 9px 12px;
    font-size: 12px;
  }
}
