/* NOLUENGO 2.0 — una web para hacer cosas. */

:root {
	--ink: #050505;
	--graphite: #242424;
	--muted: #6d6d68;
	--steel: #a7a7a2;
	--ivory: #f4f4f2;
	--paper: #fff;
	--accent: #b3a38c;
	--line: rgba(5, 5, 5, .16);
	--line-dark: rgba(255, 255, 255, .18);
	--shell: min(1240px, calc(100vw - 48px));
	--header-height: 78px;
	--display: "Arial Black", Arial, Helvetica, sans-serif;
	--sans: Arial, Helvetica, sans-serif;
	--mono: Consolas, "Courier New", monospace;
	--ease: cubic-bezier(.2, .78, .25, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open {
	overflow: hidden;
}

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

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 4px;
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.shell--narrow {
	max-width: 820px;
}

.section {
	padding: clamp(84px, 10vw, 156px) 0;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	padding: 12px 18px;
	background: var(--ink);
	color: var(--paper);
	transform: translateY(-160%);
	transition: transform .2s ease;
}

.skip-link:focus {
	transform: none;
}

.nl-icon {
	width: 1.25em;
	height: 1.25em;
	flex: none;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .11em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 11px;
	height: 12px;
	background: var(--accent);
	clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
}

.eyebrow--light {
	color: rgba(255, 255, 255, .62);
}

.button-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 0 24px;
	border: 1px solid var(--ink);
	background: transparent;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .25s var(--ease), background .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover {
	transform: translate(-3px, -3px);
	box-shadow: 5px 5px 0 var(--accent);
}

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

.button--line {
	background: transparent;
}

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

.button--paper:hover {
	box-shadow: 5px 5px 0 var(--accent);
}

.button--ghost-light {
	border-color: rgba(255, 255, 255, .45);
	color: var(--paper);
}

.button--ghost-light:hover {
	background: var(--paper);
	color: var(--ink);
}

.text-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: var(--ink);
	font-weight: 800;
	cursor: pointer;
}

.text-button span {
	font-size: 21px;
	transition: transform .2s ease;
}

.text-button:hover span {
	transform: rotate(25deg);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-height);
	border-bottom: 1px solid var(--line);
	background: rgba(244, 244, 242, .91);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: grid;
	height: 100%;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 32px;
}

.brand {
	display: inline-flex;
	width: max-content;
	align-items: center;
	gap: 12px;
	font-family: var(--display);
	font-size: 19px;
	letter-spacing: -.04em;
	line-height: 1;
	text-decoration: none;
}

.brand__mark {
	width: 36px;
	height: 36px;
	transition: transform .5s var(--ease);
}

.brand:hover .brand__mark {
	transform: rotate(60deg);
}

.site-nav__list,
.mobile-menu__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.5vw, 40px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	background: var(--ink);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .24s var(--ease);
}

.site-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header__tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.language-switch {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}

.language-switch a {
	color: var(--muted);
	text-decoration: none;
}

.language-switch a[aria-current="true"] {
	color: var(--ink);
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.header-pick {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	gap: 13px;
	padding: 0 15px;
	background: var(--ink);
	color: var(--paper);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.header-pick:hover {
	background: var(--accent);
	color: var(--ink);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7px;
	padding: 0;
	border: 1px solid var(--line);
	background: transparent;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 1.5px;
	background: currentColor;
	transition: transform .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
	transform: translateY(4.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-4.25px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	top: var(--header-height);
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	background: var(--ivory);
}

.mobile-menu[hidden] {
	display: none;
}

.mobile-menu__inner {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
	padding-block: 38px 32px;
}

.mobile-menu__list {
	align-items: flex-start;
	flex-direction: column;
	gap: 6px;
}

.mobile-menu__list a {
	display: block;
	font-family: var(--display);
	font-size: clamp(34px, 10vw, 62px);
	letter-spacing: -.055em;
	line-height: 1.1;
	text-decoration: none;
}

.mobile-menu__bottom {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.mobile-menu__bottom p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.language-switch--large {
	font-size: 18px;
}

/* Hero */
.home-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100svh - var(--header-height));
	border-bottom: 1px solid var(--line);
}

.home-hero::before {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-position: center;
	background-size: 12.5vw 12.5vw;
	content: "";
	opacity: .32;
	pointer-events: none;
}

.home-hero__grid {
	position: relative;
	display: grid;
	min-height: calc(100svh - var(--header-height));
	grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
	align-items: center;
	gap: clamp(36px, 6vw, 100px);
	padding-block: 72px;
}

.home-hero__copy {
	position: relative;
	z-index: 2;
}

.home-hero__title {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(70px, 9vw, 142px);
	font-weight: 900;
	letter-spacing: -.085em;
	line-height: .81;
}

.home-hero__title span {
	display: block;
}

.home-hero__title span:last-child {
	color: var(--accent);
	-webkit-text-stroke: 1px var(--ink);
	text-shadow: 5px 5px 0 var(--ink);
}

.home-hero__lead {
	max-width: 620px;
	margin: 36px 0 32px;
	font-size: clamp(18px, 1.65vw, 24px);
	letter-spacing: -.02em;
	line-height: 1.42;
}

.hero-notes {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 20px;
	margin: 30px 0 0;
	padding: 0;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: .03em;
	list-style: none;
}

.hero-notes li {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hero-notes .nl-icon {
	width: 14px;
	height: 14px;
	color: var(--ink);
}

.hero-playground {
	position: relative;
	width: min(100%, 600px);
	aspect-ratio: 1;
	justify-self: end;
}

.hero-playground::before,
.hero-playground::after {
	position: absolute;
	border: 1px solid var(--line);
	content: "";
	pointer-events: none;
}

.hero-playground::before {
	inset: 8%;
	border-radius: 50%;
}

.hero-playground::after {
	inset: 27%;
	transform: rotate(45deg);
}

.hero-playground__orbit {
	position: absolute;
	inset: 18%;
	border: 1px dashed var(--steel);
	border-radius: 50%;
	animation: orbit 35s linear infinite;
}

.hero-playground__orbit::before,
.hero-playground__orbit::after {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--ink);
	content: "";
}

.hero-playground__orbit::before {
	top: -6px;
	left: 50%;
}

.hero-playground__orbit::after {
	right: -6px;
	bottom: 28%;
	background: var(--accent);
}

@keyframes orbit {
	to { transform: rotate(360deg); }
}

.hero-token {
	position: absolute;
	z-index: 2;
	display: flex;
	width: clamp(118px, 11vw, 158px);
	min-height: 112px;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	gap: 16px;
	padding: 17px;
	border: 1px solid var(--ink);
	background: var(--token-tone);
	box-shadow: 7px 7px 0 var(--ink);
	font-size: 12px;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}

.hero-token:hover {
	z-index: 5;
	box-shadow: 12px 12px 0 var(--ink);
	transform: translate(-5px, -5px) rotate(0deg) !important;
}

.hero-token span {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: var(--paper);
}

.hero-token strong {
	font-size: 13px;
}

.hero-token--1 { top: 4%; left: 9%; transform: rotate(-7deg); }
.hero-token--2 { top: 0; right: 8%; transform: rotate(5deg); }
.hero-token--3 { top: 37%; right: 0; transform: rotate(-3deg); }
.hero-token--4 { right: 11%; bottom: 3%; transform: rotate(7deg); }
.hero-token--5 { bottom: 0; left: 12%; transform: rotate(-5deg); }
.hero-token--6 { top: 38%; left: 0; transform: rotate(4deg); }

.hero-counter {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: grid;
	width: 160px;
	height: 160px;
	place-content: center;
	padding: 22px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--paper);
	text-align: center;
	transform: translate(-50%, -50%);
}

.hero-counter strong {
	font-family: var(--display);
	font-size: 52px;
	letter-spacing: -.07em;
	line-height: .85;
}

.hero-counter--future strong {
	font-size: 76px;
	line-height: .55;
}

.hero-counter span {
	margin-top: 10px;
	color: rgba(255, 255, 255, .65);
	font-family: var(--mono);
	font-size: 9px;
	line-height: 1.35;
	text-transform: uppercase;
}

/* Marquee */
.ticker {
	overflow: hidden;
	border-bottom: 1px solid var(--ink);
	background: var(--accent);
}

.ticker__track {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 26px;
	padding: 18px 0;
	animation: ticker 28s linear infinite;
	font-family: var(--display);
	font-size: clamp(20px, 2vw, 30px);
	letter-spacing: -.04em;
	line-height: 1;
	white-space: nowrap;
}

.ticker__track i {
	font-size: 13px;
	font-style: normal;
}

@keyframes ticker {
	to { transform: translateX(-50%); }
}

/* Section headings */
.section-heading h2,
.idea h2,
.friction h2,
.balance h2,
.principle h2,
.final-cta h2,
.catalog-hero h1,
.experience-hero h1,
.experience-how h2,
.editorial-hero h1,
.not-found h1 {
	margin: 0;
	font-family: var(--display);
	font-weight: 900;
	letter-spacing: -.072em;
	line-height: .94;
}

.section-heading h2,
.friction h2 {
	font-size: clamp(50px, 7.2vw, 100px);
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
	align-items: end;
	gap: 48px;
	margin-bottom: 64px;
}

.section-heading__aside {
	padding-bottom: 8px;
}

.section-heading__aside p,
.section-heading--split > p {
	max-width: 470px;
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 18px;
}

.section-heading--narrow {
	max-width: 900px;
	margin-bottom: 62px;
}

.section-heading--narrow > p:last-child {
	max-width: 690px;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: 19px;
}

/* Experience cards */
.collection {
	background: var(--paper);
}

.experience-grid {
	display: grid;
	grid-auto-flow: dense;
	grid-auto-rows: 255px;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 14px;
}

.experience-card {
	position: relative;
	overflow: hidden;
	grid-column: span 4;
	border: 1px solid var(--ink);
	background: var(--card-tone);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.experience-card--wide {
	grid-column: span 8;
}

.experience-card--tall {
	grid-row: span 2;
}

.experience-card::before {
	position: absolute;
	top: -70px;
	right: -70px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(5, 5, 5, .25);
	border-radius: 50%;
	content: "";
	transition: transform .5s var(--ease);
}

.experience-card::after {
	position: absolute;
	right: -20px;
	bottom: -50px;
	width: 120px;
	height: 120px;
	border: 1px solid rgba(5, 5, 5, .18);
	content: "";
	transform: rotate(35deg);
	transition: transform .5s var(--ease);
}

.experience-card:hover {
	z-index: 2;
	box-shadow: 8px 8px 0 var(--ink);
	transform: translate(-4px, -4px);
}

.experience-card:hover::before {
	transform: scale(1.25);
}

.experience-card:hover::after {
	transform: rotate(65deg) scale(1.08);
}

.experience-card__link {
	position: relative;
	z-index: 1;
	display: flex;
	height: 100%;
	justify-content: space-between;
	flex-direction: column;
	padding: 24px;
	text-decoration: none;
}

.experience-card__top,
.experience-card__action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.experience-card__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: var(--paper);
	transition: transform .4s var(--ease);
}

.experience-card:hover .experience-card__icon {
	transform: rotate(-12deg) scale(1.08);
}

.experience-card__category {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.experience-card__body {
	display: block;
	max-width: 520px;
}

.experience-card__title,
.experience-card__copy {
	display: block;
}

.experience-card__title {
	font-family: var(--display);
	font-size: clamp(23px, 2.4vw, 36px);
	letter-spacing: -.055em;
	line-height: 1;
}

.experience-card__copy {
	max-width: 440px;
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.4;
}

.experience-card__action {
	justify-content: flex-start;
	font-size: 12px;
	font-weight: 800;
}

.experience-card__action .nl-icon {
	transition: transform .25s ease;
}

.experience-card:hover .experience-card__action .nl-icon {
	transform: translateX(6px);
}

.experience-card--tall .experience-card__link {
	justify-content: flex-start;
}

.experience-card--tall .experience-card__body {
	margin-top: auto;
	margin-bottom: 38px;
}

.experience-card--tall .experience-card__title {
	font-size: clamp(34px, 4vw, 55px);
}

.experience-card--wide .experience-card__body {
	max-width: 70%;
}

.collection__footer {
	display: flex;
	justify-content: center;
	padding-top: 48px;
}

/* Brand idea */
.idea {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--paper);
}

.idea::before {
	position: absolute;
	top: -26vw;
	right: -12vw;
	width: 62vw;
	height: 62vw;
	border: 1px solid var(--line-dark);
	border-radius: 50%;
	box-shadow: 0 0 0 10vw rgba(255, 255, 255, .018), 0 0 0 20vw rgba(255, 255, 255, .014);
	content: "";
}

.idea__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9vw;
}

.idea h2 {
	max-width: 720px;
	font-size: clamp(58px, 8vw, 120px);
}

.idea__statement > p:last-child {
	max-width: 690px;
	margin: 34px 0 0;
	color: rgba(255, 255, 255, .65);
	font-size: clamp(18px, 1.8vw, 24px);
}

.formula {
	display: grid;
	align-content: center;
	gap: 0;
	padding-top: 48px;
}

.formula div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 24px 0;
	border-bottom: 1px solid var(--line-dark);
}

.formula span {
	color: var(--accent);
	font-family: var(--mono);
	font-size: 11px;
}

.formula strong {
	font-family: var(--display);
	font-size: clamp(32px, 4vw, 62px);
	letter-spacing: -.06em;
	line-height: 1;
	text-align: right;
}

.formula i {
	padding: 7px 0 0 12%;
	color: var(--accent);
	font-size: 30px;
	font-style: normal;
	transform: rotate(90deg);
	transform-origin: left center;
}

/* Less friction */
.friction {
	background: var(--ivory);
}

.anti-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.anti-steps article {
	position: relative;
	min-height: 360px;
	padding: 28px;
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	background: var(--paper);
}

.anti-steps article:nth-child(2) {
	background: var(--accent);
}

.anti-steps__no {
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	border: 1px solid var(--ink);
	border-radius: 50%;
	font-family: var(--display);
	font-size: 40px;
	line-height: 1;
}

.anti-steps small {
	position: absolute;
	top: 30px;
	right: 30px;
	font-family: var(--mono);
	font-size: 11px;
}

.anti-steps h3 {
	margin: 100px 0 16px;
	font-family: var(--display);
	font-size: clamp(25px, 2.5vw, 38px);
	letter-spacing: -.05em;
	line-height: 1;
}

.anti-steps p {
	max-width: 330px;
	margin: 0;
	color: var(--graphite);
}

/* Useful / fun split */
.balance {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-block: 1px solid var(--ink);
}

.balance__half {
	display: flex;
	min-height: 580px;
	justify-content: space-between;
	flex-direction: column;
	padding: clamp(30px, 5vw, 72px);
}

.balance__half--useful {
	border-right: 1px solid var(--ink);
	background: var(--paper);
}

.balance__half--fun {
	background: var(--accent);
}

.balance__label {
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
}

.balance h2 {
	max-width: 600px;
	font-size: clamp(56px, 7vw, 104px);
}

.balance__copy {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: min(330px, 32vw);
	margin: 0;
	padding: 28px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	font-size: 16px;
	transform: translate(-50%, -50%) rotate(-3deg);
}

/* Principles */
.principles {
	background: var(--paper);
}

.principles__grid {
	display: grid;
	grid-template-columns: 1.12fr .88fr;
	gap: 14px;
}

.principle {
	position: relative;
	display: flex;
	min-height: 580px;
	flex-direction: column;
	padding: clamp(30px, 5vw, 68px);
	border: 1px solid var(--ink);
}

.principle h2 {
	max-width: 700px;
	margin-top: auto;
	font-size: clamp(44px, 5vw, 74px);
}

.principle > p:not(.eyebrow) {
	max-width: 600px;
	margin: 28px 0 0;
	font-size: 18px;
}

.principle > strong {
	margin-top: 28px;
	font-family: var(--mono);
	font-size: 14px;
	text-transform: uppercase;
}

.principle--privacy {
	background: var(--ivory);
}

.principle--free {
	background: var(--ink);
	color: var(--paper);
}

.principle--free > p:not(.eyebrow) {
	color: rgba(255, 255, 255, .65);
}

.principle__icon {
	position: relative;
	display: grid;
	width: 120px;
	height: 120px;
	place-items: center;
	margin: 10px 0 70px;
	border: 1px solid var(--ink);
	border-radius: 50%;
}

.principle__icon span {
	position: absolute;
	width: 42px;
	height: 48px;
	border: 2px solid var(--ink);
	clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.principle__icon span:nth-child(2) { transform: translateX(30px); opacity: .3; }
.principle__icon span:nth-child(3) { transform: translateX(-30px); opacity: .3; }

.principle__zero {
	margin: 16px 0 70px;
	color: var(--accent);
	font-family: var(--display);
	font-size: clamp(100px, 13vw, 180px);
	letter-spacing: -.1em;
	line-height: .72;
}

/* Community ideas */
.idea-lab {
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--ink);
	background: var(--ivory);
}

.idea-lab::before {
	position: absolute;
	top: -190px;
	left: -150px;
	width: 430px;
	height: 430px;
	border: 1px solid var(--line);
	border-radius: 50%;
	box-shadow: 0 0 0 55px rgba(179, 163, 140, .08), 0 0 0 110px rgba(179, 163, 140, .05);
	content: "";
	pointer-events: none;
}

.idea-lab__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
	align-items: start;
	gap: clamp(48px, 8vw, 120px);
}

.idea-lab__intro h2 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(52px, 6.5vw, 92px);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: .94;
}

.idea-lab__intro > p:not(.eyebrow) {
	max-width: 620px;
	margin: 30px 0 0;
	font-size: 19px;
}

.idea-lab__intro aside {
	max-width: 540px;
	margin-top: 36px;
	padding: 20px 0 0 24px;
	border-top: 1px solid var(--ink);
	border-left: 5px solid var(--accent);
	color: var(--muted);
	font-family: var(--mono);
	font-size: 11px;
	line-height: 1.6;
}

.idea-lab__mark {
	display: inline-block;
	margin: 0 0 42px;
	color: var(--accent);
	font-family: var(--display);
	font-size: clamp(72px, 10vw, 142px);
	letter-spacing: -.1em;
	line-height: .7;
	-webkit-text-stroke: 1px var(--ink);
	text-shadow: 5px 5px 0 var(--ink);
	transform: rotate(-5deg);
}

.idea-lab__form-wrap {
	position: relative;
	border: 1px solid var(--ink);
	background: var(--paper);
	box-shadow: 12px 12px 0 var(--accent);
}

.idea-lab__form-wrap::before {
	display: block;
	height: 38px;
	border-bottom: 1px solid var(--ink);
	background: radial-gradient(circle at 17px 50%, var(--ink) 0 4px, transparent 4.5px), radial-gradient(circle at 33px 50%, var(--steel) 0 4px, transparent 4.5px), radial-gradient(circle at 49px 50%, var(--accent) 0 4px, transparent 4.5px);
	content: "";
}

.idea-form {
	padding: clamp(26px, 4vw, 48px);
}

.idea-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.idea-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.idea-field > span {
	font-size: 13px;
	font-weight: 800;
}

.idea-field small {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 9px;
	line-height: 1.4;
}

.idea-field input,
.idea-field textarea {
	width: 100%;
	border: 1px solid var(--ink);
	border-radius: 0;
	background: var(--ivory);
	color: var(--ink);
	font-size: 16px;
	transition: background .2s ease, box-shadow .2s ease;
}

.idea-field input {
	height: 52px;
	padding: 0 14px;
}

.idea-field textarea {
	min-height: 190px;
	padding: 14px;
	line-height: 1.5;
	resize: vertical;
}

.idea-field input:focus,
.idea-field textarea:focus {
	outline: 0;
	background: var(--paper);
	box-shadow: 4px 4px 0 var(--accent);
}

.idea-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 18px;
}

.idea-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 24px;
}

.idea-form__footer p {
	max-width: 250px;
	margin: 0;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 8px;
	line-height: 1.5;
	text-transform: uppercase;
}

.idea-status {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 16px clamp(26px, 4vw, 48px);
	border-bottom: 1px solid var(--ink);
	font-size: 13px;
	font-weight: 800;
}

.idea-status--success {
	background: var(--accent);
}

.idea-status--error {
	background: #f1d9d4;
	color: #6e180d;
}

/* Final CTA and footer */
.final-cta {
	overflow: hidden;
	padding: clamp(90px, 12vw, 170px) 0;
	background: var(--accent);
}

.final-cta__inner {
	position: relative;
}

.final-cta__inner::after {
	position: absolute;
	top: 50%;
	right: -4vw;
	width: 320px;
	height: 320px;
	border: 50px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.final-cta p {
	position: relative;
	z-index: 1;
	margin: 0 0 25px;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.final-cta h2 {
	position: relative;
	z-index: 1;
	max-width: 980px;
	font-size: clamp(62px, 10vw, 146px);
}

.final-cta .button-row {
	position: relative;
	z-index: 1;
	margin-top: 45px;
}

.site-footer {
	background: var(--ink);
	color: var(--paper);
}

.site-footer__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	padding-block: 74px;
}

.brand--footer {
	color: var(--paper);
	font-size: clamp(28px, 4vw, 54px);
}

.brand--footer .brand__mark {
	width: clamp(50px, 6vw, 78px);
	height: clamp(50px, 6vw, 78px);
}

.site-footer__tagline {
	margin: 26px 0 0;
	color: rgba(255, 255, 255, .55);
	font-size: 18px;
}

.site-footer__nav {
	display: grid;
	gap: 10px;
	text-align: right;
}

.site-footer__nav a {
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.site-footer__nav a:hover {
	color: var(--accent);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 32px;
	padding-block: 22px;
	border-top: 1px solid var(--line-dark);
	color: rgba(255, 255, 255, .5);
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid var(--line-dark);
	color: var(--paper);
	font-size: 17px;
	text-decoration: none;
}

/* Catalog */
.catalog-hero {
	padding: clamp(80px, 10vw, 145px) 0 60px;
	border-bottom: 1px solid var(--ink);
	background: var(--accent);
}

.catalog-hero__grid {
	display: grid;
	grid-template-columns: 1.35fr .65fr;
	align-items: end;
	gap: 60px;
}

.catalog-hero h1 {
	max-width: 900px;
	font-size: clamp(68px, 11vw, 156px);
}

.catalog-hero__aside {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 8px;
}

.catalog-hero__aside p {
	max-width: 350px;
	margin: 0;
	font-size: 18px;
}

.catalog-hero__aside strong {
	font-family: var(--display);
	font-size: clamp(54px, 7vw, 92px);
	letter-spacing: -.08em;
	line-height: .8;
}

.catalog-hero__future {
	display: flex;
	align-items: flex-end;
	gap: 14px;
}

.catalog-hero__future strong {
	font-size: clamp(80px, 9vw, 126px);
	line-height: .55;
}

.catalog-hero__future span {
	max-width: 105px;
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
}

.catalog-list {
	background: var(--paper);
}

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
}

.filters button {
	display: flex;
	min-height: 44px;
	align-items: center;
	gap: 15px;
	padding: 0 17px;
	border: 1px solid var(--ink);
	background: transparent;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.filters button span {
	display: grid;
	min-width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	background: rgba(5, 5, 5, .1);
	font-family: var(--mono);
	font-size: 9px;
}

.filters button:hover,
.filters button.is-active {
	background: var(--ink);
	color: var(--paper);
}

.filters button.is-active span {
	background: var(--accent);
	color: var(--ink);
}

.experience-card[hidden] {
	display: none;
}

.catalog-idea-card {
	grid-column: span 8;
	border: 1px dashed var(--ink);
	background: var(--ivory);
	transition: background .25s ease, border-style .25s ease;
}

.catalog-idea-card:hover {
	border-style: solid;
	background: var(--accent);
}

.catalog-idea-card > a {
	display: grid;
	height: 100%;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 28px;
	text-decoration: none;
}

.catalog-idea-card__mark {
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	border: 1px solid var(--ink);
	border-radius: 50%;
	font-family: var(--display);
	font-size: 48px;
	line-height: 1;
	transition: transform .35s var(--ease), background .25s ease, color .25s ease;
}

.catalog-idea-card:hover .catalog-idea-card__mark {
	background: var(--ink);
	color: var(--paper);
	transform: rotate(90deg);
}

.catalog-idea-card strong,
.catalog-idea-card small {
	display: block;
}

.catalog-idea-card strong {
	font-family: var(--display);
	font-size: clamp(24px, 3vw, 38px);
	letter-spacing: -.05em;
	line-height: 1;
}

.catalog-idea-card small {
	max-width: 560px;
	margin-top: 10px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
}

.catalog-idea-card .nl-icon {
	width: 28px;
	height: 28px;
}

.filter-empty {
	padding: 80px 20px;
	border: 1px dashed var(--steel);
	color: var(--muted);
	text-align: center;
}

.catalog-end {
	padding: 60px 0;
	background: var(--ink);
	color: var(--paper);
}

.catalog-end__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.catalog-end p {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(26px, 4vw, 54px);
	letter-spacing: -.05em;
}

/* Individual experience */
.experience-page {
	background: var(--paper);
}

.experience-hero {
	position: relative;
	overflow: hidden;
	padding: 32px 0 clamp(84px, 10vw, 140px);
	background: var(--ivory);
	background: color-mix(in srgb, var(--experience-tone) 42%, var(--ivory));
}

.experience-hero::before {
	position: absolute;
	top: 22%;
	left: -8vw;
	width: 26vw;
	height: 26vw;
	border: 1px solid rgba(5, 5, 5, .16);
	border-radius: 50%;
	content: "";
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: clamp(60px, 7vw, 100px);
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
}

.back-link span {
	transition: transform .2s ease;
}

.back-link:hover span {
	transform: translateX(-5px);
}

.experience-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr);
	align-items: center;
	gap: clamp(50px, 8vw, 120px);
}

.experience-hero h1 {
	max-width: 780px;
	font-size: clamp(66px, 9vw, 132px);
}

.experience-hero__lead {
	max-width: 670px;
	margin: 34px 0 0;
	font-size: clamp(19px, 2vw, 27px);
	letter-spacing: -.025em;
	line-height: 1.4;
}

.experience-hero__actions {
	margin-top: 35px;
}

.experience-hero__actions small {
	max-width: 120px;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 9px;
	line-height: 1.35;
	text-transform: uppercase;
}

.experience-poster {
	border: 1px solid var(--ink);
	background: var(--paper);
	box-shadow: 14px 14px 0 var(--ink);
	transform: rotate(2deg);
	transition: transform .5s var(--ease);
}

.experience-poster:hover {
	transform: rotate(0) translate(-4px, -4px);
}

.experience-poster__chrome {
	display: flex;
	height: 38px;
	align-items: center;
	gap: 6px;
	padding: 0 13px;
	border-bottom: 1px solid var(--ink);
}

.experience-poster__chrome i {
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid var(--ink);
	border-radius: 50%;
}

.experience-poster__chrome span {
	margin-left: auto;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 8px;
}

.experience-poster__stage {
	position: relative;
	display: flex;
	min-height: 460px;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	padding: clamp(28px, 4vw, 54px);
	background: var(--experience-tone);
}

.experience-poster__stage::after {
	position: absolute;
	top: 15%;
	right: 13%;
	width: 110px;
	height: 110px;
	border: 1px solid rgba(5, 5, 5, .3);
	content: "";
	transform: rotate(45deg);
}

.experience-poster__number {
	font-family: var(--mono);
	font-size: 11px;
}

.experience-poster__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 145px;
	height: 145px;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: var(--paper);
	transform: translate(-50%, -50%);
}

.experience-poster__icon .nl-icon {
	width: 64px;
	height: 64px;
}

.experience-poster__stage strong {
	position: relative;
	z-index: 1;
	max-width: 85%;
	font-family: var(--display);
	font-size: clamp(28px, 3.2vw, 47px);
	letter-spacing: -.06em;
	line-height: .95;
}

.experience-poster__stage a {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: grid;
	width: 98px;
	height: 98px;
	place-content: center;
	padding: 14px;
	border-radius: 50%;
	background: var(--paper);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}

.experience-poster__stage a span {
	font-size: 20px;
}

.experience-how {
	padding: clamp(84px, 10vw, 150px) 0;
	background: var(--ink);
	color: var(--paper);
}

.experience-how__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 10vw;
}

.experience-how h2 {
	max-width: 520px;
	font-size: clamp(52px, 7vw, 94px);
}

.experience-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: experience-step;
}

.experience-steps li {
	display: grid;
	grid-template-columns: 55px 1fr;
	gap: 22px;
	padding: 28px 0;
	border-bottom: 1px solid var(--line-dark);
}

.experience-steps li:first-child {
	border-top: 1px solid var(--line-dark);
}

.experience-steps span {
	color: var(--accent);
	font-family: var(--mono);
	font-size: 11px;
}

.experience-steps p {
	margin: 0;
	font-size: clamp(20px, 2.1vw, 30px);
	letter-spacing: -.02em;
}

.experience-facts {
	background: var(--experience-tone);
}

.experience-facts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-left: 1px solid var(--ink);
}

.experience-facts__grid > div {
	display: flex;
	min-height: 150px;
	align-items: center;
	gap: 18px;
	padding: 30px;
	border-right: 1px solid var(--ink);
}

.experience-facts .nl-icon {
	width: 28px;
	height: 28px;
}

.experience-facts strong {
	font-size: 14px;
}

.more-experiences {
	background: var(--paper);
}

.more-experiences .section-heading--split {
	grid-template-columns: 1fr .5fr;
}

.more-experiences .section-heading h2 {
	font-size: clamp(48px, 7vw, 92px);
}

.experience-grid--related {
	grid-auto-rows: 330px;
	grid-template-columns: repeat(3, 1fr);
}

.experience-grid--related .experience-card {
	grid-column: auto;
}

/* Generic pages and 404 */
.editorial-hero {
	padding: clamp(80px, 10vw, 150px) 0 64px;
	border-bottom: 1px solid var(--ink);
	background: var(--accent);
}

.editorial-hero h1,
.not-found h1 {
	font-size: clamp(62px, 9vw, 124px);
}

.entry-content {
	font-size: 18px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
	margin: 2em 0 .7em;
	font-family: var(--display);
	letter-spacing: -.045em;
	line-height: 1.05;
}

.entry-content h2 { font-size: clamp(34px, 5vw, 54px); }
.entry-content h3 { font-size: clamp(26px, 4vw, 36px); }
.entry-content p,
.entry-content li { color: var(--graphite); }

.not-found {
	min-height: calc(100svh - var(--header-height));
	padding: 100px 0;
	background: var(--ink);
	color: var(--paper);
}

.not-found__inner {
	position: relative;
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	align-items: center;
	gap: 8vw;
}

.not-found__number {
	color: var(--accent);
	font-family: var(--display);
	font-size: clamp(140px, 25vw, 370px);
	letter-spacing: -.11em;
	line-height: .75;
	transform: rotate(-7deg);
}

.not-found p:not(.eyebrow) {
	max-width: 540px;
	margin: 28px 0 34px;
	color: rgba(255, 255, 255, .65);
	font-size: 19px;
}

/* Reveal motion */
.js [data-reveal],
.js [data-reveal-group] > * {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js [data-reveal-group] > *:nth-child(2) { transition-delay: .07s; }
.js [data-reveal-group] > *:nth-child(3) { transition-delay: .14s; }
.js [data-reveal-group] > *:nth-child(4) { transition-delay: .21s; }
.js [data-reveal-group] > *:nth-child(5) { transition-delay: .28s; }
.js [data-reveal-group] > *:nth-child(6) { transition-delay: .35s; }
.js [data-reveal-group] > *:nth-child(7) { transition-delay: .42s; }
.js [data-reveal-group] > *:nth-child(8) { transition-delay: .49s; }

.js [data-reveal].is-visible,
.js [data-reveal-group].is-visible > * {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
	:root { --shell: min(100% - 36px, 1240px); }
	.site-header__inner { grid-template-columns: 1fr auto; }
	.site-nav { display: none; }
	.header-pick { display: none; }
	.menu-toggle { display: flex; }
	.home-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr); gap: 30px; }
	.hero-token { width: 128px; min-height: 104px; padding: 14px; }
	.hero-token--3 { right: -2%; }
	.hero-token--6 { left: -2%; }
	.experience-grid { grid-auto-rows: 250px; }
	.experience-card { grid-column: span 6; }
	.experience-card--wide { grid-column: span 12; }
	.experience-card--tall { grid-row: span 1; }
	.catalog-idea-card { grid-column: span 12; }
	.idea__grid { grid-template-columns: 1fr; gap: 70px; }
	.formula { max-width: 820px; padding-top: 0; }
	.balance__half { min-height: 500px; }
	.principles__grid { grid-template-columns: 1fr 1fr; }
	.idea-lab__grid { grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr); gap: 50px; }
	.experience-hero__grid { grid-template-columns: 1fr .75fr; gap: 50px; }
	.experience-poster__stage { min-height: 400px; }
}

@media (max-width: 820px) {
	:root { --header-height: 70px; }
	.home-hero__grid { grid-template-columns: 1fr; padding-block: 70px 40px; }
	.home-hero__title { font-size: clamp(68px, 18vw, 112px); }
	.hero-playground { width: min(620px, 100%); justify-self: center; }
	.section-heading--split { grid-template-columns: 1fr; gap: 26px; }
	.section-heading__aside { max-width: 560px; }
	.anti-steps { grid-template-columns: 1fr; }
	.anti-steps article { min-height: 300px; }
	.anti-steps h3 { margin-top: 70px; }
	.balance { grid-template-columns: 1fr; }
	.balance__half { min-height: 420px; }
	.balance__half--useful { border-right: 0; border-bottom: 1px solid var(--ink); }
	.balance__copy { width: min(360px, 80vw); }
	.principles__grid { grid-template-columns: 1fr; }
	.principle { min-height: 520px; }
	.idea-lab__grid { grid-template-columns: 1fr; }
	.idea-lab__intro { max-width: 720px; }
	.idea-lab__form-wrap { width: min(100%, 720px); }
	.catalog-hero__grid { grid-template-columns: 1fr; gap: 45px; }
	.catalog-hero__aside { max-width: 620px; }
	.experience-hero__grid { grid-template-columns: 1fr; }
	.experience-poster { width: min(560px, calc(100% - 16px)); }
	.experience-how__grid { grid-template-columns: 1fr; gap: 60px; }
	.experience-facts__grid { grid-template-columns: 1fr; border-bottom: 1px solid var(--ink); }
	.experience-facts__grid > div { min-height: 110px; border-bottom: 0; }
	.experience-grid--related { grid-auto-rows: 290px; grid-template-columns: 1fr; }
	.not-found__inner { grid-template-columns: 1fr; }
	.not-found__number { margin-bottom: 30px; }
}

@media (max-width: 620px) {
	:root { --shell: calc(100% - 28px); }
	.section { padding-block: 78px; }
	.brand { font-size: 17px; }
	.brand__mark { width: 32px; height: 32px; }
	.site-header__tools > .language-switch { display: none; }
	.home-hero__grid { min-height: auto; padding-top: 58px; }
	.home-hero__title { font-size: clamp(62px, 20vw, 92px); }
	.home-hero__title span:last-child { text-shadow: 3px 3px 0 var(--ink); }
	.home-hero__lead { margin-top: 28px; font-size: 18px; }
	.button-row .button { width: 100%; }
	.hero-notes { align-items: flex-start; flex-direction: column; }
	.hero-playground { aspect-ratio: 1 / 1.1; margin-top: 30px; }
	.hero-token { width: 110px; min-height: 96px; padding: 11px; box-shadow: 5px 5px 0 var(--ink); }
	.hero-token strong { font-size: 10px; }
	.hero-token span { width: 29px; height: 29px; }
	.hero-token--1 { top: 2%; left: 2%; }
	.hero-token--2 { top: 1%; right: 1%; }
	.hero-token--3 { top: 37%; right: -1%; }
	.hero-token--4 { right: 2%; bottom: 2%; }
	.hero-token--5 { bottom: 0; left: 2%; }
	.hero-token--6 { top: 38%; left: -1%; }
	.hero-counter { width: 122px; height: 122px; padding: 15px; }
	.hero-counter strong { font-size: 38px; }
	.hero-counter span { font-size: 7px; }
	.ticker__track { padding-block: 15px; }
	.section-heading h2,
	.friction h2 { font-size: clamp(46px, 15vw, 72px); }
	.experience-grid { display: grid; grid-auto-rows: auto; grid-template-columns: 1fr; gap: 10px; }
	.experience-card,
	.experience-card--wide,
	.experience-card--tall { min-height: 330px; grid-column: auto; grid-row: auto; }
	.experience-card__title,
	.experience-card--tall .experience-card__title { font-size: 32px; }
	.experience-card--wide .experience-card__body { max-width: 100%; }
	.catalog-idea-card { min-height: 300px; grid-column: auto; }
	.catalog-idea-card > a { grid-template-columns: auto 1fr; align-content: center; }
	.catalog-idea-card .nl-icon { grid-column: 2; }
	.idea h2 { font-size: clamp(54px, 16vw, 82px); }
	.formula strong { font-size: 34px; }
	.anti-steps article { min-height: 280px; padding: 24px; }
	.balance__half { min-height: 390px; padding: 28px 20px; }
	.balance h2 { font-size: clamp(52px, 15vw, 76px); }
	.balance__copy { padding: 21px; font-size: 14px; }
	.principle { min-height: 500px; padding: 27px; }
	.principle h2 { font-size: 45px; }
	.principle__zero { font-size: 120px; }
	.idea-lab__mark { margin-bottom: 32px; font-size: 92px; text-shadow: 3px 3px 0 var(--ink); }
	.idea-lab__intro h2 { font-size: 50px; }
	.idea-form { padding: 24px 20px; }
	.idea-form__row { grid-template-columns: 1fr; }
	.idea-form__footer { align-items: stretch; flex-direction: column; }
	.idea-form__footer .button { width: 100%; }
	.idea-form__footer p { max-width: none; }
	.final-cta h2 { font-size: clamp(58px, 18vw, 90px); }
	.final-cta__inner::after { right: -130px; width: 250px; height: 250px; }
	.site-footer__top { align-items: flex-start; flex-direction: column; padding-block: 60px; }
	.site-footer__nav { text-align: left; }
	.site-footer__bottom { grid-template-columns: 1fr auto; }
	.site-footer__bottom p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
	.catalog-hero { padding-top: 70px; }
	.catalog-hero h1 { font-size: clamp(64px, 18vw, 104px); }
	.catalog-hero__aside { align-items: flex-start; flex-direction: column; }
	.filters { display: grid; grid-template-columns: 1fr 1fr; }
	.filters button { justify-content: space-between; }
	.catalog-end__inner { align-items: flex-start; flex-direction: column; }
	.experience-hero { padding-top: 24px; }
	.back-link { margin-bottom: 56px; }
	.experience-hero h1 { font-size: clamp(60px, 17vw, 92px); }
	.experience-hero__lead { font-size: 19px; }
	.experience-hero__actions small { max-width: none; }
	.experience-poster { box-shadow: 8px 8px 0 var(--ink); }
	.experience-poster__stage { min-height: 380px; }
	.experience-poster__icon { width: 122px; height: 122px; }
	.experience-poster__icon .nl-icon { width: 52px; height: 52px; }
	.experience-how h2 { font-size: 54px; }
	.more-experiences .section-heading--split { grid-template-columns: 1fr; }
	.not-found { padding-top: 70px; }
	.not-found__number { font-size: 48vw; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.js [data-reveal],
	.js [data-reveal-group] > * {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.site-header,
	.site-footer,
	.ticker,
	.button,
	.filters { display: none !important; }
	body { background: #fff; color: #000; }
	.section { padding: 36px 0; }
}
