:root {
	--ink: #0f1728;
	--ink-soft: #485368;
	--teal: #137c7a;
	--teal-deep: #0c4f56;
	--clay: #cb7650;
	--sand: #e8d5b7;
	--cream: #f7f1e7;
	--white: #ffffff;
	--line: rgba(15, 23, 40, 0.12);
	--shadow: 0 24px 60px rgba(10, 20, 40, 0.12);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--max-width: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(19, 124, 122, 0.18), transparent 28%),
		radial-gradient(circle at right 20%, rgba(203, 118, 80, 0.16), transparent 24%),
		linear-gradient(180deg, #fbf7f2 0%, #f4eee5 45%, #eef3f4 100%);
	min-height: 100vh;
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.35;
	pointer-events: none;
	z-index: 0;
}

body::before {
	width: 260px;
	height: 260px;
	top: 120px;
	right: -80px;
	background: rgba(19, 124, 122, 0.18);
}

body::after {
	width: 220px;
	height: 220px;
	bottom: 80px;
	left: -60px;
	background: rgba(203, 118, 80, 0.16);
}

a {
	color: inherit;
	text-decoration: none;
}

.page {
	position: relative;
	z-index: 1;
	width: min(var(--max-width), calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0 16px;
	backdrop-filter: blur(16px);
	background: linear-gradient(180deg, rgba(251, 247, 242, 0.92), rgba(251, 247, 242, 0.68));
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-weight: 700;
	letter-spacing: -0.04em;
	font-size: 1.02rem;
}

.brand-mark {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
	position: relative;
	box-shadow: 0 18px 30px rgba(19, 124, 122, 0.25);
}

.brand-mark::before,
.brand-mark::after {
	content: "";
	position: absolute;
	inset: 9px;
	border-radius: 10px;
	border: 2px solid rgba(255, 255, 255, 0.75);
}

.brand-mark::after {
	inset: 16px 11px 16px 19px;
	border-left-width: 4px;
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	border-radius: 0;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.site-nav a {
	transition: color 0.2s ease;
}

.site-nav a:hover {
	color: var(--ink);
}

.header-cta {
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-weight: 600;
	box-shadow: var(--shadow);
}

.hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 42px;
	padding: 56px 0 42px;
	align-items: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(19, 124, 122, 0.08);
	color: var(--teal-deep);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--clay);
	box-shadow: 0 0 0 6px rgba(203, 118, 80, 0.16);
}

.hero h1 {
	margin: 18px 0 16px;
	font-size: clamp(3rem, 8vw, 6rem);
	line-height: 0.94;
	letter-spacing: -0.06em;
}

.hero h1 .accent {
	display: block;
	font-family: "Instrument Serif", serif;
	font-style: italic;
	color: var(--teal);
	font-weight: 400;
}

.hero-copy p {
	max-width: 680px;
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.08rem;
	line-height: 1.8;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.button-primary,
.button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding: 14px 20px;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button-primary {
	background: var(--ink);
	color: var(--white);
	box-shadow: var(--shadow);
}

.button-secondary {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.72);
	color: var(--ink);
}

.button-primary:hover,
.button-secondary:hover {
	transform: translateY(-2px);
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.hero-tags span {
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 40, 0.08);
	background: rgba(255, 255, 255, 0.7);
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.hero-board {
	position: relative;
	padding: 22px;
	border-radius: var(--radius-xl);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66));
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: var(--shadow);
	overflow: hidden;
	isolation: isolate;
}

.hero-board::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(19, 124, 122, 0.18), transparent 30%),
		radial-gradient(circle at bottom left, rgba(203, 118, 80, 0.16), transparent 28%);
	z-index: -1;
}

.board-top {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 16px;
}

.mini-panel,
.chart-panel,
.list-panel {
	border-radius: 22px;
	background: rgba(248, 244, 238, 0.92);
	border: 1px solid rgba(15, 23, 40, 0.08);
	padding: 18px;
}

.mini-panel small,
.chart-panel small,
.list-panel small {
	display: block;
	color: var(--ink-soft);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.72rem;
	margin-bottom: 8px;
}

.mini-panel strong {
	display: block;
	font-size: 1.9rem;
	letter-spacing: -0.05em;
	margin-bottom: 6px;
}

.mini-panel p,
.list-panel p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.9rem;
	line-height: 1.5;
}

.board-bottom {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 16px;
}

.chart-panel {
	padding-bottom: 14px;
}

.chart-panel svg {
	width: 100%;
	height: auto;
	display: block;
	margin-top: 8px;
}

.chart-legend {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	color: var(--ink-soft);
	font-size: 0.86rem;
	margin-top: 10px;
}

.chart-legend span::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 8px;
	border-radius: 50%;
	vertical-align: middle;
}

.chart-legend .teal::before {
	background: var(--teal);
}

.chart-legend .clay::before {
	background: var(--clay);
}

.list-panel ul {
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
}

.list-panel li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(15, 23, 40, 0.08);
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.list-panel li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.list-panel b {
	color: var(--ink);
	font-weight: 700;
}

.marquee {
	margin: 10px 0 24px;
	padding: 14px 18px;
	overflow: hidden;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 40, 0.08);
	background: rgba(255, 255, 255, 0.65);
}

.marquee-track {
	display: flex;
	gap: 28px;
	min-width: max-content;
	color: var(--ink-soft);
	font-size: 0.95rem;
	animation: drift 20s linear infinite;
}

@keyframes drift {
	from { transform: translateX(0); }
	to { transform: translateX(-30%); }
}

.section {
	padding: 72px 0;
}

.section-header {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 28px;
	align-items: start;
	margin-bottom: 28px;
}

.section-kicker {
	margin: 0 0 12px;
	color: var(--teal-deep);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	font-size: 0.8rem;
}

.section h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1;
	letter-spacing: -0.05em;
}

.section-header p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.02rem;
	line-height: 1.8;
}

.capability-grid,
.metrics-grid,
.founder-grid {
	display: grid;
	gap: 18px;
}

.capability-grid {
	grid-template-columns: repeat(4, 1fr);
}

.capability-card,
.metric-card,
.founder-card,
.workflow-copy,
.workflow-step,
.quote-card,
.cta-card {
	border-radius: var(--radius-lg);
	border: 1px solid rgba(15, 23, 40, 0.08);
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 18px 40px rgba(15, 23, 40, 0.06);
}

.capability-card {
	padding: 24px;
}

.capability-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(19, 124, 122, 0.14), rgba(19, 124, 122, 0.04));
	color: var(--teal-deep);
	font-weight: 700;
	margin-bottom: 18px;
}

.capability-card h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
	letter-spacing: -0.03em;
}

.capability-card p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.96rem;
	line-height: 1.75;
}

.metrics-grid {
	grid-template-columns: repeat(4, 1fr);
}

.metric-card {
	padding: 26px 24px;
}

.metric-value {
	display: block;
	margin-bottom: 10px;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	letter-spacing: -0.06em;
	font-weight: 700;
	color: var(--teal-deep);
}

.metric-card p {
	margin: 0;
	color: var(--ink-soft);
	line-height: 1.7;
}

.workflow-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 20px;
	align-items: start;
}

.workflow-copy {
	padding: 28px;
}

.workflow-copy h3 {
	margin: 0 0 16px;
	font-size: 1.7rem;
	letter-spacing: -0.05em;
}

.workflow-copy p {
	margin: 0;
	color: var(--ink-soft);
	line-height: 1.8;
}

.workflow-steps {
	display: grid;
	gap: 16px;
}

.workflow-step {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	padding: 22px;
	align-items: start;
}

.workflow-step .step-number {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ink), #263349);
	color: var(--white);
	font-weight: 700;
	box-shadow: 0 14px 26px rgba(15, 23, 40, 0.16);
}

.workflow-step h4 {
	margin: 2px 0 8px;
	font-size: 1.08rem;
	letter-spacing: -0.03em;
}

.workflow-step p {
	margin: 0;
	color: var(--ink-soft);
	line-height: 1.7;
}

.narrative-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 18px;
}

.quote-card {
	padding: 32px;
	background: linear-gradient(160deg, rgba(19, 124, 122, 0.95), rgba(12, 79, 86, 0.92));
	color: var(--white);
}

.quote-card p {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2.35rem);
	line-height: 1.22;
	letter-spacing: -0.04em;
}

.quote-card span {
	display: block;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
}

.insight-list {
	display: grid;
	gap: 14px;
}

.insight-item {
	padding: 20px 22px;
	border-radius: 20px;
	border: 1px solid rgba(15, 23, 40, 0.08);
	background: rgba(255, 255, 255, 0.76);
}

.insight-item h4 {
	margin: 0 0 8px;
	font-size: 1.02rem;
	letter-spacing: -0.03em;
}

.insight-item p {
	margin: 0;
	color: var(--ink-soft);
	line-height: 1.7;
}

.founder-grid {
	grid-template-columns: repeat(2, 1fr);
}

.founder-card {
	padding: 26px;
}

.founder-portrait {
	position: relative;
	aspect-ratio: 0.9;
	width: min(100%, 300px);
	max-width: 280px;
	margin-bottom: 22px;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: var(--shadow);
	background: linear-gradient(150deg, #102032 0%, #21455b 48%, #c27454 100%);
	isolation: isolate;
}

.founder-portrait::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 34%),
		repeating-linear-gradient(
			115deg,
			rgba(255, 255, 255, 0.06) 0 10px,
			transparent 10px 26px
		);
	opacity: 0.18;
	z-index: 2;
	pointer-events: none;
}

.founder-portrait::after {
	content: "";
	position: absolute;
	inset: 14px;
	border-radius: 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	z-index: 4;
	pointer-events: none;
}

.founder-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
	filter: saturate(1.02) contrast(1.04) brightness(0.95);
	transform: scale(1.04);
	z-index: 1;
}

.founder-photo--shasankar {
	object-position: center 22%;
	transform: scale(1.05) translateY(1%);
}

.founder-photo--partha {
	object-position: 54% 18%;
	transform: scale(1.08) translateY(1%);
}

.founder-tint {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(9, 22, 38, 0.02), rgba(9, 22, 38, 0.44) 80%),
		linear-gradient(135deg, rgba(19, 124, 122, 0.18), rgba(203, 118, 80, 0.14));
	mix-blend-mode: soft-light;
	z-index: 3;
	pointer-events: none;
}

.founder-badge {
	position: absolute;
	left: 18px;
	top: 18px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	z-index: 5;
}

.founder-card h3 {
	margin: 0 0 4px;
	font-size: 1.45rem;
	letter-spacing: -0.04em;
}

.founder-role {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--teal-deep);
	font-weight: 700;
	font-size: 0.95rem;
}

.founder-card p {
	margin: 0 0 16px;
	color: var(--ink-soft);
	line-height: 1.8;
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-row span {
	padding: 9px 12px;
	border-radius: 999px;
	background: rgba(19, 124, 122, 0.08);
	color: var(--teal-deep);
	font-size: 0.84rem;
	font-weight: 600;
}

.founder-note {
	margin: 20px 0 0;
	color: var(--ink-soft);
	line-height: 1.7;
	max-width: 760px;
}

.cta-card {
	padding: 34px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
	align-items: center;
	background: linear-gradient(145deg, rgba(15, 23, 40, 0.96), rgba(28, 44, 59, 0.95));
	color: var(--white);
}

.cta-card h2 {
	margin: 0 0 14px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.cta-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.8;
	max-width: 620px;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.cta-actions a {
	padding: 14px 18px;
	border-radius: 999px;
	font-weight: 700;
}

.cta-actions .solid {
	background: var(--sand);
	color: var(--ink);
}

.cta-actions .ghost {
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
}

.site-footer {
	padding: 28px 0 44px;
	color: var(--ink-soft);
	font-size: 0.92rem;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.cta-kicker {
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 10px;
}

@media (max-width: 1080px) {
	.hero,
	.section-header,
	.workflow-layout,
	.narrative-layout,
	.cta-card {
		grid-template-columns: 1fr;
	}

	.capability-grid,
	.metrics-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.board-top,
	.board-bottom {
		grid-template-columns: 1fr;
	}

	.cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 780px) {
	.site-header {
		flex-wrap: wrap;
		justify-content: center;
	}

	.site-nav {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.capability-grid,
	.metrics-grid,
	.founder-grid {
		grid-template-columns: 1fr;
	}

	.workflow-step {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 34px;
	}

	.section {
		padding: 56px 0;
	}

	.cta-card {
		padding: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal,
	.button-primary,
	.button-secondary,
	.marquee-track {
		transition: none;
		animation: none;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}