/* ─── Fonts (self-hosted) ──────────────────────────────────── */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/montserrat-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/montserrat-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/montserrat-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/montserrat-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/montserrat-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 900; font-display: swap; src: url('fonts/montserrat-latin-900-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/jetbrains-mono-latin-600-normal.woff2') format('woff2'); }

/* ─── CSS Variables ────────────────────────────────────────── */
:root {
	--color-black:     #000000;
	--color-white:     #ffffff;
	--color-cream:     #fcfcf7;
	--color-blue:      #183fd9;
	--color-secondary: #6f7790;
	--color-border:    #e7e7f1;
	--color-red:       #eb2a23;
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: #fcfcf7;
	color: #000000;
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ─── Custom cursor ───────────────────────────────────────── */
body.custom-cursor-active *,
body.custom-cursor-active *::before,
body.custom-cursor-active *::after { cursor: none !important; }

.custom-cursor {
	position: fixed;
	width: 12px;
	height: 12px;
	background-color: #eb2a23;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999;
	top: 0;
	left: 0;
	transition: transform 0.1s ease;
}
.line-container { position: fixed; inset: 0; pointer-events: none; z-index: 9998; overflow: hidden; }
.line { position: absolute; height: 2px; background-color: #eb2a23; transform-origin: 0 50%; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── Layout helpers ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 45px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } }

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid #183fd9; outline-offset: 2px; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	background: #000000; color: #ffffff; border: 1px solid #000000;
	padding: 14px 24px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
	font-weight: 500; text-transform: uppercase; letter-spacing: 0.66px;
	border-radius: 0; text-decoration: none; transition: background 0.25s ease, border-color 0.25s ease;
	min-height: 44px; cursor: pointer;
}
.btn-primary:hover { background: #183fd9; border-color: #183fd9; }
.btn-primary:focus-visible { outline: 2px solid #183fd9; outline-offset: 2px; }

/* ═══════════════════════════════════════════════════════════════
   Brand header
   ═══════════════════════════════════════════════════════════════ */
.brand-header { padding: 32px 0 0; }
.wordmark {
	font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 600;
	color: #000000; text-decoration: none; letter-spacing: -0.3px;
}
.wordmark-accent { color: #183fd9; }

/* ═══════════════════════════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════════════════════════ */
main { flex: 1; display: flex; }
.hero { position: relative; background-color: #fcfcf7; padding: 72px 0 96px; overflow: hidden; display: flex; align-items: center; width: 100%; }
.hero-texture {
	position: absolute; top: 0; right: 0; width: 55%; height: 100%;
	pointer-events: none; z-index: 0;
	background-image:
		radial-gradient(ellipse 90% 80% at 100% 10%, rgba(24,63,217,0.18) 0%, transparent 65%),
		url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14'><circle cx='7' cy='7' r='2' fill='%23183fd9' fill-opacity='0.55'/></svg>");
	background-repeat: no-repeat, repeat;
	mix-blend-mode: multiply;
	opacity: 0.55;
}

.hero-inner {
	position: relative; z-index: 3;
	display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}

.eyebrow {
	display: flex; align-items: center; gap: 6px;
	font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500;
	text-transform: uppercase; letter-spacing: 1.5px; color: #000000; margin-bottom: 28px;
}
.eyebrow .crumb-dot { color: #eb2a23; font-size: 18px; line-height: 1; }

.tagline {
	font-family: 'Montserrat', sans-serif; font-size: clamp(34px, 3.8vw, 52px);
	line-height: 1.06; letter-spacing: -1px; color: #000000; max-width: 620px; margin-bottom: 28px;
}
.tagline strong { font-weight: 800; }
.tagline-connector { font-weight: 300; }
.tagline em { font-style: italic; font-weight: 700; color: #183fd9; }

.what-we-do {
	font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.7;
	color: #6f7790; max-width: 480px;
}

/* ─── Form card ──────────────────────────────────────────────── */
.form-side { position: relative; z-index: 3; }
.form-card {
	background: #ffffff; border: 1px solid #e7e7f1; padding: 40px 36px; max-width: 440px;
	margin-left: auto;
}
.form-card h2 {
	font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700;
	line-height: 1.4; color: #000000; margin-bottom: 8px;
}
.required-note { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #eb2a23; text-align: right; margin-bottom: 20px; }

.field-group { margin-bottom: 20px; }
.field-group label {
	display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.5px; color: #6f7790; margin-bottom: 8px;
}
.field-group label .asterisk { color: #eb2a23; margin-left: 2px; }

.field-group input {
	width: 100%; padding: 12px 14px; background: #ffffff; border: 1px solid #e7e7f1;
	border-radius: 0; font-family: 'Inter', sans-serif; font-size: 15px; color: #000000;
	outline: none; transition: border-color 0.2s ease;
}
.field-group input::placeholder { color: #a3a8ba; }
.field-group input:focus { border-color: #183fd9; }

#mce-responses .response { font-family: 'Inter', sans-serif; font-size: 13px; margin-bottom: 16px; }
#mce-error-response { color: #c0392b; }
#mce-success-response { color: #16794f; }

.form-submit { width: 100%; margin-top: 4px; }

@media (max-width: 900px) {
	.hero-inner { grid-template-columns: 1fr; gap: 48px; }
	.hero-texture { width: 100%; opacity: 0.2; }
	.form-card { margin-left: 0; max-width: 100%; }
}
@media (max-width: 600px) {
	.hero { padding: 48px 0 64px; }
	.form-card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */
.brand-footer { border-top: 1px solid #e7e7f1; padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.copyright, .footer-suite { font-family: 'Inter', sans-serif; font-size: 12px; color: #6f7790; }

.footer-legal-links { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 12px; }
.footer-legal-links a { color: #6f7790; text-decoration: none; transition: color 0.2s ease; }
.footer-legal-links a:hover { color: #183fd9; }
.footer-legal-links span { color: #e7e7f1; }

/* ═══════════════════════════════════════════════════════════════
   Legal pages (Imprint / Privacy Policy)
   ═══════════════════════════════════════════════════════════════ */
.legal-main { padding: 64px 0 120px; }
.legal-content { max-width: 720px; }
.legal-content h1 {
	font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 4vw, 44px); font-weight: 700;
	letter-spacing: -0.5px; color: #000000; margin-bottom: 48px;
}
.legal-content h2 {
	font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700;
	color: #000000; margin-top: 40px; margin-bottom: 12px;
}
.legal-content h3 {
	font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600;
	color: #000000; margin-top: 28px; margin-bottom: 10px;
}
.legal-content p {
	font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.75; color: #4f5566;
}
.legal-content a { color: #183fd9; }
.legal-content h2:first-of-type { margin-top: 0; }
