/* =====================================================================
   Páginas informativas / legales — "Geniestudio — airy daylight studio"
   Same system as styles.css: pale sky-blue canvas, bone-white cards,
   dark charcoal buttons, one vivid iris-blue accent. Long-form readable
   legal typography on dark ink over light.
   ===================================================================== */

/* --- Tipografías alojadas localmente (subconjunto latino) — sin peticiones externas --- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/spacegrotesk-400.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/spacegrotesk-500.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/spacegrotesk-600.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/jetbrainsmono-400.woff2') format('woff2'); }

:root {
	--sky: #ebf5ff;
	--paper: #ffffff;
	--bone: #fafdff;
	--mist: #f6f7f8;
	--ink: #0a0d12;
	--charcoal: #181d27;
	--charcoal-2: #0b0b0b;
	--graphite: #535862;
	--fog: #93979f;
	--iris: #0069e0;
	--iris-2: #0099ff;
	--white: #ffffff;
	--powder: #cce7ff;
	--lavender: #f1e6ff;
	--hairline: rgba(10, 13, 18, 0.08);
	--hairline-strong: rgba(10, 13, 18, 0.14);

	--font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Space Grotesk', 'Inter', ui-sans-serif, system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

	--container: 880px;
	--r-card: 32px;
	--r-pill: 9999px;
	--btn-ring: 0 1px 2px rgba(10, 13, 18, 0.8), 0 0 0 1px rgb(10, 13, 18);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: -0.01em;
	color: var(--graphite);
	background: var(--sky);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Ambient background layers (same markup as the landing) */
.bg {
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(1000px 600px at 50% -14%, rgba(204, 231, 255, 0.5), transparent 62%),
		radial-gradient(760px 520px at 90% 8%, rgba(241, 230, 255, 0.36), transparent 58%),
		var(--sky);
}
.bg__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(10, 13, 18, 0.03) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(10, 13, 18, 0.03) 1px, transparent 1px);
	background-size: 88px 88px;
	-webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 38%, transparent 85%);
	mask-image: radial-gradient(120% 90% at 50% 0%, #000 38%, transparent 85%);
}
.bg__halo {
	position: absolute;
	top: -8%;
	left: 50%;
	width: 820px;
	height: 500px;
	transform: translateX(-50%);
	background: radial-gradient(60% 100% at 50% 0%, rgba(153, 200, 255, 0.28), transparent 72%);
	opacity: 0.6;
	filter: blur(6px);
}

/* Top navigation */
.topbar { width: 100%; position: relative; z-index: 3; }
.topbar__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 22px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.wordmark { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.wordmark__logo { display: block; height: 32px; width: auto; }
.wordmark__text { font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.pill {
	display: inline-flex;
	align-items: center;
	height: 40px;
	padding: 0 20px;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--charcoal);
	box-shadow: var(--btn-ring);
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.18s ease;
}
.pill:hover { background: var(--charcoal-2); }

/* Content column */
.page-body {
	flex: 1;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 56px 32px 96px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 16px;
	border-radius: var(--r-pill);
	background: var(--powder);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--ink);
	margin-bottom: 20px;
}

h1 {
	font-family: var(--font-display);
	font-size: clamp(34px, 6vw, 56px);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin: 0 0 18px;
	color: var(--ink);
}
h2 {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 64px 0 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--hairline);
}
h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.01em;
	margin: 32px 0 12px;
}
p { margin: 0 0 16px; font-size: 16px; font-weight: 400; color: var(--graphite); }
strong { font-weight: 600; color: var(--ink); }
em { color: var(--ink); font-style: italic; }

a {
	color: var(--iris);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.18s ease;
}
a:hover { color: var(--charcoal-2); }

.date-label {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--graphite);
	background: var(--mist);
	box-shadow: inset 0 0 0 1px var(--hairline);
	padding: 6px 18px;
	border-radius: var(--r-pill);
	margin-bottom: 32px;
}

.note-block {
	font-size: 16px;
	font-weight: 400;
	color: var(--ink);
	background: var(--powder);
	padding: 22px 24px;
	margin: 28px 0 20px;
	border-radius: var(--r-card);
	line-height: 1.6;
}
.note-block strong { color: var(--ink); }

ul.info-list {
	margin: 0 0 18px;
	padding-left: 22px;
	color: var(--graphite);
	font-size: 16px;
	font-weight: 400;
}
ul.info-list li { margin-bottom: 10px; line-height: 1.6; }
ul.info-list li::marker { color: var(--iris); }

.contact-block { margin-bottom: 16px; font-size: 16px; font-weight: 400; color: var(--graphite); }
.contact-block strong { display: block; margin-bottom: 4px; color: var(--ink); }

/* Footer */
.site-footer {
	width: 100%;
	margin-top: auto;
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--hairline);
	padding: 40px 32px;
	text-align: center;
}
ul.nav-links {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
	padding: 0;
	margin: 0 0 18px;
}
ul.nav-links li a {
	color: var(--graphite);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.01em;
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.18s ease;
}
ul.nav-links li a:hover { color: var(--ink); }
.site-footer .copyright { font-size: 14px; font-weight: 500; color: var(--fog); margin: 0; }

@media screen and (max-width: 640px) {
	.topbar__inner { padding: 16px; }
	.page-body { padding: 40px 16px 64px; }
	h2 { margin-top: 48px; }
	.site-footer { padding: 32px 16px; }
}
