:root {
	--bg-1: #0a0c14;
	--bg-2: #0f1219;
	--bg-3: #161a26;
	--bg-4: #1d2231;
	--text-1: #fff;
	--text-2: #a8aebb;
	--text-3: #5d6377;
	--accent-blue: #1c5cff;
	--accent-pink: #ff13a5;
	--accent-purple: #7b3cff;
	--accent-green: #00c853;
	--accent-orange: #ff7a00;
	--accent-cyan: #19d8d0;
	--border-1: rgba(255, 255, 255, 0.06);
	--border-2: rgba(255, 255, 255, 0.1);
	--border-3: rgba(255, 255, 255, 0.18);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	background: var(--bg-1);
	color: #fff;
	-webkit-font-smoothing: antialiased;

	overflow-x: hidden;
	max-width: 100vw;
}
body {
	word-break: normal;
	overflow-wrap: normal;
	font-family: "Onest", sans-serif;
	font-weight: 200;
	line-height: 1.55;
	color: var(--text-1);
	background: var(--bg-1);
	overflow-x: hidden;
	cursor: none;
	min-height: 100vh;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: none;
}
::selection {
	background: var(--accent-pink);
	color: #fff;
}
.h-display {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 0.9;
	font-size: clamp(56px, 9.2vw, 156px);
}
h1 {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	font-size: clamp(28px, 5vw, 56px);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: manual;
}
.h-1 {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	font-size: clamp(28px, 5vw, 56px);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}
.h-2 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	font-size: clamp(22px, 4vw, 48px);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: manual;
}
.h-3 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	font-size: clamp(22px, 2.4vw, 38px);
	overflow-wrap: normal;
	word-break: normal;
}
.h-4 {
	font-family: "Unbounded", sans-serif;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.15;
	font-size: clamp(18px, 1.6vw, 24px);
	overflow-wrap: normal;
	word-break: normal;
}
.eyebrow {
	font-family: "Onest", sans-serif;
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--text-2);
}
.lead {
	font-family: "Onest", sans-serif;
	font-weight: 200;
	font-size: clamp(18px, 1.4vw, 22px);
	line-height: 1.55;
	color: var(--text-2);
}
.body {
	font-family: "Onest", sans-serif;
	font-weight: 200;
	font-size: clamp(15px, 1.05vw, 17px);
	line-height: 1.6;
	color: var(--text-2);
}
.mono {
	font-family: "JetBrains Mono", monospace;
	font-weight: 300;
	letter-spacing: 0.02em;
}
.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 48px;
	width: 100%;
}
@media (max-width: 900px) {
	.container {
		padding: 0 24px;
	}
}
.noise {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.04;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.cursor-dot,
.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s;
	mix-blend-mode: difference;
}
.cursor-dot {
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
}
.cursor-ring {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	transition:
		width 0.25s var(--ease-out),
		height 0.25s var(--ease-out),
		border-color 0.25s,
		background 0.25s;
}
.cursor-ring.hover {
	width: 80px;
	height: 80px;
	border-color: rgba(255, 19, 165, 0.7);
	background: rgba(255, 19, 165, 0.06);
}
@media (max-width: 900px) {
	.cursor-dot,
	.cursor-ring {
		display: none !important;
	}
	body {
		cursor: auto;
	}
	button,
	a {
		cursor: pointer;
	}
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px 0;
	transition: all 0.4s var(--ease-out);
}
.header.scrolled {
	padding: 14px 0;
	background: rgba(10, 12, 20, 0.65);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--border-1);
}
.header-inner {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.logo {
	display: flex !important;
	align-items: center;
	gap: 10px;
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: #fff;
}
.logo-mark {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	background: #fff;
	color: #0a0c14;
	border-radius: 50%;
	font-weight: 900;
	font-size: 18px;
	flex-shrink: 0;
	position: relative;
}
.logo-mark::before {
	content: "";
	position: absolute;
	inset: 4px;
	border: 2px solid #0a0c14;
	border-radius: 50%;
	border-top-color: transparent;
	border-right-color: transparent;
	transform: rotate(-45deg);
}
.nav {
	display: flex !important;
	align-items: center;
	gap: 4px;
}
.nav a {
	position: relative;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 300;
	color: var(--text-2);
	border-radius: 999px;
	transition:
		color 0.3s,
		background 0.3s;
}
.nav a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
}
.nav a.active {
	color: #fff;
}
.cta-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	background: linear-gradient(
		135deg,
		var(--accent-blue) 0%,
		var(--accent-pink) 100%
	);
	box-shadow: 0 8px 24px -8px rgba(255, 19, 165, 0.5);
	overflow: hidden;
	transition:
		transform 0.3s var(--ease-out),
		box-shadow 0.3s;
	white-space: nowrap;
}
.cta-pill::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-pink) 0%,
		var(--accent-purple) 100%
	);
	opacity: 0;
	transition: opacity 0.4s;
}
.cta-pill span {
	position: relative;
	z-index: 1;
}
.cta-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -8px rgba(255, 19, 165, 0.6);
}
.cta-pill:hover::before {
	opacity: 1;
}

.hero {
	position: relative;
	padding: 160px 0 100px;
	overflow: hidden;
	z-index: 2;
}
.mesh-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}
.mesh-bg::before,
.mesh-bg::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.5;
	will-change: transform;
}
.mesh-bg::before {
	width: 50vw;
	height: 50vw;
	left: -15vw;
	top: -10vw;
	background: radial-gradient(
		circle,
		rgba(28, 92, 255, 0.7) 0%,
		transparent 60%
	);
	animation: float1 18s ease-in-out infinite;
}
.mesh-bg::after {
	width: 50vw;
	height: 50vw;
	right: -15vw;
	top: 5vh;
	background: radial-gradient(
		circle,
		rgba(123, 60, 255, 0.55) 0%,
		transparent 60%
	);
	animation: float2 22s ease-in-out infinite;
}
@keyframes float1 {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(10vw, 8vw) scale(1.15);
	}
}
@keyframes float2 {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-8vw, -6vw) scale(1.1);
	}
}

/* About specific */
.about-intro {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: start;
}
.about-text h1 {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: clamp(48px, 7.6vw, 128px);
	line-height: 0.92;
	letter-spacing: -0.04em;
	margin-bottom: 48px;
}
.about-text h1 .accent {
	background: linear-gradient(
		135deg,
		var(--accent-blue) 0%,
		var(--accent-pink) 50%,
		var(--accent-purple) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 200%;
	animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}
.about-text .lead {
	margin-bottom: 32px;
}
.about-text p {
	font-size: 17px;
	font-weight: 200;
	color: var(--text-2);
	line-height: 1.7;
	margin-bottom: 20px;
}
.founder-card {
	position: relative;
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.04) 0%,
		rgba(255, 255, 255, 0.01) 100%
	);
	border: 1px solid var(--border-1);
	border-radius: var(--r-3xl, 48px);
	padding: 48px 40px;
	display: flex !important;
	flex-direction: column;
	gap: 32px;
	backdrop-filter: blur(20px);
}
.founder-avatar {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 32px;
	overflow: hidden;
	background: var(--bg-3);
	box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}
.founder-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	display: block;
	transition: transform 0.6s var(--ease-out);
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}
.founder-avatar:hover img {
	transform: scale(1.04);
}

@media (max-width: 1440px) {
	.founder-card {
		display: none !important;
	}
	.about-intro {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.about-text h1 {
		font-size: clamp(36px, 5.3vw, 90px);
		margin-bottom: 32px;
	}
}

@media (min-width: 1281px) and (max-width: 1439px) {
	.founder-card {
		display: none !important;
	}
	.about-intro {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.about-text h1 {
		font-size: clamp(32px, 4.5vw, 72px);
		margin-bottom: 24px;
	}
	.about-text p {
		font-size: 14px;
	}
}

@media (max-width: 1280px) {
	.founder-card {
		display: none !important;
	}
	.about-intro {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.about-text h1 {
		font-size: clamp(28px, 4vw, 56px);
		margin-bottom: 20px;
	}
}

.founder-info h3 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}
.founder-info .role {
	font-size: 14px;
	font-weight: 300;
	color: var(--text-2);
	margin-bottom: 24px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.founder-meta {
	display: flex !important;
	flex-direction: column;
	gap: 16px;
	border-top: 1px solid var(--border-1);
	padding-top: 24px;
}
.founder-meta-row {
	display: flex !important;
	justify-content: space-between;
	gap: 24px;
	align-items: start;
	font-size: 15px;
	font-weight: 200;
}
.founder-meta-row .k {
	color: var(--text-3);
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.founder-meta-row .v {
	color: #fff;
	text-align: right;
}
.founder-meta-row .v a {
	color: var(--text-2);
	border-bottom: 1px solid var(--border-2);
	transition:
		color 0.3s,
		border-color 0.3s;
}
.founder-meta-row .v a:hover {
	color: #fff;
	border-color: var(--accent-pink);
}

.principles {
	padding: 120px 0;
	position: relative;
	z-index: 2;
}
.principles-head {
	margin-bottom: 80px;
}
.principles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.principle {
	padding: 40px 32px;
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.03) 0%,
		rgba(255, 255, 255, 0.01) 100%
	);
	border: 1px solid var(--border-1);
	border-radius: var(--r-2xl, 32px);
	transition: all 0.4s var(--ease-out);
	position: relative;
	overflow: hidden;
}
.principle:hover {
	border-color: var(--border-3);
	transform: translateY(-4px);
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(255, 255, 255, 0.02) 100%
	);
}
.principle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 2px;
	background: var(--p-color, var(--accent-blue));
}
.principle-num {
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	color: var(--text-3);
	letter-spacing: 0.1em;
	margin-bottom: 24px;
}
.principle h3 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}
.principle p {
	font-size: 15px;
	font-weight: 200;
	color: var(--text-2);
	line-height: 1.6;
}

.values-strip {
	padding: 120px 0;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(28, 92, 255, 0.04) 50%,
		transparent 100%
	);
	position: relative;
	z-index: 2;
}
.values-row {
	display: flex !important;
	flex-direction: column;
	gap: 40px;
}
.values-row h2 {
	margin-bottom: 16px;
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.2;
}
.values-list {
	display: flex !important;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid var(--border-1);
}
.value-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border-1);
	display: grid;
	grid-template-columns: 80px 1fr 2fr;
	gap: 32px;
	align-items: start;
	transition: padding 0.4s;
}
.value-item:hover {
	padding-left: 16px;
}
.value-num {
	font-family: "JetBrains Mono", monospace;
	font-size: 13px;
	color: var(--text-3);
	letter-spacing: 0.05em;
	padding-top: 6px;
}
.value-title {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fff;
}
.value-desc {
	font-size: 16px;
	font-weight: 200;
	color: var(--text-2);
	line-height: 1.6;
}

.team {
	padding: 120px 0;
	position: relative;
	z-index: 2;
}
.team-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}
.team-tile {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: var(--r-2xl, 32px);
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.04) 0%,
		rgba(255, 255, 255, 0.01) 100%
	);
	border: 1px solid var(--border-1);
	overflow: hidden;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px;
	transition: all 0.4s var(--ease-out);
}
.team-tile:hover {
	transform: translateY(-6px);
	border-color: var(--border-3);
}
.team-tile-avatar {
	flex: 1;
	display: grid;
	place-items: center;
}
.team-tile-avatar svg {
	width: 60%;
	height: 60%;
	opacity: 0.6;
}
.team-tile-info {
	padding-top: 16px;
}
.team-tile-info h4 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.01em;
	margin-bottom: 4px;
}
.team-tile-info p {
	font-size: 13px;
	font-weight: 200;
	color: var(--text-2);
	letter-spacing: 0.05em;
}

.footer {
	position: relative;
	z-index: 2;
	padding: 120px 0 48px;
	border-top: 1px solid var(--border-1);
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 80px;
}
.footer h4 {
	font-family: "Unbounded", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-2);
	margin-bottom: 24px;
}
.footer ul {
	list-style: none;
	display: flex !important;
	flex-direction: column;
	gap: 14px;
}
.footer li {
	font-size: 15px;
	font-weight: 200;
	color: var(--text-2);
	transition: color 0.3s;
	display: flex !important;
	align-items: center;
	gap: 10px;
}
.footer li:hover {
	color: #fff;
}
.footer li .ico {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	opacity: 0.7;
}
.footer-bottom {
	border-top: 1px solid var(--border-1);
	padding-top: 32px;
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	font-weight: 200;
	color: var(--text-3);
}
.footer-giant-logo {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: clamp(64px, 11vw, 200px);
	line-height: 0.95;
	letter-spacing: -0.04em;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.07) 0%,
		rgba(255, 255, 255, 0.01) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 60px 0 30px;
	padding: 0 24px;
	overflow: visible;
	user-select: none;
	text-align: center;
	white-space: nowrap;
}
@media (max-width: 600px) {
	.footer-giant-logo {
		font-size: clamp(48px, 14vw, 80px);
	}
}
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.9s var(--ease-out),
		transform 0.9s var(--ease-out);
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}
.reveal-stagger > * {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s var(--ease-out),
		transform 0.7s var(--ease-out);
}
.reveal-stagger.in > * {
	opacity: 1;
	transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) {
	transition-delay: 0s;
}
.reveal-stagger.in > *:nth-child(2) {
	transition-delay: 0.08s;
}
.reveal-stagger.in > *:nth-child(3) {
	transition-delay: 0.16s;
}
.reveal-stagger.in > *:nth-child(4) {
	transition-delay: 0.24s;
}
.reveal-stagger.in > *:nth-child(5) {
	transition-delay: 0.32s;
}
.reveal-stagger.in > *:nth-child(6) {
	transition-delay: 0.4s;
}
/* ===================== MOBILE MENU ===================== */
.menu-toggle {
	display: none !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-2);
	border-radius: 12px;
	cursor: pointer;
	z-index: 101;
	transition: all 0.3s var(--ease-out);
}
.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}
.menu-toggle-bar {
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s var(--ease-out);
}
.menu-toggle.active .menu-toggle-bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .menu-toggle-bar:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active .menu-toggle-bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 12, 20, 0.98);
	backdrop-filter: blur(20px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s var(--ease-out);
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}
.mobile-menu {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
	max-width: 320px;
}
.mobile-menu-link {
	font-family: "Unbounded", sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: var(--text-2);
	padding: 16px 24px;
	width: 100%;
	text-align: center;
	border-radius: 16px;
	transition: all 0.3s;
	text-decoration: none;
}
.mobile-menu-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}
.mobile-menu-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 32px;
	margin-top: 24px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	background: linear-gradient(
		135deg,
		var(--accent-blue) 0%,
		var(--accent-pink) 100%
	);
	text-decoration: none;
	transition: all 0.3s var(--ease-out);
}
.mobile-menu-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -8px rgba(255, 19, 165, 0.6);
}

@media (max-width: 1300px) {
	.team-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 1100px) {
	.about-intro,
	.values-row {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.value-item {
		grid-template-columns: 60px 1fr;
		gap: 20px;
	}
	.value-desc {
		grid-column: 1 / -1;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 900px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* Tablet (768px - 1024px): show burger, hide CTA */
@media (max-width: 1024px) and (min-width: 761px) {
	.nav {
		display: none !important;
	}
	.cta-pill-header {
		display: none !important;
	}
	.menu-toggle {
		display: flex !important;
	}
}

@media (max-width: 760px) {
	.nav {
		display: none !important;
	}
	.cta-pill {
		display: none !important;
	}
	.menu-toggle {
		display: flex !important;
	}
	.container {
		padding: 0 20px;
	}
	.hero {
		padding: 80px 0 40px;
	}
	.h-display {
		font-size: clamp(28px, 9vw, 60px);
	}
	/* H1 на мобильных */
	h1 {
		font-size: clamp(28px, 10vw, 36px) !important;
		letter-spacing: -0.02em !important;
		text-wrap: balance;
		max-width: 100%;
		line-height: 1.1 !important;
	}
	/* Reduce section spacing on mobile */
	.section,
	.principles,
	.eco-section {
		padding: 40px 0;
		margin-bottom: 20px;
	}
	/* Команда на мобильных - показываем */
	.team {
		padding: 40px 0;
	}
	.team-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.section-head {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
		margin-bottom: 40px !important;
	}
	.section-head .lead {
		justify-self: start !important;
		max-width: 100% !important;
	}
	.principles-grid {
		grid-template-columns: 1fr;
	}
	.footer-top {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	.h-display {
		font-size: clamp(24px, 10vw, 40px);
	}
	.principle-card,
	.team-card {
		padding: 16px;
	}
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-track {
	background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
	background: var(--border-3);
	border-radius: 10px;
	border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--text-3);
}
html {
	scrollbar-width: thin;
	scrollbar-color: var(--border-3) var(--bg-2);
}

.team-tile-avatar {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.team-tile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.6s var(--ease-out);
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}
.team-tile:hover .team-tile-avatar img {
	transform: scale(1.05);
}
.team-tile-avatar svg {
	display: none !important;
}
.team-tile-info {
	position: relative;
	z-index: 2;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(10, 12, 20, 0.7) 60%,
		rgba(10, 12, 20, 0.95) 100%
	);
	padding: 32px 32px 32px 32px;
	margin: 0 -32px -32px -32px;
}
.team-tile-info h4 {
	color: var(--text-3);
	font-weight: 300;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 8px;
}
.team-tile-info p {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
}

/* ======= FORCE TABLET STYLES (END OF FILE) ======= */
@media (max-width: 1024px) {
	.nav {
		display: none !important;
	}
	.cta-pill-header {
		display: none !important;
	}
	.menu-toggle {
		display: flex !important;
	}
}

/* ===================== VIDEO SECTION ===================== */
.case-iframe-section {
	padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
	position: relative;
	z-index: 2;
}
.case-iframe-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	max-height: 70vh;
	background: #0f1219;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #1d2231;
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.case-mockup-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
