@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700;800&display=swap");

@font-face {
	font-family: "Neulis";
	src: url("../fonts/Neulis-Medium.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: "Neulis Alt";
	src: url("../fonts/NeulisAlt-Medium.otf") format("opentype");
	font-display: swap;
}

:root {
	--kv-bg: #0d0d0d;
	--kv-text: #f4ede5;
	--kv-muted: #ddd3c8;
	--kv-accent: #ff5b36;
	--kv-surface: #24160f;
	--kv-border: rgba(255, 255, 255, 0.08);
	--kv-shell: min(1220px, calc(100vw - 48px));
	--kv-serif: "Playfair Display", "Georgia", "Times New Roman", serif;
	--kv-sans: "Manrope", "Helvetica Neue", sans-serif;
	--kv-sans-alt: "Neulis Alt", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--kv-bg);
	color: var(--kv-text);
	font-family: var(--kv-sans);
	font-size: 15px;
	line-height: 1.6;
}

body.kv-page-loading {
	overflow: hidden;
}

body.kv-page-loading::before,
body.kv-page-loading::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 120;
}

body.kv-page-loading::before {
	background:
		radial-gradient(circle at 50% 38%, rgba(255, 91, 54, 0.18), transparent 16%),
		linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(13, 13, 13, 0.995));
}

body.kv-page-loading::after {
	inset: 50% auto auto 50%;
	width: 88px;
	height: 88px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--kv-accent);
	border-right-color: rgba(255, 91, 54, 0.45);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: kv-page-loader-spin 900ms linear infinite;
	box-shadow: 0 0 0 14px rgba(255, 91, 54, 0.06);
}

body.kv-page-loading .kv-site-header,
body.kv-page-loading main,
body.kv-page-loading .kv-site-footer {
	opacity: 0;
	transform: translateY(18px);
}

body.kv-page-ready .kv-site-header,
body.kv-page-ready main,
body.kv-page-ready .kv-site-footer {
	animation: kv-page-content-enter 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.kv-text-split .kv-char {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.7em) rotate(4deg);
	will-change: transform, opacity;
}

.kv-text-split .kv-word {
	display: inline-block;
	white-space: nowrap;
}

body.kv-page-ready .kv-text-split .kv-char {
	animation: kv-char-enter 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
	animation-delay: calc(var(--kv-char-index, 0) * 18ms + 120ms);
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

@keyframes kv-page-loader-spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes kv-page-content-enter {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kv-char-enter {
	from {
		opacity: 0;
		transform: translateY(0.7em) rotate(4deg);
	}

	to {
		opacity: 1;
		transform: translateY(0) rotate(0deg);
	}
}

.kv-shell {
	width: var(--kv-shell);
	margin: 0 auto;
}

.kv-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(13, 13, 13, 0.98);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kv-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 92px;
}

.kv-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #fff;
}

.kv-brand img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.kv-brand-text {
	display: grid;
	gap: 2px;
	font-family: var(--kv-sans-alt);
	font-size: 23px;
	line-height: 0.9;
	letter-spacing: 0.01em;
	text-transform: lowercase;
}

.kv-nav-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.kv-nav-toggle-button {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	cursor: pointer;
}

.kv-nav-toggle-button span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #f4ede5;
	transition: transform 160ms ease, opacity 160ms ease;
}

.kv-nav {
	display: flex;
	align-items: center;
	gap: 36px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.01em;
	color: var(--kv-muted);
}

.kv-nav > a,
.kv-nav-dropdown > button {
	transition: color 160ms ease;
}

.kv-nav > a:hover,
.kv-nav-dropdown > button:hover,
.kv-nav .is-active {
	color: var(--kv-accent);
}

.kv-nav > a.kv-nav-support {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: 1px solid rgba(255, 91, 54, 0.32);
	border-radius: 999px;
	background: linear-gradient(135deg, #ff6d47 0%, #ff5b36 55%, #d93f1d 100%);
	box-shadow: 0 12px 28px rgba(255, 91, 54, 0.22);
	color: #fff3ea;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.kv-nav > a.kv-nav-support:hover,
.kv-nav > a.kv-nav-support:focus-visible,
.kv-nav > a.kv-nav-support.is-active {
	background: linear-gradient(135deg, #ff7a58 0%, #ff5b36 50%, #bf3518 100%);
	box-shadow: 0 16px 34px rgba(255, 91, 54, 0.3);
	color: #fff;
	transform: translateY(-1px);
}

.kv-nav-dropdown {
	position: relative;
	padding-bottom: 16px;
	margin-bottom: -16px;
}

.kv-nav-dropdown > button {
	padding: 0;
	border: 0;
	background: transparent;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

.kv-nav-dropdown > button::after {
	content: "⌄";
	margin-left: 8px;
	font-size: 13px;
}

.kv-nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	display: grid;
	gap: 8px;
	min-width: 180px;
	padding: 14px;
	background: rgba(19, 19, 19, 0.98);
	border: 1px solid var(--kv-border);
	border-radius: 14px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.kv-nav-dropdown-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 14px;
}

.kv-nav-dropdown-menu a:hover {
	color: #fff;
}

.kv-nav-dropdown-menu .is-active {
	color: var(--kv-accent);
}

.kv-hero {
	position: relative;
	min-height: 830px;
	overflow: hidden;
	isolation: isolate;
	background: #080604;
}

.kv-hero::before,
.kv-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.kv-hero::before {
	background-image: var(--kv-hero-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform-origin: center center;
	animation: kv-hero-zoom 18s ease-in-out infinite alternate;
	will-change: transform;
	z-index: -2;
}

.kv-hero::after {
	background: linear-gradient(90deg, rgba(12, 8, 6, 0.94) 0%, rgba(12, 8, 6, 0.76) 32%, rgba(12, 8, 6, 0.2) 54%, rgba(12, 8, 6, 0) 74%);
	z-index: -1;
}

.kv-hero-inner {
	display: flex;
	align-items: center;
	min-height: 830px;
	padding: 92px 0;
}

.kv-hero-copy {
	max-width: 560px;
}

.kv-hero-copy h1,
.kv-studio-heading h1,
.kv-generic-page h1,
.kv-footer-links h2,
.kv-footer-contact h2 {
	margin: 0;
	font-family: var(--kv-serif);
	font-weight: 500;
}

.kv-hero-copy h1 {
	font-size: clamp(3rem, 4.4vw, 4rem);
	line-height: 1.08;
}

.kv-hero-copy p {
	max-width: 540px;
	margin: 24px 0 34px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.72;
	color: #efe4d8;
}

.kv-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	padding: 15px 22px;
	border-radius: 14px;
	background: var(--kv-accent);
	color: #fff;
	font-family: var(--kv-serif);
	font-size: 18px;
	font-weight: 600;
	box-shadow: 0 18px 40px rgba(255, 91, 54, 0.26);
}

@keyframes kv-hero-zoom {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.08);
	}
}

@keyframes kv-studio-card-zoom {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.06);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.kv-page-loading {
		overflow: auto;
	}

	body.kv-page-loading::before,
	body.kv-page-loading::after {
		display: none;
	}

	body.kv-page-loading .kv-site-header,
	body.kv-page-loading main,
	body.kv-page-loading .kv-site-footer,
	body.kv-page-ready .kv-site-header,
	body.kv-page-ready main,
	body.kv-page-ready .kv-site-footer {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.kv-text-split .kv-char {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.kv-text-split .kv-word {
		display: inline;
	}

	.kv-hero::before {
		animation: none;
	}

	.kv-project-card img {
		animation: none;
	}

	.kv-community-reveal {
		opacity: 1;
		animation: none;
	}
}

.kv-studio-section {
	padding: 94px 0 74px;
	background:
		radial-gradient(circle at top, rgba(131, 76, 43, 0.35), transparent 34%),
		linear-gradient(180deg, rgba(50, 28, 17, 0.88), rgba(17, 11, 8, 0.94)),
		url("../images/brown_bg.jpg") center/cover no-repeat;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kv-studio-heading {
	text-align: center;
}

.kv-studio-heading h1 {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.kv-studio-heading p {
	max-width: 860px;
	margin: 16px auto 0;
	font-size: 17px;
	font-weight: 400;
	color: #f0e6dc;
}

.kv-project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 44px;
	margin-top: 64px;
}

.kv-project-card {
	position: relative;
	text-align: center;
}

.kv-project-card > a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.kv-project-card img {
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
	transform: scale(1);
	transform-origin: center center;
	animation: kv-studio-card-zoom 14s ease-in-out infinite alternate;
	will-change: transform;
}

.kv-project-card h2 {
	margin: 28px 0 10px;
	color: var(--kv-accent);
	font-family: var(--kv-serif);
	font-size: clamp(1.65rem, 2vw, 2rem);
	font-weight: 600;
}

.kv-project-card p {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	color: #f0e6dc;
}

.kv-project-preview {
	position: absolute;
	left: 50%;
	top: 18px;
	width: min(92%, 340px);
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(10, 10, 10, 0.96);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: translateX(-50%) translateY(12px) scale(0.96);
	transition: opacity 180ms ease, transform 180ms ease;
	pointer-events: none;
	z-index: 3;
}

.kv-project-card.is-preview-active .kv-project-preview {
	opacity: 1;
	transform: translateX(-50%) translateY(0) scale(1);
}

.kv-project-preview iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.kv-community-section {
	padding: 22px 0 72px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.kv-community-section-animated {
	overflow: hidden;
}

.kv-community-hero {
	position: relative;
	overflow: hidden;
	border-radius: 0;
}

.kv-community-hero img {
	width: 100%;
	height: min(36vw, 470px);
	min-height: 340px;
	object-fit: cover;
}

.kv-community-reveal {
	opacity: 0;
	animation: kv-community-rise 860ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
	animation-delay: var(--kv-community-delay, 0ms);
}

.kv-community-reveal-hero {
	animation-name: kv-community-hero-enter;
	animation-delay: 0ms;
}

.kv-community-reveal-overlay {
	animation-delay: 120ms;
}

.kv-community-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	padding: 40px;
	text-align: center;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.18));
}

.kv-community-overlay h1 {
	margin: 0;
	font-family: var(--kv-serif);
	font-size: clamp(2.7rem, 4vw, 3.7rem);
	font-weight: 500;
	color: #fff;
}

.kv-community-overlay p {
	max-width: 760px;
	margin: 20px auto 0;
	font-size: 16px;
	line-height: 1.68;
	font-weight: 400;
	color: rgba(255, 245, 236, 0.96);
}

.kv-community-gallery {
	display: grid;
	gap: 46px 44px;
	margin-top: 76px;
}

.kv-community-gallery-yeeya {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kv-community-gallery-afriedom {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kv-community-card {
	margin: 0;
}

.kv-community-card img {
	width: 100%;
	height: 188px;
	object-fit: cover;
	border-radius: 22px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

@keyframes kv-community-rise {
	from {
		opacity: 0;
		transform: translateY(38px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kv-community-hero-enter {
	from {
		opacity: 0;
		transform: scale(1.04);
		filter: saturate(0.88);
	}

	to {
		opacity: 1;
		transform: scale(1);
		filter: saturate(1);
	}
}

.kv-community-gallery-yeeya .kv-community-card-5 {
	grid-column: 1 / span 1;
}

.kv-community-gallery-yeeya .kv-community-card-6 {
	grid-column: 2 / span 1;
}

.kv-founder-section {
	padding: 54px 0 84px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.kv-founder-layout {
	display: grid;
	grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
	gap: 44px;
	align-items: center;
}

.kv-founder-image img {
	width: 100%;
	aspect-ratio: 4 / 4.2;
	object-fit: cover;
	border-radius: 30px;
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.kv-founder-kicker {
	margin: 0;
	color: var(--kv-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.kv-founder-copy h1 {
	margin: 14px 0 0;
	font-family: var(--kv-serif);
	font-size: clamp(2.5rem, 4vw, 3.7rem);
	font-weight: 500;
	line-height: 1.08;
	color: #fff;
}

.kv-founder-message {
	margin-top: 24px;
	font-size: 17px;
	line-height: 1.9;
	color: #efe3d6;
}

.kv-founder-message p {
	margin: 0 0 18px;
}

.kv-founder-message p:last-child {
	margin-bottom: 0;
}

.kv-founder-admin-note {
	margin: 24px 0 0;
	font-size: 13px;
	color: rgba(240, 230, 220, 0.68);
}

.kv-people-hero {
	padding: 78px 0 28px;
	background:
		radial-gradient(circle at top, rgba(255, 91, 54, 0.18), transparent 32%),
		linear-gradient(180deg, rgba(36, 22, 15, 0.95), rgba(13, 13, 13, 1));
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.kv-people-hero-inner {
	max-width: 920px;
	text-align: center;
}

.kv-people-kicker,
.kv-people-group-kicker {
	margin: 0;
	color: var(--kv-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.kv-people-hero h1,
.kv-people-group h2 {
	margin: 14px 0 0;
	font-family: var(--kv-serif);
	font-weight: 600;
	color: #fff;
}

.kv-people-hero h1 {
	font-size: clamp(2.8rem, 4.3vw, 4.2rem);
}

.kv-people-intro {
	max-width: 720px;
	margin: 22px auto 0;
	font-size: 17px;
	line-height: 1.72;
	color: #f0e6dc;
}

.kv-people-section {
	padding: 22px 0 78px;
}

.kv-people-groups {
	display: grid;
	gap: 72px;
}

.kv-people-group {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	gap: 42px;
	align-items: start;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kv-people-group:first-child {
	border-top: 0;
	padding-top: 0;
}

.kv-people-group h2 {
	font-size: clamp(2rem, 3.2vw, 3rem);
}

.kv-people-group-copy p {
	margin: 18px 0 0;
	font-size: 15px;
	line-height: 1.8;
	color: #e6ddd3;
}

.kv-people-empty {
	color: rgba(255, 255, 255, 0.64);
	font-style: italic;
}

.kv-people-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.kv-person-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.kv-person-photo img,
.kv-person-photo-placeholder {
	width: 100%;
	height: 320px;
}

.kv-person-photo img {
	object-fit: cover;
}

.kv-person-photo-placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(255, 91, 54, 0.88), rgba(106, 45, 28, 0.92));
	color: #fff;
	font-family: var(--kv-serif);
	font-size: 5rem;
}

.kv-person-body {
	padding: 20px 20px 22px;
}

.kv-person-body h3 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: #fff;
}

.kv-person-role {
	margin: 8px 0 0;
	color: var(--kv-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.kv-person-bio {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: #e8ddd2;
}

.kv-site-footer {
	padding: 94px 0 28px;
	background: #0d0d0d;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kv-footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.7fr 0.85fr;
	gap: 70px;
	align-items: start;
}

.kv-brand-footer img {
	width: 108px;
	height: 108px;
}

.kv-brand-footer .kv-brand-text {
	font-size: 48px;
}

.kv-footer-brand p,
.kv-contact-line a,
.kv-footer-links a,
.kv-copyright,
.kv-contact-label {
	color: #f0e6dc;
}

.kv-footer-brand p {
	max-width: 410px;
	margin: 28px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.72;
}

.kv-footer-links h2,
.kv-footer-contact h2 {
	margin-bottom: 28px;
	font-size: 24px;
}

.kv-footer-links ul {
	display: grid;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kv-footer-links a {
	font-size: 15px;
	font-weight: 400;
}

.kv-footer-links a:hover {
	color: var(--kv-accent);
}

.kv-contact-line {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 28px;
}

.kv-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--kv-accent);
	font-size: 28px;
}

.kv-contact-label {
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
}

.kv-socials {
	display: flex;
	gap: 10px;
}

.kv-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: var(--kv-accent);
	padding: 7px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kv-socials a:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 94, 58, 0.2);
}

.kv-socials img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.kv-copyright {
	margin-top: 72px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	opacity: 0.95;
}

.kv-site-credit {
	margin-top: 10px;
	text-align: center;
	font-size: 13px;
	color: rgba(240, 230, 220, 0.78);
}

.kv-site-credit a:hover {
	color: var(--kv-accent);
}

.kv-support-hero,
.kv-support-students-section,
.kv-support-pay-section {
	padding: 88px 0;
}

.kv-support-hero {
	background:
		radial-gradient(circle at top right, rgba(255, 91, 54, 0.14), transparent 32%),
		linear-gradient(180deg, rgba(26, 16, 12, 0.98), rgba(13, 13, 13, 1));
	border-bottom: 1px solid var(--kv-border);
}

.kv-support-hero-inner,
.kv-support-pay-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 36px;
	align-items: start;
}

.kv-support-kicker {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--kv-accent);
}

.kv-support-notice {
	margin: 0 0 18px;
	padding: 16px 18px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 600;
}

.kv-support-notice-successful {
	background: rgba(53, 161, 98, 0.18);
	border: 1px solid rgba(53, 161, 98, 0.34);
	color: #d7ffe7;
}

.kv-support-notice-cancelled {
	background: rgba(255, 155, 0, 0.14);
	border: 1px solid rgba(255, 155, 0, 0.28);
	color: #ffe8bf;
}

.kv-support-notice-failed {
	background: rgba(255, 91, 54, 0.16);
	border: 1px solid rgba(255, 91, 54, 0.3);
	color: #ffe1da;
}

.kv-support-copy h1,
.kv-support-section-heading h2,
.kv-support-pay-copy h2,
.kv-support-pay-card h3 {
	margin: 0;
	font-family: var(--kv-serif);
	font-weight: 500;
}

.kv-support-copy h1 {
	font-size: clamp(2.8rem, 4vw, 4.2rem);
	line-height: 1.06;
}

.kv-support-pricing {
	margin: 18px 0 0;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.kv-support-pricing span {
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.4);
}

.kv-support-intro,
.kv-support-description,
.kv-support-impact,
.kv-support-section-heading p,
.kv-support-pay-copy p,
.kv-support-pay-card p,
.kv-support-student-note {
	font-size: 15px;
	line-height: 1.72;
	color: var(--kv-muted);
}

.kv-support-intro {
	margin: 24px 0 0;
	max-width: 620px;
}

.kv-support-description {
	margin: 14px 0 0;
	max-width: 660px;
}

.kv-support-impact {
	margin: 22px 0 0;
	font-family: var(--kv-serif);
	font-size: 24px;
	color: #fff;
}

.kv-support-summary,
.kv-support-pay-cards {
	display: grid;
	gap: 18px;
}

.kv-support-stat-card,
.kv-support-pay-card,
.kv-support-student-card {
	border: 1px solid var(--kv-border);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.kv-support-stat-card {
	padding: 26px 24px;
}

.kv-support-stat-label,
.kv-support-pay-label,
.kv-support-student-label {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}

.kv-support-stat-prices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 18px;
}

.kv-support-stat-prices div {
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
}

.kv-support-stat-prices span {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.56);
}

.kv-support-stat-prices strong,
.kv-support-student-count {
	font-family: var(--kv-serif);
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
}

.kv-support-student-count {
	display: block;
	margin-bottom: 10px;
}

.kv-support-students-section {
	background: #111;
}

.kv-support-section-heading {
	max-width: 720px;
	margin-bottom: 34px;
}

.kv-support-students-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.kv-support-student-card {
	overflow: hidden;
}

.kv-support-student-photo {
	aspect-ratio: 4 / 5;
	background: linear-gradient(180deg, rgba(255, 91, 54, 0.18), rgba(255, 255, 255, 0.04));
}

.kv-support-student-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kv-support-student-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--kv-serif);
	font-size: 3rem;
	font-weight: 600;
	color: #fff;
}

.kv-support-student-body {
	padding: 18px 18px 20px;
}

.kv-support-student-body h3 {
	margin: 0;
	font-family: var(--kv-serif);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.16;
}

.kv-support-student-label {
	margin-top: 10px;
}

.kv-support-student-note {
	margin: 8px 0 0;
	font-size: 14px;
}

.kv-support-pay-section {
	border-top: 1px solid var(--kv-border);
}

.kv-support-pay-card {
	padding: 24px;
}

.kv-support-pay-card-primary {
	background: linear-gradient(180deg, rgba(255, 91, 54, 0.18), rgba(255, 255, 255, 0.03));
}

.kv-support-pay-logo-shell {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	margin-bottom: 20px;
	padding: 18px;
	border-radius: 22px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(12, 12, 12, 0.04);
}

.kv-support-pay-logo {
	display: block;
	width: 100%;
	max-width: 250px;
	max-height: 84px;
	object-fit: contain;
}

.kv-support-pay-card h3 {
	font-size: 28px;
	line-height: 1.14;
}

.kv-support-pay-card p {
	margin: 14px 0 0;
}

.kv-support-pay-card .kv-button,
.kv-support-disabled-button {
	margin-top: 22px;
}

.kv-support-pay-empty {
	margin: 0;
	padding: 22px 24px;
	border: 1px dashed rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	font-size: 15px;
	color: var(--kv-muted);
}

.kv-support-setup-note {
	color: #ffe1da;
}

.kv-support-disabled-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 15px 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	color: rgba(255, 255, 255, 0.72);
}

.kv-generic-page-inner {
	padding: 140px 0 90px;
	min-height: 50vh;
}

.kv-page-content {
	margin-top: 20px;
	max-width: 760px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
}

.kv-fallback-layout {
	display: grid;
	gap: 34px;
}

.kv-fallback-hero {
	max-width: 760px;
}

.kv-fallback-intro,
.kv-fallback-card p,
.kv-fallback-empty p,
.kv-single-content {
	color: var(--kv-muted);
	font-size: 15px;
	line-height: 1.8;
}

.kv-fallback-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.kv-fallback-card,
.kv-fallback-empty,
.kv-single-article,
.kv-search-form {
	padding: 24px;
	border: 1px solid var(--kv-border);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.kv-fallback-card h2,
.kv-fallback-empty h2,
.kv-single-article h1 {
	margin: 12px 0 0;
	font-family: var(--kv-serif);
	font-weight: 500;
	color: #fff;
}

.kv-fallback-card h2 {
	font-size: 2rem;
}

.kv-fallback-card p {
	margin: 16px 0 0;
}

.kv-fallback-meta {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}

.kv-fallback-card .kv-button,
.kv-404-actions .kv-button {
	margin-top: 22px;
}

.kv-fallback-pagination {
	margin-top: 8px;
}

.kv-fallback-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kv-fallback-pagination a,
.kv-fallback-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 10px 14px;
	border: 1px solid var(--kv-border);
	border-radius: 999px;
}

.kv-fallback-pagination .current {
	background: var(--kv-accent);
	border-color: var(--kv-accent);
	color: #fff;
}

.kv-single-article {
	max-width: 860px;
}

.kv-single-thumbnail {
	margin: 24px 0 0;
	overflow: hidden;
	border-radius: 24px;
}

.kv-single-thumbnail img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.kv-single-content {
	margin-top: 24px;
}

.kv-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	max-width: 760px;
}

.kv-search-form input[type="search"] {
	width: 100%;
	padding: 15px 18px;
	border: 1px solid var(--kv-border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	font: inherit;
}

.kv-search-form button {
	border: 0;
	cursor: pointer;
}

.kv-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 24px;
}

@media (max-width: 1100px) {
	.kv-header-inner,
	.kv-footer-grid,
	.kv-project-grid,
	.kv-community-gallery-yeeya,
	.kv-community-gallery-afriedom,
	.kv-people-group,
	.kv-people-grid,
	.kv-founder-layout,
	.kv-support-hero-inner,
	.kv-support-pay-grid {
		grid-template-columns: 1fr;
	}

	.kv-header-inner {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		padding: 18px 0 22px;
	}

	.kv-nav-toggle-button {
		display: inline-flex;
		justify-self: end;
	}

	.kv-brand-footer .kv-brand-text {
		font-size: 38px;
	}

	.kv-community-gallery-yeeya .kv-community-card-5,
	.kv-community-gallery-yeeya .kv-community-card-6 {
		grid-column: auto;
	}

	.kv-people-group {
		gap: 26px;
	}

	.kv-founder-layout {
		gap: 28px;
	}

	.kv-support-students-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kv-fallback-grid,
	.kv-search-form {
		grid-template-columns: 1fr;
	}

	.kv-nav {
		grid-column: 1 / -1;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-top: 16px;
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 18px;
		background: rgba(20, 20, 20, 0.98);
	}

	.kv-nav > a,
	.kv-nav-dropdown {
		width: 100%;
	}

	.kv-nav > a.kv-nav-support {
		justify-content: space-between;
		width: 100%;
		padding: 14px 18px;
		border-radius: 16px;
		box-shadow: none;
	}

	.kv-nav-dropdown {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.kv-nav-dropdown > button {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		pointer-events: none;
	}

	.kv-nav-dropdown-menu {
		position: static;
		display: grid;
		min-width: 0;
		gap: 12px;
		margin-top: 10px;
		padding: 12px 0 0 14px;
		border: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0;
		background: transparent;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		transition: none;
	}

	.kv-nav-dropdown-menu::before {
		display: none;
	}

	.kv-nav-dropdown-menu a {
		display: block;
		width: 100%;
	}

	.kv-nav-toggle:checked + .kv-nav-toggle-button span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.kv-nav-toggle:checked + .kv-nav-toggle-button span:nth-child(2) {
		opacity: 0;
	}

	.kv-nav-toggle:checked + .kv-nav-toggle-button span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.kv-nav-toggle:checked + .kv-nav-toggle-button + .kv-nav {
		display: flex;
	}
}

@media (min-width: 1101px) {
	.kv-nav-dropdown:hover .kv-nav-dropdown-menu,
	.kv-nav-dropdown:focus-within .kv-nav-dropdown-menu {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
	}
}

@media (max-width: 720px) {
	:root {
		--kv-shell: min(100vw - 28px, 1000px);
	}

	.kv-site-header {
		position: static;
	}

	.kv-header-inner {
		gap: 20px;
		min-height: auto;
	}

	.kv-brand img {
		width: 56px;
		height: 56px;
	}

	.kv-brand-text {
		font-size: 20px;
	}

	.kv-nav {
		font-size: 15px;
	}

	.kv-hero,
	.kv-hero-inner {
		min-height: 620px;
	}

	.kv-hero-inner {
		padding: 72px 0;
	}

	.kv-hero-copy h1 {
		font-size: 2.65rem;
	}

	.kv-hero-copy p,
	.kv-studio-heading p {
		font-size: 15px;
	}

	.kv-studio-section {
		padding-top: 70px;
	}

	.kv-project-grid {
		gap: 30px;
		margin-top: 42px;
	}

	.kv-project-preview {
		top: 10px;
		width: calc(100% - 24px);
	}

	.kv-community-section {
		padding-top: 18px;
	}

	.kv-community-hero img {
		height: 300px;
		min-height: 300px;
	}

	.kv-community-overlay {
		padding: 26px;
	}

	.kv-community-overlay p {
		font-size: 15px;
	}

	.kv-community-gallery {
		gap: 24px;
		margin-top: 38px;
	}

	.kv-support-hero,
	.kv-support-students-section,
	.kv-support-pay-section {
		padding: 64px 0;
	}

	.kv-support-copy h1 {
		font-size: 2.5rem;
	}

	.kv-support-pricing,
	.kv-support-impact {
		font-size: 18px;
	}

	.kv-support-students-grid {
		grid-template-columns: 1fr;
	}

	.kv-community-card img {
		height: 220px;
	}

	.kv-founder-section {
		padding-top: 34px;
	}

	.kv-founder-copy h1 {
		font-size: 2.3rem;
	}

	.kv-founder-message {
		font-size: 15px;
		line-height: 1.8;
	}

	.kv-people-hero {
		padding-top: 58px;
	}

	.kv-people-intro {
		font-size: 15px;
	}

	.kv-person-photo img,
	.kv-person-photo-placeholder {
		height: 280px;
	}

	.kv-footer-brand p {
		font-size: 15px;
	}

	.kv-brand-footer img {
		width: 90px;
		height: 90px;
	}

	.kv-brand-footer .kv-brand-text {
		font-size: 30px;
	}
}
