/* ──────────────────────────────────────────────────────────────
   SafeBowl — Cozy Maximalist
   Single CSS, zero dependencies, Cloudflare Pages compatible
   ────────────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..900,0..100,0..1&family=JetBrains+Mono:wght@400;700&display=swap");

:root {
	/* Cozy palette: paper cream + forest + clay + gold + plum + sky + moss */
	--paper: #f7f0dc;
	--paper-deep: #f0e6cb;
	--ink: #1a1410;
	--ink-soft: #423529;
	--muted: #786755;
	--forest: #1f4a36;
	--forest-deep: #143928;
	--moss: #c8d6a5;
	--clay: #d97a4a;
	--clay-soft: #f4c9a8;
	--gold: #e6b54a;
	--gold-soft: #f5e2a8;
	--plum: #7a3e5e;
	--plum-soft: #e8cdd9;
	--sky: #a8c8d6;
	--sky-soft: #dceaf0;
	--line: #c9bca0;
	--line-soft: #e2d8c0;

	--shadow-sm: 0 2px 0 rgba(26, 20, 16, 0.92);
	--shadow-md: 0 4px 0 rgba(26, 20, 16, 0.92);
	--shadow-lg: 0 6px 0 rgba(26, 20, 16, 0.92);
	--shadow-soft: 0 28px 60px -20px rgba(31, 74, 54, 0.25);

	--radius: 22px;
	--radius-sm: 12px;
	--radius-pill: 999px;

	--max: 1180px;
	--max-text: 680px;

	--display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	--body: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	--mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
}

* {
	box-sizing: border-box;
}

*::selection {
	background: var(--gold);
	color: var(--ink);
}

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

body {
	margin: 0;
	color: var(--ink);
	font-family: var(--body);
	font-size: 19px;
	font-weight: 380;
	font-variation-settings: "opsz" 14, "SOFT" 50, "WONK" 0;
	line-height: 1.55;
	background: var(--paper);
	background-image:
		radial-gradient(circle at 14% 8%, rgba(168, 200, 214, 0.45) 0%, transparent 32%),
		radial-gradient(circle at 92% 18%, rgba(230, 181, 74, 0.35) 0%, transparent 28%),
		radial-gradient(circle at 50% 90%, rgba(200, 214, 165, 0.55) 0%, transparent 40%),
		radial-gradient(circle at 5% 75%, rgba(217, 122, 74, 0.18) 0%, transparent 25%),
		url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	background-attachment: fixed;
	background-size: cover, cover, cover, cover, 220px 220px;
}

a {
	color: var(--forest-deep);
	text-decoration-thickness: 2px;
	text-decoration-color: var(--gold);
	text-underline-offset: 4px;
	transition: color 0.15s ease;
}

a:hover {
	color: var(--clay);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ── Typography rhythm ─────────────────────────────────────── */

h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--display);
	font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
	font-weight: 720;
	letter-spacing: -0.025em;
	line-height: 1;
	color: var(--ink);
}

h1 {
	font-size: clamp(50px, 8.5vw, 108px);
	line-height: 0.95;
}

h1 em {
	font-style: italic;
	font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
	color: var(--forest);
}

h2 {
	font-size: clamp(36px, 5.4vw, 64px);
	line-height: 1;
}

h3 {
	font-size: 26px;
	line-height: 1.1;
	font-variation-settings: "opsz" 36, "SOFT" 80, "WONK" 0;
}

h4 {
	font-size: 19px;
	font-variation-settings: "opsz" 24, "SOFT" 60, "WONK" 0;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 6px 14px;
	border: 1.5px solid var(--ink);
	border-radius: var(--radius-pill);
	background: var(--paper);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transform: rotate(-1.5deg);
	box-shadow: var(--shadow-sm);
}

.eyebrow::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--clay);
}

.lead {
	max-width: 620px;
	margin: 28px 0 0;
	color: var(--ink-soft);
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 380;
	font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0;
	line-height: 1.45;
}

.underline-sketch {
	display: inline-block;
	position: relative;
	white-space: nowrap;
}

.underline-sketch::after {
	content: "";
	position: absolute;
	left: -4%;
	right: -4%;
	bottom: -0.08em;
	height: 0.42em;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'><path d='M2 16 C 40 4, 80 22, 120 10 S 196 18, 198 8' stroke='%23d97a4a' stroke-width='5' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
	pointer-events: none;
	z-index: -1;
}

/* ── Header / nav ──────────────────────────────────────────── */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: linear-gradient(to bottom, rgba(247, 240, 220, 0.96) 60%, rgba(247, 240, 220, 0));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: var(--max);
	margin: 0 auto;
	padding: 18px 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
	font-family: var(--display);
	font-size: 24px;
	font-weight: 740;
	font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
	text-decoration: none;
	letter-spacing: -0.02em;
}

.brand img {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	border: 1.5px solid var(--ink);
	box-shadow: var(--shadow-sm);
	transform: rotate(-3deg);
	transition: transform 0.2s ease;
}

.brand:hover img {
	transform: rotate(3deg);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nav-links a {
	padding: 8px 14px;
	color: var(--ink);
	text-decoration: none;
	border-radius: var(--radius-pill);
	transition: background 0.15s ease;
}

.nav-links a:hover {
	background: var(--gold-soft);
}

/* ── Button system ─────────────────────────────────────────── */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 14px 26px;
	border: 2px solid var(--ink);
	border-radius: var(--radius-pill);
	background: var(--ink);
	color: var(--paper);
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: var(--shadow-md);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 rgba(26, 20, 16, 0.92);
	background: var(--forest-deep);
	color: var(--paper);
}

.button:active {
	transform: translate(0, 0);
	box-shadow: 0 0 0 rgba(26, 20, 16, 0.92);
}

.button.secondary {
	background: var(--paper);
	color: var(--ink);
}

.button.secondary:hover {
	background: var(--gold);
	color: var(--ink);
}

.button .arrow {
	transition: transform 0.2s ease;
}

.button:hover .arrow {
	transform: translateX(4px);
}

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
	position: relative;
	overflow: hidden;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 60px;
	align-items: center;
	max-width: var(--max);
	margin: 0 auto;
	padding: 80px 24px 120px;
}

.hero-text {
	position: relative;
	z-index: 2;
}

.hero-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	max-width: 540px;
	margin: 32px 0 0;
	padding: 16px 18px;
	border: 1.5px dashed var(--forest);
	border-radius: var(--radius-sm);
	background: rgba(200, 214, 165, 0.32);
	color: var(--forest-deep);
	font-size: 15px;
	font-style: italic;
	font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
	line-height: 1.45;
}

.hero-note::before {
	content: "✦";
	flex: 0 0 auto;
	font-size: 18px;
	color: var(--clay);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

/* ── Hero phone scene (collaged) ───────────────────────────── */

.phone-scene {
	position: relative;
	min-height: 600px;
}

.phone {
	position: relative;
	width: min(340px, 86vw);
	margin: 0 auto;
	padding: 14px;
	border: 3px solid var(--ink);
	border-radius: 38px;
	background: var(--paper-deep);
	box-shadow: var(--shadow-lg), var(--shadow-soft);
	transform: rotate(2.5deg);
}

.phone::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	height: 22px;
	border-radius: var(--radius-pill);
	background: var(--ink);
}

.phone-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
	padding: 14px 16px;
	border-radius: 18px;
	background: var(--moss);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.app-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1.5px solid var(--ink);
}

.scan-card {
	margin: 14px 4px;
	padding: 18px;
	border: 2px solid var(--ink);
	border-radius: 18px;
	background: var(--paper);
	box-shadow: var(--shadow-sm);
}

.scan-card h3 {
	margin-top: 4px;
	font-size: 22px;
}

.label-lines {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.label-lines span {
	height: 9px;
	border-radius: var(--radius-pill);
	background: linear-gradient(90deg, var(--line) 0%, var(--line-soft) 100%);
}

.label-lines span:nth-child(2) { width: 78%; }
.label-lines span:nth-child(3) { width: 56%; }

.verdict {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	align-items: center;
	margin: 14px 4px;
	padding: 18px;
	border: 2px solid var(--ink);
	border-radius: 18px;
	background: var(--forest);
	color: var(--paper);
	box-shadow: var(--shadow-sm);
}

.verdict-score {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border: 2px solid var(--paper);
	border-radius: 50%;
	background: var(--gold);
	color: var(--ink);
	font-family: var(--display);
	font-size: 28px;
	font-weight: 800;
	font-variation-settings: "opsz" 36, "SOFT" 60, "WONK" 0;
}

.verdict-body small {
	display: block;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.7;
}

.verdict-body strong {
	display: block;
	margin-top: 4px;
	font-family: var(--display);
	font-size: 18px;
	font-weight: 600;
	font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 0;
	line-height: 1.2;
}

.ingredient-list {
	display: grid;
	gap: 8px;
	margin: 14px 4px;
}

.ingredient {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1.5px solid var(--ink);
	border-radius: 14px;
	background: var(--paper);
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 500;
}

.tag {
	min-width: 56px;
	padding: 4px 10px;
	border: 1.5px solid var(--ink);
	border-radius: var(--radius-pill);
	background: var(--moss);
	color: var(--forest-deep);
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.tag.warn {
	background: var(--gold);
	color: var(--ink);
}

.tag.avoid {
	background: var(--clay-soft);
	color: #6b2a14;
}

/* Sticker accents floating around phone */
.sticker {
	position: absolute;
	z-index: 3;
	padding: 10px 16px;
	border: 2px solid var(--ink);
	border-radius: 16px;
	background: var(--paper);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: var(--shadow-md);
}

.sticker-1 {
	top: 30px;
	left: -28px;
	background: var(--clay);
	color: var(--paper);
	transform: rotate(-8deg);
}

.sticker-2 {
	top: 220px;
	right: -32px;
	background: var(--sky);
	color: var(--ink);
	transform: rotate(6deg);
}

.sticker-3 {
	bottom: 60px;
	left: -16px;
	background: var(--gold);
	color: var(--ink);
	transform: rotate(-3deg);
}

/* Paw decorations */
.paw {
	position: absolute;
	pointer-events: none;
	opacity: 0.5;
}

.paw-1 {
	top: 12%;
	right: 4%;
	width: 64px;
	transform: rotate(20deg);
}

.paw-2 {
	bottom: 8%;
	left: 6%;
	width: 56px;
	transform: rotate(-25deg);
}

/* ── Sections ──────────────────────────────────────────────── */

.section {
	max-width: var(--max);
	margin: 0 auto;
	padding: 96px 24px;
}

.section-narrow {
	max-width: 920px;
}

.band {
	position: relative;
	margin: 0;
	background: var(--forest);
	color: var(--paper);
}

.band::before, .band::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 24px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24' preserveAspectRatio='none'><path d='M0 24 L 15 0 L 30 24 L 45 0 L 60 24 Z' fill='%231f4a36'/></svg>") repeat-x;
	background-size: 60px 24px;
}

.band::before {
	top: -23px;
}

.band::after {
	bottom: -23px;
	transform: rotate(180deg);
}

.band h2 {
	color: var(--paper);
}

.band .eyebrow {
	background: var(--forest-deep);
	color: var(--paper);
	border-color: var(--paper);
}

.band .eyebrow::before {
	background: var(--gold);
}

.band a {
	color: var(--gold);
	text-decoration-color: var(--clay);
}

.band-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 110px 24px;
}

/* ── How it works (3 illustrated steps) ────────────────────── */

.steps-flow {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 56px;
}

.step {
	position: relative;
	padding: 32px 24px 28px;
	border: 2px solid var(--ink);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow-md);
	transition: transform 0.2s ease;
}

.step:nth-child(1) { background: var(--clay-soft); transform: rotate(-1deg); }
.step:nth-child(3) { background: var(--sky-soft); transform: rotate(1deg); }
.step:nth-child(5) { background: var(--gold-soft); transform: rotate(-1.5deg); }

.step:hover {
	transform: rotate(0deg) translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.step-num {
	position: absolute;
	top: -22px;
	left: 24px;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 2px solid var(--ink);
	border-radius: 50%;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--display);
	font-size: 22px;
	font-weight: 800;
	box-shadow: var(--shadow-sm);
}

.step-icon {
	margin-top: 16px;
	margin-bottom: 18px;
	width: 64px;
	height: 64px;
	color: var(--ink);
}

.step h3 {
	margin-bottom: 10px;
	font-size: 28px;
}

.step p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.5;
}

.step-arrow {
	position: absolute;
	top: 40%;
	right: -32px;
	width: 24px;
	color: var(--ink);
	z-index: 2;
}

/* ── Why-it-exists (collage) ──────────────────────────────── */

.collage {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 48px;
	align-items: start;
	margin-top: 48px;
}

.collage-text h2 {
	max-width: 480px;
}

.facts {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fact {
	position: relative;
	padding: 22px 24px 22px 76px;
	border: 2px solid var(--paper);
	border-radius: var(--radius);
	background: rgba(247, 240, 220, 0.08);
	box-shadow: inset 0 0 0 1px rgba(247, 240, 220, 0.2);
	transition: transform 0.2s ease;
}

.fact:nth-child(2n) { transform: rotate(1deg); }
.fact:nth-child(2n+1) { transform: rotate(-1deg); }

.fact:hover {
	transform: rotate(0) translateX(4px);
}

.fact-num {
	position: absolute;
	left: 18px;
	top: 22px;
	font-family: var(--display);
	font-size: 36px;
	font-weight: 800;
	font-variation-settings: "opsz" 60, "SOFT" 100, "WONK" 1;
	font-style: italic;
	color: var(--gold);
	line-height: 1;
}

.fact strong {
	display: block;
	margin-bottom: 4px;
	font-family: var(--display);
	font-size: 21px;
	font-weight: 660;
	font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 0;
	color: var(--paper);
}

.fact span {
	display: block;
	color: rgba(247, 240, 220, 0.78);
	font-size: 16px;
	line-height: 1.5;
}

/* ── Blog grid ─────────────────────────────────────────────── */

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
	margin-top: 48px;
}

.post-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 28px 26px 30px;
	border: 2px solid var(--ink);
	border-radius: var(--radius);
	background: var(--paper);
	color: var(--ink);
	text-decoration: none;
	box-shadow: var(--shadow-md);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.post-card:nth-child(3n+1) { background: var(--paper); }
.post-card:nth-child(3n+2) { background: var(--gold-soft); }
.post-card:nth-child(3n+3) { background: var(--sky-soft); }

.post-card:hover {
	transform: translate(-3px, -3px);
	box-shadow: 8px 8px 0 rgba(26, 20, 16, 0.92);
	color: var(--ink);
}

.post-card .meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.post-card .meta::before {
	content: "";
	width: 10px;
	height: 2px;
	background: var(--clay);
}

.post-card h2 {
	font-size: clamp(22px, 2.4vw, 28px);
	line-height: 1.05;
}

.post-card p {
	margin: 4px 0 0;
	color: var(--ink-soft);
	font-size: 16px;
	line-height: 1.5;
}

.post-card .read {
	margin-top: auto;
	padding-top: 8px;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--forest-deep);
}

.post-card .read::after {
	content: " →";
	transition: margin 0.2s ease;
}

.post-card:hover .read::after {
	margin-left: 4px;
}

/* ── Article (blog post body) ──────────────────────────────── */

.article {
	max-width: 760px;
	margin: 0 auto;
	padding: 80px 24px 120px;
}

.article-meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	padding: 6px 14px;
	border: 1.5px solid var(--ink);
	border-radius: var(--radius-pill);
	background: var(--paper);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transform: rotate(-1.5deg);
	box-shadow: var(--shadow-sm);
}

.article h1 {
	font-size: clamp(44px, 6vw, 76px);
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.article .lead {
	margin-top: 32px;
	font-size: 24px;
	font-style: italic;
	color: var(--ink-soft);
	font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
}

.article > section {
	margin-top: 56px;
	max-width: var(--max-text);
}

.article > section:first-of-type > p:first-of-type::first-letter {
	float: left;
	margin: 6px 12px 0 0;
	padding: 6px 10px 0 10px;
	font-family: var(--display);
	font-size: 74px;
	font-weight: 800;
	font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
	line-height: 0.85;
	color: var(--paper);
	background: var(--ink);
	border-radius: 6px;
	box-shadow: var(--shadow-sm);
}

.article h2 {
	margin-bottom: 18px;
	font-size: clamp(28px, 3.4vw, 40px);
}

.article p {
	margin: 0 0 18px;
	font-size: 19px;
	line-height: 1.65;
	color: var(--ink-soft);
}

.article p:last-child {
	margin-bottom: 0;
}

.article ul {
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.article li {
	position: relative;
	margin: 0 0 12px;
	padding: 10px 18px 10px 44px;
	background: rgba(247, 240, 220, 0.6);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: 18px;
	line-height: 1.5;
	color: var(--ink-soft);
}

.article li::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 18px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--clay);
	box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--ink);
}

.disclaimer {
	margin-top: 64px;
	padding: 28px 32px;
	border: 2px dashed var(--forest);
	border-radius: var(--radius);
	background: rgba(200, 214, 165, 0.4);
}

.disclaimer h2 {
	margin-bottom: 10px;
	font-size: 22px;
	color: var(--forest-deep);
}

.disclaimer p {
	margin: 0;
	font-size: 17px;
	font-style: italic;
	color: var(--forest-deep);
}

/* ── Legal pages ───────────────────────────────────────────── */

.legal-page {
	max-width: 820px;
	margin: 0 auto;
	padding: 64px 24px 96px;
}

.legal-page h1 {
	margin-top: 8px;
	font-size: clamp(40px, 5.6vw, 68px);
}

.legal-card {
	margin-top: 40px;
	padding: 40px 36px;
	border: 2px solid var(--ink);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow-md);
}

.legal-card section {
	padding: 22px 0;
	border-bottom: 1.5px dashed var(--line);
}

.legal-card section:first-child {
	padding-top: 0;
}

.legal-card section:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.legal-card h2 {
	margin-bottom: 10px;
	font-size: 22px;
	letter-spacing: -0.01em;
}

.legal-card p {
	margin: 0 0 10px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink-soft);
}

.legal-card p:last-child {
	margin-bottom: 0;
}

/* ── Footer ────────────────────────────────────────────────── */

.footer {
	margin-top: 0;
	border-top: 3px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 56px;
	max-width: var(--max);
	margin: 0 auto;
	padding: 68px 24px 64px;
}

.footer .brand {
	color: var(--paper);
}

.footer .brand img {
	border-color: var(--paper);
}

.footer p {
	margin: 18px 0 0;
	max-width: 380px;
	color: rgba(247, 240, 220, 0.7);
	font-size: 15px;
	line-height: 1.55;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 14px 32px;
	align-content: start;
	justify-content: end;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.footer-links a {
	color: var(--paper);
	text-decoration: none;
	text-decoration-color: var(--gold);
}

.footer-links a:hover {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.footer-bottom {
	max-width: var(--max);
	margin: 0 auto;
	padding: 20px 24px 28px;
	border-top: 1px solid rgba(247, 240, 220, 0.18);
	color: rgba(247, 240, 220, 0.55);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ── Marquee ticker ─────────────────────────────────────────── */

.ticker {
	position: relative;
	overflow: hidden;
	border-top: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
	background: var(--gold);
}

.ticker-track {
	display: flex;
	gap: 48px;
	align-items: center;
	padding: 14px 0;
	white-space: nowrap;
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	animation: scroll 28s linear infinite;
}

.ticker-track span {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.ticker-track span::after {
	content: "✦";
	color: var(--clay);
}

@keyframes scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.ticker-track { animation: none; }
}

/* ── Reveal on load (robust: default visible, animate via backwards fill) ── */

@media (prefers-reduced-motion: no-preference) {
	.reveal {
		animation: rise 0.7s ease-out backwards;
	}
	.reveal-1 { animation-delay: 0.05s; }
	.reveal-2 { animation-delay: 0.18s; }
	.reveal-3 { animation-delay: 0.32s; }
	.reveal-4 { animation-delay: 0.46s; }

	@keyframes rise {
		from { opacity: 0; transform: translateY(20px); }
		to { opacity: 1; transform: translateY(0); }
	}
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 880px) {
	body { font-size: 18px; }

	.hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 56px 22px 80px;
	}

	.phone-scene {
		min-height: 560px;
	}

	.phone {
		margin: 0 auto;
		transform: rotate(2deg);
	}

	.sticker-1 { left: -8px; }
	.sticker-2 { right: -8px; }
	.sticker-3 { left: 4px; }

	.steps-flow {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.step-arrow {
		display: none;
	}

	.collage {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-links {
		justify-content: start;
	}

	.section {
		padding: 72px 22px;
	}

	.band-inner {
		padding: 88px 22px;
	}
}

@media (max-width: 560px) {
	body { font-size: 17px; }

	.nav {
		padding: 14px 18px;
	}

	.nav-links {
		gap: 0;
	}

	.nav-links a {
		padding: 6px 8px;
		font-size: 11px;
	}

	.hero-actions { display: grid; }
	.button { width: 100%; }

	.phone {
		width: 290px;
	}

	.sticker { font-size: 10px; padding: 8px 12px; }
	.sticker-1 { top: 16px; left: 4px; }
	.sticker-2 { top: 200px; right: -4px; }
	.sticker-3 { bottom: 40px; left: 8px; }

	.legal-card { padding: 28px 22px; }

	.article { padding: 56px 20px 80px; }
	.article > section:first-of-type > p:first-of-type::first-letter {
		font-size: 56px;
		padding: 4px 8px 0 8px;
	}
}

/* ── Print ─────────────────────────────────────────────────── */

@media print {
	body { background: white; color: black; }
	.site-header, .footer, .ticker, .sticker, .paw { display: none; }
	a { color: black; text-decoration: underline; }
}
