.kk-page {
  --kk-dark: #0c2b27;
  --kk-paper: #f5f2e9;
  --kk-mint: #8fe7dc;
  --kk-lime: #d9ff57;
  overflow-x: clip;
  background: #fff;
}

.kk-page main { overflow: clip; }

.kk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--km-muted);
  font-family: var(--km-mono);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.kk-kicker::before { width: 20px; height: 1px; background: currentColor; content: ''; }
.kk-kicker--light { color: rgb(255 255 255 / .56); }

.kk-hero {
  position: relative;
  padding: clamp(68px, 6.5vw, 92px) 0 clamp(64px, 6vw, 84px);
  border-bottom: 1px solid var(--km-line);
  background: #f8f7f2;
}

.kk-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - var(--km-max)) / 2));
  width: 1px;
  background: var(--km-line);
  content: '';
  pointer-events: none;
}

.kk-hero__grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.kk-hero__intro { min-width: 0; padding-left: clamp(22px, 3vw, 42px); }

.kk-hero h1 {
  max-width: 10ch;
  margin: 24px 0 26px;
  font-size: clamp(52px, 5.2vw, 72px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.kk-hero__lead {
  max-width: 41ch;
  margin: 0;
  color: var(--km-body);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
  letter-spacing: -.015em;
}

.kk-hero__direct {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--km-line);
}

.kk-hero__direct > span,
.kk-directory__eyebrow {
  color: var(--km-muted);
  font-family: var(--km-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kk-hero__direct a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--km-brand);
  font-size: 15px;
  font-weight: 610;
}

.kk-hero__direct a i { font-family: var(--km-mono); font-size: 11px; font-style: normal; transition: transform .18s ease; }
.kk-hero__direct a:hover i { transform: translate(2px, -2px); }

.kk-directory {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d7d6ce;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px -52px rgb(12 43 39 / .55);
}

.kk-directory__head {
  display: flex;
  min-height: 104px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  background: var(--kk-paper);
}

.kk-directory__head h2 { margin: 8px 0 0; font-size: 25px; font-weight: 610; letter-spacing: -.04em; }

.kk-directory__availability {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 7px;
  color: var(--km-brand);
  font-family: var(--km-mono);
  font-size: 9.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kk-directory__availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--km-brand); box-shadow: 0 0 0 4px rgb(15 118 110 / .1); }

.kk-directory__item {
  display: grid;
  min-height: 78px;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 28px;
  border-top: 1px solid var(--km-line);
  transition: background-color .18s ease, color .18s ease;
}

.kk-directory__number { color: var(--km-brand); font-family: var(--km-mono); font-size: 10px; }
.kk-directory__item small { display: block; margin-bottom: 3px; color: var(--km-muted); font-family: var(--km-mono); font-size: 9.5px; letter-spacing: .05em; text-transform: uppercase; }
.kk-directory__item b { display: block; font-size: 16px; font-weight: 600; letter-spacing: -.02em; }
.kk-directory__arrow { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--km-line); border-radius: 50%; color: var(--km-brand); font-family: var(--km-mono); font-size: 11px; font-style: normal; transition: transform .18s ease, background-color .18s ease, border-color .18s ease; }
.kk-directory__item:hover { background: #eff8f5; }
.kk-directory__item:hover .kk-directory__arrow { border-color: var(--km-brand); background: var(--km-brand); color: #fff; transform: translateX(3px); }

.kk-contact {
  padding: clamp(72px, 8vw, 112px) 0 clamp(88px, 10vw, 140px);
  background:
    linear-gradient(rgb(255 255 255 / .025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .025) 1px, transparent 1px),
    var(--kk-dark);
  background-size: 56px 56px;
  color: #fff;
}

.kk-contact__head { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 8vw, 118px); align-items: end; margin-bottom: 52px; }
.kk-contact__head h2 { max-width: 13ch; margin: 18px 0 0; font-size: clamp(44px, 5.5vw, 76px); font-weight: 580; line-height: .95; letter-spacing: -.06em; }
.kk-contact__head > p { max-width: 44ch; margin: 0; color: rgb(255 255 255 / .61); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; }

.kk-stage { overflow: hidden; border: 1px solid rgb(143 231 220 / .28); border-radius: 24px; background: #08231f; box-shadow: 0 45px 100px -50px rgb(0 0 0 / .78); }
.kk-stage__bar { display: grid; grid-template-columns: 1fr auto 1fr; min-height: 56px; align-items: center; gap: 18px; padding: 0 22px; color: rgb(255 255 255 / .56); font-family: var(--km-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.kk-stage__brand { display: inline-flex; align-items: center; gap: 9px; }
.kk-stage__brand i { width: 7px; height: 7px; border-radius: 50%; background: var(--kk-mint); box-shadow: 0 0 0 4px rgb(143 231 220 / .1); }
.kk-stage__label { padding: 6px 9px; border: 1px solid rgb(255 255 255 / .12); border-radius: 6px; justify-self: center; }
.kk-stage__state { justify-self: end; color: var(--kk-lime); }
.kk-stage__body { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr); margin: 0 13px 13px; overflow: hidden; border: 1px solid rgb(255 255 255 / .25); border-radius: 17px; background: #faf9f4; color: var(--km-ink); }

.kk-form,
.kk-success { min-width: 0; padding: clamp(30px, 5vw, 62px); }
.kk-form__head { display: flex; align-items: start; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.kk-form__head span,
.kk-route__eyebrow { color: var(--km-muted); font-family: var(--km-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.kk-form__head h3 { margin: 7px 0 0; font-size: clamp(27px, 3vw, 36px); font-weight: 610; line-height: 1.08; letter-spacing: -.045em; }
.kk-form__required { flex: none; padding: 6px 9px; border-radius: 6px; background: #e4f4f1; color: var(--km-brand) !important; font-size: 10px !important; }

.kk-field { margin-bottom: 22px; }
.kk-field label { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: 14px; font-weight: 630; letter-spacing: -.01em; }
.kk-field label small { color: var(--km-muted); font-family: var(--km-mono); font-size: 10px; font-weight: 400; letter-spacing: .03em; text-transform: uppercase; }
.kk-field input,
.kk-field select,
.kk-field textarea { width: 100%; border: 1px solid #d8d7cf; border-radius: 11px; outline: none; background: #fff; color: var(--km-ink); font: inherit; font-size: 16px; line-height: 1.45; transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease; }
.kk-field input,
.kk-field select { min-height: 54px; padding: 0 15px; }
.kk-field textarea { min-height: 184px; padding: 14px 15px; resize: vertical; }
.kk-input { position: relative; }
.kk-lock {
  position: absolute;
  top: 50%;
  right: 11px;
  display: none;
  min-height: 27px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid #b8dcd6;
  border-radius: 6px;
  background: #e4f4f1;
  color: var(--km-brand);
  font-family: var(--km-mono);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transform: translateY(-50%);
  pointer-events: none;
}
.kk-lock::before { content: '●'; font-size: 6px; }
.kk-field--locked .kk-lock { display: inline-flex; }
.kk-field--locked input { padding-right: 104px; border-color: #c4ddd8; background: #edf6f3; color: #31534e; cursor: not-allowed; }
.kk-field--locked input:hover { border-color: #c4ddd8; }
.kk-field--locked input:focus { border-color: var(--km-brand); background: #edf6f3; }
.kk-field input:hover,
.kk-field select:hover,
.kk-field textarea:hover { border-color: #b9b8af; }
.kk-field input:focus,
.kk-field select:focus,
.kk-field textarea:focus { border-color: var(--km-brand); box-shadow: 0 0 0 4px rgb(15 118 110 / .11); background: #fff; }
.kk-field input:user-invalid,
.kk-field select:user-invalid,
.kk-field textarea:user-invalid { border-color: #c85c4a; }
.kk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Honeypot: off-screen instead of display:none so basic bots still encounter it. */
.kk-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.kk-submit { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 18px; align-items: center; margin-top: 5px; padding-top: 24px; border-top: 1px solid var(--km-line); }
.kk-submit .km-btn { min-height: 48px; padding-inline: 22px 12px; }
.kk-submit .km-btn:disabled { cursor: wait; opacity: .66; transform: none; }
.kk-submit__arrow { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: rgb(255 255 255 / .14); transition: transform .18s ease; }
.kk-submit .km-btn:hover .kk-submit__arrow { transform: translateX(3px); }
.kk-note { max-width: 39ch; color: var(--km-muted); font-size: 12.5px; line-height: 1.5; }
.kk-status { display: none; margin-top: 18px; border-radius: 10px; padding: 13px 15px; font-size: 14px; }
.kk-status--ok { display: block; background: var(--kk-lime); color: #253000; }
.kk-status--err { display: block; border: 1px solid #f2c4bb; background: #fff0ed; color: #a83f2d; }

.kk-success { display: none; min-height: 620px; align-content: center; }
.kk-success__mark { display: grid; width: 68px; height: 68px; margin-bottom: 32px; place-items: center; border-radius: 50%; background: var(--kk-lime); color: #253000; font-size: 28px; }
.kk-success h2 { max-width: 12ch; margin: 0 0 16px; font-size: clamp(42px, 5vw, 64px); line-height: .95; letter-spacing: -.06em; }
.kk-success p { max-width: 46ch; margin: 0; color: var(--km-body); font-size: 17px; }

.kk-route { display: flex; min-width: 0; flex-direction: column; padding: clamp(30px, 4vw, 48px); background: var(--kk-mint); color: var(--kk-dark); }
.kk-route__eyebrow { color: rgb(12 43 39 / .55); }
.kk-route h3 { max-width: 9ch; margin: 28px 0 16px; font-size: clamp(38px, 4.4vw, 58px); font-weight: 590; line-height: .92; letter-spacing: -.06em; }
.kk-route > p { max-width: 34ch; margin: 0; color: rgb(12 43 39 / .66); font-size: 15.5px; line-height: 1.55; }
.kk-route__active { display: grid; grid-template-columns: 42px 1fr auto; gap: 13px; align-items: center; margin-top: 34px; padding: 14px; border: 1px solid rgb(12 43 39 / .17); border-radius: 12px; background: rgb(255 255 255 / .38); }
.kk-route__active i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: var(--kk-dark); color: var(--kk-lime); font-family: var(--km-mono); font-size: 11px; font-style: normal; }
.kk-route__active span { min-width: 0; }
.kk-route__active small { display: block; color: rgb(12 43 39 / .52); font-family: var(--km-mono); font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; }
.kk-route__active b { display: block; overflow: hidden; margin-top: 2px; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.kk-route__active strong { color: var(--km-brand); font-family: var(--km-mono); font-size: 10px; font-weight: 500; }
.kk-route__steps { display: grid; margin-top: auto; padding-top: 46px; }
.kk-route__step { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid rgb(12 43 39 / .16); }
.kk-route__step i { color: var(--km-brand); font-family: var(--km-mono); font-size: 10px; font-style: normal; }
.kk-route__step b { display: block; font-size: 14px; }
.kk-route__step span { display: block; margin-top: 2px; color: rgb(12 43 39 / .59); font-size: 12.5px; line-height: 1.45; }
.kk-route__links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.kk-route__links a { display: inline-flex; min-height: 36px; align-items: center; padding: 0 12px; border: 1px solid rgb(12 43 39 / .2); border-radius: 8px; font-size: 12.5px; font-weight: 570; transition: background-color .18s ease, border-color .18s ease; }
.kk-route__links a:hover { border-color: rgb(12 43 39 / .35); background: rgb(255 255 255 / .35); }

.kk-proof { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-block: 1px solid rgb(255 255 255 / .14); }
.kk-proof__item { min-height: 128px; padding: 23px 22px; border-right: 1px solid rgb(255 255 255 / .14); }
.kk-proof__item:last-child { border-right: 0; }
.kk-proof__item small { color: var(--kk-mint); font-family: var(--km-mono); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.kk-proof__item b { display: block; margin-top: 25px; font-size: 17px; font-weight: 570; }
.kk-proof__item span { display: block; margin-top: 3px; color: rgb(255 255 255 / .49); font-size: 12.5px; }

@media (max-width: 980px) {
  .kk-hero__grid { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .kk-contact__head { grid-template-columns: 1fr; align-items: start; }
  .kk-hero__intro { max-width: 680px; }
  .kk-hero h1 { max-width: 10ch; }
  .kk-directory { width: 100%; max-width: 720px; }
  .kk-stage__body { grid-template-columns: 1fr; }
  .kk-route { min-height: 620px; }
}

@media (max-width: 640px) {
  .kk-hero { padding: 62px 0 68px; }
  .kk-hero::before { left: 18px; }
  .kk-hero__grid { gap: 42px; }
  .kk-hero__intro { padding-left: 14px; }
  .kk-hero h1 { margin-block: 21px 22px; font-size: clamp(52px, 15vw, 70px); }
  .kk-hero__direct { margin-top: 30px; }
  .kk-directory { border-radius: 14px; }
  .kk-directory__head { display: grid; min-height: 106px; grid-template-columns: minmax(0, 1fr) auto; padding: 22px 19px; }
  .kk-directory__availability { align-self: flex-start; font-size: 8.5px; }
  .kk-directory__item { min-height: 82px; grid-template-columns: 27px minmax(0, 1fr) 30px; gap: 10px; padding: 14px 14px 14px 19px; }
  .kk-directory__arrow { width: 30px; height: 30px; }
  .kk-contact__head { margin-bottom: 36px; }
  .kk-stage { margin-inline: -7px; border-radius: 18px; }
  .kk-stage__bar { grid-template-columns: 1fr auto; min-height: 50px; padding-inline: 15px; font-size: 9.5px; }
  .kk-stage__label { display: none; }
  .kk-stage__body { margin: 0 7px 7px; border-radius: 13px; }
  .kk-form,
  .kk-success,
  .kk-route { padding: 27px 21px; }
  .kk-form__head { margin-bottom: 30px; }
  .kk-form__required { display: none; }
  .kk-row { grid-template-columns: 1fr; gap: 0; }
  .kk-lock { right: 9px; padding-inline: 7px; }
  .kk-field--locked input { padding-right: 94px; }
  .kk-submit { grid-template-columns: 1fr; }
  .kk-submit .km-btn { width: 100%; }
  .kk-route { min-height: 560px; }
  .kk-proof { grid-template-columns: 1fr; }
  .kk-proof__item { min-height: auto; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / .14); }
  .kk-proof__item:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .kk-field input,
  .kk-field select,
  .kk-field textarea,
  .kk-hero__direct a i,
  .kk-directory__item,
  .kk-directory__arrow,
  .kk-submit__arrow,
  .kk-route__links a { transition: none; }
}
