:root {
	color-scheme: light;
	--ink: #162033;
	--muted: #687083;
	--soft: #8a7866;
	--line: #ded2bf;
	--paper: #fffaf1;
	--paper-deep: #f5ead9;
	--panel: #fffdf8;
	--green: #1f6f58;
	--green-soft: #e9f3ec;
	--coral: #bf6648;
	--coral-soft: #fae9e1;
	--gold: #bd8732;
	--gold-soft: #fff1cc;
	--lavender: #7560a8;
	--lavender-soft: #f0eafd;
	--blue: #315f80;
	--blue-soft: #e9f3fa;
	--shadow: 0 18px 50px rgba(38, 28, 18, 0.1);
	--serif: Georgia, 'Times New Roman', serif;
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		repeating-linear-gradient(90deg, rgba(132, 107, 75, 0.045) 0 1px, transparent 1px 120px),
		repeating-linear-gradient(0deg, rgba(132, 107, 75, 0.035) 0 1px, transparent 1px 120px),
		linear-gradient(180deg, var(--paper), var(--paper-deep));
	color: var(--ink);
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

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

.shell {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 250, 241, 0.9);
	border-bottom: 1px solid rgba(91, 75, 55, 0.16);
	backdrop-filter: blur(16px);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	font-weight: 850;
}

.brand-mark {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	color: var(--green);
	box-shadow: 0 8px 20px rgba(38, 28, 18, 0.06);
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 900;
}

.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px;
	color: #415066;
	font-size: 14px;
	font-weight: 650;
}

.nav-links a {
	border-radius: 8px;
	padding: 9px 11px;
}

.nav-links a:hover {
	background: rgba(31, 111, 88, 0.09);
	color: var(--ink);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	letter-spacing: 0;
}

h1,
h2 {
	font-family: var(--serif);
	font-weight: 850;
}

h1 {
	margin-bottom: 20px;
	font-size: 66px;
	line-height: 0.96;
}

h2 {
	margin-bottom: 10px;
	font-size: 38px;
	line-height: 1.04;
}

h3 {
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.2;
}

p {
	line-height: 1.6;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--green);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.home-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	min-height: 820px;
	overflow: hidden;
	padding: 58px 0 48px;
	isolation: isolate;
}

.hero-copy {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	width: min(820px, 100%);
	text-align: center;
}

.hero-copy h1 {
	max-width: 760px;
}

.hero-copy h1 span {
	display: inline-block;
	color: var(--green);
	font-style: italic;
}

.hero-copy::before {
	display: none;
}

.floating-art {
	position: absolute;
	z-index: 1;
	display: block;
	height: auto;
	pointer-events: none;
	user-select: none;
}

.mascot-art {
	top: 300px;
	left: max(-18px, calc(50% - 650px));
	width: clamp(96px, 8.5vw, 132px);
	transform: rotate(-7deg);
}

.sticker-art {
	top: 250px;
	left: 50%;
	width: min(880px, 68vw);
	opacity: 0.38;
	transform: translateX(-50%);
}

.note-art {
	top: 342px;
	right: max(-18px, calc(50% - 670px));
	width: clamp(110px, 10vw, 150px);
	height: auto;
	transform: rotate(9deg);
}

.hero-preview {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(132px, 0.25fr) minmax(0, 1fr);
	gap: 18px;
	width: min(900px, 100%);
	margin-top: 46px;
	border: 1px solid rgba(91, 75, 55, 0.16);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.84);
	padding: 18px;
	text-align: left;
	box-shadow: 0 26px 70px rgba(39, 31, 23, 0.12);
}

.preview-query {
	border-right: 1px solid rgba(91, 75, 55, 0.14);
	padding: 8px 18px 8px 0;
}

.preview-query p {
	margin: 12px 0 0;
	border: 1px solid rgba(122, 92, 188, 0.16);
	border-radius: 8px;
	background: var(--lavender-soft);
	padding: 16px;
	font-weight: 780;
	line-height: 1.45;
	box-shadow: 0 14px 30px rgba(122, 92, 188, 0.1);
	transform: rotate(-1.5deg);
}

.preview-results {
	display: grid;
	gap: 16px;
}

.preview-toolbar {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 14px;
}

.preview-toolbar strong,
.preview-card strong {
	display: block;
	color: var(--ink);
	font-weight: 900;
}

.preview-toolbar p,
.preview-card p {
	margin: 3px 0 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}

.preview-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.preview-card {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	min-height: 150px;
	border: 1px solid rgba(91, 75, 55, 0.14);
	border-radius: 8px;
	background: #fffefb;
	padding: 14px;
	box-shadow: 0 12px 24px rgba(39, 31, 23, 0.055);
}

.preview-card .book-tile {
	width: 58px;
	height: 78px;
	box-shadow: 0 8px 14px rgba(24, 32, 47, 0.14);
}

.preview-card .book-tile span {
	font-size: 9px;
}

.preview-card span {
	display: block;
	margin: 2px 0 7px;
	color: var(--soft);
	font-size: 12px;
}

.preview-feedback {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(189, 135, 50, 0.2);
	border-radius: 8px;
	background: rgba(255, 246, 229, 0.7);
	padding: 10px 12px;
	color: #7f5b1d;
	font-size: 13px;
}

.preview-feedback .mini-button {
	min-height: 34px;
	padding: 7px 10px;
	background: rgba(255, 253, 248, 0.86);
}

.hero-lede,
.page-hero p {
	max-width: 720px;
	color: #435066;
	font-size: 19px;
	line-height: 1.58;
}

.hero-lede {
	margin: 0 auto;
}

.search-box {
	display: flex;
	align-items: center;
	gap: 10px;
	width: min(760px, 100%);
	margin-top: 24px;
	padding: 8px;
	border: 1.5px solid #1b2940;
	border-radius: 8px;
	background: var(--panel);
	box-shadow: 0 18px 38px rgba(38, 28, 18, 0.1);
}

.home-hero .search-box {
	margin-right: auto;
	margin-left: auto;
}

.search-box input {
	min-width: 0;
	flex: 1;
	border: 0;
	outline: 0;
	padding: 14px 12px;
	background: transparent;
	color: var(--ink);
}

.search-box input::placeholder {
	color: #8a94a7;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 0;
	border-radius: 8px;
	padding: 12px 17px;
	background: #111a2c;
	color: #fffdf8;
	font-weight: 850;
	cursor: pointer;
	box-shadow: 0 10px 18px rgba(17, 26, 44, 0.18);
}

.button.secondary {
	border: 1px solid var(--line);
	background: var(--panel);
	color: var(--ink);
	box-shadow: none;
}

.button:hover,
.mini-button:hover,
.path-card:hover,
.card:hover,
.question-card:hover,
.collection-card:hover,
.prompt-tile:hover,
.book-card:hover {
	transform: translateY(-1px);
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 16px;
}

.try-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
	margin-top: 16px;
}

.try-row > span {
	display: inline-flex;
	align-items: center;
	color: var(--muted);
	font-size: 13px;
	font-weight: 760;
}

.chip,
.pill {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 253, 248, 0.82);
	color: #415066;
	font-size: 13px;
}

.chip {
	padding: 8px 12px;
}

.chip:nth-child(3n + 1) {
	background: var(--green-soft);
}

.chip:nth-child(3n + 2) {
	background: var(--coral-soft);
}

.chip:nth-child(3n + 3) {
	background: var(--lavender-soft);
}

.pill {
	padding: 6px 10px;
	font-size: 12px;
}

.intent-card,
.book-note-card,
.search-aside {
	border: 1px solid rgba(91, 75, 55, 0.2);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.84);
	box-shadow: var(--shadow);
}

.ranked-item small,
.book-note-card small,
.intent-card small,
.reader-note small,
.demo-result small {
	display: block;
	margin-bottom: 5px;
	color: var(--soft);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.soft-cta,
.text-link,
.inline-link {
	color: var(--green);
	font-weight: 850;
}

.section {
	padding: 42px 0;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.section-lede {
	max-width: 760px;
	color: var(--muted);
	line-height: 1.65;
}

.path-grid,
.grid,
.question-grid,
.collection-grid,
.report-grid {
	display: grid;
	gap: 16px;
}

.path-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid,
.report-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.question-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-card,
.card,
.question-card,
.collection-card,
.prompt-tile,
.book-card,
.result-card,
.notice {
	border: 1px solid rgba(91, 75, 55, 0.18);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.84);
	box-shadow: 0 12px 28px rgba(38, 28, 18, 0.055);
	transition:
		transform 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.path-card {
	min-height: 176px;
	padding: 20px;
}

.path-card:nth-child(4n + 1) {
	background: linear-gradient(180deg, var(--green-soft), rgba(255, 253, 248, 0.9));
}

.path-card:nth-child(4n + 2) {
	background: linear-gradient(180deg, var(--coral-soft), rgba(255, 253, 248, 0.9));
}

.path-card:nth-child(4n + 3) {
	background: linear-gradient(180deg, var(--blue-soft), rgba(255, 253, 248, 0.9));
}

.path-card:nth-child(4n + 4) {
	background: linear-gradient(180deg, var(--lavender-soft), rgba(255, 253, 248, 0.9));
}

.path-card small,
.card small,
.question-card small {
	display: block;
	margin-bottom: 10px;
	color: var(--green);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.path-card p,
.card p,
.question-card p,
.collection-card p {
	color: var(--muted);
}

.path-card span,
.question-card span,
.collection-card span {
	color: var(--green);
	font-size: 13px;
	font-weight: 850;
}

.wide-band {
	margin: 22px 0;
	padding: 46px 0;
	border-top: 1px solid rgba(91, 75, 55, 0.14);
	border-bottom: 1px solid rgba(91, 75, 55, 0.14);
	background: rgba(255, 253, 248, 0.55);
}

.browse-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 30px;
	align-items: start;
}

.prompt-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.prompt-tile {
	display: grid;
	min-height: 112px;
	padding: 16px;
}

.prompt-tile strong {
	font-family: var(--serif);
	font-size: 19px;
}

.prompt-tile span {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.demo-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(170px, 0.28fr);
	gap: 24px;
	align-items: center;
	overflow: hidden;
	border: 1px solid rgba(91, 75, 55, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(120deg, rgba(255, 253, 248, 0.92), rgba(246, 242, 255, 0.58)), rgba(255, 253, 248, 0.72);
	padding: 26px;
	box-shadow: var(--shadow);
}

.demo-note-art {
	justify-self: end;
	width: min(180px, 100%);
	height: auto;
	transform: rotate(8deg);
}

.demo-flow {
	display: grid;
	grid-template-columns: 0.7fr 1fr;
	grid-column: 1 / -1;
	gap: 16px;
	align-items: stretch;
}

.reader-note,
.demo-result {
	border: 1px solid rgba(91, 75, 55, 0.16);
	border-radius: 8px;
	padding: 18px;
	background: var(--panel);
}

.reader-note {
	transform: rotate(-1.5deg);
	background: var(--lavender-soft);
}

.reader-note p {
	margin-bottom: 0;
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.34;
}

.demo-result h3 {
	font-family: var(--serif);
	font-size: 24px;
}

.question-showcase {
	display: grid;
	grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
	gap: 18px;
	align-items: stretch;
}

.request-art-card {
	position: relative;
	display: grid;
	align-content: center;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid rgba(91, 75, 55, 0.16);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.82);
	padding: 18px;
	box-shadow: 0 12px 28px rgba(38, 28, 18, 0.055);
}

.request-art-card img {
	display: block;
	width: 112%;
	max-width: none;
	margin-left: -6%;
}

.request-art-card p {
	position: relative;
	z-index: 1;
	max-width: 320px;
	margin: -14px auto 0;
	border: 1px solid rgba(91, 75, 55, 0.12);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.9);
	padding: 12px 14px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
}

.book-shelf {
	display: flex;
	align-items: end;
	gap: 7px;
	min-height: 106px;
	margin: 14px 0 0;
}

.compact-shelf {
	min-height: 84px;
}

.compact-shelf .book-tile {
	width: 54px;
	height: 74px;
}

.collection-card {
	padding: 16px;
}

.collection-card h3 {
	margin-top: 10px;
	font-family: var(--serif);
	font-size: 22px;
}

.card {
	padding: 20px;
}

.card h3 {
	font-family: var(--serif);
}

.book-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.book-card {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 124px;
	padding: 13px;
}

.book-card h3 {
	margin: 0 0 4px;
	font-size: 16px;
}

.book-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.35;
}

.book-card span {
	display: block;
	margin-top: 8px;
	color: var(--soft);
	font-size: 12px;
}

.book-tile {
	position: relative;
	display: grid;
	place-items: end start;
	width: 72px;
	height: 96px;
	overflow: hidden;
	border: 1px solid rgba(24, 32, 47, 0.24);
	border-radius: 6px;
	background:
		linear-gradient(135deg, var(--tile-a), color-mix(in srgb, var(--tile-b), var(--tile-a) 24%)),
		var(--tile-a);
	color: var(--tile-c);
	box-shadow: 0 10px 18px rgba(24, 32, 47, 0.18);
}

.book-tile::before {
	position: absolute;
	inset: 9px 0 9px 13px;
	width: 1px;
	background: color-mix(in srgb, var(--tile-c) 45%, transparent);
	content: '';
}

.book-tile span {
	position: relative;
	padding: 8px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.05;
}

.book-tile-large {
	width: 132px;
	height: 178px;
}

.book-tile-large span {
	padding: 14px;
	font-size: 19px;
}

.page-hero {
	margin: 0 calc(50% - 50vw);
	padding: 54px calc(50vw - 50%) 34px;
	border-bottom: 1px solid rgba(91, 75, 55, 0.16);
	background: rgba(255, 253, 248, 0.62);
}

.page-hero h1 {
	max-width: 900px;
	font-size: 62px;
	line-height: 1;
}

.search-hero {
	padding-top: 60px;
}

.page-hero-grid,
.book-hero-grid,
.search-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 30px;
	align-items: start;
}

.intent-card,
.book-note-card,
.search-aside {
	padding: 20px;
}

.intent-card p {
	margin-bottom: 18px;
	color: #435066;
	font-family: var(--serif);
	font-size: 24px;
	line-height: 1.28;
}

.book-note-card {
	display: grid;
	justify-items: center;
	gap: 16px;
	text-align: center;
}

.book-note-card p {
	margin: 0;
	color: var(--muted);
}

.meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
}

.ranked-list {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.ranked-item {
	display: grid;
	grid-template-columns: 48px 94px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	border: 1px solid rgba(91, 75, 55, 0.18);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.88);
	padding: 15px;
	box-shadow: 0 12px 28px rgba(38, 28, 18, 0.05);
}

.rank {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid rgba(189, 135, 50, 0.32);
	border-radius: 8px;
	background: var(--gold-soft);
	color: #6f4f18;
	font-weight: 900;
}

.ranked-item h2 {
	margin-bottom: 4px;
	font-family: var(--serif);
	font-size: 25px;
}

.ranked-item p {
	margin-bottom: 0;
	color: var(--muted);
}

.feedback-panel,
.letter-panel,
.how-grid {
	border: 1px solid rgba(91, 75, 55, 0.18);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.86);
	box-shadow: var(--shadow);
}

.feedback-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
	margin: 30px 0 0;
	padding: 22px;
}

.feedback-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.mini-button {
	min-height: 40px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	padding: 9px 12px;
	color: var(--ink);
	font-weight: 800;
	cursor: pointer;
}

.feedback-form {
	display: grid;
	gap: 10px;
}

.feedback-form textarea {
	width: 100%;
	min-height: 96px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 12px;
	background: #fffefb;
	color: var(--ink);
	resize: vertical;
}

.letter-panel {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 24px;
	align-items: center;
	padding: 26px;
}

.letter-form textarea {
	min-height: 150px;
}

.how-grid {
	display: grid;
	grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 24px;
}

.how-grid article {
	border-left: 1px solid var(--line);
	padding-left: 18px;
}

.how-grid strong {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--gold-soft);
	color: #7f5b1d;
}

.search-layout {
	padding-top: 36px;
}

.search-aside {
	position: sticky;
	top: 96px;
}

.search-aside h2 {
	font-size: 28px;
}

.mini-question-list {
	display: grid;
	gap: 9px;
	margin-top: 16px;
}

.search-note-form {
	margin-top: 16px;
}

.search-note-form textarea {
	min-height: 108px;
}

.search-note-form .button {
	justify-content: center;
	width: 100%;
}

.mini-question-list a {
	border-top: 1px solid var(--line);
	padding-top: 9px;
	color: var(--green);
	font-weight: 800;
}

.search-results {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.result-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 17px;
}

.result-card h2 {
	margin-bottom: 6px;
	font-size: 28px;
}

.result-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.result-type {
	display: block;
	margin-bottom: 8px;
	color: var(--green);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.notice {
	border-color: rgba(189, 135, 50, 0.38);
	background: var(--gold-soft);
	padding: 18px;
	color: #6f4f18;
}

.notice p {
	color: #6f4f18;
}

.footer {
	margin-top: 52px;
	border-top: 1px solid rgba(91, 75, 55, 0.16);
	padding: 30px 0 42px;
	color: var(--muted);
}

.footer-inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 24px;
}

.footer strong {
	color: var(--ink);
}

.footer p {
	max-width: 560px;
	margin: 8px 0 0;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
	font-size: 14px;
}

@media (max-width: 980px) {
	h1 {
		font-size: 54px;
	}

	.home-hero,
	.hero-preview,
	.page-hero-grid,
	.book-hero-grid,
	.search-layout,
	.browse-grid,
	.demo-panel,
	.question-showcase,
	.letter-panel,
	.how-grid {
		grid-template-columns: 1fr;
	}

	.path-grid,
	.grid,
	.report-grid,
	.collection-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.question-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero {
		min-height: auto;
	}

	.mascot-art {
		top: 260px;
		left: 0;
	}

	.note-art {
		top: 390px;
		right: 0;
	}

	.preview-query {
		border-right: 0;
		border-bottom: 1px solid rgba(91, 75, 55, 0.14);
		padding: 0 0 16px;
	}

	.search-aside {
		position: static;
	}
}

@media (max-width: 720px) {
	.shell {
		width: min(100% - 24px, 1180px);
	}

	.nav {
		align-items: flex-start;
		flex-direction: column;
		padding: 14px 0;
	}

	.nav-links {
		justify-content: flex-start;
	}

	h1,
	.page-hero h1 {
		font-size: 44px;
		line-height: 1.02;
	}

	h2 {
		font-size: 31px;
	}

	.home-hero {
		padding-top: 44px;
	}

	.search-box,
	.demo-flow,
	.preview-card-grid,
	.result-card {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		text-align: left;
		justify-items: stretch;
	}

	.hero-copy h1 {
		max-width: 390px;
	}

	.hero-lede {
		margin: 0;
		font-size: 18px;
	}

	.try-row {
		justify-content: flex-start;
	}

	.search-box {
		align-items: stretch;
		flex-direction: column;
	}

	.search-box input {
		width: 100%;
		min-height: 46px;
	}

	.search-box .button {
		width: 100%;
	}

	.sticker-art {
		top: 148px;
		left: 58%;
		width: 460px;
		opacity: 0.42;
	}

	.mascot-art {
		top: 590px;
		left: 12px;
		width: 92px;
	}

	.note-art {
		display: none;
	}

	.hero-preview {
		margin-top: 126px;
		padding: 14px;
	}

	.preview-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.preview-feedback {
		align-items: stretch;
		flex-direction: column;
	}

	.preview-feedback .mini-button {
		width: 100%;
	}

	.demo-panel {
		grid-template-columns: 1fr;
	}

	.demo-note-art {
		display: none;
	}

	.path-grid,
	.grid,
	.report-grid,
	.question-grid,
	.collection-grid,
	.prompt-grid,
	.book-grid {
		grid-template-columns: 1fr;
	}

	.ranked-item {
		grid-template-columns: 42px minmax(0, 1fr);
	}

	.ranked-item .book-tile {
		display: none;
	}

	.section-head,
	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}

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