:root {
  --kk-black: #050505;
  --kk-ink: #0d0d0d;
  --kk-white: #f7f7f5;
  --kk-muted: #a4a4a4;
  --kk-line: rgba(255, 255, 255, .14);
  --kk-line-dark: rgba(5, 5, 5, .14);
  --kk-shell: 1180px;
  --kk-radius: 22px;
  --kk-ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--kk-white);
  color: var(--kk-black);
  font-family: "Noto Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #fff; color: #000; }

.kk-shell { width: min(calc(100% - 48px), var(--kk-shell)); margin-inline: auto; }
.kk-skip {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 10px 14px; background: #fff; color: #000; border-radius: 8px;
  transition: top .2s ease;
}
.kk-skip:focus { top: 16px; }

.kk-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.kk-header.is-scrolled {
  background: rgba(5, 5, 5, .78);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}
.kk-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.kk-brand { width: 92px; display: block; text-decoration: none; }
.kk-brand img { width: 92px; height: auto; }
.kk-nav { display: flex; align-items: center; gap: 30px; color: #fff; }
.kk-nav a { text-decoration: none; font-size: .9rem; font-weight: 650; letter-spacing: .02em; opacity: .72; transition: opacity .2s ease; }
.kk-nav a:hover, .kk-nav a:focus-visible { opacity: 1; }
.kk-nav__contact { border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 8px 14px; }
.kk-menu-btn { display: none; color: #fff; background: none; border: 0; padding: 8px 0; cursor: pointer; }
.kk-menu-btn__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.kk-menu-btn__lines, .kk-menu-btn__lines::before, .kk-menu-btn__lines::after { width: 28px; height: 2px; display: block; background: currentColor; content: ""; transition: transform .25s ease, opacity .25s ease; }
.kk-menu-btn__lines::before { transform: translateY(-8px); }
.kk-menu-btn__lines::after { transform: translateY(6px); }
.kk-menu-btn[aria-expanded="true"] .kk-menu-btn__lines { background: transparent; }
.kk-menu-btn[aria-expanded="true"] .kk-menu-btn__lines::before { transform: translateY(0) rotate(45deg); }
.kk-menu-btn[aria-expanded="true"] .kk-menu-btn__lines::after { transform: translateY(-2px) rotate(-45deg); }

.kk-hero {
  min-height: 100svh; display: grid; align-items: center; position: relative; overflow: hidden;
  background: var(--kk-black); color: #fff; isolation: isolate;
}
.kk-hero::before {
  content: ""; position: absolute; inset: -20%; z-index: -3;
  background:
    radial-gradient(circle at 68% 46%, rgba(255,255,255,.08), transparent 25%),
    radial-gradient(circle at 80% 75%, rgba(255,255,255,.04), transparent 22%);
}
.kk-hero__noise { position: absolute; inset: 0; opacity: .16; pointer-events: none; z-index: -1; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E"); }
.kk-hero__grid { padding-block: 150px 110px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .85fr); align-items: center; gap: clamp(46px, 7vw, 100px); }
.kk-eyebrow, .kk-kicker { margin: 0 0 22px; text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 800; }
.kk-eyebrow { color: #c4c4c4; }
.kk-hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.4rem, 7vw, 7.6rem); line-height: .92; letter-spacing: -.065em; font-weight: 780; }
.kk-hero__lead { max-width: 650px; margin: 34px 0 0; color: #c9c9c9; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.55; }
.kk-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.kk-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 750; font-size: .9rem; transition: transform .2s var(--kk-ease), background .2s ease, color .2s ease, border-color .2s ease; }
.kk-btn:hover, .kk-btn:focus-visible { transform: translateY(-2px); }
.kk-btn--light { background: #fff; color: #000; }
.kk-btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.kk-btn--ghost:hover { border-color: #fff; }
.kk-hero__mark { position: relative; display: grid; place-items: center; min-height: 400px; }
.kk-hero__mark::before { content: ""; position: absolute; width: min(42vw, 520px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.kk-hero__mark::after { content: ""; position: absolute; width: min(30vw, 370px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.kk-hero__mark img { position: relative; z-index: 2; width: min(72%, 330px); filter: drop-shadow(0 24px 60px rgba(0,0,0,.45)); }
.kk-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 32px; height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; }
.kk-scroll span { position: absolute; left: 50%; top: 10px; width: 3px; height: 7px; background: #fff; border-radius: 999px; transform: translateX(-50%); animation: kk-scroll 1.7s ease infinite; }
@keyframes kk-scroll { 0%,100% { transform: translate(-50%,0); opacity: .3; } 45% { transform: translate(-50%,14px); opacity: 1; } }

.kk-section { padding: clamp(84px, 10vw, 150px) 0; }
.kk-section--ink { background: var(--kk-ink); color: #fff; }
.kk-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.kk-kicker { color: #777; }
.kk-section--ink .kk-kicker { color: #8d8d8d; }
.kk-section h2, .kk-contact h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5.6rem); line-height: .98; letter-spacing: -.055em; font-weight: 760; }
.kk-copy { max-width: 650px; padding-top: 48px; }
.kk-copy p { margin: 0 0 22px; color: #4b4b4b; font-size: 1.05rem; }
.kk-copy__intro { color: #0a0a0a !important; font-size: clamp(1.35rem, 2.2vw, 2rem) !important; line-height: 1.35; letter-spacing: -.02em; }
.kk-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.kk-tags span { border: 1px solid var(--kk-line-dark); border-radius: 999px; padding: 7px 12px; font-size: .8rem; font-weight: 700; }

.kk-section-head { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 50px; margin-bottom: 60px; }
.kk-section-head > p { margin: 0 0 10px; max-width: 470px; justify-self: end; color: #adadad; font-size: 1.05rem; }
.kk-section-head--dark > p { color: #666; }
.kk-feature { min-height: 360px; position: relative; display: grid; grid-template-rows: auto 1fr; gap: 60px; padding: clamp(28px,4vw,52px); border: 1px solid var(--kk-line); border-radius: var(--kk-radius); text-decoration: none; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.008)); transition: transform .28s var(--kk-ease), border-color .28s ease; }
.kk-feature::before { content: "K"; position: absolute; right: -2vw; bottom: -11vw; font-size: clamp(14rem, 33vw, 32rem); font-weight: 900; line-height: 1; color: rgba(255,255,255,.025); letter-spacing: -.12em; pointer-events: none; }
.kk-feature:hover, .kk-feature:focus-visible { transform: translateY(-4px); border-color: rgba(255,255,255,.3); }
.kk-feature__meta { display: flex; justify-content: space-between; gap: 20px; color: #999; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.kk-feature__body { align-self: end; max-width: 800px; position: relative; z-index: 1; }
.kk-feature h3 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.8rem); letter-spacing: -.05em; line-height: 1; }
.kk-feature p { margin: 18px 0 0; max-width: 640px; color: #b7b7b7; font-size: 1.06rem; }
.kk-feature__arrow { position: absolute; top: 46%; right: 42px; font-size: 2.2rem; }

.kk-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--kk-line-dark); border-bottom: 1px solid var(--kk-line-dark); }
.kk-card { min-height: 290px; padding: 34px 30px 36px 0; }
.kk-card + .kk-card { border-left: 1px solid var(--kk-line-dark); padding-left: 30px; }
.kk-card__no { color: #9a9a9a; font-size: .76rem; font-weight: 700; }
.kk-card h3 { margin: 72px 0 14px; font-size: clamp(1.6rem,2.5vw,2.4rem); letter-spacing: -.04em; }
.kk-card p { margin: 0; color: #5a5a5a; }
.kk-linkline { margin: 34px 0 0; text-align: right; }
.kk-linkline a { text-decoration: none; border-bottom: 1px solid currentColor; font-weight: 700; }

.kk-contact { background: var(--kk-black); color: #fff; padding: clamp(100px, 14vw, 190px) 0; }
.kk-contact__inner { text-align: center; }
.kk-contact .kk-kicker { color: #777; }
.kk-contact h2 { max-width: 980px; margin-inline: auto; }
.kk-contact__mail { display: inline-block; margin-top: 42px; color: #fff; text-decoration-thickness: 1px; text-underline-offset: 8px; font-size: clamp(1.35rem, 3vw, 2.5rem); font-weight: 750; letter-spacing: -.03em; }
.kk-contact__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 38px; color: #9d9d9d; }
.kk-contact__links a { text-decoration: none; border-bottom: 1px solid transparent; }
.kk-contact__links a:hover { color: #fff; border-color: currentColor; }
.kk-footer { background: var(--kk-black); color: #8d8d8d; border-top: 1px solid rgba(255,255,255,.09); }
.kk-footer__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .78rem; }
.kk-footer p { margin: 0; }
.kk-footer a { text-decoration: none; }

@media (max-width: 900px) {
  .kk-shell { width: min(calc(100% - 36px), var(--kk-shell)); }
  .kk-menu-btn { display: block; position: relative; z-index: 2; }
  .kk-nav { position: fixed; inset: 0; display: grid; align-content: center; justify-items: center; gap: 20px; background: rgba(5,5,5,.98); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
  .kk-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .kk-nav a { font-size: clamp(1.7rem, 8vw, 3rem); opacity: 1; }
  .kk-nav__contact { margin-top: 8px; padding: 10px 20px; }
  .kk-hero__grid { grid-template-columns: 1fr; padding-block: 150px 90px; }
  .kk-hero__mark { min-height: 260px; opacity: .85; }
  .kk-hero__mark::before { width: min(80vw, 430px); }
  .kk-hero__mark::after { width: min(60vw, 320px); }
  .kk-split, .kk-section-head { grid-template-columns: 1fr; gap: 20px; }
  .kk-copy { padding-top: 8px; }
  .kk-section-head > p { justify-self: start; }
  .kk-cards { grid-template-columns: 1fr; }
  .kk-card { min-height: auto; padding: 28px 0; }
  .kk-card + .kk-card { border-left: 0; border-top: 1px solid var(--kk-line-dark); padding-left: 0; }
  .kk-card h3 { margin-top: 36px; }
  .kk-feature__arrow { top: auto; bottom: 28px; right: 28px; }
}

@media (max-width: 560px) {
  .kk-shell { width: min(calc(100% - 28px), var(--kk-shell)); }
  .kk-header__inner { min-height: 72px; }
  .kk-brand, .kk-brand img { width: 76px; }
  .kk-hero__grid { padding-top: 130px; gap: 24px; }
  .kk-hero h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .kk-hero__lead { margin-top: 26px; }
  .kk-hero__mark { min-height: 210px; }
  .kk-hero__mark img { width: 56%; }
  .kk-scroll { display: none; }
  .kk-feature { min-height: 410px; gap: 38px; }
  .kk-feature__meta { flex-direction: column; gap: 4px; }
  .kk-feature p { padding-right: 24px; }
  .kk-footer__inner { min-height: 88px; align-items: flex-start; padding-block: 24px; flex-direction: column; gap: 8px; }
}

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

/* Contact form */
.kk-contact__lead {
  max-width: 620px;
  margin: 26px auto 0;
  color: #a7a7a7;
  font-size: 1.02rem;
}
.kk-contact-form {
  width: min(100%, 780px);
  margin: 48px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--kk-radius);
  background: rgba(255,255,255,.025);
  text-align: left;
}
.kk-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.kk-field { margin-bottom: 18px; }
.kk-field label {
  display: block;
  margin: 0 0 8px;
  color: #b8b8b8;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kk-field input,
.kk-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.kk-field input { min-height: 52px; padding: 0 15px; }
.kk-field textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.kk-field input:hover,
.kk-field textarea:hover { border-color: rgba(255,255,255,.28); }
.kk-field input:focus,
.kk-field textarea:focus {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.065);
  box-shadow: 0 0 0 3px rgba(255,255,255,.07);
}
.kk-contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 4px;
}
.kk-contact-form__note {
  max-width: 460px;
  margin: 0;
  color: #7f7f7f;
  font-size: .78rem;
  line-height: 1.55;
}
.kk-contact-form__submit {
  flex: 0 0 auto;
  cursor: pointer;
}
.kk-contact-form__submit:disabled {
  cursor: wait;
  opacity: .55;
  transform: none;
}
.kk-form-status {
  min-height: 1.6em;
  margin: 18px 0 0;
  font-size: .86rem;
  font-weight: 700;
}
.kk-form-status.is-success { color: #d6ffd8; }
.kk-form-status.is-error { color: #ffd0d0; }
.kk-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 640px) {
  .kk-contact-form { margin-top: 36px; }
  .kk-contact-form__grid { grid-template-columns: 1fr; gap: 0; }
  .kk-contact-form__footer { align-items: stretch; flex-direction: column; gap: 18px; }
  .kk-contact-form__submit { width: 100%; }
}
