/* ============================================================
   Outcome Technologies — main.css
   Vault palette · Editorial × Engineering
   ============================================================ */

/* ---------- Self-hosted fonts ---------- */
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-Regular.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-Medium.woff2') format('woff2');
	font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-SemiBold.woff2') format('woff2');
	font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Instrument Serif';
	src: url('../fonts/InstrumentSerif-Regular.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Instrument Serif';
	src: url('../fonts/InstrumentSerif-Italic.woff2') format('woff2');
	font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
	font-family: 'JetBrains Mono';
	src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	--navy:    #0A0E1A;
	--surface: #10141F;
	--line:    #1E2230;
	--muted:   #7A7C85;
	--cream:   #EFEAE1;
	--cream-dim: rgba(239, 234, 225, 0.65);
	--lime:    #C6F432;
	--lime-dim: rgba(198, 244, 50, 0.12);

	--font-display: 'Instrument Serif', Georgia, serif;
	--font-body: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

	--max: 1240px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
	--section-py: clamp(4.5rem, 10vw, 8rem);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
	margin: 0;
	background: var(--navy);
	color: var(--cream);
	font-family: var(--font-body);
	font-size: 18.5px;
	line-height: 1.6;
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--cream); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover, a:focus-visible { color: var(--lime); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 2px; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* ---------- Skip link ---------- */
.ot-skip {
	position: absolute; left: -9999px; top: 0;
	background: var(--lime); color: var(--navy);
	padding: 0.5rem 1rem; font-weight: 600; z-index: 1000;
}
.ot-skip:focus { left: 1rem; top: 1rem; }

/* ---------- Container ---------- */
.ot-container {
	max-width: var(--max);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

/* ---------- Eyebrow ---------- */
.ot-eyebrow {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: var(--muted);
	text-transform: lowercase;
	margin-bottom: 1.25rem;
}

/* ---------- Header ---------- */
.ot-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(10, 14, 26, 0);
	backdrop-filter: blur(0);
	transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
	border-bottom: 1px solid transparent;
}
.ot-header.is-scrolled {
	background: rgba(10, 14, 26, 0.85);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--line);
}
.ot-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1.5rem; padding-top: 1rem; padding-bottom: 1rem;
}
.ot-wordmark {
	display: inline-flex; align-items: center; gap: 0.7rem;
	font-family: var(--font-mono); font-size: 1.33rem; letter-spacing: -0.01em;
	color: var(--cream);
}
.ot-wordmark__mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 50px; height: 34px;
	flex-shrink: 0;
}
.ot-wordmark__mark svg { width: 100%; height: 100%; display: block; }
.ot-wordmark__sep { color: var(--muted); margin: 0 0.15em; }
.ot-wordmark--lg { font-size: 1.54rem; }
.ot-wordmark--lg .ot-wordmark__mark { width: 62px; height: 42px; }

.ot-nav__list {
	display: none; gap: 1.75rem;
	font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.01em;
}
@media (min-width: 960px) { .ot-nav__list { display: flex; } }
.ot-nav__list a { color: var(--cream-dim); }
.ot-nav__list a:hover { color: var(--cream); }

.ot-header__cta { display: none; }
@media (min-width: 960px) { .ot-header__cta { display: inline-flex; } }

.ot-nav-toggle {
	display: inline-flex; flex-direction: column; gap: 4px;
	background: none; border: none; padding: 0.5rem; color: var(--cream);
}
@media (min-width: 960px) { .ot-nav-toggle { display: none; } }
.ot-nav-toggle span {
	width: 22px; height: 1.5px; background: currentColor; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.ot-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.ot-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ot-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.ot-mobile-nav {
	border-top: 1px solid var(--line);
	background: var(--navy);
}
.ot-mobile-nav ul {
	display: flex; flex-direction: column;
	padding: 1.5rem var(--gutter);
}
.ot-mobile-nav li { border-bottom: 1px solid var(--line); }
.ot-mobile-nav li:last-child { border-bottom: 0; padding-top: 1rem; }
.ot-mobile-nav a {
	display: block; padding: 1rem 0;
	font-family: var(--font-mono); font-size: 0.95rem;
}

/* ---------- CTAs ---------- */
.ot-cta {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.85rem 1.4rem;
	font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.02em;
	border-radius: 2px; transition: all 0.2s var(--ease);
	white-space: nowrap;
}
.ot-cta--primary {
	background: var(--lime); color: var(--navy);
}
.ot-cta--primary:hover, .ot-cta--primary:focus-visible {
	background: var(--cream); color: var(--navy);
}
.ot-cta--ghost {
	color: var(--cream); border: 1px solid var(--line);
}
.ot-cta--ghost:hover, .ot-cta--ghost:focus-visible {
	border-color: var(--cream); color: var(--cream);
}

/* ---------- Section base ---------- */
.ot-section {
	padding-top: var(--section-py);
	padding-bottom: var(--section-py);
	border-bottom: 1px solid var(--line);
	scroll-margin-top: 96px;
}
.ot-section__head { max-width: 820px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.ot-section__h {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5.5vw, 4rem);
	line-height: 1.0;
	letter-spacing: -0.01em;
	margin-bottom: 1rem;
}
.ot-section__intro {
	color: var(--cream-dim);
	font-size: 1.2rem;
	max-width: 60ch;
	line-height: 1.55;
}

/* Two-column section header: text left, illustration right */
.ot-section__head-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ot-section__head-wrap .ot-section__head { margin-bottom: 0; }
.ot-section__art {
	width: 100%;
	max-width: 240px;
	opacity: 0.95;
	display: none;
}
.ot-section__art svg { width: 100%; height: auto; }
@media (min-width: 900px) {
	.ot-section__head-wrap {
		grid-template-columns: 1fr 240px;
		gap: 4rem;
	}
	.ot-section__art {
		display: block;
		justify-self: end;
		margin-top: 1rem;
	}
}

/* ============================================================
   HERO
   ============================================================ */
.ot-hero {
	position: relative;
	padding-top: clamp(5rem, 12vw, 9rem);
	padding-bottom: clamp(5rem, 10vw, 8rem);
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}
.ot-hero__inner { position: relative; z-index: 2; }
.ot-hero__bg {
	position: absolute; inset: 0; z-index: 1; opacity: 1;
	pointer-events: none; overflow: hidden;
}
.ot-hero__bg-base { position: absolute; inset: 0; width: 100%; height: 100%; }
.ot-hero__bg-rings {
	position: absolute;
	top: -8%; right: -10%;
	width: clamp(420px, 55vw, 720px);
	height: clamp(420px, 55vw, 720px);
}
.ot-hero__bg-chart {
	position: absolute;
	left: clamp(1rem, 4vw, 4rem);
	bottom: clamp(1rem, 4vw, 3.5rem);
	width: clamp(280px, 42vw, 560px);
	height: auto;
}
.ot-hero__bg-fade {
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 35%;
	background: linear-gradient(to top, var(--navy) 0%, rgba(10,14,26,0.5) 50%, transparent 100%);
}
@media (max-width: 720px) {
	.ot-hero__bg-rings { width: 90vw; height: 90vw; top: -20vw; right: -25vw; opacity: 0.7; }
	.ot-hero__bg-chart { width: 70vw; opacity: 0.6; }
}

.ot-hero__headline {
	font-family: var(--font-display);
	font-size: clamp(3rem, 11vw, 8.5rem);
	line-height: 0.92;
	letter-spacing: -0.02em;
	max-width: 14ch;
	margin: 0 0 2rem;
}
.ot-hero__headline .hl {
	color: var(--lime);
	font-style: italic;
}
.ot-hero__sub {
	max-width: 56ch;
	font-size: clamp(1.2rem, 1.6vw, 1.4rem);
	color: var(--cream-dim);
	margin-bottom: 2.5rem;
	line-height: 1.5;
}
.ot-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 4rem; }

.ot-hero__meta {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem 2rem;
	border-top: 1px solid var(--line);
	padding-top: 2rem;
	max-width: 720px;
	margin: 0;
}
.ot-hero__meta > div { display: flex; flex-direction: column; gap: 0.25rem; }
.ot-hero__meta dt {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	text-transform: lowercase;
	color: var(--muted);
}
.ot-hero__meta dd {
	margin: 0;
	font-size: 0.95rem;
	color: var(--cream);
}

/* ============================================================
   SERVICES — numbered editorial list, not cards
   ============================================================ */
.ot-services__list {
	display: flex; flex-direction: column;
	border-top: 1px solid var(--line);
}
.ot-service {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1.5rem;
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--line);
	transition: background 0.3s var(--ease);
}
@media (min-width: 720px) {
	.ot-service { grid-template-columns: 120px 1fr; gap: 3rem; padding: 3rem 0; }
}
.ot-service:hover { background: linear-gradient(90deg, transparent, var(--lime-dim) 80%, transparent); }
.ot-service__num {
	font-family: var(--font-mono);
	font-size: 0.95rem;
	color: var(--muted);
	letter-spacing: 0.05em;
}
.ot-service__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	line-height: 1.05;
	margin-bottom: 0.75rem;
}
.ot-service__promise {
	color: var(--cream-dim);
	font-size: 1.2rem;
	max-width: 60ch;
	margin-bottom: 1.5rem;
	line-height: 1.5;
}
.ot-service__deliverables {
	display: flex; flex-direction: column; gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.ot-service__deliverables li {
	font-family: var(--font-mono);
	font-size: 0.92rem;
	color: var(--cream);
	padding-left: 1.25rem;
	position: relative;
	line-height: 1.55;
}
.ot-service__deliverables li::before {
	content: "→"; position: absolute; left: 0; color: var(--lime);
}
.ot-service__meta {
	display: flex; flex-wrap: wrap; gap: 2rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--line);
}
.ot-service__meta > div { display: flex; flex-direction: column; gap: 0.15rem; }
.ot-service__meta-k {
	font-family: var(--font-mono);
	font-size: 0.7rem; letter-spacing: 0.06em;
	color: var(--muted); text-transform: lowercase;
}
.ot-service__meta-v { font-size: 0.95rem; color: var(--cream); }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.ot-how { background: var(--surface); }
.ot-how__steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}
.ot-how__step {
	padding: 1.75rem;
	background: var(--navy);
	border: 1px solid var(--line);
	border-radius: 4px;
	display: flex; flex-direction: column; gap: 1rem;
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ot-how__step:hover { border-color: var(--lime); transform: translateY(-2px); }
.ot-how__num {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--lime);
	letter-spacing: 0.05em;
}
.ot-how__step-title {
	font-family: var(--font-display);
	font-size: 1.6rem;
	line-height: 1.05;
}
.ot-how__step-body-text { color: var(--cream-dim); font-size: 1.02rem; line-height: 1.55; }

/* ============================================================
   OUTCOMES (metrics)
   ============================================================ */
.ot-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 6vw, 5rem);
	border-top: 1px solid var(--line);
	padding-top: 3rem;
}
.ot-metric {
	display: flex; flex-direction: column; gap: 0.75rem;
	padding-right: clamp(0rem, 2.5vw, 2rem);
}
.ot-metric__num {
	font-family: var(--font-mono);
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	line-height: 1;
	color: var(--lime);
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}
.ot-metric__label {
	font-size: 1.02rem; color: var(--cream-dim);
	max-width: 24ch;
	line-height: 1.45;
}

/* ============================================================
   CASE STUDIES — horizontally scrollable strip
   ============================================================ */
.ot-cs__scroller {
	position: relative;
	margin-left: calc(-1 * var(--gutter));
	margin-right: calc(-1 * var(--gutter));
}
.ot-cs__grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.5rem var(--gutter) 2rem;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: var(--line) transparent;
	-webkit-overflow-scrolling: touch;
}
.ot-cs__grid::-webkit-scrollbar { height: 6px; }
.ot-cs__grid::-webkit-scrollbar-track { background: transparent; }
.ot-cs__grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.ot-cs__grid::-webkit-scrollbar-thumb:hover { background: var(--muted); }
.ot-cs__card {
	flex: 0 0 min(420px, 88vw);
	scroll-snap-align: start;
	padding: 2.5rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 4px;
	display: flex; flex-direction: column;
	transition: border-color 0.3s var(--ease);
}
.ot-cs__card:hover { border-color: var(--lime); }
.ot-cs__hint {
	display: flex; align-items: center; gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	color: var(--muted);
	margin-top: 0.5rem;
	letter-spacing: 0.04em;
}
.ot-cs__hint svg { width: 14px; height: 14px; fill: currentColor; }
@media (min-width: 1200px) {
	.ot-cs__hint { display: none; }
}
.ot-cs__client {
	font-family: var(--font-mono);
	font-size: 0.8rem; letter-spacing: 0.04em;
	color: var(--muted); margin-bottom: 1.5rem;
}
.ot-cs__metric {
	display: flex; flex-direction: column; gap: 0.25rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
	margin-bottom: 1.5rem;
}
.ot-cs__metric-num {
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 4.5rem);
	line-height: 0.95;
	color: var(--lime);
	letter-spacing: -0.02em;
}
.ot-cs__metric-label { color: var(--cream-dim); font-size: 1rem; }
.ot-cs__sub {
	font-family: var(--font-mono);
	font-size: 0.75rem; letter-spacing: 0.06em;
	text-transform: lowercase; color: var(--muted);
	margin-top: 1.25rem; margin-bottom: 0.5rem;
}
.ot-cs__sub:first-child { margin-top: 0; }
.ot-cs__body p { color: var(--cream-dim); font-size: 1.02rem; line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.ot-about__grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.ot-about__grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}
.ot-about__story {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2.2vw, 1.7rem);
	line-height: 1.45;
	color: var(--cream);
	margin-bottom: 1.25rem;
}
.ot-about__story:last-of-type { margin-bottom: 1.5rem; }
.ot-about__location {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--muted);
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}
.ot-about__principles {
	background: var(--surface);
	border: 1px solid var(--line);
	padding: 2rem;
	border-radius: 4px;
}
.ot-about__principles-h {
	font-family: var(--font-mono);
	font-size: 0.78rem; letter-spacing: 0.06em;
	text-transform: lowercase;
	color: var(--muted);
	margin-bottom: 1.5rem;
}
.ot-principles { display: flex; flex-direction: column; gap: 1rem; }
.ot-principles li {
	display: flex; gap: 1rem; align-items: baseline;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
}
.ot-principles li:last-child { border-bottom: 0; padding-bottom: 0; }
.ot-principles__num {
	font-family: var(--font-mono);
	font-size: 0.8rem; color: var(--lime);
	min-width: 28px;
}
.ot-principles__text { font-size: 1.05rem; color: var(--cream); line-height: 1.4; }

/* ============================================================
   CONTACT
   ============================================================ */
.ot-contact { background: var(--surface); }
.ot-contact__grid {
	display: grid; gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.ot-contact__grid { grid-template-columns: 1.5fr 1fr; gap: 4rem; }
}
.ot-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ot-form__row { display: flex; flex-direction: column; gap: 0.4rem; }
.ot-form__row--2 {
	display: grid; gap: 1rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .ot-form__row--2 { grid-template-columns: 1fr 1fr; } }
.ot-form label {
	font-family: var(--font-mono);
	font-size: 0.78rem; letter-spacing: 0.04em;
	color: var(--cream-dim);
}
.ot-form .req { color: var(--lime); }
.ot-form .opt {
	color: var(--muted);
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	margin-left: 0.4rem;
	text-transform: uppercase;
}
.ot-form input, .ot-form textarea, .ot-form select {
	background: var(--navy);
	border: 1px solid var(--line);
	color: var(--cream);
	padding: 0.85rem 1rem;
	font: inherit;
	border-radius: 2px;
	transition: border-color 0.2s var(--ease);
}
.ot-form input:focus, .ot-form textarea:focus, .ot-form select:focus {
	outline: none; border-color: var(--lime);
}
.ot-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ot-form__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.ot-form__msg {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	min-height: 1.25rem;
}
.ot-form__msg.is-ok { color: var(--lime); }
.ot-form__msg.is-err { color: #FF6B6B; }

.ot-next {
	background: var(--navy);
	border: 1px solid var(--line);
	padding: 2rem;
	border-radius: 4px;
}
.ot-next__h {
	font-family: var(--font-mono);
	font-size: 0.78rem; letter-spacing: 0.06em;
	text-transform: lowercase;
	color: var(--muted);
	margin-bottom: 1.5rem;
}
.ot-next__list { display: flex; flex-direction: column; gap: 1.25rem; }
.ot-next__list li {
	display: flex; gap: 1rem; align-items: baseline;
	font-size: 1.02rem;
	line-height: 1.5;
}
.ot-next__num {
	font-family: var(--font-mono);
	color: var(--lime); min-width: 28px; font-size: 0.85rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.ot-faq__list { border-top: 1px solid var(--line); }
.ot-faq__item { border-bottom: 1px solid var(--line); }
.ot-faq__q {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	padding: 1.5rem 2.5rem 1.5rem 0;
	cursor: pointer;
	list-style: none;
	position: relative;
	line-height: 1.2;
}
.ot-faq__q::-webkit-details-marker { display: none; }
.ot-faq__q::after {
	content: "+";
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	font-family: var(--font-mono); color: var(--lime); font-size: 1.5rem;
	transition: transform 0.2s var(--ease);
}
.ot-faq__item[open] .ot-faq__q::after { content: "−"; }
.ot-faq__a { padding: 0 0 1.75rem; max-width: 70ch; }
.ot-faq__a p { color: var(--cream-dim); font-size: 1.12rem; line-height: 1.55; }

/* ============================================================
   FOOTER
   ============================================================ */
.ot-footer {
	background: var(--navy);
	border-top: 1px solid var(--line);
	padding: 4rem 0 2rem;
}
.ot-footer__inner {
	display: grid; gap: 3rem;
	grid-template-columns: 1fr;
	padding-bottom: 3rem;
	border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
	.ot-footer__inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}
.ot-footer__tag {
	font-family: var(--font-display);
	font-size: 1.5rem;
	max-width: 30ch;
	margin: 1.25rem 0 0.75rem;
}
.ot-footer__loc {
	font-family: var(--font-mono);
	font-size: 0.85rem; color: var(--muted);
}
.ot-footer__cols {
	display: grid; gap: 2rem;
	grid-template-columns: repeat(3, 1fr);
}
.ot-footer__col h4 {
	font-family: var(--font-mono);
	font-size: 0.75rem; letter-spacing: 0.06em;
	text-transform: lowercase;
	color: var(--muted);
	margin-bottom: 1rem;
}
.ot-footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.ot-footer__col a { font-size: 0.95rem; color: var(--cream-dim); }
.ot-footer__col a:hover { color: var(--cream); }
.ot-footer__bottom {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
	padding-top: 1.5rem;
	font-family: var(--font-mono); font-size: 0.75rem;
	color: var(--muted);
}

/* ============================================================
   Legal pages (privacy + terms)
   ============================================================ */
.ot-main--simple { padding-top: clamp(5rem, 10vw, 8rem); padding-bottom: clamp(4rem, 8vw, 6rem); }
.ot-legal { max-width: 760px; }
.ot-legal__h1 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 1.0;
	letter-spacing: -0.01em;
	margin: 0.5rem 0 0.75rem;
}
.ot-legal__updated {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	color: var(--muted);
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}
.ot-legal__body h2 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	line-height: 1.15;
	margin: 2.5rem 0 1rem;
}
.ot-legal__body p { color: var(--cream-dim); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.1rem; }
.ot-legal__body ul { color: var(--cream-dim); margin: 0 0 1.5rem; padding-left: 0; }
.ot-legal__body ul li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.6rem;
	font-size: 1.02rem;
	line-height: 1.6;
}
.ot-legal__body ul li::before {
	content: "→";
	position: absolute; left: 0; top: 0; color: var(--lime);
	font-family: var(--font-mono);
}
.ot-legal__body a { color: var(--lime); border-bottom: 1px solid rgba(198,244,50,0.3); padding-bottom: 1px; }
.ot-legal__body a:hover { border-bottom-color: var(--lime); }
.ot-legal__body strong { color: var(--cream); }
.ot-legal__footer-note {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	font-size: 0.92rem !important;
	color: var(--muted) !important;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.ot-reveal {
	opacity: 0; transform: translateY(12px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.ot-reveal.is-in { opacity: 1; transform: none; }
