:root {
	--bg: #020617;
	--bg-alt: #020617;
	--bg-soft: #020617;
	--card: #020617;
	--card-alt: #020617;
	--border: #1f2937;
	--accent: #38bdf8;
	--accent-soft: rgba(56, 189, 248, 0.15);
	--accent-strong: #0ea5e9;
	--text: #e5e7eb;
	--muted: #9ca3af;
	--danger: #f97373;
	--radius-lg: 18px;
	--radius-xl: 24px;
	--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
	--shadow-card: 0 16px 40px rgba(15, 23, 42, 0.8);
}

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

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
		radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.12), transparent 55%),
		radial-gradient(circle at 50% 100%, rgba(34, 197, 94, 0.10), transparent 50%),
		var(--bg);
	color: var(--text);
	line-height: 1.6;
}

/* Layout helpers */
.container {
	width: min(1120px, 100% - 2.5rem);
	margin-inline: auto;
}

.section {
	padding: 5rem 0;
}

.section-alt {
	background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.98));
	border-top: 1px solid rgba(15, 23, 42, 0.9);
	border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.section-head {
	margin-bottom: 2.5rem;
}

.grid-two {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 2rem;
	align-items: start;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.section-header p {
	color: var(--muted);
	max-width: 560px;
	margin: 0.5rem auto 0;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(2, 6, 23, 0.9);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 0;
	gap: 1rem;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	gap: 0.7rem;
}

.logo img {
	width: 34px;
	height: 34px;
}

.logo-title {
	font-weight: 600;
	font-size: 1.1rem;
}

.logo-subtitle {
	font-size: 0.75rem;
	color: var(--muted);
}

.main-nav {
	display: flex;
	gap: 1.5rem;
	font-size: 0.92rem;
}

.main-nav a {
	text-decoration: none;
	color: var(--muted);
	position: relative;
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.3rem;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.18s ease-out;
}

.main-nav a:hover {
	color: var(--text);
}

.main-nav a:hover::after {
	width: 100%;
}

/* right side: language + CTA */
.header-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.menu-toggle {
	display: none;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.5);
	color: var(--muted);
	border-radius: 12px;
	padding: 0.55rem;
	cursor: pointer;
	line-height: 0;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.menu-toggle:focus-visible,
.menu-toggle:hover {
	border-color: var(--accent);
	color: var(--text);
	outline: none;
}

.menu-icon {
	display: inline-flex;
	flex-direction: column;
	gap: 0.25rem;
}

.menu-icon span {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

/* Language switcher dropdown */
.lang-switcher {
	position: relative;
	display: flex;
	align-items: center;
}

.lang-toggle {
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.5);
	color: var(--muted);
	border-radius: 999px;
	padding: 0.25rem 0.7rem;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.8rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.lang-toggle:hover {
	border-color: var(--accent);
	color: var(--text);
}

.lang-caret {
	font-size: 0.7rem;
}

.lang-menu {
	position: absolute;
	top: 120%;
	right: 0;
	min-width: 80px;
	background: rgba(15, 23, 42, 0.98);
	border: 1px solid rgba(31, 41, 55, 0.9);
	border-radius: 999px;
	padding: 0.15rem 0.25rem;
	display: none;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
	z-index: 50;
}

.lang-menu button {
	background: transparent;
	border: none;
	color: var(--muted);
	font-family: inherit;
	font-size: 0.78rem;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	cursor: pointer;
}

.lang-menu button:hover {
	color: var(--text);
	background: rgba(31, 41, 55, 0.9);
}

.lang-menu button.active {
	color: var(--text);
	background: rgba(56, 189, 248, 0.15);
}

.lang-switcher.open .lang-menu {
	display: flex;
	gap: 0.1rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.25rem;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 500;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-strong), #22c55e);
	box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
	border-color: rgba(56, 189, 248, 0.6);
	color: #0b1120;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 40px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
	background: rgba(56, 189, 248, 0.12);
	border-color: rgba(56, 189, 248, 0.5);
	color: var(--accent);
}

.btn-secondary:hover {
	border-color: var(--accent-strong);
	color: var(--text);
}

.btn-outline {
	border-color: rgba(148, 163, 184, 0.6);
	color: var(--text);
	background: rgba(15, 23, 42, 0.8);
}

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

.btn-ghost {
	background: rgba(15, 23, 42, 0.7);
	border-color: rgba(148, 163, 184, 0.35);
	color: var(--muted);
}

.btn-ghost:hover {
	border-color: rgba(148, 163, 184, 0.8);
	color: var(--text);
}

.btn-full {
	width: 100%;
}

/* Hero */
.hero {
	padding: 5rem 0 4rem;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
	gap: 2.5rem;
	align-items: flex-start;
}

.hero-kicker {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.8rem;
	color: var(--accent);
	margin: 0 0 0.6rem;
}

.hero h1 {
	font-size: clamp(2.4rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0 0 1rem;
}

.hero-lead {
	color: var(--muted);
	max-width: 36rem;
	margin-bottom: 1.5rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
}

.hero-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	max-width: 40rem;
}

.hero-meta div {
	padding: 0.7rem 1.1rem;
	border-radius: 999px;
	border: 1px solid rgba(31, 41, 55, 0.9);
	background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 3.4rem;
}

.meta-label {
	display: block;
	font-size: 0.72rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.meta-value {
	font-size: 0.8rem;
	white-space: nowrap;
}

/* Hero card */
.hero-card {
	position: relative;
	border-radius: var(--radius-xl);
	padding: 1.75rem 1.6rem 1.7rem;
	background:
		radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 55%),
		radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.16), transparent 55%),
		radial-gradient(circle at -5% 120%, rgba(30, 64, 175, 0.26), transparent 70%),
		rgba(15, 23, 42, 0.98);
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(30, 64, 175, 0.7);
}

.hero-card h2 {
	font-size: 1.15rem;
	margin-top: 0.2rem;
	margin-bottom: 1.1rem;
}

.hero-badge {
	position: absolute;
	top: 1.1rem;
	right: 1.3rem;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.15);
	border-radius: 999px;
	padding: 0.25rem 0.7rem;
	border: 1px solid rgba(34, 197, 94, 0.7);
}

.hero-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.95rem;
}

.hero-list li {
	display: grid;
	gap: 0.25rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(51, 65, 85, 0.9);
	font-size: 0.8rem;
}

.pill::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, #22c55e, #0ea5e9);
}

.hero-footnote {
	margin-top: 1.3rem;
	font-size: 0.8rem;
	color: var(--muted);
}

/* Cards & grids */
.grid {
	display: grid;
	gap: 1.7rem;
}

.services-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.engagements-grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.industries-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.outcomes-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
	border-radius: var(--radius-lg);
	padding: 1.6rem 1.5rem;
	background: rgba(15, 23, 42, 0.97);
	border: 1px solid rgba(30, 64, 175, 0.4);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.85);
}

.card h3 {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
}

.card p {
	margin: 0 0 0.85rem;
	color: var(--muted);
}

.service-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-card li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.9rem;
	color: var(--text);
}

.service-card li + li {
	margin-top: 0.25rem;
}

.service-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--accent);
}

.engagement-card .pill {
	background: rgba(56, 189, 248, 0.12);
	border-color: rgba(56, 189, 248, 0.35);
	color: var(--text);
}

.engagement-meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin: 0.2rem 0 0.9rem;
}

.engagement-card .btn {
	margin-top: 1rem;
}

.mini-card {
	background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.3), rgba(15, 23, 42, 0.95));
}

/* Founder */
.founder {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
	grid-template-rows: auto 1fr;
	column-gap: 2.6rem;
	row-gap: 0;
	align-items: start;
}

.founder-intro {
	grid-column: 1;
	grid-row: 1;
}

.founder-intro h2 {
	margin-top: 0;
	margin-bottom: 1.25rem;
}

.founder-bio {
	grid-column: 1;
	grid-row: 2;
}

.founder-photo {
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	object-fit: cover;
	border: 2px solid rgba(56, 189, 248, 0.7);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.9);
	margin-bottom: 0.75rem;
/*	filter: grayscale(100%);
	transition: filter 0.2s ease-out;*/
}
/*
.founder-photo:hover {
	filter: grayscale(0%);
}
*/
.founder-name {
	font-weight: 600;
	font-size: 1.1rem;
	margin-top: 0;
}

.founder-bio p {
	margin-top: 0.7rem;
}

/* card-ul din dreapta: "Areas of expertise" */
.founder-card {
	grid-column: 2;
	grid-row: 2;
	align-self: start;
	margin-top: 0;
}

.founder-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.founder-card li {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	font-size: 0.9rem;
}

.founder-card li span:first-child {
	font-weight: 500;
}

.founder-card li span:last-child {
	color: var(--muted);
}

/* Contact */
.contact {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
	gap: 2.4rem;
	align-items: flex-start;
}

.contact-text p {
	max-width: 30rem;
}

.contact-card {
	border-radius: var(--radius-lg);
	padding: 1.8rem 1.6rem 1.7rem;
	background:
		radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 55%),
		radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.2), transparent 55%),
		rgba(15, 23, 42, 0.97);
	border: 1px solid rgba(56, 189, 248, 0.6);
	box-shadow: var(--shadow-card);
}

.contact-card h3 {
	margin-top: 0;
	margin-bottom: 1rem;
}

.contact-list {
	list-style: none;
	margin: 0 0 1.3rem;
	padding: 0;
	display: grid;
	gap: 0.7rem;
	font-size: 0.9rem;
}

.contact-list .label {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	margin-bottom: 0.1rem;
}

.contact-list a {
	color: var(--accent);
	text-decoration: none;
}

.contact-list a:hover {
	text-decoration: underline;
}

.contact-actions {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 0.5rem;
}

.contact-form {
	margin-top: 1.4rem;
	display: grid;
	gap: 0.8rem;
}

.form-row {
	display: grid;
	gap: 0.35rem;
}

.form-row label {
	font-size: 0.85rem;
	color: var(--muted);
}

.form-row input,
.form-row textarea {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: rgba(2, 6, 23, 0.7);
	color: var(--text);
	font-family: inherit;
	font-size: 0.95rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.form-row input:focus,
.form-row textarea:focus {
	outline: 2px solid var(--accent);
	outline-offset: 1px;
	border-color: var(--accent);
}

.form-row textarea {
	resize: vertical;
	min-height: 120px;
}

/* Turnstile (anti-spam) */
.cf-turnstile {
	margin-top: 0.25rem;
}

.form-actions {
	display: grid;
	gap: 0.5rem;
}

.form-status {
	margin: 0;
	font-size: 0.85rem;
	color: var(--muted);
	min-height: 1.2rem;
}

.form-status.success {
	color: #22c55e;
}

.form-status.error {
	color: var(--danger);
}


.form-row-inline {
	margin-top: 0.65rem;
}

/* Consent / GDPR checkbox row */
.checkbox {
	display: grid;
	grid-template-columns: 18px 1fr;
	align-items: start;
	column-gap: 0.6rem;
	width: 100%;
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.4;
	cursor: pointer;
}

.checkbox input {
	margin-top: 0.2rem;
	width: 16px;
	height: 16px;
	accent-color: var(--accent-strong);
}

.checkbox-text {
	display: block;
	min-width: 0;
	line-height: 1.35;
	white-space: normal;
}

.checkbox-text span {
	display: inline;
}

.checkbox-link {
	color: var(--accent);
	text-decoration: none;
}

.checkbox-link:hover,
.checkbox-link:focus-visible {
	text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	z-index: 60;
	background: rgba(15, 23, 42, 0.55);
	opacity: 0;
	pointer-events: none;
	transform: translateY(16px);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.cookie-banner.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.cookie-banner__content {
	width: min(920px, 100%);
	background: rgba(2, 6, 23, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 12px;
	padding: 1.75rem 2rem;
	box-shadow: 0 30px 70px rgba(15, 23, 42, 0.6);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: var(--text);
}

.cookie-banner__content p {
	margin: 0;
	line-height: 1.55;
	color: var(--muted);
}

.cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.cookie-banner .btn {
	padding: 0.55rem 1.4rem;
	font-size: 0.9rem;
	border-radius: 8px;
	font-weight: 600;
}

.cookie-banner .btn-outline {
	background: rgba(15, 23, 42, 0.85);
	border-color: rgba(148, 163, 184, 0.6);
	color: var(--text);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
}

.cookie-banner .btn-outline:hover {
	border-color: rgba(100, 116, 139, 0.9);
}

.cookie-banner .btn-primary {
	background: linear-gradient(135deg, var(--accent-strong), #22c55e);
	border-color: rgba(56, 189, 248, 0.6);
	color: #0b1120;
	box-shadow: 0 12px 24px rgba(56, 189, 248, 0.35);
}

.cookie-banner .btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(56, 189, 248, 0.45);
}

@media (min-width: 720px) {
	.cookie-banner__content {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.cookie-banner__actions {
		justify-content: flex-end;
	}
}

/* Footer */
.site-footer {
	border-top: 1px solid rgba(15, 23, 42, 0.9);
	padding: 1.75rem 0 1.5rem;
	background: rgba(2, 6, 23, 0.98);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	font-size: 0.8rem;
	color: var(--muted);
}

.footer-links {
	display: inline-flex;
	gap: 1rem;
	justify-content: center;
}

.footer-links a {
	color: var(--muted);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	padding-bottom: 2px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: var(--text);
	border-bottom-color: rgba(56, 189, 248, 0.6);
	outline: none;
}

.muted {
	color: var(--muted);
}

.small {
	font-size: 0.78rem;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.mobile-menu {
	position: fixed;
	inset: 0;
	background: rgba(2, 6, 23, 0.8);
	backdrop-filter: blur(10px);
	display: none;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 1rem;
	z-index: 45;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu-panel {
	background: rgba(2, 6, 23, 0.98);
	border: 1px solid rgba(31, 41, 55, 0.8);
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
	padding: 1.25rem;
	min-width: min(320px, 90vw);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mobile-nav a {
	color: var(--text);
	text-decoration: none;
	padding: 0.65rem 0.85rem;
	border-radius: 12px;
	border: 1px solid transparent;
	transition: background 0.12s ease, border-color 0.12s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
	background: rgba(31, 41, 55, 0.9);
	border-color: rgba(56, 189, 248, 0.3);
	outline: none;
}

.mobile-cta {
	width: 100%;
	justify-content: center;
}

.mobile-lang {
	display: grid;
	gap: 0.35rem;
}

.mobile-lang-label {
	margin: 0;
	font-size: 0.85rem;
	color: var(--muted);
}

.mobile-lang-options {
	display: flex;
	gap: 0.5rem;
}

.mobile-lang-options button {
	flex: 1 1 0;
	background: rgba(31, 41, 55, 0.75);
	color: var(--text);
	border: 1px solid rgba(56, 189, 248, 0.25);
	border-radius: 12px;
	padding: 0.55rem 0.75rem;
	cursor: pointer;
	font-family: inherit;
}

.mobile-lang-options button:hover,
.mobile-lang-options button:focus-visible,
.mobile-lang-options button.active {
	background: rgba(56, 189, 248, 0.12);
	border-color: rgba(56, 189, 248, 0.6);
	outline: none;
}

/* Responsive */
@media (max-width: 900px) {
	.header-inner {
		gap: 0.6rem;
	}

	.main-nav {
		display: none;
	}

	.header-right {
		gap: 0.5rem;
	}

	.lang-switcher {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.hero-inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-card {
		margin-top: 0.5rem;
	}

	.hero-meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact {
		grid-template-columns: minmax(0, 1fr);
	}

	.founder {
		display: block;
	}

	.founder-intro,
	.founder-bio,
	.founder-card,
	.founder-creds {
		display: block;
		width: 100%;
		box-sizing: border-box;
		margin-bottom: 1.4rem;
	}

	.founder-intro h2 {
		margin-bottom: 1rem;
	}

	.founder-photo {
		display: block;
		width: 110px;
		height: 110px;
		margin: 0 auto 0.75rem;
	}

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

	.footer-inner {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.footer-links {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 1.5rem, 640px);
	}

	.hero {
		padding-top: 4rem;
	}

	.section {
		padding: 3.2rem 0;
	}

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

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

/* LinkedIn muted link in contact card */
.contact-card .contact-list a.muted {
	font-size: 0.9rem;
	color: var(--muted);
	opacity: 0.65;
}

/* ── Tech Stack ─────────────────────────────────────────── */
.stack-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.8rem 2rem;
}

.stack-category-label {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin-bottom: 0.55rem;
}

.stack-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.stack-badge {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--text);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.28rem 0.62rem;
	white-space: nowrap;
}

/* ── Availability badge ─────────────────────────────────── */
@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.4); }
}

.availability-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.84rem;
	font-weight: 500;
	color: #86efac;
	background: rgba(34, 197, 94, 0.07);
	border: 1px solid rgba(34, 197, 94, 0.25);
	border-radius: 999px;
	padding: 0.32rem 0.85rem 0.32rem 0.6rem;
	margin-top: 0.9rem;
	width: fit-content;
}

.availability-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
	animation: pulse-dot 2.2s ease-in-out infinite;
}

.availability-types {
	color: var(--muted);
	font-size: 0.78rem;
	margin-top: 0.35rem;
}

/* ── Founder credentials ────────────────────────────────── */
.founder-creds {
	grid-column: 2;
	grid-row: 3;
	margin-top: 1rem;
}

.founder-creds h4 {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin: 0 0 0.9rem 0;
}

.creds-group {
	margin-bottom: 1rem;
}

.creds-group-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
}

.creds-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.creds-list li {
	font-size: 0.88rem;
	color: var(--text);
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
}

.creds-list li::before {
	content: "›";
	color: var(--accent);
	flex-shrink: 0;
	font-weight: 600;
	line-height: 1.4;
}

/* Honeypot field - hidden from users, visible to bots */
input[name="_gotcha"] { display: none; }
