/* ============================================================
   Nomuk — maths practice for kids
   Design: a maths exercise book. Graph-paper ground, blue-black
   ink, sticker cards, highlighter accents, handwritten notes.
   Palette from the Nomu brand bible.
   ============================================================ */

:root {
	--paper: #f5fafd;
	--white: #ffffff;
	--ink: #17324a;
	--ink-soft: #3f5a72;
	--blue: #29b8e8;
	--blue-deep: #1687b3;
	--green: #c8e84a;
	--orange: #f5a623;
	--red: #e84a4a;
	--wa-green: #075e54;
	--wa-paper: #ece5dd;
	--wa-out: #d9fdd3;
	--grid-line: rgba(41, 184, 232, 0.12);
	--shadow: 6px 6px 0 rgba(23, 50, 74, 0.16);
	--radius: 18px;
	--font-display: "Baloo 2", "Comic Sans MS", cursive;
	--font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
	--font-hand: "Patrick Hand", "Comic Sans MS", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
}

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

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

a { color: var(--blue-deep); }

:focus-visible {
	outline: 3px dashed var(--orange);
	outline-offset: 3px;
	border-radius: 4px;
}

.visually-hidden {
	position: absolute; width: 1px; height: 1px;
	clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
	position: absolute; left: 1rem; top: -4rem; z-index: 100;
	background: var(--ink); color: #fff; padding: .6rem 1rem;
	border-radius: 0 0 10px 10px; transition: top .2s;
}
.skip-link:focus { top: 0; }

.container {
	max-width: 1120px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container-narrow { max-width: 760px; }

/* Graph paper — the page we write on */
.graph-bg,
.hero,
.section-paper {
	background-color: var(--paper);
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 28px 28px;
}

.section-white { background: var(--white); }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }

.section-head {
	max-width: 640px;
	margin: 0 auto clamp(2rem, 5vw, 3.5rem);
	text-align: center;
}
.section-head h2 {
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	font-weight: 800;
	margin-bottom: .75rem;
}
.section-head p { color: var(--ink-soft); }

/* Highlighter swipes — marker over ink, never coloured text */
.hl, .hl-green, h1 em {
	font-style: normal;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	background-image: linear-gradient(104deg, transparent 2%, var(--green) 4%, var(--green) 96%, transparent 98%);
	background-size: 100% 42%;
	background-position: 0 78%;
	background-repeat: no-repeat;
	padding-inline: .12em;
}
.hl { background-image: linear-gradient(104deg, transparent 2%, #ffd98a 4%, #ffd98a 96%, transparent 98%); }

/* Scalloped sheet edges */
.scallop {
	position: absolute; left: 0; right: 0;
	height: 26px;
	background-size: 52px 26px;
	background-repeat: repeat-x;
	pointer-events: none;
}
.scallop-down {
	bottom: 0;
	background-image: radial-gradient(circle at 26px 26px, var(--white) 25px, transparent 26px);
}
.scallop-up {
	top: 0;
	background-image: radial-gradient(circle at 26px 0, var(--white) 25px, transparent 26px);
}

/* ============ Buttons ============ */
.btn {
	display: inline-flex; align-items: center; gap: .6rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	padding: .7rem 1.4rem;
	border: 3px solid var(--ink);
	border-radius: 999px;
	box-shadow: var(--shadow);
	transition: transform .15s ease, box-shadow .15s ease;
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn:hover, .btn:focus-visible {
	transform: translate(-2px, -2px);
	box-shadow: 8px 8px 0 rgba(23, 50, 74, 0.16);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(23, 50, 74, 0.16); }
.btn-primary { background: var(--blue); color: var(--ink); }
.btn-green { background: var(--green); color: var(--ink); }
.btn-big { font-size: 1.2rem; padding: .9rem 1.8rem; }

/* ============ Nav ============ */
.nav-wrap {
	position: sticky; top: 0; z-index: 50;
	background: rgba(245, 250, 253, 0.92);
	backdrop-filter: blur(6px);
	border-bottom: 3px solid var(--ink);
}
.nav {
	max-width: 1120px; margin-inline: auto;
	padding: .7rem clamp(1.25rem, 4vw, 2.5rem);
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { text-decoration: none; display: flex; align-items: baseline; gap: .5rem; }
.brand-word {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.7rem;
	color: var(--blue-deep);
	letter-spacing: .01em;
}
.brand-by { font-family: var(--font-hand); color: var(--ink-soft); font-size: .95rem; }
.nav-links { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.5rem); }
.nav-links > a {
	color: var(--ink); text-decoration: none; font-weight: 700; font-size: .98rem;
}
.nav-links > a:hover { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2.5px; }
.btn-nav { box-shadow: 3px 3px 0 rgba(23, 50, 74, 0.16); font-size: .95rem; padding: .45rem 1.1rem; }
.nav-toggle { display: none; }

/* ============ Hero ============ */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 5.5rem; overflow: hidden; }
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.eyebrow {
	font-family: var(--font-hand);
	font-size: 1.15rem;
	color: var(--ink-soft);
	margin-bottom: .75rem;
}
.hero h1 {
	font-size: clamp(2.5rem, 5.5vw, 3.9rem);
	font-weight: 800;
	margin-bottom: 1rem;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34rem; }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.chip-soon {
	font-family: var(--font-hand);
	color: var(--ink-soft);
	border: 2px dashed var(--ink-soft);
	border-radius: 999px;
	padding: .35rem .9rem;
	font-size: .95rem;
}
.trust-strip {
	list-style: none;
	display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
	margin-top: 1.5rem;
	font-weight: 700; font-size: .92rem;
}
.trust-strip li { display: flex; align-items: center; gap: .45rem; }
.trust-strip li::before {
	content: "✓";
	font-family: var(--font-display);
	color: var(--white);
	background: var(--blue-deep);
	width: 1.35rem; height: 1.35rem;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: .8rem;
	flex: none;
}

/* Hero stage: Nomu sticker + floating operators + the try-one card */
.hero-stage { position: relative; display: grid; justify-items: center; }
.hero-sticker {
	position: relative;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 50%;
	box-shadow: var(--shadow);
	width: min(370px, 78%);
	aspect-ratio: 1;
	display: grid; place-items: center;
	overflow: hidden;
}
.hero-sticker img { width: 88%; height: auto; }
.nomu-bubble {
	position: absolute; top: 11%; right: 14%;
	background: var(--white);
	border: 2.5px solid var(--ink);
	border-radius: 14px 14px 14px 2px;
	padding: .3rem .7rem;
	font-family: var(--font-hand);
	font-size: 1.05rem;
	box-shadow: 3px 3px 0 rgba(23, 50, 74, 0.16);
}
.op-chip {
	position: absolute;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.5rem;
	width: 2.6rem; height: 2.6rem;
	display: grid; place-items: center;
	background: var(--white);
	border: 2.5px solid var(--ink);
	border-radius: 12px;
	box-shadow: 3px 3px 0 rgba(23, 50, 74, 0.16);
	z-index: 2;
	animation: bob 3.4s ease-in-out infinite;
}
.op-1 { top: 4%; left: 4%; background: #ffe9c4; }
.op-2 { top: 16%; right: 2%; background: #e2f6fd; animation-delay: .6s; }
.op-3 { bottom: 34%; left: -2%; background: #f0f7cf; animation-delay: 1.1s; }
.op-4 { bottom: 40%; right: 0; background: #ffdede; animation-delay: 1.7s; }
@keyframes bob {
	0%, 100% { transform: translateY(0) rotate(-3deg); }
	50% { transform: translateY(-9px) rotate(3deg); }
}

/* Signature: answer a real question */
.try-one {
	margin-top: -1.6rem;
	background: var(--white);
	border: 3px solid var(--orange);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.1rem 1.4rem 1rem;
	text-align: center;
	transform: rotate(-1.5deg);
	width: min(340px, 100%);
	position: relative;
	z-index: 3;
}
.try-label {
	position: absolute; top: -1rem; left: 1rem;
	font-family: var(--font-hand);
	background: var(--orange);
	color: var(--ink);
	border: 2px solid var(--ink);
	border-radius: 999px;
	padding: .05rem .8rem;
	font-size: 1rem;
	transform: rotate(-4deg);
}
.try-q {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2rem;
	margin: .3rem 0 .6rem;
}
.try-blank {
	display: inline-block; min-width: 2.2ch;
	border-bottom: 4px dotted var(--blue);
	line-height: 1.05;
}
.try-answers { display: flex; justify-content: center; gap: .6rem; }
.try-btn {
	font-family: var(--font-display);
	font-weight: 700; font-size: 1.25rem;
	color: var(--ink);
	background: var(--paper);
	border: 2.5px solid var(--ink);
	border-radius: 12px;
	padding: .35rem 1rem;
	cursor: pointer;
	box-shadow: 3px 3px 0 rgba(23, 50, 74, 0.16);
	transition: transform .12s, background .12s;
}
.try-btn:hover { transform: translateY(-2px); background: var(--white); }
.try-btn.is-right { background: var(--green); }
.try-btn.is-wrong { background: #ffd6d6; animation: wobble .4s; }
@keyframes wobble {
	25% { transform: translateX(-5px) rotate(-2deg); }
	75% { transform: translateX(5px) rotate(2deg); }
}
.try-note {
	font-family: var(--font-hand);
	color: var(--ink-soft);
	font-size: .98rem;
	margin-top: .6rem;
}

/* Confetti (spawned by JS) */
.confetti {
	position: absolute;
	width: 10px; height: 14px;
	top: 30%;
	border-radius: 2px;
	pointer-events: none;
	animation: confetti-fall 1.1s ease-in forwards;
	z-index: 5;
}
@keyframes confetti-fall {
	0% { opacity: 1; transform: translateY(0) rotate(0); }
	100% { opacity: 0; transform: translateY(46vh) rotate(540deg); }
}

/* ============ Stickers (why it works) ============ */
.sticker-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
}
.sticker {
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.75rem 1.5rem;
}
.tilt-l { transform: rotate(-1.2deg); }
.tilt-r { transform: rotate(1.2deg); }
.sticker h3 { font-size: 1.35rem; margin: .9rem 0 .5rem; }
.sticker p { color: var(--ink-soft); font-size: .98rem; }
.sticker-icon {
	width: 3.4rem; height: 3.4rem;
	border-radius: 14px;
	border: 2.5px solid var(--ink);
	display: grid; place-items: center;
}
.sticker-icon svg { width: 2rem; height: 2rem; }
.icon-blue { background: #e2f6fd; color: var(--blue-deep); }
.icon-orange { background: #ffe9c4; color: #b26a00; }
.icon-red { background: #ffdede; color: var(--red); }

/* Curriculum number line */
.numberline { margin-top: clamp(2.5rem, 6vw, 4rem); }
.numberline-note {
	font-family: var(--font-hand);
	text-align: center;
	color: var(--ink-soft);
	font-size: 1.1rem;
	margin-bottom: 3.6rem;
}
.numberline-track {
	display: flex;
	justify-content: space-between;
	border-top: 4px dashed var(--blue);
	max-width: 880px;
	margin-inline: auto;
	padding-top: 0;
}
.nl-stop {
	position: relative;
	top: -1.05rem;
	display: grid; justify-items: center; gap: .35rem;
	font-weight: 800; font-size: .92rem;
	text-align: center;
	width: 6.5rem;
}
.nl-stop i {
	font-style: normal;
	font-family: var(--font-display);
	font-weight: 800;
	width: 2.1rem; height: 2.1rem;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 50%;
	display: grid; place-items: center;
}
.nl-stop.done i { background: var(--green); }
.nl-stop.here i { background: var(--orange); transform: scale(1.25); }
.nl-you {
	position: absolute; top: -2.3rem;
	font-family: var(--font-hand);
	font-style: normal;
	font-weight: 400;
	color: var(--ink);
	background: var(--orange);
	border: 2px solid var(--ink);
	padding: 0 .6rem;
	border-radius: 999px;
	white-space: nowrap;
	transform: rotate(-3deg);
}

/* ============ Screens strip ============ */
.screens-strip {
	display: flex;
	gap: clamp(1rem, 2.5vw, 1.75rem);
	overflow-x: auto;
	padding: 1rem clamp(1.25rem, 6vw, 4rem) 2rem;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--blue) transparent;
}
.phone {
	flex: none;
	scroll-snap-align: center;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 22px;
	box-shadow: var(--shadow);
	padding: .8rem .8rem 1rem;
	width: min(240px, 68vw);
}
.phone img {
	border-radius: 12px;
	border: 2px solid rgba(23, 50, 74, 0.15);
	width: 100%;
}
.phone figcaption {
	font-family: var(--font-hand);
	font-size: 1.02rem;
	text-align: center;
	margin-top: .7rem;
	line-height: 1.3;
}
.phone:nth-child(odd) { transform: rotate(-.8deg); }
.phone:nth-child(even) { transform: rotate(.8deg); }

/* ============ WhatsApp section ============ */
.wa-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.wa-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.lead-sm { color: var(--ink-soft); margin-bottom: 1.25rem; }
.wa-list { list-style: none; display: grid; gap: .8rem; }
.wa-list li { padding-left: 1.9rem; position: relative; }
.wa-list li::before {
	content: "";
	position: absolute; left: 0; top: .3rem;
	width: 1.05rem; height: 1.05rem;
	border: 2.5px solid var(--ink);
	border-radius: 6px;
	background: var(--green);
}
.wa-reassure {
	margin-top: 1.25rem;
	font-family: var(--font-hand);
	font-size: 1.12rem;
	color: var(--ink-soft);
}
.wa-phone {
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 26px;
	box-shadow: var(--shadow);
	padding: .9rem;
	max-width: 380px;
	justify-self: center;
	width: 100%;
	transform: rotate(1deg);
}
.wa-screen { border-radius: 16px; overflow: hidden; border: 2px solid rgba(23, 50, 74, 0.15); }
.wa-header {
	background: var(--wa-green);
	color: #fff;
	display: flex; align-items: center; gap: .6rem;
	padding: .6rem .9rem;
	font-weight: 700;
}
.wa-avatar {
	width: 1.9rem; height: 1.9rem;
	background: var(--blue);
	color: var(--ink);
	font-family: var(--font-display);
	border-radius: 50%;
	display: grid; place-items: center;
}
.wa-msgs {
	background: var(--wa-paper);
	padding: .9rem .8rem 1.1rem;
	display: grid; gap: .55rem;
}
.wa-msg {
	background: #fff;
	border-radius: 10px 10px 10px 2px;
	min-width: 6.5rem;
	padding: .5rem .7rem .9rem;
	font-size: .9rem;
	line-height: 1.45;
	max-width: 88%;
	position: relative;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}
.wa-msg time {
	position: absolute; right: .6rem; bottom: .2rem;
	font-size: .66rem;
	color: #8696a0;
}
.wa-out {
	background: var(--wa-out);
	border-radius: 10px 10px 2px 10px;
	justify-self: end;
}

/* ============ Feature grid ============ */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.25rem, 3vw, 1.75rem);
}
.feature {
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	padding: 1.4rem 1.4rem 1.5rem;
	box-shadow: 4px 4px 0 rgba(23, 50, 74, 0.12);
}
.feature h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; }
.feature:nth-child(1) { border-top: 8px solid var(--blue); }
.feature:nth-child(2) { border-top: 8px solid var(--orange); }
.feature:nth-child(3) { border-top: 8px solid var(--red); }
.feature:nth-child(4) { border-top: 8px solid var(--green); }
.feature:nth-child(5) { border-top: 8px solid var(--red); }
.feature:nth-child(6) { border-top: 8px solid var(--blue); }

/* ============ FAQ ============ */
.faq-item {
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 14px;
	box-shadow: 4px 4px 0 rgba(23, 50, 74, 0.12);
	margin-bottom: 1rem;
	overflow: hidden;
}
.faq-item summary {
	list-style: none;
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.12rem;
	padding: 1rem 3rem 1rem 1.25rem;
	position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	font-family: var(--font-display);
	position: absolute; right: 1.1rem; top: 50%;
	translate: 0 -50%;
	font-size: 1.6rem;
	color: var(--blue-deep);
	transition: rotate .2s;
}
.faq-item[open] summary::after { rotate: 45deg; }
.faq-item p { padding: 0 1.25rem 1.2rem; color: var(--ink-soft); }

/* ============ CTA band ============ */
.cta-band {
	position: relative;
	background: var(--ink);
	color: #fff;
	padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
}
.scallop-ink { background-image: radial-gradient(circle at 26px 0, var(--white) 25px, transparent 26px); }
.cta-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
}
.cta-nomu {
	width: clamp(180px, 24vw, 300px);
	background: var(--white);
	border: 3px solid var(--blue);
	border-radius: 50%;
	box-shadow: 8px 8px 0 rgba(41, 184, 232, 0.35);
}
.cta-copy h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .75rem; }
.cta-copy > p { color: #c8dcea; max-width: 34rem; margin-bottom: 1.5rem; }
.cta-soon { font-family: var(--font-hand); color: #9fbdd1; margin-top: 1rem; font-size: 1rem; }
.cta-band .btn { border-color: var(--white); box-shadow: 6px 6px 0 rgba(41, 184, 232, 0.35); }

/* ============ Footer ============ */
.footer {
	background: #102438;
	color: #c8dcea;
	padding: 3rem 0 1.5rem;
	font-size: .95rem;
}
.footer a { color: #7fd4f2; }
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(200, 220, 234, .2);
}
.footer h3 {
	font-size: 1rem; color: #fff;
	margin-bottom: .5rem; letter-spacing: .02em;
}
.footer-brand {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.9rem;
	color: var(--blue);
	line-height: 1;
}
.footer-tag { font-family: var(--font-hand); margin-top: .4rem; }
.footer-legal { padding-top: 1.25rem; text-align: center; font-size: .85rem; }

/* ============ Terms page ============ */
.terms-body { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.terms-sheet {
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(1.75rem, 5vw, 3.5rem);
}
.terms-sheet h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: .5rem; }
.terms-sheet .terms-updated { font-family: var(--font-hand); color: var(--ink-soft); margin-bottom: 2rem; }
.terms-sheet h2 {
	font-size: 1.4rem;
	margin: 2rem 0 .6rem;
	padding-bottom: .25rem;
	border-bottom: 3px solid var(--green);
	display: inline-block;
}
.terms-sheet h3 { font-size: 1.1rem; margin: 1.25rem 0 .4rem; }
.terms-sheet p, .terms-sheet li { color: var(--ink-soft); margin-bottom: .6rem; }
.terms-sheet ul { padding-left: 1.4rem; }

/* ============ Responsive ============ */
@media (max-width: 940px) {
	.hero-grid, .wa-grid { grid-template-columns: 1fr; }
	.hero-stage { max-width: 480px; margin-inline: auto; }
	.wa-phone { transform: none; }
	.sticker-row { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
	.tilt-l, .tilt-r { transform: none; }
	.feature-grid { grid-template-columns: 1fr 1fr; }
	.cta-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
	.footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

	.nav-toggle {
		display: grid; gap: 5px;
		background: none; border: none; cursor: pointer; padding: .5rem;
	}
	.nav-toggle-bar { width: 26px; height: 3.5px; background: var(--ink); border-radius: 2px; }
	.nav-links {
		display: none;
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--paper);
		border-bottom: 3px solid var(--ink);
		flex-direction: column;
		padding: 1rem 1.5rem 1.5rem;
		align-items: flex-start;
	}
	.nav-links.is-open { display: flex; }

	.numberline-track {
		flex-direction: column;
		border-top: none;
		border-left: 4px dashed var(--blue);
		gap: 1.6rem;
		max-width: none;
		margin-left: 1rem;
		padding: .5rem 0 .5rem 0;
	}
	.nl-stop {
		top: 0; left: -1.15rem;
		grid-template-columns: auto 1fr;
		align-items: center;
		justify-items: start;
		column-gap: .9rem;
		width: auto; text-align: left;
	}
	.nl-you {
		position: static;
		grid-column: 2;
		justify-self: start;
		translate: none;
		transform: rotate(-2deg);
	}
}

@media (max-width: 560px) {
	.feature-grid { grid-template-columns: 1fr; }
	.try-q { font-size: 1.7rem; }
	.hero { padding-bottom: 4.5rem; }
}

/* ============ Motion discipline ============ */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.op-chip { animation: none; }
	.confetti { display: none; }
	.btn, .try-btn { transition: none; }
}
