/* ===========================================================
   JaaS39 — main.css
   Colores derivados de theme.json. Diseño oscuro sovereign.
   =========================================================== */

/* Geist self-hosted (variable font, pesos 100-900 en un archivo). */
@font-face {
	font-family: 'Geist';
	src: url('../fonts/Geist-Variable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* IBM Plex Mono para navbar y botones. */
@font-face {
	font-family: 'IBM Plex Mono';
	src: url('../fonts/IBMPlexMono-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--base: #050607;
	--surface: #111318;
	--surface-2: #181b21;
	--line: #262a31;
	--section-border: #4c4c4c;
	--accent: #6AB4F4;
	--text: #e9eaec;
	--muted: #868a92;

	--mono: 'IBM Plex Mono', ui-monospace, monospace;

	--maxw: 1200px;
	--content: 760px;
	--radius: 4px;
	--pad-x: clamp(1.25rem, 5vw, 4rem);
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--base);
	color: var(--text);
	font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 400; margin: 0; }

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

/* Corner brackets: pequeñas escuadras en las 4 esquinas de un contenedor,
   como en el diseño. Se aplica a .bracketed (posición relativa requerida). */
.bracketed { position: relative; }
.bracketed::before,
.bracketed::after {
	content: "";
	position: absolute;
	width: 10px; height: 10px;
	border-color: var(--line);
	border-style: solid;
	pointer-events: none;
}
.bracketed::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.bracketed::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
/* Variante con escuadras en las 4 esquinas usando el contenedor + un hijo .corners */
.corners span {
	position: absolute; width: 10px; height: 10px; border-color: var(--line); border-style: solid; pointer-events: none;
}
.corners .tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.corners .tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.corners .bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.corners .br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.skip-link:focus {
	position: fixed; top: 1rem; left: 1rem; width: auto; height: auto; clip: auto;
	background: var(--accent); color: #fff; padding: .5rem 1rem; border-radius: 6px; z-index: 999;
}

/* ---------- Layout helpers ---------- */
.site-main > section {
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
	padding-block: clamp(4rem, 9vw, 8rem);
	max-width: var(--maxw);
	margin-inline: auto;
	/* borde envolvente: izquierda, derecha y abajo. El de arriba lo aporta
	   el borde inferior de la sección anterior, evitando líneas dobles. */
	border-left: 1px solid var(--section-border);
	border-right: 1px solid var(--section-border);
	border-bottom: 1px solid var(--section-border);
}
.eyebrow {
	font-family: var(--mono); font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: .72rem;
	color: var(--muted);
	margin: 0 0 1rem;
}
.eyebrow::before { content: "[ "; color: var(--accent); }
.eyebrow::after  { content: " ]"; color: var(--accent); }
.section__head { margin-bottom: 3rem; }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: color-mix(in srgb, var(--base) 88%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--section-border);
}
.site-header__inner {
	max-width: var(--maxw); margin-inline: auto;
	display: flex; align-items: stretch;
	padding: 0 var(--pad-x);
	min-height: 64px;
}
.site-header__brand {
	display: flex; align-items: center;
	margin-right: auto;
}
.site-header__brand img { display: block; height: 26px; width: auto; }

/* Nav: cada opción es una celda con divisoria vertical, como en el diseño. */
.site-nav { display: flex; align-items: stretch; }
.site-nav__list {
	list-style: none; display: flex; align-items: stretch; margin: 0; padding: 0;
}
.site-nav__list li { display: flex; }
.site-nav__list a {
	display: flex; align-items: center;
	padding: 0 1.6rem;
	font-family: var(--mono); font-weight: 400;
	font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
	color: var(--muted);
	border-left: 1px solid var(--section-border);
	transition: color .2s, background .2s;
}
.site-nav__list a:hover { color: var(--text); background: color-mix(in srgb, var(--text) 4%, transparent); }

/* CTA Contact en blanco, también como celda a la derecha del todo. */
.site-header__cta {
	display: flex; align-items: center;
	padding: 0 1.6rem;
	font-family: var(--mono); font-weight: 400;
	font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
	background: #f2f3f5; color: #0a0b0d;
	border-left: 1px solid var(--section-border);
	transition: background .2s;
}
.site-header__cta:hover { background: #fff; color: #0a0b0d; }
.site-nav__toggle { display: none; }

/* La primera sección necesita también el borde superior (no hay sección previa que lo aporte). */
.site-main > section:first-child { border-top: 1px solid var(--section-border); }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
/* El video ocupa la parte derecha del hero, desplazado para dejar limpio el texto.
   En desktop empieza al 40% del ancho, mostrando más video y despejando la izquierda. */
.hero__media { position: absolute; inset: 0; z-index: 0; }
@media (min-width: 900px) {
	.hero__media { left: 40%; }
}
/* Video en cover. */
.hero__video {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
}
/* Gradiente pegado al borde IZQUIERDO del video (donde empieza el media),
   para difuminar el corte vertical. Va dentro del media, así el 0% coincide
   exactamente con el inicio del video. */
.hero__media::before {
	content: "";
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		linear-gradient(90deg, #050607 0%, color-mix(in srgb, #050607 60%, transparent) 12%, transparent 35%),
		linear-gradient(0deg, #050607 0%, transparent 30%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__inner {
	position: relative; z-index: 1;
	max-width: 640px;
	width: 100%;
	margin-right: auto;
}
.hero__title {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	margin-bottom: 1.5rem;
}
.hero__lead { color: var(--muted); font-size: .95rem; max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ---------- Botones ---------- */
.btn {
	display: inline-flex; align-items: center; gap: .7rem;
	padding: .95rem 1.6rem; border-radius: 0;
	font-family: var(--mono); font-weight: 400;
	font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
	transition: background .2s, border-color .2s, color .2s;
}
.btn--primary { background: #f2f3f5; color: #0a0b0d; border: 1px solid #f2f3f5; }
.btn--primary:hover { background: #fff; border-color: #fff; }
.btn--ghost { background: transparent; border: 1px solid var(--section-border); color: var(--muted); }
.btn--ghost:hover { border-color: var(--text); color: var(--text); }

/* ---------- Diagrama ---------- */
/* La sección quita su padding inferior para que el marquee quede pegado al borde. */
.diagram { padding-bottom: 0 !important; overflow: hidden; }
.diagram__wrap {
	position: relative;
	padding: 0 clamp(1rem, 3vw, 3rem);
}
.diagram__svg { width: 100%; height: auto; display: block; overflow: visible; }
.node {
	position: relative;
	background: color-mix(in srgb, #0d1420 55%, transparent);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 1rem 1.1rem;
	display: flex; flex-direction: column; gap: .35rem;
	height: 100%;
	box-shadow: 0 0 40px color-mix(in srgb, var(--accent) 8%, transparent);
}
/* punto indicador en la esquina superior derecha */
.node__dot {
	position: absolute; top: 1rem; right: 1.1rem;
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 8px var(--accent);
}
.node__dot--green { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.node--green { border-color: color-mix(in srgb, #4ade80 40%, var(--line)); }
.node__eyebrow {
	font-family: var(--mono); font-weight: 400;
	font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted);
}
.node__title { font-weight: 500; font-size: 1.15rem; color: var(--text); margin-top: .15rem; }
.node__meta {
	font-family: var(--mono); font-weight: 400;
	font-size: .9rem; color: var(--muted); line-height: 1.4; margin-top: .35rem;
}

/* Labels bajo el diagrama */
.diagram__labels { display: flex; gap: 2rem; margin-top: 1.5rem; padding: 0 clamp(1rem, 3vw, 3rem); }
.diagram__label {
	font-family: var(--mono); font-weight: 400;
	font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
}
.diagram__label--live { color: var(--accent); }
.diagram__label--muted { color: var(--muted); }

/* Marquee: cinta de etiquetas (texto real) al 100% del contenedor.
   Márgenes negativos para romper el padding lateral de la sección. */
.diagram__marquee {
	margin-top: 2.5rem;
	margin-inline: calc(var(--pad-x) * -1);
	border-top: 1px solid var(--section-border);
	border-bottom: 1px solid var(--section-border);
	overflow: hidden;
	position: relative;
	width: calc(100% + var(--pad-x) * 2);
}
.diagram__marquee-track {
	display: flex;
	width: max-content;
	animation: marquee-scroll 60s linear infinite;
}
.marquee__item {
	display: inline-flex; align-items: center;
	height: 48px; padding: 0 2rem;
	white-space: nowrap;
	font-family: var(--mono); font-weight: 400;
	font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
	color: #5A646E;
	border-right: 1px solid color-mix(in srgb, #EBF2F8 10%, transparent);
}
.marquee__plus { color: var(--accent); margin-right: .75rem; }
@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.diagram__marquee-track { animation: none; }
}

/* ---------- Shift ---------- */
.site-main > section.shift {
	position: relative;
	overflow: hidden;
	/* padding inferior amplio para dar aire a la imagen de fondo del gráfico */
	padding-bottom: max(190px, 11.25vw);
}
/* Imagen de fondo alineada al bottom, semitransparente, detrás del contenido. */
.shift::after {
	content: "";
	position: absolute;
	right: 0; bottom: 0;
	width: min(1000px, 85%);
	aspect-ratio: 1278 / 566;
	background: url('../img/bg-theshift.png') no-repeat right bottom / contain;
	opacity: .6;
	pointer-events: none;
	z-index: 0;
	-webkit-mask-image: linear-gradient(to top, #000 55%, transparent 100%),
	                    linear-gradient(to left, #000 70%, transparent 100%);
	-webkit-mask-composite: source-in;
	        mask-image: linear-gradient(to top, #000 55%, transparent 100%),
	                    linear-gradient(to left, #000 70%, transparent 100%);
	        mask-composite: intersect;
}
/* El contenido de la sección por encima de la imagen. */
.shift > * { position: relative; z-index: 1; }

/* Lista sin contenedor: filas separadas solo por una línea inferior. */
.shift__list { list-style: none; margin: 0 0 3rem; padding: 0; }
.shift__item {
	display: flex; gap: 1.5rem; align-items: center;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--line);
}
.shift__item:first-child { border-top: 1px solid var(--line); }
.shift__icon { width: 42px; height: 42px; flex: none; display: block; }
.shift__text { margin: 0; font-size: .95rem; color: var(--text); }
.shift__lead { color: var(--accent); }

.shift__body {
	color: var(--muted);
	max-width: 34ch;
	font-size: 24px; line-height: 1.5;
}
.shift__quote {
	margin: 2.5rem 0 0; padding: 1.2rem 1.5rem;
	border: 1px solid var(--accent);
	border-radius: 0; background: transparent;
	font-size: .95rem; color: var(--text);
}

/* ---------- Infraestructura ---------- */
.infra__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.infra__col { background: var(--base); padding: 1.75rem 1.5rem; }
.infra__num {
	font-family: var(--mono); font-weight: 400;
	font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
	color: var(--muted); margin: 0 0 1rem;
}
.infra__h { font-size: 1.05rem; margin-bottom: 1.1rem; }
/* Línea corta celeste bajo cada título. */
.infra__h::after {
	content: ""; display: block;
	width: 30px; height: 2px; background: var(--accent);
	margin-top: .9rem;
}
.infra__body { font-size: .85rem; color: var(--muted); }

/* ---------- Cost of inaction ---------- */
.inaction__title { margin-bottom: 3rem; }
.inaction__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.card__region {
	font-family: var(--mono); font-weight: 400;
	font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
	color: var(--accent); margin: 0 0 1rem;
}
.card__h { font-size: 1.1rem; margin-bottom: 1rem; }
.card__body { font-size: .85rem; color: var(--muted); }
.card__foot { font-size: .82rem; color: var(--text); margin-top: 1.25rem; border-top: 1px solid var(--line); padding-top: 1rem; }

/* ---------- Split (imagen + texto) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__img {
	width: 100%; height: 100%;
	min-height: 360px; max-height: 480px;
	object-fit: cover;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	display: block;
}
.split__body p { color: var(--muted); font-size: .92rem; }
.split__body .section__title { margin-block: 1rem 1.25rem; }

/* ---------- About Us ---------- */
.about__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
}
.about__col { color: #8B97A3; font-size: 1rem; line-height: 1.7; margin: 0; }

/* ---------- Cryptographic Modules ---------- */
.crypto {
	position: relative;
	overflow: hidden;
}
/* Imagen del cubo como fondo, alineada a la derecha, contenida (no expandida). */
.crypto::after {
	content: "";
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: min(720px, 62%);
	background: url('../img/bg-crypto.png') no-repeat right center / contain;
	pointer-events: none;
	z-index: 0;
}
.crypto .eyebrow { position: relative; z-index: 2; margin-bottom: 1.5rem; }

/* Panel con blur que contiene el texto, sobre la mitad izquierda. */
.crypto__panel {
	position: relative; z-index: 2;
	max-width: 620px;
	padding: 2.5rem;
	background: color-mix(in srgb, var(--base) 55%, transparent);
	border: 1px solid var(--section-border);
	-webkit-backdrop-filter: blur(12px);
	        backdrop-filter: blur(12px);
}
.crypto__panel .section__title { margin-bottom: 1.5rem; }
.crypto__body { color: var(--muted); font-size: .92rem; margin: 0 0 1.25rem; }
.crypto__pull {
	font-size: 28px; line-height: 1.35;
	color: var(--text); margin: 1.75rem 0 0;
}

/* ---------- Reasons ---------- */
/* Lista sin contenedor: items separados por línea inferior. */
.reasons__list { list-style: none; margin: 0; padding: 0; }
.reasons__item {
	display: flex; gap: 1.5rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--line);
}
.reasons__item:first-child { border-top: 1px solid var(--line); }
.reasons__check { width: 42px; height: 42px; flex: none; display: block; margin-top: .1rem; }
.reasons__h { font-size: 1rem; margin-bottom: .7rem; color: var(--text); }
.reasons__body { font-size: .85rem; color: #8B97A3; margin: 0 0 .8rem; max-width: 90ch; }
.reasons__foot { font-size: .84rem; color: var(--text); }
.reasons__mail {
	display: inline-block; margin-top: 2rem;
	font-family: var(--mono); font-weight: 400;
	color: var(--accent); font-size: .9rem; border-bottom: 1px solid var(--accent);
}

/* ---------- Contact ---------- */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.contact__intro .section__title { margin-bottom: 2rem; }
.contact__lead { color: #8B97A3; max-width: 42ch; margin: 0 0 1.5rem; }
.contact__mail {
	display: inline-block;
	font-family: var(--mono); font-weight: 400;
	color: var(--accent); border-bottom: 1px solid var(--accent); font-size: .95rem;
}

/* Formulario: grilla de 2 columnas, campos separados por líneas (borde). */
.contact__form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--section-border);
}
.contact__field {
	display: flex; flex-direction: column;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--section-border);
}
/* línea vertical entre las dos columnas (campos impares) */
.contact__field:nth-child(odd) { border-right: 1px solid var(--section-border); }
.contact__field.contact__field--full { grid-column: 1 / -1; border-right: 0; min-height: 160px; }
.contact__field label {
	font-family: var(--mono); font-weight: 400;
	font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
	color: var(--muted); margin-bottom: .75rem;
}
.contact__field .req { color: var(--accent); }
.contact__form input,
.contact__form textarea {
	width: 100%; background: transparent; border: 0; padding: 0;
	color: var(--text); font: inherit; font-size: .95rem; resize: none;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--muted); opacity: .7; }
.contact__form input:focus,
.contact__form textarea:focus { outline: none; }
.contact__form textarea { flex: 1; }

/* Botón submit full-width, blanco. */
.contact__submit {
	grid-column: 1 / -1;
	padding: 1.1rem;
	background: #f2f3f5; color: #0a0b0d; border: 0; cursor: pointer;
	font-family: var(--mono); font-weight: 400;
	font-size: .8rem; text-transform: uppercase; letter-spacing: .14em;
	transition: background .2s;
}
.contact__submit:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 2.5rem var(--pad-x); }
.site-footer__inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.site-footer__brand { display: inline-flex; align-items: center; }
.site-footer__brand img { display: block; height: 24px; width: auto; }
.site-footer__nav { display: flex; gap: 1.5rem; font-size: .8rem; color: var(--muted); }
.site-footer__nav a:hover { color: var(--text); }
.site-footer__copy { margin-left: auto; font-size: .78rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.infra__grid { grid-template-columns: 1fr; }
	.inaction__grid, .split, .split--reverse { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 0; }
	.crypto::after { width: 100%; opacity: .25; }
	.crypto__panel { max-width: none; padding: 1.75rem; }
	.crypto__pull { font-size: 22px; }
	.contact__grid { grid-template-columns: 1fr; }
	.about__cols { grid-template-columns: 1fr; gap: 1.5rem; }
	/* Diagrama: en pantallas chicas permite scroll horizontal para no perder legibilidad */
	.diagram__wrap { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
	.diagram__svg { min-width: 900px; }
	.diagram__labels { flex-wrap: wrap; gap: 1rem; }
	.site-nav, .site-header__cta { display: none; }
	.site-nav__toggle {
		display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto;
		background: none; border: 0; cursor: pointer; padding: .4rem;
	}
	.site-nav__toggle span { width: 22px; height: 2px; background: var(--text); }
	.site-nav.is-open {
		display: block; position: absolute; top: 100%; left: 0; right: 0;
		background: var(--base); border-bottom: 1px solid var(--line); margin: 0; padding: 1rem var(--pad-x);
	}
	.site-nav.is-open .site-nav__list { flex-direction: column; gap: 1rem; }
}

/* ---------- Accesibilidad ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero__video { display: none; }
}

/* ===========================================================
   Añadidos para preview HTML (placeholders + formulario)
   =========================================================== */

/* Placeholder del hero mientras no hay video */
.hero__placeholder {
	position: absolute; inset: 0;
	background:
		radial-gradient(120% 120% at 75% 40%, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 55%),
		linear-gradient(135deg, #0e1420 0%, #0a0c12 60%);
}

/* Placeholders de imagen en secciones split */
.split__placeholder {
	aspect-ratio: 4 / 3;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #141822 0%, #0d1017 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}

/* Footer legal */
.site-footer__legal {
	max-width: var(--maxw); margin: 1.5rem auto 0; padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	font-size: .72rem; color: var(--muted); line-height: 1.6;
}

/* ===========================================================
   Compatibilidad con Contact Form 7
   =========================================================== */
.contact__form .wpcf7-form-control-wrap { display: block; width: 100%; }
.contact__form .wpcf7-form-control {
	width: 100%; background: transparent; border: 0; padding: 0;
	color: var(--text); font: inherit; font-size: .95rem; resize: none;
}
.contact__form textarea.wpcf7-form-control { min-height: 90px; }
.contact__form .wpcf7-form-control::placeholder { color: var(--muted); opacity: .7; }
.contact__form .wpcf7-form-control:focus { outline: none; }
.contact__form input.contact__submit {
	grid-column: 1 / -1; padding: 1.1rem;
	background: #f2f3f5; color: #0a0b0d; border: 0; cursor: pointer;
	font-family: var(--mono); font-weight: 400;
	font-size: .8rem; text-transform: uppercase; letter-spacing: .14em;
	transition: background .2s;
}
.contact__form input.contact__submit:hover { background: #fff; }
.contact__form .wpcf7-not-valid-tip { color: #ff6b6b; font-size: .72rem; margin-top: .35rem; font-family: var(--mono); }
.contact__form .wpcf7-response-output {
	grid-column: 1 / -1; margin: 0; padding: 1rem 1.5rem;
	border-top: 1px solid var(--section-border);
	font-family: var(--mono); font-size: .78rem; color: var(--muted);
}
.contact__form p { margin: 0; display: contents; }
