:root {
	--bg: #0e0e0d;
	--surface: #161614;
	--surface2: #1e1e1b;
	--border: rgba(255, 255, 255, 0.07);
	--text: #e8e6e0;
	--muted: #7a7870;
	--accent: #c9f03a;
	--accent-dim: rgba(201, 240, 58, 0.12);
	--serif: 'Instrument Serif', Georgia, serif;
	--sans: 'DM Sans', sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* ── Noise overlay ── */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 9999;
	opacity: 0.4;
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s, background 0.3s;
}

nav.scrolled {
	border-color: var(--border);
	background: rgba(14, 14, 13, 0.85);
	backdrop-filter: blur(16px);
}

.logo {
	font-family: var(--serif);
	font-size: 1.2rem;
	letter-spacing: -0.01em;
	color: var(--text);
	text-decoration: none;
}

.logo span {
	color: var(--accent);
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 20px;
	border: 1px solid var(--border);
	border-radius: 100px;
	font-family: var(--sans);
	font-size: 0.82rem;
	font-weight: 400;
	color: var(--text);
	text-decoration: none;
	transition: border-color 0.25s, background 0.25s, color 0.25s;
	letter-spacing: 0.01em;
}

.nav-cta:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: var(--accent-dim);
}

/* ── HERO ── */
.hero {
	< !-- min-height: 100vh;
	-->display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 48px 80px;
	position: relative;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 240, 58, 0.06) 0%, transparent 70%);
	top: 10%;
	right: -100px;
	pointer-events: none;
	animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.7;
	}
}

.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 36px;
	opacity: 0;
	animation: fade-up 0.7s 0.1s forwards;
}

.eyebrow-dot {
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.eyebrow-text {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 400;
}

.hero-headline {
	font-family: var(--serif);
	font-size: clamp(3rem, 7vw, 6rem);
	line-height: 1.04;
	letter-spacing: -0.03em;
	max-width: 880px;
	margin-bottom: 32px;
	opacity: 0;
	animation: fade-up 0.8s 0.2s forwards;
}

.hero-headline em {
	font-style: italic;
	color: var(--accent);
}

.hero-sub {
	font-size: 1.05rem;
	color: var(--text);
	max-width: 500px;
	line-height: 1.7;
	margin-bottom: 16px;
	font-weight: 400;
	opacity: 0;
	animation: fade-up 0.8s 0.35s forwards;
}

.hero-sub2 {
	font-size: 0.92rem;
	color: var(--muted);
	max-width: 480px;
	line-height: 1.75;
	margin-bottom: 48px;
	font-weight: 300;
	opacity: 0;
	animation: fade-up 0.8s 0.42s forwards;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	animation: fade-up 0.8s 0.5s forwards;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: var(--accent);
	color: #0e0e0d;
	border-radius: 100px;
	font-family: var(--sans);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	letter-spacing: -0.01em;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(201, 240, 58, 0.25);
}

.btn-primary svg {
	transition: transform 0.2s;
}

.btn-primary:hover svg {
	transform: translateX(3px);
}

.btn-ghost {
	font-size: 0.87rem;
	color: var(--muted);
	text-decoration: none;
	border-bottom: 1px solid var(--border);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
	font-weight: 400;
}

.btn-ghost:hover {
	color: var(--text);
	border-color: var(--muted);
}

/* scroll indicator */
.hero-scroll {
	position: absolute;
	bottom: 40px;
	left: 48px;
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0;
	animation: fade-up 0.8s 0.8s forwards;
}

.scroll-line {
	width: 32px;
	height: 1px;
	background: var(--border);
	position: relative;
	overflow: hidden;
}

.scroll-line::after {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--accent);
	animation: slide-line 2s ease-in-out infinite;
}

@keyframes slide-line {
	0% {
		left: -100%;
	}

	50%,
	100% {
		left: 100%;
	}
}

.scroll-text {
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ── TICKER ── */
.ticker {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 14px 0;
	overflow: hidden;
	white-space: nowrap;
}

.ticker-inner {
	display: inline-flex;
	animation: ticker 28s linear infinite;
	gap: 0;
}

.ticker-inner:hover {
	animation-play-state: paused;
}

@keyframes ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 0 32px;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 400;
}

.ticker-sep {
	width: 4px;
	height: 4px;
	background: var(--accent);
	border-radius: 50%;
	opacity: 0.6;
	flex-shrink: 0;
}

/* ── SECTION WRAPPER ── */
section {
	padding: 70px 48px;
}

.section-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 56px;
}

.section-label-line {
	width: 24px;
	height: 1px;
	background: var(--accent);
}

.section-label-text {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 400;
}

.section-heading {
	font-family: var(--serif);
	font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	line-height: 1.08;
	letter-spacing: -0.028em;
	max-width: 640px;
	margin-bottom: 20px;
	font-weight: 600;
}

.section-sub {
	font-size: 0.95rem;
	color: var(--muted);
	max-width: 480px;
	line-height: 1.75;
}

/* ── CAPABILITIES ── */
.capabilities-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	margin-top: 64px;
	border-radius: 16px;
	overflow: hidden;
}

.cap-card {
	background: var(--surface);
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: background 0.25s;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.cap-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.cap-card:hover::before {
	transform: scaleX(1);
}

.cap-card:hover {
	background: var(--surface2);
}

.cap-tier {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
}

.cap-icon {
	width: 40px;
	height: 40px;
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	transition: border-color 0.25s, color 0.25s;
}

.cap-card:hover .cap-icon {
	border-color: var(--accent);
	color: var(--accent);
}

.cap-title {
	font-family: var(--serif);
	font-size: 1.35rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.cap-desc {
	font-size: 0.875rem;
	color: var(--muted);
	line-height: 1.75;
	flex: 1;
}

.cap-items {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--border);
}

.cap-items li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	color: var(--muted);
}

.cap-items li::before {
	content: '';
	width: 4px;
	height: 4px;
	background: var(--accent);
	border-radius: 50%;
	opacity: 0.6;
	flex-shrink: 0;
}

/* ── PROCESS ── */
.process-section {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.process-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 80px;
	align-items: start;
	margin-top: 64px;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.step {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 20px;
	padding: 28px 0;
	border-bottom: 1px solid var(--border);
	cursor: default;
}

.step:first-child {
	border-top: 1px solid var(--border);
}

.step-num {
	font-family: var(--serif);
	font-size: 0.9rem;
	color: var(--muted);
	padding-top: 3px;
	font-style: italic;
}

.step-content {}

.step-title {
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 6px;
	color: var(--text);
	transition: color 0.2s;
}

.step:hover .step-title {
	color: var(--accent);
}

.step-desc {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.7;
}

.process-aside {
	position: sticky;
	top: 100px;
	padding: 40px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--surface2);
}

.aside-heading {
	font-family: var(--serif);
	font-size: 1.5rem;
	line-height: 1.25;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.aside-text {
	font-size: 0.875rem;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 32px;
}

.aside-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pill {
	padding: 6px 14px;
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 0.78rem;
	color: var(--muted);
	transition: border-color 0.2s, color 0.2s;
}

.pill:hover {
	border-color: var(--accent);
	color: var(--accent);
}

/* ── TRUST STRIP ── */
.trust-strip {
	padding: 60px 48px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.trust-item {
	background: var(--bg);
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.trust-num {
	font-family: var(--serif);
	font-size: 2.8rem;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--accent);
}

.trust-label {
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.6;
	max-width: 180px;
}

/* ── CTA ── */
.cta-section {
	padding: 120px 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-glow {
	position: absolute;
	width: 700px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(201, 240, 58, 0.05) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.cta-heading {
	font-family: var(--serif);
	font-size: clamp(2.8rem, 5.5vw, 5rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	max-width: 700px;
	margin-bottom: 24px;
	position: relative;
	font-weight: 600;
}

.cta-heading em {
	font-style: italic;
	color: var(--accent);
}

.cta-sub {
	font-size: 0.95rem;
	color: var(--muted);
	max-width: 380px;
	line-height: 1.75;
	< !-- margin-bottom: 48px;
	-->position: relative;
}

.cta-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	position: relative;
}

.cta-input-row {
	display: flex;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 100px;
	overflow: hidden;
	background: var(--surface);
	transition: border-color 0.25s;
}

.cta-input-row:focus-within {
	border-color: rgba(201, 240, 58, 0.35);
}

.cta-input {
	background: transparent;
	border: none;
	outline: none;
	padding: 14px 24px;
	font-family: var(--sans);
	font-size: 0.87rem;
	color: var(--text);
	font-weight: 300;
	min-width: 260px;
}

.cta-input::placeholder {
	color: var(--muted);
}

.cta-btn {
	padding: 14px 24px;
	background: var(--accent);
	border: none;
	font-family: var(--sans);
	font-size: 0.87rem;
	font-weight: 500;
	color: #0e0e0d;
	cursor: pointer;
	border-radius: 0 100px 100px 0;
	transition: opacity 0.2s;
}

.cta-btn:hover {
	opacity: 0.88;
}

.cta-note {
	font-size: 0.78rem;
	color: var(--muted);
}

/* ── FOOTER ── */
footer {
	border-top: 1px solid var(--border);
	padding: 32px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-logo {
	font-family: var(--serif);
	font-size: 1rem;
	color: var(--muted);
	text-decoration: none;
}

.footer-logo span {
	color: var(--accent);
}

.footer-note {
	font-size: 0.78rem;
	color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	nav {
		padding: 18px 24px;
	}

	.hero,
	section,
	.cta-section {
		padding-left: 24px;
		padding-right: 24px;
	}

	.hero-scroll {
		left: 24px;
	}

	.capabilities-grid {
		grid-template-columns: 1fr;
	}

	.process-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.process-aside {
		position: static;
	}

	.trust-strip {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.trust-item {
		padding: 32px 24px;
	}

	footer {
		flex-direction: column;
		gap: 12px;
		padding: 24px;
	}
}

@media (max-width: 600px) {
	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.cta-input-row {
		flex-direction: column;
		border-radius: 12px;
	}

	.cta-input {
		min-width: auto;
		width: 280px;
	}

	.cta-btn {
		border-radius: 0 0 12px 12px;
	}
}

/* ── WORK / PROJECTS ── */
.work-section {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--surface);
}

.work-list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	margin-top: 64px;
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	background: var(--border);
}

.work-item {
	background: var(--bg);
	padding: 44px 48px;
	display: grid;
	grid-template-columns: 200px 1fr auto;
	gap: 32px 48px;
	align-items: start;
	transition: background 0.2s;
}

.work-item:hover {
	background: var(--surface2);
}

.work-meta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 2px;
}

.work-index {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
}

.work-title {
	font-family: var(--serif);
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--text);
}

.work-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.work-desc {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.75;
}

.work-points {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.work-points li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.84rem;
	color: var(--muted);
}

.work-points li::before {
	content: '';
	width: 4px;
	height: 4px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
	opacity: 0.7;
}

.work-examples {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.work-example {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 18px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: var(--surface2);
	transition: border-color 0.2s;
}

.work-example:hover {
	border-color: rgba(201, 240, 58, 0.2);
}

.work-example-label {
	font-size: 0.84rem;
	color: var(--text);
	line-height: 1.5;
	flex: 1;
}

.work-link-sm {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--muted);
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.2s, color 0.2s;
	flex-shrink: 0;
}

.work-link-sm:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.work-cta {
	align-self: start;
	padding-top: 2px;
}

.work-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 22px;
	background: var(--accent);
	color: #0e0e0d;
	border-radius: 100px;
	font-family: var(--sans);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	white-space: nowrap;
}

.work-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(201, 240, 58, 0.2);
}

@media (max-width: 1000px) {
	.work-item {
		grid-template-columns: 1fr 1fr;
	}

	.work-cta {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	.work-item {
		grid-template-columns: 1fr;
		padding: 32px 24px;
		gap: 18px;
	}
}




.tech-stack {
    color: var(--text);
    font-family: var(--sans);
}

.container {
    margin: 0 auto;
}

.header {
    margin-bottom: 48px;
}

.header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.header p {
    color: var(--muted);
    max-width: 500px;
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 4px; /* Industrial Sharpness */
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: var(--accent);
}

.card-label {
    font-family: monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.stack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0.8;
}

.tech-tag {
    margin-left: auto;
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--muted);
    background: var(--surface2);
    padding: 2px 8px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}
