/* =====================================================================
   VSL Landing — "Geniestudio — airy daylight studio"
   Built on DESIGN.md (Geniestudio system). A pale sky-blue canvas hosts
   an almost-monochrome interface: bone-white cards, near-black charcoal
   CTA fill as the single dense weight, one vivid iris-blue accent, and
   soft pastel washes used sparingly. Enormous engraved display type.
   ===================================================================== */

/* --- 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 {
	/* Colors — Geniestudio tokens */
	--sky: #ebf5ff;        /* page canvas */
	--paper: #ffffff;      /* pure white / elevated */
	--bone: #fafdff;       /* primary card surface */
	--mist: #f6f7f8;       /* subtle secondary surface */
	--ink: #0a0d12;        /* headings, display type */
	--charcoal: #181d27;   /* filled CTA fill — the dense anchor */
	--charcoal-2: #0b0b0b; /* deepest button press */
	--graphite: #535862;   /* secondary body text */
	--fog: #93979f;        /* muted helper text */
	--iris: #0069e0;       /* vivid accent — links, focus, borders */
	--iris-2: #0099ff;     /* inline highlight */
	--white: #ffffff;

	/* Pastel washes (used sparingly) */
	--lavender: #f1e6ff;
	--mint: #d3f6e3;
	--powder: #cce7ff;
	--solar: #fff2be;
	--peach: #ffd1b8;

	/* Hairlines & borders */
	--hairline: rgba(10, 13, 18, 0.08);
	--hairline-strong: rgba(10, 13, 18, 0.14);
	--border-input: rgba(10, 13, 18, 0.12);

	--error: #c0392b;
	--ok: #0a8f5b;

	/* Typography */
	--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;

	/* Layout */
	--page-max: 1380px;

	/* Radius — Geniestudio */
	--r-card: 32px;
	--r-input: 16px;
	--r-pill: 9999px;

	/* Elevation */
	--elev-card: 0 14px 20px 4px rgba(4, 69, 144, 0.08);
	--elev-soft: 0 8px 20px rgba(4, 69, 144, 0.06);
	--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.5;
	letter-spacing: -0.01em;
	color: var(--graphite);
	background: var(--sky);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

/* ------------------------------------------------ Ambient background layers */
.bg {
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(1100px 640px at 50% -12%, rgba(204, 231, 255, 0.55), transparent 62%),
		radial-gradient(820px 560px at 88% 8%, rgba(241, 230, 255, 0.4), transparent 58%),
		var(--sky);
}
/* Very faint pastel wash — replaces the dark abstract; kept soft */
.bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--bg-image, none);
	background-size: cover;
	background-position: center top;
	opacity: 0.6;
	-webkit-mask-image: radial-gradient(130% 100% at 50% 0%, #000 48%, transparent 100%);
	mask-image: radial-gradient(130% 100% at 50% 0%, #000 48%, transparent 100%);
}
/* Grid removed — clean daylight canvas */
.bg__grid { display: none; }
/* Soft daylight glow instead of the conic halo */
.bg__halo {
	position: absolute;
	top: -8%;
	left: 50%;
	width: 960px;
	height: 560px;
	transform: translateX(-50%);
	background: radial-gradient(60% 100% at 50% 0%, rgba(153, 200, 255, 0.32), transparent 72%);
	opacity: 0.7;
	filter: blur(6px);
}

/* --------------------------------------------------------- Top navigation */
.topbar {
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(235, 245, 255, 0.72);
	backdrop-filter: saturate(150%) blur(12px);
	-webkit-backdrop-filter: saturate(150%) blur(12px);
	border-bottom: 1px solid var(--hairline);
}
.topbar__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 14px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wordmark {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--ink);
}
.wordmark__logo { display: block; height: 34px; width: auto; }
.wordmark__logo {
	padding: 5px;
	border-radius: 12px;
	background: var(--paper);
	box-shadow: 0 2px 10px rgba(4, 69, 144, 0.08);
}
.wordmark__text {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -0.02em;
	color: var(--ink);
}

/* Dark filled pill button — the dense anchor */
.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 42px;
	padding: 0 22px;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--charcoal);
	box-shadow: var(--btn-ring);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}
.pill:hover { background: var(--charcoal-2); }
.pill:active { transform: translateY(1px); }
.pill--solid {
	background: var(--charcoal);
	box-shadow: var(--btn-ring);
	color: var(--white);
}
.pill--solid:hover { background: var(--charcoal-2); }

/* ----------------------------------------------------------------- main */
.main {
	flex: 1;
	width: 100%;
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 40px 32px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Hero eyebrow + headline stack — compact */
.hero-head {
	text-align: center;
	max-width: 720px;
	margin: 4px auto 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.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: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--ink);
}
.hero-title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(34px, 5.2vw, 60px);
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.hero-sub {
	margin: 0;
	max-width: 560px;
	font-size: 17px;
	line-height: 1.5;
	letter-spacing: -0.01em;
	color: var(--graphite);
}

/* Two-column split: FORM left + VIDEO right (desktop) */
.stage {
	width: 100%;
	max-width: var(--page-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	gap: 28px;
}
.stage__form { min-width: 0; }
.stage__media {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	position: sticky;
	top: 92px;
}

/* Video Plate — vertical (4:5) VSL video */
.video {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: 78vh;
	aspect-ratio: 4 / 5;
	background: #000;
	border-radius: var(--r-card);
	box-shadow: var(--elev-card);
	overflow: hidden;
}
.video::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(10, 13, 18, 0.06);
	pointer-events: none;
	z-index: 7;
}
.video__el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	background: #000;
}
/* dark scrim kept for legibility over the video */
.video__overlay {
	position: absolute;
	inset: 0;
	z-index: 6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	cursor: pointer;
	background: radial-gradient(120% 120% at 50% 45%, rgba(5, 6, 15, 0.30), rgba(5, 6, 15, 0.66));
	transition: opacity 0.3s ease, visibility 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}
.video__overlay.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.video__play {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: 0 10px 30px rgba(4, 69, 144, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
}
.video__overlay:hover .video__play { transform: scale(1.06); }
.video__play svg { fill: var(--ink); margin-left: 3px; }
.video__hint { color: #fff; text-align: center; }
.video__hint b { display: block; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.video__hint span { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.78); margin-top: 4px; }

/* Caption under the video */
.caption {
	margin: 0;
	max-width: 480px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--graphite);
}

/* ----------------------------------------------------------------- form */
.form-card {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	background: var(--bone);
	border-radius: var(--r-card);
	box-shadow: var(--elev-card);
	padding: 36px;
}
.form-card__title {
	text-align: left;
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
	color: var(--ink);
}
.form-card__sub {
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	color: var(--graphite);
	margin: 0 0 26px;
}

/* Distintivo informativo bajo el título del formulario */
.form-badge {
	display: block;
	width: fit-content;
	margin: 0 0 24px;
	padding: 6px 16px;
	border-radius: var(--r-pill);
	background: var(--mint);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--ink);
}

.field { margin-bottom: 18px; }
.field__label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--graphite);
	margin: 0 0 8px;
}
.field__input {
	width: 100%;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--border-input);
	border-radius: var(--r-input);
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field__input::placeholder { color: var(--fog); }
.field__input:focus { border-color: var(--iris); box-shadow: 0 0 0 3px rgba(0, 105, 224, 0.14); }

/* Grupo de teléfono con prefijo +34 */
.phone-group {
	display: flex;
	align-items: stretch;
	width: 100%;
	border-radius: var(--r-input);
	background: var(--paper);
	border: 1px solid var(--border-input);
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.phone-group:focus-within { border-color: var(--iris); box-shadow: 0 0 0 3px rgba(0, 105, 224, 0.14); }
.phone-prefix {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 14px;
	border-right: 1px solid var(--border-input);
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	color: var(--ink);
}
.phone-flag { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; display: block; }
.phone-group .field__input { background: transparent; border: 0; border-radius: 0; flex: 1; min-width: 0; }
.phone-group .field__input:focus { box-shadow: none; }

/* Mensajes de validación */
.field__msg {
	display: none;
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--error);
}
.field.has-error .field__msg { display: block; }
.field.has-error .field__input,
.field.has-error .phone-group { border-color: var(--error); box-shadow: none; }
.field.is-valid .field__input,
.field.is-valid .phone-group { border-color: rgba(10, 143, 91, 0.6); box-shadow: none; }

/* Submit — dark charcoal CTA (the single dense weight) */
.btn-submit {
	width: 100%;
	height: 52px;
	margin-top: 8px;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--charcoal);
	box-shadow: var(--btn-ring);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.01em;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.15s ease;
}
.btn-submit:hover { background: var(--charcoal-2); }
.btn-submit:active { transform: translateY(1px); }

/* Casilla de consentimiento (RGPD) */
.consent {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: start;
	margin: 4px 0 18px;
	cursor: pointer;
}
.consent__box {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: var(--charcoal);
	cursor: pointer;
}
.consent__text {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	color: var(--graphite);
}
.consent__text a { color: var(--iris); text-decoration: underline; text-underline-offset: 2px; }
.consent__msg { grid-column: 1 / -1; margin: 0; }
.consent.has-error .consent__msg { display: block; }
.consent.has-error .consent__box { outline: 2px solid var(--error); outline-offset: 1px; border-radius: 3px; }

.disclaimer {
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	color: var(--fog);
	margin: 18px 0 0;
}

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* --------------------------------------------------- Trust / pill-chips row */
.trust {
	width: 100%;
	max-width: var(--page-max);
	margin: 32px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
}
.trust__item {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 9px;
	padding: 8px 16px 8px 8px;
	border-radius: var(--r-pill);
	background: var(--bone);
	box-shadow: inset 0 0 0 1px var(--hairline);
}
.trust__icon {
	width: 28px; height: 28px;
	flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	border-radius: 9999px;
	background: var(--powder);
	color: var(--ink);
}
.trust__icon svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust__label { font-size: 13px; font-weight: 500; color: var(--graphite); line-height: 1.2; white-space: nowrap; }

/* ------------------------------------------- pantalla de agradecimiento */
.thanks-card {
	position: relative;
	width: 100%;
	max-width: 540px;
	margin: 64px auto 0;
	padding: 48px 40px;
	background: var(--bone);
	border-radius: var(--r-card);
	box-shadow: var(--elev-card);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.thanks-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 9999px;
	background: var(--mint);
	color: var(--ok);
}
.thanks-card__icon svg { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.thanks-card__title {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0;
	color: var(--ink);
}
.thanks-card__text { font-size: 16px; line-height: 1.55; color: var(--graphite); margin: 0; }
.thanks-card__hint { font-size: 14px; line-height: 1.5; color: var(--fog); margin: 0; }
.thanks-card .pill { margin-top: 8px; }

/* --------------------------------------------------------------- footer */
.footer {
	width: 100%;
	margin-top: auto;
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--hairline);
}
.footer__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 56px 32px 32px;
}
.footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px 40px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--hairline);
}
.footer__brand { max-width: 40ch; display: flex; flex-direction: column; gap: 10px; }
.footer__brand-head { display: inline-flex; align-items: center; gap: 12px; }
.footer__brand-logo {
	height: 30px;
	width: auto;
	padding: 5px;
	border-radius: 10px;
	background: var(--paper);
	box-shadow: 0 2px 10px rgba(4, 69, 144, 0.08);
}
.footer__brand-name {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--ink);
}
.footer__brand-tagline { margin: 0; font-size: 15px; font-weight: 400; color: var(--fog); line-height: 1.5; }
.footer__nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 0; margin: 0; }
.footer__nav a {
	color: var(--graphite);
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.01em;
	transition: color 0.18s ease;
}
.footer__nav a:hover { color: var(--ink); }

.footer__body {
	display: grid;
	grid-template-columns: minmax(280px, 420px) 1fr;
	gap: 20px;
	padding: 28px 0;
}
.company {
	position: relative;
	padding: 28px;
	border-radius: var(--r-card);
	background: var(--bone);
	box-shadow: inset 0 0 0 1px var(--hairline);
	text-align: left;
	align-self: start;
}
.company__name {
	display: block;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--ink);
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--hairline);
}
.company__grid { margin: 0; display: grid; gap: 14px; }
.company__row { display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: baseline; }
.company__row dt {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fog);
}
.company__row dd { margin: 0; font-size: 15px; font-weight: 400; color: var(--graphite); word-break: break-word; }
.company__row dd a { color: var(--iris); text-decoration: none; transition: color 0.18s ease; }
.company__row dd a:hover { text-decoration: underline; }

.footer__notes { display: grid; gap: 14px; align-content: start; }
.note {
	padding: 24px;
	border-radius: var(--r-card);
	background: var(--bone);
	box-shadow: inset 0 0 0 1px var(--hairline);
	text-align: left;
}
/* Pastel note-blocks — one wash per legal note */
#aviso-legal { background: var(--powder); box-shadow: none; }
#aviso-riesgo { background: var(--peach); box-shadow: none; }
#aviso-informativo { background: var(--lavender); box-shadow: none; }
.note__title {
	display: block;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin-bottom: 8px;
}
.note__text { margin: 0; font-size: 14px; font-weight: 400; line-height: 1.55; color: var(--graphite); }
.footer__cnmv-link {
	display: inline-flex;
	align-items: center;
	margin-top: 14px;
	padding: 10px 18px;
	border-radius: var(--r-pill);
	background: var(--charcoal);
	box-shadow: var(--btn-ring);
	color: var(--white);
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.18s ease;
}
.footer__cnmv-link:hover { background: var(--charcoal-2); }

.footer__risk {
	margin: 28px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--hairline);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--fog);
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 6px 16px;
	padding-top: 28px;
}
.footer__bottom .copyright { margin: 0; font-size: 14px; font-weight: 500; color: var(--graphite); }
.footer__rights { margin: 0; font-size: 14px; font-weight: 400; color: var(--fog); }

/* ------------------------------------------------- aviso de cookies */
.cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 60;
	display: none;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 20px 24px;
	background: var(--paper);
	border-radius: var(--r-card);
	box-shadow: var(--elev-card);
}
.cookie-banner::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px var(--hairline); pointer-events: none; }
.cookie-banner.is-visible { display: flex; }
.cookie-banner__text { flex: 1 1 320px; margin: 0; font-size: 14px; font-weight: 400; line-height: 1.5; color: var(--graphite); }
.cookie-banner__text a { color: var(--iris); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--white);
	background: var(--charcoal);
	box-shadow: var(--btn-ring);
	border: 0;
	padding: 12px 24px;
	border-radius: var(--r-pill);
	cursor: pointer;
	transition: background 0.18s ease;
}
.cookie-btn:hover { background: var(--charcoal-2); }
.cookie-btn--ghost { color: var(--ink); background: var(--mist); box-shadow: inset 0 0 0 1px var(--hairline); }
.cookie-btn--ghost:hover { background: #eceef0; }
@media screen and (max-width: 640px) {
	.cookie-banner__actions { flex: 1 1 100%; }
	.cookie-btn { flex: 1; }
}

/* ------------------------------------------------- modal de contacto */
.modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(10, 13, 18, 0.42);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	-webkit-tap-highlight-color: transparent;
}
.modal.is-open { display: flex; }
.modal__dialog { position: relative; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; margin: 0; }
.modal__dialog .form-card { padding-top: 52px; }
.modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: var(--mist);
	box-shadow: inset 0 0 0 1px var(--hairline);
	color: var(--ink);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease;
}
.modal__close:hover { background: #eceef0; }

/* ----------------------------------------------------------- responsive */
/* Stack the split: VIDEO first, FORM second (<=860px) */
@media (max-width: 860px) {
	.stage {
		grid-template-columns: 1fr;
		max-width: 560px;
		gap: 22px;
	}
	.stage__media {
		position: static;
		top: auto;
		order: -1;
	}
	.video { max-width: 460px; }
	.form-card { max-width: 560px; }
}
@media (max-width: 640px) {
	.topbar__inner { padding: 12px 16px; }
	.main { padding: 24px 16px 88px; }
	.hero-head { margin-bottom: 24px; }
	.stage { gap: 18px; max-width: 460px; }
	.video { max-height: 74vh; }
	.form-card { padding: 26px 20px; }
	.form-card__title { font-size: 26px; }
	.trust { gap: 8px; margin-top: 24px; }
	.footer__inner { padding: 48px 16px 32px; }
	.footer__top { flex-direction: column; gap: 20px; padding-bottom: 24px; }
	.footer__brand { max-width: none; }
	.footer__body { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
	.company { padding: 24px; }
	.company__row { grid-template-columns: 1fr; gap: 2px; }
	.note { padding: 24px; }
}
@media (min-width: 641px) and (max-width: 960px) {
	.footer__body { grid-template-columns: 1fr; }
	.footer__notes { grid-template-columns: 1fr 1fr; }
}
