@font-face {
  font-family: Vazirmatn;
  src: url(../../assets/fonts/Vazirmatn-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url(../../assets/fonts/Vazirmatn-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url(../../assets/fonts/Vazirmatn-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url(../../assets/fonts/Vazirmatn-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --kb-brand-primary: #0f1f2e;
  --kb-brand-accent: #b58a4a;
  --kb-bg-page: #f6f4f0;
  --kb-text-primary: #16232f;
  --kb-text-secondary: #43525f;
  --kb-brand-secondary: #3e5468;
  --kb-surface-light: #fbfaf7;
  --kb-white: #ffffff;
  --kb-brand-primary-dark: #0a1620;
  --kb-brand-primary-light: #24384c;
  --kb-brand-primary-tint: #edf0f3;
  --kb-brand-accent-dark: #8a6630;
  --kb-brand-accent-light: #e9dcc4;
  --kb-brand-accent-tint: #f6f0e3;
  --kb-surface-secondary: #faf8f4;
  --kb-text-muted: #74808b;
  --kb-text-inverse: #ffffff;
  --kb-text-inverse-soft: #c6cfd6;
  --kb-border-soft: #e6e2da;
  --kb-border-default: #d8d3c8;
  --kb-border-strong: #c9c4b9;
  --kb-divider: #eeebe4;
  --kb-error: #96382c;
  --kb-error-on-dark: #f2b8ae;
  --kb-success-on-dark: #9cd3b4;
  --kb-font-primary: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
  --kb-weight-regular: 400;
  --kb-weight-medium: 500;
  --kb-weight-semibold: 600;
  --kb-weight-bold: 700;
  --kb-type-hero-h1: clamp(1.9rem, 2.9vw, 2.7rem);
  --kb-type-hero-sub: clamp(0.95rem, 1.05vw, 1.0625rem);
  --kb-type-h2: clamp(1.35rem, 1.75vw, 1.75rem);
  --kb-type-card-h: clamp(0.9875rem, 1vw, 1.0625rem);
  --kb-type-body: clamp(0.9125rem, 0.4vw, 0.96rem);
  --kb-type-nav: 0.875rem;
  --kb-type-small: 0.8125rem;
  --kb-weight-hero: 600;
  --kb-weight-heading: 600;
  --kb-weight-card: 600;
  --kb-weight-nav-item: 500;
  --kb-leading-hero: 1.5;
  --kb-leading-heading: 1.6;
  --kb-leading-body: 1.85;
  --kb-leading-sub: 1.85;
  --kb-prose-width: 42.5rem;
  --kb-space-1: 4px;
  --kb-space-2: 8px;
  --kb-space-3: 12px;
  --kb-space-4: 16px;
  --kb-space-5: 20px;
  --kb-space-6: 24px;
  --kb-space-7: 28px;
  --kb-space-8: 32px;
  --kb-space-10: 40px;
  --kb-space-12: 48px;
  --kb-section-padding: 64px;
  --kb-section-head-gap: 40px;
  --kb-radius: 8px;
  --kb-radius-sm: 6px;
  --kb-radius-lg: 14px;
  --kb-shadow-soft:
    0 1px 2px rgba(15, 31, 46, 0.04), 0 2px 8px rgba(15, 31, 46, 0.04);
  --kb-shadow-card:
    0 1px 3px rgba(15, 31, 46, 0.06), 0 6px 18px rgba(15, 31, 46, 0.05);
  --kb-shadow-video:
    0 8px 20px rgba(10, 22, 32, 0.22), 0 20px 44px rgba(10, 22, 32, 0.16);
  --kb-container: 1120px;
  --kb-container-wide: 1200px;
  --kb-container-narrow: 1060px;
  --kb-video-width: 780px;
  --kb-header-h: 72px;
  --kb-header-h-scrolled: 62px;
  --kb-video-overlap: 64px;
  --kb-motion-fast: 0.15s ease;
  --kb-motion-base: 0.22s ease;
  --kb-z-video: 40;
  --kb-z-header: 100;
  --kb-z-menu: 150;
  --kb-focus-ring: 3px solid var(--kb-brand-secondary);
  --kb-focus-ring-inverse: 3px solid var(--kb-brand-accent-light);
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-block-start: calc(var(--kb-header-h) + 16px);
}
body {
  margin: 0;
  font-family: var(--kb-font-primary);
  font-weight: var(--kb-weight-regular);
  font-size: var(--kb-type-body);
  line-height: var(--kb-leading-body);
  color: var(--kb-text-primary);
  background-color: var(--kb-bg-page);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
img,
svg,
video {
  max-width: 100%;
  display: block;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
input,
select,
textarea {
  font: inherit;
}
.kb-container {
  width: min(var(--kb-container), calc(100% - 48px));
  margin-inline: auto;
}
.kb-container-wide {
  width: min(var(--kb-container-wide), calc(100% - 48px));
  margin-inline: auto;
}
.kb-container-narrow {
  width: min(var(--kb-container-narrow), calc(100% - 48px));
  margin-inline: auto;
}
.kb-ltr {
  direction: ltr;
  unicode-bidi: isolate;
}
.kb-skip-link {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 8px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--kb-brand-primary);
  color: var(--kb-white);
  border-radius: var(--kb-radius-sm);
  font-weight: var(--kb-weight-semibold);
  transform: translateY(-200%);
  transition: transform var(--kb-motion-fast);
}
.kb-skip-link:focus-visible {
  transform: translateY(0);
}
:focus-visible {
  outline: var(--kb-focus-ring);
  outline-offset: 2px;
  border-radius: var(--kb-radius-sm);
}
.kb-hero :focus-visible,
.kb-section--approach :focus-visible,
.kb-section--contact :focus-visible,
.kb-footer :focus-visible {
  outline: var(--kb-focus-ring-inverse);
}
.kb-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.kb-brand-mark {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: height var(--kb-motion-base);
}
.kb-brand-mark--footer {
  height: 104px;
}
.kb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: var(--kb-radius-sm);
  font-size: var(--kb-type-nav);
  font-weight: var(--kb-weight-semibold);
  line-height: 1.5;
  white-space: nowrap;
  transition:
    background-color var(--kb-motion-base),
    color var(--kb-motion-base);
}
.kb-btn--gold {
  background: var(--kb-brand-accent);
  color: var(--kb-brand-primary-dark);
}
.kb-btn--gold:hover {
  background: var(--kb-brand-accent-light);
}
.kb-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 32px;
  block-size: 32px;
  flex-shrink: 0;
  border-radius: var(--kb-radius-sm);
  border: 1px solid var(--kb-border-default);
  color: var(--kb-brand-secondary);
  transition:
    color var(--kb-motion-base),
    border-color var(--kb-motion-base),
    background-color var(--kb-motion-base);
}
a.kb-social:hover {
  color: var(--kb-brand-accent-dark);
  border-color: var(--kb-brand-accent);
  background: var(--kb-brand-accent-tint);
}
.kb-social--disabled {
  cursor: default;
  color: var(--kb-text-muted);
  border-color: var(--kb-border-soft);
}
.kb-form {
  display: grid;
  gap: 11px;
  max-width: 560px;
  padding: 22px;
  border-radius: var(--kb-radius);
  border: 1px solid rgba(198, 207, 214, 0.16);
  background: #ffffff09;
}
.kb-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.kb-form__field {
  display: grid;
  gap: 4px;
  align-content: start;
}
.kb-form__label {
  font-size: 0.79rem;
  font-weight: var(--kb-weight-medium);
  line-height: 1.45;
  color: var(--kb-text-inverse-soft);
}
.kb-form__req {
  color: var(--kb-brand-accent);
}
.kb-form__input {
  inline-size: 100%;
  block-size: 44px;
  padding: 0 12px;
  border-radius: var(--kb-radius-sm);
  border: 1px solid rgba(198, 207, 214, 0.22);
  background: #fbfaf7f7;
  color: var(--kb-text-primary);
  font-size: 0.9375rem;
  transition:
    border-color var(--kb-motion-fast),
    box-shadow var(--kb-motion-fast);
}
.kb-form__input:focus {
  outline: none;
  border-color: var(--kb-brand-accent);
  box-shadow: 0 0 0 3px #b58a4a47;
}
.kb-form__input[aria-invalid="true"] {
  border-color: var(--kb-error-on-dark);
  box-shadow: 0 0 0 3px #96382c38;
}
.kb-form__textarea {
  block-size: 92px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.7;
}
.kb-form__privacy-link {
  color: var(--kb-brand-accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kb-form__error {
  font-size: var(--kb-type-small);
  font-weight: var(--kb-weight-medium);
  color: var(--kb-error-on-dark);
  line-height: 1.65;
}
.kb-form__error--wide {
  margin-block-start: -6px;
}
.kb-form__hp {
  position: absolute;
  inset-inline-start: -9999px;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
}
.kb-form__field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 10px;
  margin-block-start: var(--kb-space-1);
}
.kb-form__check {
  inline-size: 18px;
  block-size: 18px;
  margin-block-start: 4px;
  accent-color: var(--kb-brand-accent);
}
.kb-form__label--check {
  font-weight: var(--kb-weight-regular);
  font-size: var(--kb-type-small);
  line-height: 1.7;
  text-wrap: pretty;
}
.kb-form__label--check .kb-form__req {
  white-space: nowrap;
}
.kb-form__field--check .kb-form__error {
  grid-column: 1 / -1;
}
.kb-form__actions {
  display: flex;
  align-items: center;
  gap: var(--kb-space-4);
  flex-wrap: wrap;
  margin-block-start: var(--kb-space-2);
}
.kb-form__submit {
  inline-size: 150px;
  min-height: 45px;
}
.kb-form__submit[disabled] {
  opacity: 0.65;
  cursor: wait;
}
.kb-form__status {
  font-size: var(--kb-type-small);
  font-weight: var(--kb-weight-medium);
  color: var(--kb-text-inverse-soft);
  line-height: 1.7;
  flex: 1 1 180px;
}
.kb-form__status--success {
  color: var(--kb-success-on-dark);
}
.kb-form__status--error {
  color: var(--kb-error-on-dark);
}
.kb-header {
  position: sticky;
  inset-block-start: 0;
  z-index: var(--kb-z-header);
  background: #0f1f2ef5;
  transition:
    background-color var(--kb-motion-base),
    box-shadow var(--kb-motion-base);
}
.kb-header.is-scrolled {
  background: #0f1f2edb;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px #c6cfd61a;
}
.kb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--kb-space-6);
  min-height: var(--kb-header-h);
  transition: min-height var(--kb-motion-base);
}
.kb-header.is-scrolled .kb-header__inner {
  min-height: var(--kb-header-h-scrolled);
}
.kb-header__brand {
  flex-shrink: 0;
  display: inline-flex;
  border-radius: var(--kb-radius-sm);
}
.kb-header.is-scrolled .kb-brand-mark {
  height: 56px;
}
.kb-header__cta {
  flex-shrink: 0;
}
.kb-nav__toggle {
  display: none;
}
.kb-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.kb-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 11px;
  border-radius: var(--kb-radius-sm);
  color: var(--kb-text-inverse-soft);
  font-size: var(--kb-type-nav);
  font-weight: var(--kb-weight-medium);
  transition: color var(--kb-motion-fast);
}
.kb-nav__link:hover {
  color: var(--kb-white);
}
.kb-nav__link.is-active {
  color: var(--kb-white);
  box-shadow: inset 0 -2px 0 var(--kb-brand-accent);
  border-radius: 0;
}
.kb-nav__cta-item {
  display: none;
}
.kb-hero {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--kb-brand-primary) 0%,
    var(--kb-brand-primary-dark) 100%
  );
  color: var(--kb-text-inverse);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block-start: 72px;
  padding-block-end: 112px;
}
.kb-hero__orbital {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.kb-orbital {
  width: 100%;
  height: 100%;
}
.kb-orbit {
  fill: none;
  stroke: var(--kb-brand-accent);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.kb-orbit--outer {
  stroke-opacity: 0.13;
}
.kb-orbit--slate {
  stroke: url(#kb-slatering);
  stroke-opacity: 1;
}
.kb-orbit--gold {
  stroke: url(#kb-goldring);
  stroke-width: 1.3;
  stroke-opacity: 1;
}
.kb-orbit--mid {
  stroke-opacity: 0.3;
}
.kb-orbit--inner {
  stroke-opacity: 0.38;
}
.kb-orbit--core-ring {
  stroke-opacity: 0.46;
}
.kb-orbit-ticks {
  fill: none;
  stroke: var(--kb-brand-accent);
  stroke-opacity: 0.2;
  stroke-width: 5;
  stroke-dasharray: 1.4 22;
  vector-effect: non-scaling-stroke;
  animation: kb-ticks-drift 260s linear infinite;
  animation-play-state: paused;
}
@keyframes kb-ticks-drift {
  to {
    stroke-dashoffset: -1400;
  }
}
.kb-orbit-dotted {
  fill: none;
  stroke: var(--kb-brand-accent);
  stroke-opacity: 0.34;
  stroke-width: 1;
  stroke-dasharray: 3 10;
  vector-effect: non-scaling-stroke;
  animation: kb-dotted-drift 150s linear infinite;
  animation-play-state: paused;
}
@keyframes kb-dotted-drift {
  to {
    stroke-dashoffset: 780;
  }
}
.kb-orbital__node {
  fill: var(--kb-text-inverse-soft);
  fill-opacity: 0.45;
}
.kb-orbital__node--gold {
  fill: var(--kb-brand-accent);
  fill-opacity: 0.7;
}
.kb-traveller {
  fill: var(--kb-brand-accent-light);
}
.kb-traveller-head {
  opacity: 0.85;
}
.kb-trail {
  fill: var(--kb-brand-accent);
  fill-opacity: 0;
}
.kb-orbital__halo {
  animation: kb-core-breathe 8s ease-in-out infinite;
  animation-play-state: paused;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes kb-core-breathe {
  0%,
  to {
    opacity: 0.72;
    transform: scale(0.97);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.kb-orbital__rim {
  animation: kb-rim-pulse 8s ease-in-out infinite;
  animation-play-state: paused;
}
@keyframes kb-rim-pulse {
  0%,
  to {
    stroke-opacity: 0.7;
  }
  50% {
    stroke-opacity: 0.95;
  }
}
.kb-orbital__soft {
  animation: kb-soft-pulse 8s ease-in-out infinite;
  animation-play-state: paused;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes kb-soft-pulse {
  0%,
  to {
    transform: scale(0.94);
  }
  50% {
    transform: scale(1.08);
  }
}
.kb-orbital__flare {
  animation: kb-flare-pulse 8s ease-in-out infinite;
  animation-play-state: paused;
}
@keyframes kb-flare-pulse {
  0%,
  to {
    opacity: 0.18;
  }
  50% {
    opacity: 0.32;
  }
}
.kb-orbital__energy--a {
  animation: kb-energy-breathe 14s ease-in-out infinite;
  animation-play-state: paused;
}
.kb-orbital__energy--b {
  animation: kb-energy-breathe 19s ease-in-out infinite reverse;
  animation-play-state: paused;
}
@keyframes kb-energy-breathe {
  0%,
  to {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
.kb-orbital__dust circle {
  animation: kb-dust-breathe 9s ease-in-out infinite;
  animation-play-state: paused;
}
.kb-orbital__dust circle:nth-child(2n) {
  animation-duration: 12s;
  animation-delay: -3s;
}
.kb-orbital__dust circle:nth-child(3n) {
  animation-duration: 15s;
  animation-delay: -6s;
}
@keyframes kb-dust-breathe {
  0%,
  to {
    opacity: 0.16;
  }
  50% {
    opacity: 0.42;
  }
}
.kb-orbital__system {
  animation: kb-rings-in 1.7s cubic-bezier(0.2, 0.7, 0.3, 1) both;
  animation-play-state: paused;
}
.kb-orbital__ambient,
.kb-orbital__dust {
  animation: kb-fade-in 1.5s ease 0.5s both;
  animation-play-state: paused;
}
.kb-core-sphere {
  animation: kb-core-bloom 1.5s cubic-bezier(0.2, 0.7, 0.3, 1) 0.1s both;
  animation-play-state: paused;
  transform-box: fill-box;
  transform-origin: center;
}
.kb-core-plane {
  animation: kb-fade-in 1.5s ease 0.2s both;
  animation-play-state: paused;
}
.kb-orbital__travellers {
  animation: kb-fade-in 1.4s ease 0.8s both;
  animation-play-state: paused;
}
@keyframes kb-rings-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kb-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kb-core-bloom {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.kb-motion-ready .kb-orbital__system,
.kb-motion-ready .kb-core-sphere,
.kb-motion-ready .kb-core-plane,
.kb-motion-ready .kb-orbital__travellers,
.kb-motion-ready .kb-orbital__ambient,
.kb-motion-ready .kb-orbital__dust,
.kb-motion-ready .kb-orbit-ticks,
.kb-motion-ready .kb-orbit-dotted,
.kb-motion-ready .kb-orbital__halo,
.kb-motion-ready .kb-orbital__rim,
.kb-motion-ready .kb-orbital__soft,
.kb-motion-ready .kb-orbital__flare,
.kb-motion-ready .kb-orbital__energy,
.kb-motion-ready .kb-orbital__dust circle {
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .kb-orbital__system,
  .kb-core-sphere,
  .kb-core-plane,
  .kb-orbital__ambient,
  .kb-orbital__dust,
  .kb-orbital__dust circle,
  .kb-orbital__travellers,
  .kb-orbital__halo,
  .kb-orbital__rim,
  .kb-orbital__soft,
  .kb-orbital__flare,
  .kb-orbital__energy,
  .kb-orbital__energy--a,
  .kb-orbital__energy--b,
  .kb-orbit-ticks,
  .kb-orbit-dotted {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .kb-orbital__dust circle {
    opacity: 0.3 !important;
  }
  .kb-orbital__flare {
    opacity: 0.24 !important;
  }
  .kb-orbital__halo {
    opacity: 0.88 !important;
  }
}
.kb-hero__content {
  position: relative;
  z-index: 2;
  text-align: start;
}
.kb-hero__title {
  font-size: var(--kb-type-hero-h1);
  font-weight: var(--kb-weight-hero);
  line-height: var(--kb-leading-hero);
  margin-block-end: var(--kb-space-5);
  max-width: 19ch;
  text-wrap: balance;
}
.kb-hero__subtitle {
  font-size: var(--kb-type-hero-sub);
  font-weight: var(--kb-weight-regular);
  line-height: var(--kb-leading-sub);
  color: var(--kb-text-inverse-soft);
  max-width: 32rem;
}
.kb-video-section {
  position: relative;
  z-index: var(--kb-z-video);
  margin-block-start: calc(-1 * var(--kb-video-overlap));
}
.kb-video-card {
  position: relative;
  width: min(var(--kb-video-width), calc(100% - 48px));
  margin-inline: auto;
  border-radius: var(--kb-radius-lg);
  overflow: hidden;
  background: var(--kb-brand-primary-dark);
  border: 1px solid rgba(181, 138, 74, 0.32);
  box-shadow: var(--kb-shadow-video);
}
.kb-video-card__video {
  width: 100%;
  display: block;
  background: var(--kb-brand-primary-dark);
}
.kb-video-card__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--kb-space-5);
  background: linear-gradient(180deg, #0a162033, #0a162080);
  transition:
    opacity var(--kb-motion-base),
    visibility var(--kb-motion-base);
}
.kb-video-card__overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.kb-video-card__title {
  color: var(--kb-white);
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  font-weight: var(--kb-weight-semibold);
  line-height: var(--kb-leading-heading);
  text-shadow: 0 2px 10px rgba(10, 22, 32, 0.55);
}
.kb-video-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 56px;
  block-size: 56px;
  border-radius: 50%;
  background: var(--kb-brand-accent);
  color: var(--kb-brand-primary-dark);
  box-shadow: 0 4px 18px #0a162066;
  transition: background-color var(--kb-motion-base);
}
.kb-video-card__play:hover {
  background: var(--kb-brand-accent-light);
}
.kb-video-card__play svg {
  transform: none;
}
.kb-section {
  padding-block: var(--kb-section-padding);
}
.kb-section__head {
  text-align: center;
  max-width: var(--kb-prose-width);
  margin-inline: auto;
  margin-block-end: var(--kb-section-head-gap);
}
.kb-section__title {
  font-size: var(--kb-type-h2);
  font-weight: var(--kb-weight-semibold);
  line-height: var(--kb-leading-heading);
  margin-block-end: var(--kb-space-3);
  text-wrap: balance;
}
.kb-section__subtitle {
  color: var(--kb-text-secondary);
  font-size: var(--kb-type-body);
  line-height: var(--kb-leading-body);
}
.kb-section--experience {
  background: var(--kb-bg-page);
  padding-block-start: var(--kb-space-12);
}
.kb-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--kb-space-5);
}
.kb-value-card {
  background: var(--kb-white);
  border: 1px solid var(--kb-border-soft);
  border-radius: var(--kb-radius);
  box-shadow: var(--kb-shadow-soft);
  padding: var(--kb-space-6) var(--kb-space-5);
  transition:
    border-color var(--kb-motion-base),
    box-shadow var(--kb-motion-base);
}
.kb-value-card:hover {
  border-color: var(--kb-border-default);
  box-shadow: var(--kb-shadow-card);
}
.kb-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  border-radius: var(--kb-radius-sm);
  background: var(--kb-brand-accent-tint);
  color: var(--kb-brand-accent-dark);
  margin-block-end: var(--kb-space-4);
}
.kb-value-card__title {
  font-size: var(--kb-type-card-h);
  font-weight: var(--kb-weight-semibold);
  line-height: 1.6;
  margin-block-end: var(--kb-space-2);
}
.kb-value-card__text {
  color: var(--kb-text-secondary);
  font-size: 0.9375rem;
  line-height: var(--kb-leading-body);
}
.kb-section--approach {
  background: var(--kb-brand-primary);
  color: var(--kb-text-inverse);
}
.kb-section--approach .kb-section__subtitle {
  color: var(--kb-text-inverse-soft);
}
.kb-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--kb-space-5);
}
.kb-timeline:before {
  content: "";
  position: absolute;
  inset-block-start: 20px;
  inset-inline: 12.5%;
  border-block-start: 1px dashed rgba(198, 207, 214, 0.28);
}
.kb-timeline__step {
  position: relative;
  text-align: center;
}
.kb-timeline__step:not(:last-child):after {
  content: "";
  position: absolute;
  inset-block-start: 16px;
  inset-inline-start: -3px;
  inline-size: 0;
  block-size: 0;
  border-block-start: 4px solid transparent;
  border-block-end: 4px solid transparent;
  border-right: 6px solid var(--kb-brand-accent);
  opacity: 0.75;
}
.kb-timeline__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  border-radius: 50%;
  background: var(--kb-brand-accent);
  color: var(--kb-brand-primary-dark);
  font-weight: var(--kb-weight-semibold);
  font-size: 0.9375rem;
  margin-block-end: var(--kb-space-4);
}
.kb-timeline__title {
  font-size: var(--kb-type-card-h);
  font-weight: var(--kb-weight-semibold);
  line-height: 1.6;
  margin-block-end: var(--kb-space-2);
}
.kb-timeline__text {
  color: var(--kb-text-inverse-soft);
  font-size: 0.9375rem;
  line-height: var(--kb-leading-body);
  max-width: 27ch;
  margin-inline: auto;
}
.kb-section--leaders {
  background: var(--kb-surface-light);
}
.kb-founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--kb-space-6);
  max-width: 1064px;
  margin-inline: auto;
}
.kb-founder-card {
  display: grid;
  grid-template-columns: 36% 1fr;
  max-width: 520px;
  background: var(--kb-white);
  border: 1px solid var(--kb-border-soft);
  border-radius: var(--kb-radius);
  box-shadow: var(--kb-shadow-soft);
  overflow: hidden;
}
.kb-founder-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.kb-founder-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--kb-founder-pos, center top);
}
.kb-founder-card__body {
  padding: var(--kb-space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kb-founder-card__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-block-end: 2px;
}
.kb-founder-card__name {
  font-size: 1.125rem;
  font-weight: var(--kb-weight-semibold);
  line-height: 1.5;
}
.kb-founder-card__role {
  color: var(--kb-brand-accent-dark);
  font-weight: var(--kb-weight-medium);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-block-end: var(--kb-space-3);
}
.kb-founder-card__text {
  color: var(--kb-text-secondary);
  font-size: 0.9375rem;
  line-height: var(--kb-leading-body);
}
.kb-section--audience {
  background: var(--kb-bg-page);
  border-block-start: 1px solid var(--kb-divider);
}
.kb-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--kb-space-8);
}
.kb-audience__item {
  padding-block-start: var(--kb-space-5);
  border-block-start: 2px solid var(--kb-brand-accent);
}
.kb-audience__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kb-brand-accent-dark);
  margin-block-end: var(--kb-space-3);
}
.kb-audience__title {
  font-size: var(--kb-type-card-h);
  font-weight: var(--kb-weight-semibold);
  line-height: 1.6;
  margin-block-end: var(--kb-space-2);
}
.kb-audience__text {
  color: var(--kb-text-secondary);
  font-size: 0.9375rem;
  line-height: var(--kb-leading-body);
}
.kb-section--preserved {
  background: var(--kb-white);
  border-block-start: 1px solid var(--kb-divider);
}
.kb-record {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--kb-border-soft);
  border-radius: var(--kb-radius);
  overflow: hidden;
  background: var(--kb-surface-light);
}
.kb-record__item {
  position: relative;
  padding: var(--kb-space-5) var(--kb-space-4);
  text-align: center;
  border-inline-start: 1px solid var(--kb-divider);
}
.kb-record__item:first-child {
  border-inline-start: 0;
}
.kb-record__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 32px;
  block-size: 32px;
  margin-block-end: var(--kb-space-3);
  border-radius: 50%;
  border: 1.5px solid var(--kb-brand-accent);
  color: var(--kb-brand-accent-dark);
  font-weight: var(--kb-weight-semibold);
  font-size: 0.875rem;
  background: var(--kb-white);
}
.kb-record__title {
  font-size: 1rem;
  font-weight: var(--kb-weight-semibold);
  line-height: 1.55;
  margin-block-end: var(--kb-space-2);
}
.kb-record__text {
  color: var(--kb-text-secondary);
  font-size: 0.875rem;
  line-height: 1.75;
}
.kb-section--contact {
  background: linear-gradient(
    180deg,
    var(--kb-brand-primary) 0%,
    var(--kb-brand-primary-dark) 100%
  );
  color: var(--kb-text-inverse);
}
.kb-contact {
  display: grid;
  grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
  gap: var(--kb-space-12);
  align-items: start;
}
.kb-contact > * {
  min-width: 0;
}
.kb-contact__intro {
  padding-block-start: var(--kb-space-2);
}
.kb-contact__intro .kb-section__title {
  text-align: start;
  margin-block-end: var(--kb-space-4);
}
.kb-contact__text {
  color: var(--kb-text-inverse-soft);
  font-size: var(--kb-type-body);
  line-height: var(--kb-leading-body);
}
.kb-footer {
  background: var(--kb-brand-primary-dark);
  color: var(--kb-text-inverse-soft);
}
.kb-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.62fr) minmax(0, 1fr);
  gap: var(--kb-space-10);
  padding-block: 44px;
  align-items: start;
}
.kb-footer__intro {
  margin-block-start: var(--kb-space-3);
  font-size: 0.875rem;
  line-height: 1.85;
  max-width: 30ch;
}
.kb-footer__links {
  display: grid;
  gap: 2px;
}
.kb-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-size: 0.875rem;
  color: var(--kb-text-inverse-soft);
}
.kb-footer__links a:hover {
  color: var(--kb-white);
}
.kb-footer__address-text {
  line-height: 1.95;
}
.kb-footer__heading {
  color: var(--kb-white);
  font-size: 1rem;
  font-weight: var(--kb-weight-semibold);
  line-height: 1.6;
  margin-block-end: var(--kb-space-4);
}
.kb-footer__address {
  font-style: normal;
  display: grid;
  gap: var(--kb-space-3);
}
.kb-footer__line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.9;
  text-wrap: pretty;
}
.kb-footer__icon {
  flex-shrink: 0;
  margin-block-start: 6px;
  color: var(--kb-brand-accent);
}
.kb-footer__value {
  color: var(--kb-white);
}
.kb-footer__link {
  color: var(--kb-white);
  transition: color var(--kb-motion-fast);
}
.kb-footer__link:hover {
  color: var(--kb-brand-accent-light);
  text-decoration: underline;
}
.kb-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--kb-space-3) var(--kb-space-5);
  margin-block-start: var(--kb-space-5);
}
.kb-footer__social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 26px;
  font-size: 0.875rem;
  color: var(--kb-text-inverse-soft);
}
.kb-footer__social-item svg {
  flex-shrink: 0;
  color: var(--kb-brand-accent);
}
a.kb-footer__social-item {
  min-height: 44px;
  transition: color var(--kb-motion-fast);
}
a.kb-footer__social-item:hover {
  color: var(--kb-white);
}
.kb-footer__bar {
  border-block-start: 1px solid rgba(198, 207, 214, 0.12);
  padding-block: var(--kb-space-4);
}
.kb-footer__copyright {
  text-align: center;
  font-size: var(--kb-type-small);
  line-height: 1.85;
}
.kb-footer__year:after {
  content: " — ";
}
@media (min-width: 1440px) {
  :root {
    --kb-video-overlap: 72px;
  }
  .kb-hero {
    min-height: 580px;
  }
}
@media (max-width: 1280px) {
  :root {
    --kb-video-overlap: 60px;
  }
  .kb-hero {
    min-height: 540px;
    padding-block-end: 104px;
  }
  .kb-founders {
    gap: var(--kb-space-5);
  }
}
@media (max-width: 1024px) {
  :root {
    --kb-section-padding: 56px;
    --kb-section-head-gap: 32px;
    --kb-video-width: 680px;
    --kb-video-overlap: 48px;
  }
  .kb-hero {
    min-height: 520px;
    padding-block-start: 64px;
    padding-block-end: 96px;
  }
  .kb-value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kb-value-grid .kb-value-card:last-child {
    grid-column: 1 / -1;
  }
  .kb-timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--kb-space-8);
  }
  .kb-timeline:before,
  .kb-timeline__step:not(:last-child):after {
    display: none;
  }
  .kb-founders {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .kb-founder-card {
    max-width: 560px;
    width: 100%;
  }
  .kb-audience {
    grid-template-columns: 1fr;
    gap: var(--kb-space-6);
  }
  .kb-audience__item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: var(--kb-space-4);
    align-items: start;
  }
  .kb-audience__icon {
    margin-block-end: 0;
    margin-block-start: 2px;
  }
  .kb-record {
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .kb-record__item {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: var(--kb-space-4);
    align-items: start;
    text-align: start;
    border-inline-start: 0;
    padding: 0 0 var(--kb-space-6);
  }
  .kb-record__item:last-child {
    padding-block-end: 0;
  }
  .kb-record__item:not(:last-child):before {
    content: "";
    position: absolute;
    inset-block-start: 32px;
    inset-block-end: 0;
    inset-inline-start: 15px;
    border-inline-start: 1px dashed var(--kb-border-default);
  }
  .kb-record__marker {
    grid-column: 1;
    grid-row: 1;
    margin-block-end: 0;
  }
  .kb-record__title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-block-end: 0;
  }
  .kb-record__text {
    grid-column: 2;
    grid-row: 2;
    margin-block-start: var(--kb-space-2);
  }
  .kb-contact {
    grid-template-columns: 1fr;
    gap: var(--kb-space-8);
  }
  .kb-contact__intro .kb-section__title,
  .kb-contact__text {
    max-width: 46rem;
  }
  .kb-form {
    max-width: 100%;
  }
  .kb-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--kb-space-8);
  }
  .kb-footer__col--brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
  .kb-nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    inline-size: 44px;
    block-size: 44px;
    border-radius: var(--kb-radius-sm);
  }
  .kb-nav__toggle-bar {
    display: block;
    inline-size: 20px;
    block-size: 2px;
    background: var(--kb-white);
    border-radius: 2px;
    transition:
      transform var(--kb-motion-base),
      opacity var(--kb-motion-base);
  }
  .kb-nav.is-open .kb-nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .kb-nav.is-open .kb-nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .kb-nav.is-open .kb-nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .kb-header__cta,
  .kb-nav__list {
    display: none;
  }
  .kb-nav.is-open .kb-nav__list {
    display: flex;
    position: fixed;
    inset-block-start: var(--kb-header-h);
    inset-inline: 0;
    inset-block-end: 0;
    z-index: var(--kb-z-menu);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--kb-brand-primary-dark);
    border-block-start: 1px solid rgba(198, 207, 214, 0.14);
    padding: var(--kb-space-2) var(--kb-space-5) var(--kb-space-8);
    min-height: calc(100dvh - var(--kb-header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .kb-nav.is-open .kb-nav__link {
    min-height: 50px;
    font-size: 1rem;
    border-block-end: 1px solid rgba(198, 207, 214, 0.09);
    border-radius: 0;
  }
  .kb-nav__cta-item {
    display: block;
    margin-block-start: var(--kb-space-5);
  }
  .kb-nav__cta {
    inline-size: 100%;
    min-height: 46px;
  }
}
@media (max-width: 768px) {
  :root {
    --kb-section-padding: 46px;
    --kb-section-head-gap: 28px;
    --kb-header-h: 62px;
    --kb-header-h-scrolled: 58px;
    --kb-video-overlap: 32px;
  }
  .kb-container,
  .kb-container-wide,
  .kb-container-narrow {
    width: calc(100% - 32px);
  }
  .kb-header .kb-brand-mark {
    height: 54px;
  }
  .kb-header.is-scrolled .kb-brand-mark {
    height: 50px;
  }
  .kb-hero {
    min-height: 470px;
    padding-block-start: 44px;
    padding-block-end: 72px;
  }
  .kb-hero__content {
    width: calc(100% - 32px);
  }
  .kb-hero__title {
    margin-block-end: var(--kb-space-3);
  }
  .kb-video-card {
    width: calc(100% - 32px);
    max-width: 640px;
    border-radius: 12px;
  }
  .kb-video-card__play {
    inline-size: 50px;
    block-size: 50px;
  }
  .kb-value-grid {
    grid-template-columns: 1fr;
    gap: var(--kb-space-4);
  }
  .kb-value-grid .kb-value-card:last-child {
    grid-column: auto;
  }
  .kb-value-card {
    padding: var(--kb-space-5);
  }
  .kb-value-card__icon {
    inline-size: 36px;
    block-size: 36px;
    margin-block-end: var(--kb-space-3);
  }
  .kb-timeline {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .kb-timeline__step {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: var(--kb-space-4);
    align-items: start;
    text-align: start;
    padding-block-end: var(--kb-space-6);
  }
  .kb-timeline__step:last-child {
    padding-block-end: 0;
  }
  .kb-timeline__step:not(:last-child):before {
    content: "";
    position: absolute;
    inset-block-start: 40px;
    inset-block-end: 0;
    inset-inline-start: 19px;
    border-inline-start: 1px dashed rgba(198, 207, 214, 0.28);
  }
  .kb-timeline__num {
    margin-block-end: 0;
  }
  .kb-timeline__body {
    padding-block-start: 6px;
  }
  .kb-timeline__title {
    margin-block-end: var(--kb-space-1);
  }
  .kb-timeline__text {
    max-width: none;
    margin-inline: 0;
  }
  .kb-founder-card {
    grid-template-columns: 112px 1fr;
    max-width: 100%;
  }
  .kb-founder-card__body {
    padding: var(--kb-space-4);
  }
  .kb-founder-card__name {
    font-size: 1.0625rem;
  }
  .kb-founder-card__role {
    font-size: 0.8125rem;
    margin-block-end: var(--kb-space-2);
  }
  .kb-founder-card__text {
    font-size: 0.9rem;
  }
  .kb-audience {
    gap: var(--kb-space-5);
  }
  .kb-audience__item {
    padding-block-start: var(--kb-space-4);
  }
  .kb-record__text {
    font-size: 0.9rem;
  }
  .kb-form {
    padding: var(--kb-space-5);
    gap: var(--kb-space-3);
  }
  .kb-form__row {
    grid-template-columns: 1fr;
  }
  .kb-form__input {
    block-size: 44px;
  }
  .kb-form__textarea {
    block-size: 104px;
  }
  .kb-form__actions {
    margin-block-start: var(--kb-space-1);
  }
  .kb-form__submit {
    inline-size: 100%;
  }
  .kb-form__status {
    flex-basis: 100%;
    text-align: center;
  }
  .kb-form__field--check {
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 8px;
    align-items: start;
    margin-block-start: 0;
  }
  .kb-form__check {
    margin-block-start: 2px;
  }
  .kb-form__label--check {
    line-height: 1.65;
  }
  .kb-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--kb-space-7);
    padding-block: var(--kb-space-8);
  }
  .kb-footer__col--brand {
    order: 1;
  }
  .kb-footer__col--links {
    order: 2;
  }
  .kb-footer__col--contact {
    order: 3;
  }
  .kb-footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .kb-brand-mark--footer {
    height: 88px;
  }
  .kb-footer__intro {
    max-width: none;
  }
  .kb-footer__links {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--kb-space-4);
  }
  .kb-footer__links a {
    min-height: 40px;
  }
}
@media (max-width: 430px) {
  :root {
    --kb-video-overlap: 26px;
  }
  .kb-container,
  .kb-container-wide,
  .kb-container-narrow {
    width: calc(100% - 24px);
  }
  .kb-hero {
    min-height: 450px;
    padding-block-end: 64px;
  }
  .kb-hero__content {
    width: calc(100% - 32px);
  }
  .kb-video-card {
    width: calc(100% - 24px);
    border-radius: 10px;
  }
  .kb-video-card__play {
    inline-size: 48px;
    block-size: 48px;
  }
  .kb-video-card__play svg {
    width: 21px;
    height: 21px;
  }
  .kb-founder-card {
    grid-template-columns: 106px 1fr;
  }
  .kb-founder-card__body {
    padding: var(--kb-space-3) var(--kb-space-4);
  }
}
@media (max-width: 390px) {
  .kb-hero {
    min-height: 440px;
  }
  .kb-hero__subtitle {
    font-size: 0.9rem;
  }
  .kb-form {
    padding: var(--kb-space-4);
  }
}
@media (max-width: 359px) {
  .kb-founder-card {
    grid-template-columns: 1fr;
  }
  .kb-founder-card__media {
    aspect-ratio: auto;
    max-block-size: 260px;
  }
  .kb-founder-card__media img {
    max-block-size: 260px;
  }
}
@media (max-width: 768px) {
  .kb-orbit--outer,
  .kb-orbit--slate,
  .kb-orbit-ticks,
  .kb-orbital__node,
  .kb-orbital__dust {
    display: none;
  }
  .kb-orbital {
    transform: translate(-9%, 7%) scale(0.9);
    transform-origin: center;
  }
  .kb-orbital__halo {
    opacity: 0.6;
  }
  #kb-trav-c,
  #kb-trav-c-t1,
  #kb-trav-a-t2,
  #kb-trav-b-t2 {
    display: none;
  }
}
