/* Kentunez — For Artists (Spotify for Artists style) */

body.kn-artists-page,
body.kn-labels-page,
body.kn-partners-page {
  background: #000;
  color: #fff;
}

body.kn-artists-page .kn-nav,
body.kn-artists-page .kn-drawer,
body.kn-labels-page .kn-nav,
body.kn-labels-page .kn-drawer,
body.kn-partners-page .kn-nav,
body.kn-partners-page .kn-drawer {
  display: none;
}

/* ── Cinematic hero ── */
.ka-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}

.ka-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ka-hero__video,
.ka-hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.ka-hero__poster {
  display: none;
}

.ka-hero.is-paused .ka-hero__video {
  visibility: hidden;
}

.ka-hero.is-paused .ka-hero__poster {
  display: block;
}

.ka-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 38%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

body.kn-labels-page .ka-hero__video,
body.kn-labels-page .ka-hero__poster,
body.kn-partners-page .ka-hero__video,
body.kn-partners-page .ka-hero__poster {
  filter: brightness(1.38) contrast(1.06) saturate(1.04);
}

body.kn-labels-page .ka-hero__shade,
body.kn-partners-page .ka-hero__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.22) 100%);
}

/* ── Hero nav ── */
.ka-hero__nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 48px;
}

.ka-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.ka-hero__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.ka-hero__brand span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ka-hero__brand em {
  font-style: normal;
  font-weight: 600;
  opacity: 0.92;
}

.ka-hero__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ka-hero__links a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}

.ka-hero__links a:hover {
  opacity: 1;
}

.ka-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ka-hero__login {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ka-hero__login:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ka-hero__access {
  padding: 10px 22px;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  transition: transform 0.15s ease, background 0.15s ease;
}

.ka-hero__access:hover {
  transform: scale(1.03);
  background: #f2f2f2;
}

.ka-hero__burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.ka-hero__burger span,
.ka-hero__burger span::before,
.ka-hero__burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: relative;
}

.ka-hero__burger span::before,
.ka-hero__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.ka-hero__burger span::before {
  top: -7px;
}

.ka-hero__burger span::after {
  top: 7px;
}

/* ── Hero copy ── */
.ka-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 48px 24px;
  max-width: 920px;
}

.ka-hero__title {
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 20px;
}

.ka-hero__sub {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #fff;
  max-width: 16ch;
}

.ka-hero__sub.is-changing {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ka-hero__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 16px;
}

.ka-hero__lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
  margin-top: 16px;
}

.ka-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ── Bottom tabs — floating cards over hero ── */
.ka-hero__tabs-wrap {
  position: relative;
  z-index: 3;
  background: transparent;
  padding: 0 48px 40px;
  margin-top: auto;
}

.ka-hero__tabs-wrap::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 1240px;
  margin: 28px auto 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ka-hero__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.ka-hero__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  min-height: 108px;
  padding: 20px 22px 22px;
  text-align: left;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  box-shadow: none;
  font-family: "Inter", system-ui, sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}

.ka-hero__tab:hover {
  background: rgba(37, 99, 235, 0.9);
}

.ka-hero__tab:hover .ka-hero__tab-label,
.ka-hero__tab:hover .ka-hero__tab-desc {
  color: #fff;
}

.ka-hero__tab.is-active {
  background: rgba(37, 99, 235, 0.9);
}

.ka-hero__tab-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  transition: color 0.22s ease;
}

.ka-hero__tab.is-active .ka-hero__tab-label {
  color: #fff;
  font-weight: 700;
}

.ka-hero__tab-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.22s ease;
}

.ka-hero__tab.is-active .ka-hero__tab-desc {
  color: #fff;
}

.ka-hero__tab.is-active::after {
  content: none;
}

/* ── How it works — step cards (alternating) ── */
.ka-how {
  background: #000;
  padding: 88px 48px 96px;
}

.ka-how__head {
  max-width: 1100px;
  margin: 0 auto 56px;
}

.ka-how__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.ka-how__lead {
  font-size: 17px;
  line-height: 1.65;
  color: #a7a7a7;
  max-width: 52ch;
}

.ka-how__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.ka-how__card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(36px, 4.5vw, 52px) clamp(28px, 4vw, 56px);
  background: #0a0a0a;
}

.ka-how__card--reverse {
  grid-template-columns: minmax(0, 1fr) 88px;
}

.ka-how__card--reverse .ka-how__index {
  order: 2;
  text-align: right;
}

.ka-how__card--reverse .ka-how__copy {
  order: 1;
}

.ka-how__index {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #2a2a2a;
  padding-top: 4px;
}

.ka-how__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.ka-how__step-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ka-how__step-lead {
  font-size: 16px;
  line-height: 1.65;
  color: #a7a7a7;
  margin-bottom: 24px;
  max-width: 46ch;
}

.ka-how__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ka-how__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #e0e0e0;
}

.ka-how__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: #1ed760 center / 10px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.ka-how__copy .ka-how__btn {
  align-self: flex-start;
  width: auto;
  text-decoration: none;
}

/* ── Content sections ── */
.ka-section {
  padding: 80px 48px;
  border-top: none;
  background: #000;
}

.ka-section--dark {
  background: #000;
}

.ka-section--surface {
  background: #000;
}

.ka-section--cream {
  background: linear-gradient(180deg, #fde68a 0%, #fef3c7 28%, #fffbeb 58%, #ffffff 100%);
  color: #111111;
  border-bottom: 1px solid #e8e8e8;
}

.ka-section--cream > .ka-wrap::before {
  display: none;
}

.ka-section--cream .ka-section__title {
  color: #111111;
}

.ka-section--cream .ka-section__lead {
  color: #6b6b6b;
}

.ka-section--cream .ka-item h3 {
  color: #111111;
}

.ka-section--cream .ka-item p {
  color: #6b6b6b;
}

.ka-section > .ka-wrap::before {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 64px;
}

.ka-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.ka-section__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.ka-section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: #b3b3b3;
  max-width: 56ch;
  margin-bottom: 40px;
}

.ka-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 48px;
}

.ka-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ka-item h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ka-item p {
  font-size: 15px;
  line-height: 1.65;
  color: #a7a7a7;
  max-width: 36ch;
}

.ka-link {
  color: #1ed760;
  font-weight: 600;
  text-decoration: none;
}

.ka-link:hover {
  text-decoration: underline;
}

/* ── PLAY.mp4 showcase section ── */
.ka-play {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.ka-play__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ka-play__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ka-play__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.ka-play__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 88px;
}

.ka-play__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 16px;
}

.ka-play__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 20px;
}

.ka-play__lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
  margin-bottom: 32px;
}

.ka-play__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ka-play__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ka-play__btn--primary {
  background: #fff;
  color: #000;
}

.ka-play__btn--primary:hover {
  background: #f0f0f0;
}

.ka-play__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.ka-play__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.ka-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1ed760 0%, #169c46 100%);
  color: #000;
}

.ka-cta h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.ka-cta p {
  font-size: 15px;
  opacity: 0.85;
}

.ka-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ka-cta__btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.ka-cta__btn--dark {
  background: #000;
  color: #fff;
}

.ka-cta__btn--dark:hover {
  background: #1a1a1a;
}

.ka-cta__btn--light {
  background: #fff;
  color: #000;
}

.ka-cta__btn--light:hover {
  background: #f0f0f0;
}

.ka-section--cta {
  padding: 64px 48px;
}

.ka-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ka-cta-band__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 8px;
}

.ka-cta-band__lead {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 48ch;
}

.ka-related {
  margin-top: 32px;
  font-size: 14px;
  color: #727272;
}

.ka-related a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Partner application form ── */
.ka-apply {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ka-apply__layout {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  max-width: 1040px;
}

.ka-apply__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 16px;
}

.ka-apply__title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.ka-apply__lead {
  font-size: 15px;
  line-height: 1.65;
  color: #a7a7a7;
  margin-bottom: 28px;
  max-width: 34ch;
}

.ka-apply__note {
  font-size: 13px;
  line-height: 1.6;
  color: #6b6b6b;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 34ch;
}

.ka-apply__note strong {
  color: #d4d4d4;
  font-weight: 600;
}

.ka-apply__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ka-apply__section {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ka-apply__section:first-child {
  border-top: none;
  padding-top: 0;
}

.ka-apply__section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 24px;
}

.ka-apply__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.ka-apply__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.ka-apply__row .ka-apply__field {
  margin-bottom: 0;
}

.ka-apply__field label,
.ka-apply__group > legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d4d4d4;
}

.ka-apply__field label span,
.ka-apply__group legend span {
  color: #6b6b6b;
  font-weight: 500;
}

.ka-apply__field input,
.ka-apply__field select,
.ka-apply__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color 0.15s ease;
}

.ka-apply__field input:focus,
.ka-apply__field select:focus,
.ka-apply__field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
}

.ka-apply__field textarea {
  min-height: 120px;
  resize: vertical;
}

.ka-apply__field.is-invalid input,
.ka-apply__field.is-invalid select,
.ka-apply__field.is-invalid textarea {
  border-color: #e91429;
}

.ka-apply__group {
  border: none;
  margin: 0 0 20px;
  padding: 0;
}

.ka-apply__group.is-invalid .ka-apply__checks {
  border-color: #e91429;
}

.ka-apply__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
}

.ka-apply__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #d4d4d4;
  cursor: pointer;
}

.ka-apply__check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #fff;
}

.ka-apply__legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.ka-apply__legal .ka-apply__check {
  font-size: 13px;
  color: #a7a7a7;
}

.ka-apply__legal a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ka-apply__actions {
  padding-top: 8px;
}

.ka-apply__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ka-apply__submit:hover:not(:disabled) {
  background: #e8e8e8;
}

.ka-apply__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ka-apply__status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  min-height: 1.4em;
}

.ka-apply__status.is-ok {
  color: #1ed760;
}

.ka-apply__status.is-err {
  color: #ff6b6b;
}

/* Mobile drawer for artists page */
.ka-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.55);
  padding: 0;
  align-items: stretch;
  justify-content: flex-end;
}

.ka-drawer.is-open {
  display: flex;
}

.ka-drawer__backdrop {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.ka-drawer__panel {
  width: min(320px, 88vw);
  height: 100%;
  background: #0a0a0a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.ka-drawer.is-open .ka-drawer__panel {
  transform: translateX(0);
}

.ka-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ka-drawer__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #727272;
}

.ka-drawer__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.ka-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ka-drawer a:last-child {
  margin-top: 12px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #000;
  text-align: center;
  font-weight: 700;
}

body.ka-nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .ka-how {
    padding: 64px 24px 72px;
  }

  .ka-how__head {
    margin-bottom: 40px;
  }

  .ka-how__card,
  .ka-how__card--reverse {
    grid-template-columns: 1fr;
    padding: 32px 24px 36px;
  }

  .ka-how__card--reverse .ka-how__index,
  .ka-how__card--reverse .ka-how__copy {
    order: unset;
  }

  .ka-how__card--reverse .ka-how__index {
    text-align: left;
  }

  .ka-how__index {
    font-size: 36px;
    margin-bottom: 4px;
  }

  .ka-how__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .ka-hero__links {
    display: none;
  }

  .ka-hero__burger {
    display: flex;
  }

  .ka-hero__login {
    display: none;
  }

  .ka-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ka-hero__nav,
  .ka-hero__body,
  .ka-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ka-hero__brand span {
    font-size: 18px;
  }

  .ka-hero__brand img {
    width: 32px;
    height: 32px;
  }

  .ka-hero__access {
    padding: 9px 16px;
    font-size: 13px;
  }

  .ka-hero__actions {
    gap: 8px;
  }

  .ka-hero__tabs-wrap {
    padding: 0 24px 28px;
  }

  .ka-hero__tabs {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ka-hero__tab {
    min-height: 96px;
    padding: 16px 14px 18px;
  }

  .ka-hero__tab-label {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .ka-hero__tab-desc {
    font-size: 13px;
  }

  .ka-grid,
  .ka-grid--3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ka-section > .ka-wrap::before {
    margin-bottom: 48px;
  }

  .ka-play {
    min-height: clamp(440px, 65vh, 600px);
  }

  .ka-play__content {
    padding: 56px 24px 64px;
  }

  .ka-play__title {
    max-width: none;
  }

  .ka-play__actions {
    width: 100%;
    flex-direction: column;
  }

  .ka-play__btn {
    width: 100%;
  }

  .ka-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .ka-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .ka-cta__btn {
    width: 100%;
    text-align: center;
  }

  .ka-apply {
    padding: 64px 24px;
  }

  .ka-apply__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ka-apply__row {
    grid-template-columns: 1fr;
  }

  .ka-apply__submit {
    width: 100%;
  }
}
