/* ============================================================
   © MORGANE JACQUET morganejacquet.com
   No framework, designed and hand-coded.
   All rights reserved.
   ============================================================ */

@font-face {
	font-family: "Bricolage Grotesque";
	src: url("../fonts/bricolage-grotesque-latin.woff2") format("woff2");
	font-weight: 200 800;
	font-stretch: 75% 100%;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "JetBrains Mono";
	src: url("../fonts/jetbrains-mono-latin.woff2") format("woff2");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--paper:      #E9EFF4;
	--paper-2:    #F4F8FB;
	--ink:        #08131F;
	--slate:      #435463;
	--faint:      #7d8d9b;
	--line:       rgba(8,19,31,.14);
	--line-2:     rgba(8,19,31,.28);
	--blue:       #1596D6;
	--blue-deep:  #0A5E88;

	--grot: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
	--mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		repeating-linear-gradient(0deg, transparent 0 95px, rgba(8,19,31,.045) 95px 96px),
		repeating-linear-gradient(90deg, transparent 0 95px, rgba(8,19,31,.045) 95px 96px);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; }
h1, h2, h3, p, figure, blockquote { margin: 0; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.tag {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--blue-deep);
}
.hl { font-family: var(--grot); font-weight: 700; color: var(--blue-deep); }

.gauge {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: var(--blue);
	z-index: 90;
}

.preheader { background: var(--ink); color: #dfe8ef; border-bottom: 1px solid rgba(255,255,255,.10); }
.preheader .inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 10px clamp(20px, 5vw, 56px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
}
.preheader .glyph { color: var(--blue); flex: none; opacity: .85; }
.preheader .msg { font-size: clamp(.82rem, 1.7vw, 1rem); letter-spacing: .04em; font-style: italic; line-height: 1.45; color: #e7eef4; }
@media (max-width: 520px) { .preheader .glyph { display: none; } }

.bar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(233,239,244,.85);
	backdrop-filter: saturate(150%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s ease, box-shadow .25s ease;
}
.bar.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(8,19,31,.06); }
.bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 64px; }
.logo { font-family: var(--grot); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; display: inline-flex; align-items: baseline; gap: 9px; white-space: nowrap; }
.logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); display: inline-block; align-self: center; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px); }
.nav a {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--slate);
	transition: color .16s;
}
.nav a:hover { color: var(--blue-deep); }

.bar-right { display: flex; align-items: center; gap: 24px; }
.bar-cta {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--blue-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
	transition: color .16s;
}
.bar-cta:hover { color: var(--blue); }
@media (max-width: 560px) { .bar-cta { display: none; } }

.switch { display: inline-flex; border: 1px solid var(--line-2); border-radius: 2px; overflow: hidden; font-size: .72rem; font-weight: 600; }
.switch a, .switch span { padding: 7px 12px; color: var(--faint); letter-spacing: .08em; transition: background .15s, color .15s; }
.switch a { cursor: pointer; }
.switch a:hover { color: var(--ink); }
.switch .on { background: var(--ink); color: var(--paper); }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 2px; position: relative; flex: none; }
.burger i { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform .22s ease, opacity .22s ease; }
.burger i:nth-child(1) { top: 14px; }
.burger i:nth-child(2) { top: 20px; }
.burger i:nth-child(3) { top: 26px; }
.bar.open .burger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bar.open .burger i:nth-child(2) { opacity: 0; }
.bar.open .burger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
	.burger { display: block; }
	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--paper-2);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 18px 40px rgba(8,19,31,.10);
	}
	.bar.open .nav { display: flex; }
	.nav a { padding: 15px clamp(20px, 5vw, 56px); border-top: 1px solid var(--line); }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(6px, 1.4vw, 16px) 0 clamp(24px, 3.4vw, 44px); position: relative; overflow: hidden; }
.hero::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -160px;
	width: 640px;
	height: 640px;
	max-width: 90vw;
	background: radial-gradient(circle, rgba(21,150,214,.10), transparent 62%);
	pointer-events: none;
	z-index: 0;
}
.hero-fx {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 30%, rgba(0,0,0,.5) 50%, transparent 66%);
	mask-image: linear-gradient(to bottom, #000 0%, #000 30%, rgba(0,0,0,.5) 50%, transparent 66%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero .tag {
	display: inline-block;
	background: rgba(8,19,31,.94);
	color: #22D3FF;
	padding: 5px 16px;
	border-radius: 3px;
	box-shadow: 0 8px 24px rgba(8,19,31,.16);
}
.namewrap { margin: 6px 0 0; font-weight: 400; }
.name-first {
	display: block;
	font-family: var(--grot);
	font-weight: 400;
	font-stretch: 88%;
	font-size: clamp(1.7rem, 6vw, 4.9rem);
	line-height: 1;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--slate);
}
.name-last {
	display: block;
	font-family: var(--grot);
	font-weight: 800;
	font-stretch: 78%;
	font-size: clamp(4.2rem, 24vw, 20rem);
	line-height: .82;
	letter-spacing: -.03em;
	text-transform: uppercase;
	margin: 2px 0 0 -.045em;
}
.name-rule { width: 92px; height: 8px; border-radius: 2px; background: var(--blue); margin: 10px 0 0; }

.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; margin-top: clamp(12px, 2vw, 24px); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: clamp(22px, 4vw, 34px); } }

.thesis { font-family: var(--grot); font-weight: 800; font-stretch: 82%; font-size: clamp(1.75rem, 4.2vw, 3.3rem); line-height: 1; letter-spacing: -.02em; max-width: 18ch; }
.lede { margin: 18px 0 0; max-width: 52ch; font-size: clamp(.94rem, 1.3vw, 1.02rem); color: var(--slate); }
.cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--grot);
	font-weight: 700;
	font-size: 1rem;
	padding: 15px 26px;
	border-radius: 2px;
	transition: transform .16s, background .16s;
}
.cta:hover { transform: translateY(-2px); background: var(--blue-deep); }

.readout { border: 1px solid var(--line-2); border-radius: 3px; background: var(--paper-2); }
.readout .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.readout .row:last-child { border-bottom: 0; }
.readout .k { color: var(--faint); letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; font-weight: 600; }
.readout .v { color: var(--ink); font-weight: 600; text-align: right; }
.readout .v.acc { color: var(--blue-deep); }

/* ---------- Curve signature ---------- */
.curve { padding: clamp(24px, 4vw, 44px) 0 clamp(44px, 6vw, 80px); }
.curve svg { display: block; width: 100%; height: auto; }
.curve figcaption { margin-top: 22px; font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 500; color: var(--slate); letter-spacing: .01em; }
.curve figcaption b { color: var(--blue-deep); }
.trace { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.node-o { fill: var(--paper); stroke: var(--blue); stroke-width: 3; }
.node-i { fill: var(--blue-deep); }
.axis { stroke: var(--line); stroke-width: 1; }
.nlabel { font-family: var(--mono); font-size: 15px; font-weight: 600; fill: var(--slate); }
.nyear  { font-family: var(--mono); font-size: 15px; font-weight: 700; fill: var(--blue-deep); }
.curve.cine .node { opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease; }
.curve.cine .node.on { opacity: 1; transform: none; }

/* ---------- Section frame ---------- */
.sec { padding: clamp(54px, 7vw, 100px) 0; border-top: 1px solid var(--line); }
.sec-head { max-width: 780px; margin-bottom: clamp(30px, 4vw, 48px); }
.sec-head h2, .sec h2 {
	font-family: var(--grot);
	font-weight: 800;
	font-stretch: 84%;
	letter-spacing: -.02em;
	line-height: 1.02;
	font-size: clamp(1.9rem, 4.8vw, 3.3rem);
	margin: 14px 0 0;
}
.sec-head p { margin: 16px 0 0; color: var(--slate); max-width: 64ch; }

/* ---------- Bio ---------- */
.bio .lead2 { font-family: var(--grot); font-weight: 800; font-stretch: 82%; font-size: clamp(2rem, 5.4vw, 3.6rem); letter-spacing: -.02em; line-height: 1; margin: 14px 0 0; }
.bio .txt { color: var(--slate); max-width: 72ch; margin: 26px 0 0; font-size: .98rem; }

.statement {
	font-family: var(--grot);
	font-weight: 800;
	font-stretch: 82%;
	font-size: clamp(2.4rem, 6.5vw, 4.6rem);
	letter-spacing: -.02em;
	line-height: 1.04;
	margin: clamp(44px, 6.4vw, 70px) 0 0;
	max-width: 26ch;
}
.figures {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 3vw, 44px);
	margin-top: clamp(28px, 4vw, 44px);
}
@media (max-width: 640px) { .figures { grid-template-columns: 1fr; } }
.figures .f { border-top: 3px solid var(--blue); padding-top: 16px; }
.figures .n {
	font-family: var(--grot);
	font-weight: 800;
	font-stretch: 80%;
	font-size: clamp(4rem, 11vw, 7.5rem);
	letter-spacing: -.03em;
	line-height: 1;
	color: var(--ink);
}
.figures .n .u { color: var(--blue); font-size: .62em; font-weight: 700; }
.figures .l { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-top: 12px; }

.principles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.principles span { font-size: .74rem; font-weight: 600; letter-spacing: .08em; border: 1px solid var(--line-2); border-radius: 2px; padding: 9px 15px; color: var(--ink); }

/* ---------- Clients ---------- */
.clients { background: var(--ink); color: var(--paper); }
.clients .tag { color: #6fc7ee; }
.clients .sec-head h2 { color: var(--paper); }
.clients .sec-head p { color: #9fb2c1; }
.marquee { position: relative; overflow: hidden; margin-top: 8px; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.track { display: inline-flex; align-items: center; white-space: nowrap; font-family: var(--grot); font-weight: 800; font-stretch: 84%; letter-spacing: -.01em; font-size: clamp(1.6rem, 4vw, 2.8rem); will-change: transform; }
.track span { padding: 0 clamp(20px, 3vw, 40px); color: #cfe0ec; }
.track span::after { content: "·"; color: var(--blue); margin-left: clamp(40px, 6vw, 80px); }
.row-a .track { animation: run 34s linear infinite; }
.row-b { margin-top: 6px; }
.row-b .track { animation: run 40s linear infinite reverse; }
.row-b .track span { color: #93aabb; }
@keyframes run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Expertise ---------- */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 5vw, 64px); }
@media (max-width: 760px) { .grid2 { grid-template-columns: 1fr; } }
.item { display: grid; grid-template-columns: 92px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.item .lbl { font-size: .72rem; font-weight: 600; letter-spacing: .1em; color: var(--blue-deep); padding-top: 7px; }
.item h3 { font-family: var(--grot); font-weight: 800; font-stretch: 86%; font-size: 1.3rem; letter-spacing: -.01em; margin: 0 0 8px; }
.item p { margin: 0; color: var(--slate); font-size: .92rem; }

/* ---------- Path ---------- */
.parcours .lead2 { font-family: var(--grot); font-weight: 800; font-stretch: 84%; font-size: clamp(1.5rem, 3.8vw, 2.5rem); letter-spacing: -.02em; line-height: 1.08; max-width: 26ch; margin: 0 0 clamp(28px, 4vw, 44px); }
.parcours .lead2 b { color: var(--blue-deep); }
.job { display: grid; grid-template-columns: 168px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.job:last-of-type { border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .job { grid-template-columns: 1fr; gap: 8px; } }
.job .per { font-size: .8rem; font-weight: 700; color: var(--blue-deep); letter-spacing: .04em; padding-top: 6px; }
.job h3 { font-family: var(--grot); font-weight: 800; font-stretch: 86%; font-size: 1.32rem; letter-spacing: -.01em; margin: 0; }
.job .org { color: var(--blue-deep); font-weight: 600; font-size: .88rem; margin: 5px 0 10px; }
.job p { margin: 0; color: var(--slate); font-size: .92rem; }
.job .cl { margin-top: 10px; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.meta-line { margin-top: 34px; font-size: .78rem; color: var(--faint); letter-spacing: .02em; line-height: 2; }
.meta-line b { color: var(--slate); font-weight: 600; }

/* ---------- [★] Why me ---------- */
.why { background: var(--ink); color: #cdd8e1; border-top: 0; }
.why .tag { color: #6fc7ee; }
.why .sec-head h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 2vw, 18px); }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
.why .r {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 14px;
	align-items: start;
	padding: 26px 26px 28px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 7px;
	background: rgba(255,255,255,.02);
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.why .r:hover { border-color: var(--blue); background: rgba(21,150,214,.08); transform: translateY(-3px); }
.why .mark { color: var(--blue); font-weight: 700; font-size: 1.35rem; line-height: 1; padding-top: 2px; }
.why h3 { font-family: var(--grot); font-weight: 800; font-stretch: 84%; font-size: clamp(1.25rem, 2.4vw, 1.6rem); letter-spacing: -.015em; margin: 0 0 9px; color: #fff; }
.why p { margin: 0; color: #9fb0bd; font-size: .93rem; max-width: none; }

/* ---------- [★] Method ---------- */
.proc { background: var(--paper-2); }
.proc .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
@media (max-width: 760px) { .proc .steps { grid-template-columns: 1fr; } }
.proc .step {
	position: relative;
	border: 1px solid var(--line-2);
	border-top: 4px solid var(--blue);
	border-radius: 8px;
	background: var(--paper);
	padding: 26px 24px 30px;
	overflow: hidden;
}
.proc .step .num {
	position: absolute;
	top: 8px;
	right: 16px;
	font-family: var(--grot);
	font-weight: 800;
	font-stretch: 78%;
	font-size: 4.6rem;
	line-height: 1;
	letter-spacing: -.03em;
	color: rgba(21,150,214,.14);
	pointer-events: none;
}
.proc .step h3 { position: relative; font-family: var(--grot); font-weight: 800; font-stretch: 86%; font-size: 1.32rem; margin: 6px 0 10px; letter-spacing: -.01em; }
.proc .step p { position: relative; margin: 0; color: var(--slate); font-size: .93rem; }
.close-note { margin-top: clamp(34px, 5vw, 48px); font-family: var(--grot); font-weight: 700; font-stretch: 88%; font-size: clamp(1.2rem, 2.6vw, 1.65rem); letter-spacing: -.015em; line-height: 1.3; max-width: 46ch; }
.proc-obsess {
	position: relative;
	overflow: hidden;
	margin-top: clamp(30px, 4.4vw, 54px);
	display: grid;
	grid-template-columns: 1.12fr .88fr;
	gap: clamp(26px, 4vw, 56px);
	align-items: center;
	padding: clamp(28px, 4vw, 48px);
	border-radius: 16px;
	background: linear-gradient(135deg, #08131F 0%, #0B2231 58%, #0A527A 150%);
	box-shadow: 0 34px 80px rgba(8,19,31,.30);
}
.proc-obsess::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.028) 39px 40px),
		repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.028) 39px 40px);
	-webkit-mask-image: radial-gradient(120% 120% at 82% 0%, #000 28%, transparent 78%);
	mask-image: radial-gradient(120% 120% at 82% 0%, #000 28%, transparent 78%);
}
@media (max-width: 760px) { .proc-obsess { grid-template-columns: 1fr; } }

.po-copy { position: relative; }
.po-eye {
	display: inline-block;
	font-family: var(--mono);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #22D3FF;
	margin-bottom: 14px;
}
.po-copy p {
	font-family: var(--grot);
	font-weight: 600;
	font-size: clamp(1.2rem, 2.3vw, 1.62rem);
	line-height: 1.34;
	letter-spacing: -.01em;
	color: #E7EFF5;
	max-width: 30ch;
}
.proc-obsess .hl { color: #22D3FF; }

.po-panel {
	position: relative;
	border: 1px solid rgba(120,200,255,.22);
	border-radius: 12px;
	background: rgba(3,10,18,.5);
	padding: 15px 16px 12px;
	box-shadow: inset 0 0 42px rgba(21,150,214,.07);
}
.po-head {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: var(--mono);
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #82b0c8;
	margin-bottom: 14px;
}
.po-live {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #24E5A2;
	box-shadow: 0 0 0 0 rgba(36,229,162,.6);
	animation: po-pulse 1.9s ease-out infinite;
}
@keyframes po-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(36,229,162,.55); }
	70%  { box-shadow: 0 0 0 9px rgba(36,229,162,0); }
	100% { box-shadow: 0 0 0 0 rgba(36,229,162,0); }
}
.po-kpis { display: flex; gap: 10px; margin-bottom: 12px; }
.po-kpi {
	flex: 1;
	border: 1px solid rgba(120,200,255,.16);
	border-radius: 8px;
	padding: 10px 12px;
	background: rgba(21,150,214,.05);
}
.po-k {
	display: block;
	font-family: var(--mono);
	font-size: .56rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #6f93a8;
}
.po-v {
	display: block;
	margin-top: 5px;
	font-family: var(--grot);
	font-weight: 800;
	font-stretch: 82%;
	font-size: 1.5rem;
	letter-spacing: -.01em;
	color: #fff;
}
.po-v i { font-style: normal; color: #24E5A2; font-size: .62em; margin-left: 3px; }
.po-spark { display: block; width: 100%; height: auto; margin-top: 2px; }

/* ---------- Lab ---------- */
.repos { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2.5vw, 22px); }
@media (max-width: 720px) { .repos { grid-template-columns: 1fr; } }
.repo { border: 1px solid var(--line-2); border-radius: 4px; background: var(--paper-2); padding: 20px 22px; transition: border-color .18s, transform .18s; }
.repo:hover { border-color: var(--blue); transform: translateY(-2px); }
.repo .name { font-weight: 700; font-size: 1rem; color: var(--blue-deep); display: flex; align-items: center; gap: 10px; }
.repo .name .g { color: var(--faint); font-weight: 400; }
.repo p { margin: 11px 0 15px; color: var(--slate); font-size: .9rem; }
.repo .lang { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: var(--slate); letter-spacing: .04em; }
.repo .lang .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex: none; }

/* ---------- AI ---------- */
.ai { background: var(--blue-deep); color: #eaf6fd; text-align: center; }
.ai .tag { color: #bfe6f8; }
.ai h2 { font-family: var(--grot); font-weight: 800; font-stretch: 80%; letter-spacing: -.02em; line-height: 1; font-size: clamp(2.1rem, 6.8vw, 4.6rem); margin: 18px 0 0; color: #fff; }
.ai h2 em { font-style: normal; text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 8px; text-decoration-thickness: 4px; }
.ai p { margin: 22px auto 0; max-width: 62ch; color: #c8e6f5; font-size: .95rem; }

/* ---------- [★] True testimonies ---------- */
.refs .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 26px); }
@media (max-width: 820px) { .refs .quotes { grid-template-columns: 1fr; } }
.refs .q {
	position: relative;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--paper-2);
	padding: 30px 26px 24px;
}
.refs .q::before {
	content: "\201C";
	position: absolute;
	top: 2px;
	left: 16px;
	font-family: var(--grot);
	font-weight: 800;
	font-size: 4.6rem;
	line-height: 1;
	color: rgba(21,150,214,.24);
}
.refs .q p {
	position: relative;
	font-family: var(--grot);
	font-weight: 500;
	font-style: italic;
	font-size: 1.06rem;
	line-height: 1.5;
	letter-spacing: -.005em;
	color: var(--ink);
	margin: 0 0 18px;
}
.refs .q .who { display: block; padding-top: 14px; border-top: 1px solid var(--line); font-size: .74rem; color: var(--slate); letter-spacing: .02em; }
.refs .q .who b { color: var(--ink); font-weight: 700; display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; margin-bottom: 3px; }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact h2 { font-family: var(--grot); font-weight: 800; font-stretch: 80%; letter-spacing: -.025em; font-size: clamp(2.2rem, 7.5vw, 5rem); line-height: .96; margin: 16px 0 0; }
.contact .sub { color: var(--slate); margin: 18px auto 40px; max-width: 52ch; }
.mail {
	display: inline-block;
	font-family: var(--grot);
	font-weight: 800;
	font-stretch: 84%;
	letter-spacing: -.015em;
	font-size: clamp(1.3rem, 4.8vw, 2.6rem);
	color: var(--ink);
	border-bottom: 3px solid var(--blue);
	padding-bottom: 8px;
	transition: color .16s, border-color .16s, transform .16s;
}
.mail:hover { color: var(--blue-deep); transform: translateY(-1px); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0 56px; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: baseline; }
footer span { font-size: .76rem; color: var(--faint); }
footer b { color: var(--blue-deep); font-weight: 600; }

/* ---------- Revelations ---------- */
.pre { opacity: 0; transform: translateY(22px); }
.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .2, 1); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001s !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001s !important;
	}
	.pre { opacity: 1; transform: none; }
	.curve.cine .node { opacity: 1; transform: none; }
	.row-a .track, .row-b .track { animation: none; }
}
