/* Ki — Footer
   Source: Ki Home.html lines 571–585 + 1335–1385.
   Black bg · 96px 0 36px padding · 3-cell top · 4-col cols · bottom row. */

.ki-scope .ki-foot {
  background: #000;
  color: #fff;
  padding: 96px 0 36px;
}

.ki-scope .ki-foot .ki-foot-top {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}
.ki-scope .ki-foot .ki-foot-top[data-layout="centered"] {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 24px;
}

.ki-scope .ki-foot .ki-foot-tag {
  /* Source `.foot-tag` (line 574). Plain sans 14px white. */
  font-family: var(--ki-sans);
  font-style: normal;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  max-width: 340px;
  font-weight: 400;
}
.ki-scope .ki-foot .ki-foot-top[data-layout="centered"] .ki-foot-tag {
  max-width: 560px;
}

.ki-scope .ki-foot .ki-foot-tag-right {
  /* Source `.foot-tag-right` (line 575). */
  font-family: var(--ki-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.7;
}

.ki-scope .ki-foot .ki-foot-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ki-scope .ki-foot .ki-foot-cols {
  /* Source `.foot-cols` (line 576). */
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
}
.ki-scope .ki-foot .ki-foot-cols h6 {
  font-family: var(--ki-sans);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.ki-scope .ki-foot .ki-foot-cols a,
.ki-scope .ki-foot .ki-foot-cols p {
  font-family: var(--ki-sans);
  font-size: 14px;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 400;
  transition: color 200ms ease;
}
.ki-scope .ki-foot .ki-foot-cols a:hover { color: var(--ki-blue); }

.ki-scope .ki-foot .ki-foot-cta {
  /* Source `.foot-cta` (line 580). */
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ki-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 8px;
  transition: border-color 200ms ease, color 200ms ease;
  font-weight: 600;
}
.ki-scope .ki-foot .ki-foot-cta:hover {
  border-color: var(--ki-blue);
  color: var(--ki-blue);
}

.ki-scope .ki-foot .ki-foot-bottom {
  /* Source `.foot-bottom` (line 582). */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--ki-sans);
  font-size: 12px;
  color: var(--ki-ink-mute);
  font-weight: 400;
  letter-spacing: 0;
}
.ki-scope .ki-foot .ki-foot-social { display: flex; gap: 14px; }
.ki-scope .ki-foot .ki-foot-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition: border-color 200ms ease, color 200ms ease;
  color: #fff;
}
.ki-scope .ki-foot .ki-foot-social a:hover {
  border-color: var(--ki-blue);
  color: var(--ki-blue);
}

@media (max-width: 1100px) {
  .ki-scope .ki-foot .ki-foot-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ki-scope .ki-foot .ki-foot-top[data-layout="split"] {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 24px;
  }
  .ki-scope .ki-foot .ki-foot-tag-right { text-align: center; max-width: none; }
  .ki-scope .ki-foot .ki-foot-tag { max-width: none; text-align: center; }
}
@media (max-width: 700px) {
  .ki-scope .ki-foot { padding: 72px 0 36px; }
  .ki-scope .ki-foot .ki-foot-cols { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .ki-scope .ki-foot .ki-foot-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
