:root {
  --kc-navy: #101d33;
  --kc-navy-2: #172a49;
  --kc-navy-3: #213b63;
  --kc-red: #c92532;
  --kc-red-dark: #a91e2a;
  --kc-coral: #ef6d70;
  --kc-ink: #172238;
  --kc-muted: #667186;
  --kc-soft: #f4f6f8;
  --kc-line: #dfe4eb;
  --kc-white: #ffffff;
  --kc-shadow: 0 24px 70px rgba(16, 29, 51, 0.12);
  --kc-radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.kc-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--kc-white);
  color: var(--kc-ink);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.kc-page a {
  color: inherit;
}

body.kc-page img,
body.kc-page svg {
  display: block;
}

body.kc-page button,
body.kc-page input {
  font: inherit;
}

.kc-skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  border-radius: 8px;
  background: var(--kc-white);
  color: var(--kc-ink);
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: var(--kc-shadow);
  transition: top 0.2s ease;
}

.kc-skip-link:focus {
  top: 16px;
}

.kc-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.kc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 228, 235, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.kc-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.kc-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.kc-brand img {
  width: 142px;
  height: auto;
}

.kc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 750;
}

.kc-nav a {
  position: relative;
  text-decoration: none;
}

.kc-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--kc-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.kc-nav__link:hover::after,
.kc-nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.kc-language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--kc-muted);
}

.kc-language::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kc-red);
}

.kc-button,
.kc-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  background: var(--kc-red);
  color: var(--kc-white) !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(201, 37, 50, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kc-header__cta {
  padding: 11px 17px;
}

.kc-button {
  padding: 14px 20px;
}

.kc-button:hover,
.kc-button:focus-visible,
.kc-header__cta:hover,
.kc-header__cta:focus-visible {
  background: var(--kc-red-dark);
  box-shadow: 0 14px 34px rgba(201, 37, 50, 0.28);
  transform: translateY(-2px);
}

.kc-button svg,
.kc-header__cta svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.kc-button:hover svg,
.kc-header__cta:hover svg {
  transform: translateX(3px);
}

.kc-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.kc-button--ghost:hover,
.kc-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.kc-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, rgba(201, 37, 50, 0.26), transparent 25%),
    radial-gradient(circle at 8% 100%, rgba(79, 117, 168, 0.24), transparent 28%),
    linear-gradient(135deg, #0d182b 0%, var(--kc-navy) 46%, #1a3153 100%);
  color: var(--kc-white);
}

.kc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0%, #000 32%, #000 100%);
  pointer-events: none;
}

.kc-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  top: -170px;
  border: 70px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.kc-hero__main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
  padding: clamp(76px, 8vw, 112px) 0 82px;
}

.kc-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #aebbd0;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kc-breadcrumbs a {
  text-decoration: none;
}

.kc-breadcrumbs span:last-child {
  color: #f3a3a9;
}

.kc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 7px 12px;
  color: #e7edf6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kc-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef6d70;
  box-shadow: 0 0 0 6px rgba(239, 109, 112, 0.12);
}

.kc-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.45rem);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.kc-hero h1 span {
  display: block;
  color: #f1a0a6;
}

.kc-hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #cbd5e4;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.kc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.kc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #9eabc0;
  font-size: 0.82rem;
  font-weight: 720;
  list-style: none;
}

.kc-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.kc-hero__trust li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--kc-coral);
}

.kc-atlas {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.kc-atlas__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kc-atlas__head small {
  display: block;
  color: #9faec4;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kc-atlas__head strong {
  display: block;
  margin-top: 3px;
  font-size: 1.05rem;
}

.kc-atlas__count {
  border-radius: 999px;
  background: rgba(201, 37, 50, 0.18);
  padding: 7px 10px;
  color: #ffb0b6;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.kc-atlas__map {
  position: relative;
  height: 350px;
  margin-top: 10px;
}

.kc-atlas__map::before,
.kc-atlas__map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.kc-atlas__map::before {
  width: 250px;
  height: 250px;
}

.kc-atlas__map::after {
  width: 165px;
  height: 165px;
}

.kc-atlas__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--kc-red), #8f1723);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 13px rgba(201, 37, 50, 0.11), 0 18px 42px rgba(0, 0, 0, 0.27);
}

.kc-atlas__core span {
  display: block;
  font-size: 1.62rem;
  font-weight: 850;
  line-height: 1;
}

.kc-atlas__core small {
  display: block;
  margin-top: 5px;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kc-atlas__node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 19, 36, 0.82);
  padding: 9px 11px;
  color: #e8eef7;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.kc-atlas__node::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--node-color, #ef6d70);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--node-color, #ef6d70) 16%, transparent);
}

.kc-atlas__node--one { --node-color: #ef6d70; left: 3%; top: 12%; }
.kc-atlas__node--two { --node-color: #f4b45e; right: 0; top: 18%; }
.kc-atlas__node--three { --node-color: #6bc7b1; left: -1%; top: 52%; }
.kc-atlas__node--four { --node-color: #8eaaf1; right: -2%; top: 57%; }
.kc-atlas__node--five { --node-color: #c79ce7; left: 50%; bottom: 3%; transform: translateX(-50%); }

.kc-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kc-stat {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px clamp(16px, 3vw, 31px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.kc-stat:first-child {
  padding-left: 0;
}

.kc-stat:last-child {
  border-right: 0;
}

.kc-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.kc-stat span {
  display: block;
  max-width: 130px;
  color: #aebbd0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.kc-library {
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 37, 50, 0.055), transparent 24%),
    var(--kc-soft);
  padding: clamp(82px, 9vw, 128px) 0;
}

.kc-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.58fr);
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 44px;
}

.kc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--kc-red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kc-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.kc-section-head h2,
.kc-guides__head h2,
.kc-path__intro h2,
.kc-final__content h2 {
  margin: 0;
  color: var(--kc-ink);
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.kc-section-head__copy {
  margin: 0;
  color: var(--kc-muted);
  font-size: 1.02rem;
}

.kc-search {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  border: 1px solid var(--kc-line);
  border-radius: 18px;
  background: var(--kc-white);
  padding: 13px 15px 13px 19px;
  box-shadow: 0 18px 50px rgba(16, 29, 51, 0.08);
}

.kc-search__field {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.kc-search__field svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--kc-red);
}

.kc-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--kc-ink);
  font-size: 0.98rem;
}

.kc-search input::placeholder {
  color: #9099a9;
}

.kc-search__suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.kc-search__chip,
.kc-search__clear {
  border: 1px solid var(--kc-line);
  border-radius: 999px;
  background: #f9fafb;
  color: #596579;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.kc-search__chip:hover,
.kc-search__chip:focus-visible,
.kc-search__clear:hover,
.kc-search__clear:focus-visible {
  border-color: rgba(201, 37, 50, 0.34);
  background: #fff4f5;
  color: var(--kc-red);
}

.kc-search__clear {
  display: none;
}

.kc-search__clear.is-visible {
  display: inline-flex;
}

.kc-search-status {
  min-height: 24px;
  margin: -12px 0 20px;
  color: var(--kc-muted);
  font-size: 0.8rem;
}

.kc-hubs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.kc-hub {
  --hub: #c92532;
  --hub-soft: #fff0f1;
  position: relative;
  min-height: 378px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--kc-line);
  border-radius: var(--kc-radius);
  background:
    radial-gradient(circle at 100% 0%, var(--hub-soft) 0, transparent 38%),
    var(--kc-white);
  padding: 30px;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(16, 29, 51, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.kc-hub::after {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  bottom: -28px;
  color: var(--hub-soft);
  font-size: 8.8rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.kc-hub:hover,
.kc-hub:focus-visible {
  border-color: color-mix(in srgb, var(--hub) 42%, var(--kc-line));
  box-shadow: 0 26px 65px rgba(16, 29, 51, 0.13);
  transform: translateY(-6px);
  outline: none;
}

.kc-hub:hover::after,
.kc-hub:focus-visible::after {
  transform: translateY(-7px) rotate(-2deg);
}

.kc-hub.is-hidden {
  display: none;
}

.kc-hub--amber { --hub: #c87517; --hub-soft: #fff4df; }
.kc-hub--teal { --hub: #16836e; --hub-soft: #e5f7f2; }
.kc-hub--blue { --hub: #3c69bd; --hub-soft: #eaf0fc; }
.kc-hub--purple { --hub: #7652a7; --hub-soft: #f1ebf9; }
.kc-hub--slate { --hub: #46576e; --hub-soft: #edf1f5; }

.kc-hub__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.kc-hub__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--hub-soft);
  color: var(--hub);
}

.kc-hub__icon svg {
  width: 27px;
  height: 27px;
}

.kc-hub__count {
  border: 1px solid color-mix(in srgb, var(--hub) 25%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 10px;
  color: var(--hub);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kc-hub__body {
  position: relative;
  z-index: 2;
  flex: 1;
}

.kc-hub h3 {
  max-width: 460px;
  margin: 24px 0 13px;
  color: var(--kc-ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.kc-hub p {
  max-width: 500px;
  margin: 0;
  color: var(--kc-muted);
  font-size: 0.93rem;
}

.kc-hub__tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.kc-hub__tags span {
  border-radius: 999px;
  background: #f4f6f8;
  padding: 5px 9px;
  color: #586579;
  font-size: 0.67rem;
  font-weight: 730;
}

.kc-hub__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  color: var(--hub);
  font-size: 0.83rem;
  font-weight: 850;
}

.kc-hub__link span {
  transition: transform 0.2s ease;
}

.kc-hub:hover .kc-hub__link span,
.kc-hub:focus-visible .kc-hub__link span {
  transform: translateX(4px);
}

.kc-guides {
  padding: clamp(82px, 9vw, 124px) 0;
}

.kc-guides__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.kc-guides__head h2 {
  max-width: 680px;
}

.kc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--kc-red) !important;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.kc-text-link span {
  transition: transform 0.2s ease;
}

.kc-text-link:hover span,
.kc-text-link:focus-visible span {
  transform: translateX(4px);
}

.kc-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--kc-line);
  border-bottom: 1px solid var(--kc-line);
}

.kc-guide {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-right: 1px solid var(--kc-line);
  text-decoration: none;
  transition: background 0.2s ease;
}

.kc-guide:last-child {
  border-right: 0;
}

.kc-guide::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--kc-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.kc-guide:hover,
.kc-guide:focus-visible {
  background: #fafbfc;
  outline: none;
}

.kc-guide:hover::before,
.kc-guide:focus-visible::before {
  transform: scaleX(1);
}

.kc-guide__number {
  color: var(--kc-red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.kc-guide h3 {
  margin: 30px 0 11px;
  font-size: 1.24rem;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.kc-guide p {
  margin: 0;
  color: var(--kc-muted);
  font-size: 0.83rem;
}

.kc-guide__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 1px solid var(--kc-line);
  border-radius: 50%;
  color: var(--kc-red);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kc-guide:hover .kc-guide__arrow,
.kc-guide:focus-visible .kc-guide__arrow {
  background: var(--kc-red);
  color: #fff;
  transform: translateX(4px);
}

.kc-path {
  background: var(--kc-navy);
  color: #fff;
  padding: clamp(80px, 9vw, 118px) 0;
}

.kc-path__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 110px);
}

.kc-path__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.kc-path__intro h2 {
  color: #fff;
}

.kc-path__intro p:last-child {
  margin: 22px 0 0;
  color: #aebbd0;
}

.kc-path__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: path;
}

.kc-path__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 0 0 38px;
  counter-increment: path;
}

.kc-path__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 58px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.17);
}

.kc-path__steps li::before {
  content: "0" counter(path);
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #f2a0a6;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.kc-path__steps h3 {
  margin: 5px 0 7px;
  color: #fff;
  font-size: 1.27rem;
  line-height: 1.2;
}

.kc-path__steps p {
  margin: 0;
  color: #aebbd0;
  font-size: 0.9rem;
}

.kc-final {
  padding: clamp(72px, 8vw, 110px) 0;
  background: #fff;
}

.kc-final__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 25%, rgba(201, 37, 50, 0.34), transparent 25%),
    linear-gradient(135deg, #111e34, #1c3458);
  padding: clamp(40px, 7vw, 76px);
  color: #fff;
  box-shadow: var(--kc-shadow);
}

.kc-final__card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -140px;
  bottom: -210px;
  border: 54px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.kc-final__content {
  position: relative;
  z-index: 2;
}

.kc-final__content h2 {
  max-width: 720px;
  color: #fff;
}

.kc-final__content p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  color: #b9c5d7;
}

.kc-final__action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.kc-final__action small {
  color: #aebbd0;
  font-size: 0.72rem;
  font-weight: 700;
}

.kc-footer {
  background: #091322;
  color: #aab6c8;
  padding: 52px 0 30px;
}

.kc-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kc-footer__brand img {
  width: 132px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.kc-footer__brand p {
  max-width: 450px;
  margin: 17px 0 0;
  font-size: 0.82rem;
}

.kc-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.kc-footer__nav a {
  color: #dce3ed;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.kc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  font-size: 0.74rem;
}

.kc-footer__bottom a {
  color: #dce3ed;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(201, 37, 50, 0.35);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .kc-hero__main {
    grid-template-columns: 1fr;
  }

  .kc-atlas {
    max-width: 680px;
  }

  .kc-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .kc-guide:nth-child(2) {
    border-right: 0;
  }

  .kc-guide:nth-child(-n + 2) {
    border-bottom: 1px solid var(--kc-line);
  }

  .kc-path__grid {
    grid-template-columns: 1fr;
  }

  .kc-path__intro {
    position: static;
  }
}

@media (max-width: 780px) {
  .kc-shell {
    width: min(100% - 32px, 680px);
  }

  .kc-header__inner {
    min-height: 72px;
  }

  .kc-brand img {
    width: 122px;
  }

  .kc-nav {
    gap: 13px;
  }

  .kc-nav__link {
    display: none;
  }

  .kc-header__cta {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .kc-hero__main {
    padding: 60px 0 64px;
  }

  .kc-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .kc-atlas__map {
    height: 315px;
  }

  .kc-atlas__map::before {
    width: 220px;
    height: 220px;
  }

  .kc-atlas__node {
    max-width: 120px;
    padding: 8px;
    font-size: 0.62rem;
  }

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

  .kc-stat {
    min-height: 98px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .kc-stat:nth-child(2) {
    border-right: 0;
  }

  .kc-stat:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .kc-stat:nth-child(4) {
    border-bottom: 0;
  }

  .kc-search {
    grid-template-columns: 1fr;
  }

  .kc-search__suggestions {
    justify-content: flex-start;
  }

  .kc-hubs {
    grid-template-columns: 1fr;
  }

  .kc-hub {
    min-height: 350px;
  }

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

  .kc-final__card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kc-footer__top,
  .kc-footer__bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .kc-footer__nav {
    justify-content: flex-start;
  }

  .kc-footer__bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  .kc-language {
    font-size: 0;
  }

  .kc-language::after {
    content: attr(data-short);
    font-size: 0.76rem;
  }

  .kc-header__cta span {
    display: none;
  }

  .kc-header__cta::before {
    content: attr(data-short);
  }

  .kc-atlas {
    padding: 18px;
  }

  .kc-atlas__map {
    height: 290px;
  }

  .kc-atlas__node--one { left: -2%; }
  .kc-atlas__node--two { right: -4%; }
  .kc-atlas__node--three { left: -4%; }
  .kc-atlas__node--four { right: -5%; }

  .kc-hero__actions .kc-button {
    width: 100%;
  }

  .kc-stat {
    padding: 19px 12px;
  }

  .kc-stat:first-child,
  .kc-stat:nth-child(3) {
    padding-left: 0;
  }

  .kc-hub {
    min-height: 380px;
    padding: 24px;
  }

  .kc-guide-grid {
    grid-template-columns: 1fr;
  }

  .kc-guide,
  .kc-guide:nth-child(2) {
    min-height: 235px;
    border-right: 0;
    border-bottom: 1px solid var(--kc-line);
  }

  .kc-guide:last-child {
    border-bottom: 0;
  }

  .kc-path__steps li {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
