/* NewCloudStore: Warm Editorial Cloud */

@font-face { font-family: "Newsreader"; src: url("../fonts/newsreader-normal.woff2") format("woff2"); font-weight: 400 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url("../fonts/newsreader-italic.woff2") format("woff2"); font-weight: 400 600; font-style: italic; font-display: swap; }
@font-face { font-family: "Hanken Grotesk"; src: url("../fonts/hanken-normal.woff2") format("woff2"); font-weight: 400 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Hanken Grotesk"; src: url("../fonts/hanken-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }

:root {
	--bg: #F6F1E8;
	--surface: #FBF8F2;
	--panel: #EFE6D8;
	--sand: #E3D5BE;
	--ink: #26221F;
	--ink-soft: #5E564D;
	--muted: #6F675D;
	--accent: #A84A28;
	--accent-deep: #8C3B1E;
	--accent-soft: #F1DDD1;
	--copper: #B87A48;
	--slate: #44566B;
	--slate-soft: #DDE3E8;
	--olive: #7A7C68;
	--night: #1F1C19;
	--night-2: #2A2622;
	--line: #DCCFBC;
	--line-soft: #E7DCCB;

	--font-display: "Newsreader", Georgia, "Times New Roman", serif;
	--font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

	--r-sm: 6px;
	--r-md: 14px;
	--r-pill: 999px;
	--shadow: 0 1px 2px rgba(74, 52, 30, .05), 0 12px 32px -12px rgba(74, 52, 30, .18);
	--wrap: 1200px;
	--gutter: clamp(16px, 4vw, 32px);
	--header-h: 72px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* Reset (zero specificity so components win) */
:where(*, *::before, *::after) { box-sizing: border-box; }
:where(html) { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
:where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol) { margin: 0; }
:where(ul[class], ol[class]) { list-style: none; padding: 0; }
:where(img, svg, video) { display: block; max-width: 100%; height: auto; }
:where(input, button, textarea, select) { font: inherit; color: inherit; }
:where(a) { color: inherit; }

html { background: var(--bg); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	font-feature-settings: "ss01", "kern";
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
body.menu-open { overflow: hidden; }

::selection { background: var(--accent-soft); color: var(--ink); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: var(--r-sm); text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 12px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: calc(820px + var(--gutter) * 2); }

.icon { flex: none; }

/* Buttons & links */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 12px 24px; border-radius: var(--r-pill);
	font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1.2; letter-spacing: .005em;
	text-decoration: none; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
	transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn .icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #FFF9F3; }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--light { border-color: rgba(246, 241, 232, .5); color: var(--bg); }
.btn--light:hover { background: var(--bg); color: var(--night); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--accent); text-decoration: none; }
.link-arrow .icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.logo__mark { color: var(--accent); }
.logo__word { font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: -.01em; line-height: 1; }
.logo__word em { font-style: italic; font-weight: 500; color: var(--accent); }
.logo--light { color: var(--bg); }
.logo--light .logo__word em { color: #E3A07F; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(246, 241, 232, .94); border-bottom: 1px solid var(--line); }
@supports (backdrop-filter: blur(8px)) { .site-header { background: rgba(246, 241, 232, .86); backdrop-filter: saturate(1.4) blur(12px); } }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.site-header__bar { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.site-header__brand { text-decoration: none; margin-right: auto; display: inline-flex; align-items: center; min-height: 44px; }
.site-header__actions { display: flex; align-items: center; gap: 4px; }
.iconbtn { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-pill); background: transparent; border: 0; cursor: pointer; color: var(--ink); transition: background-color .2s; }
.iconbtn:hover { background: var(--panel); }
.iconbtn--menu .iconbtn__close { display: none; }
.iconbtn--menu[aria-expanded="true"] .iconbtn__open { display: none; }
.iconbtn--menu[aria-expanded="true"] .iconbtn__close { display: block; }

.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__list > li { position: static; display: flex; align-items: center; }
.nav__list > li > a {
	position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px;
	font-weight: 500; font-size: 15.5px; text-decoration: none; color: var(--ink); border-radius: var(--r-pill);
}
.nav__list > li > a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 1.5px; background: var(--accent);
	transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__list > li > a:hover::after,
.nav__list > .current-menu-item > a::after,
.nav__list > .current-menu-ancestor > a::after,
.nav__list > .current_page_parent > a::after { transform: scaleX(1); }
.nav__list > li.has-panel > a { padding-right: 4px; }
.nav__list .menu-cta > a { border: 1.5px solid var(--ink); margin-left: 8px; padding-inline: 18px; }
.nav__list .menu-cta > a::after { display: none; }
.nav__list .menu-cta > a:hover { background: var(--ink); color: var(--bg); }
.nav__toggle { display: inline-grid; place-items: center; width: 32px; height: 44px; background: none; border: 0; cursor: pointer; color: var(--ink); border-radius: var(--r-sm); }
.nav__toggle .icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.nav__toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav__search { display: none; }

/* Provider panel */
.navpanel {
	position: absolute; left: 0; right: 0; top: 100%;
	background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px -24px rgba(74, 52, 30, .28);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
}
.has-panel.is-open .navpanel { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.navpanel__inner { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding-block: 28px 32px; }
.navpanel__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 16px; }
.navpanel__item { display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: 10px; text-decoration: none; transition: background-color .2s; }
.navpanel__item:hover { background: var(--panel); }
.navpanel__name { display: block; font-weight: 600; font-size: 15.5px; line-height: 1.3; }
.navpanel__desc { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.navpanel__aside { border-left: 1px solid var(--line); padding-left: 32px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.navpanel__lead { font-family: var(--font-display); font-size: 20px; line-height: 1.3; }

.header-search { border-top: 1px solid var(--line); background: var(--surface); }
.header-search__form { display: flex; gap: 12px; padding-block: 16px; }
.header-search input { flex: 1; min-width: 0; min-height: 48px; padding: 10px 18px; border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--bg); }
.header-search input:focus { outline: none; border-color: var(--accent); }

@media (min-width: 981px) {
	.iconbtn--menu { display: none; }
}

@media (max-width: 980px) {
	/* backdrop-filter would become the containing block of the fixed menu sheet */
	.site-header { backdrop-filter: none !important; background: var(--bg) !important; }
	.js-search-toggle { display: none; }
	.nav { position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; visibility: hidden; pointer-events: none; }
	.admin-bar .nav { top: calc(var(--header-h) + 46px); }
	.nav__sheet {
		height: 100%; overflow-y: auto; overscroll-behavior: contain; background: var(--bg);
		padding: 20px var(--gutter) 40px; opacity: 0; transform: translateY(-8px);
		transition: opacity .25s var(--ease), transform .25s var(--ease);
	}
	.nav.is-open { visibility: visible; pointer-events: auto; }
	.nav.is-open .nav__sheet { opacity: 1; transform: none; }
	.nav__search { display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 18px; border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--surface); margin-bottom: 16px; }
	.nav__search input { flex: 1; min-width: 0; border: 0; background: transparent; min-height: 48px; }
	.nav__search input:focus { outline: none; }
	.nav__search:focus-within { border-color: var(--accent); }
	.nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav__list > li { flex-wrap: wrap; border-bottom: 1px solid var(--line); }
	.nav__list > li > a { flex: 1; min-height: 60px; padding: 12px 0; font-family: var(--font-display); font-size: 26px; font-weight: 500; }
	.nav__list > li > a::after { display: none; }
	.nav__list > li.has-panel > a { padding-right: 0; }
	.nav__toggle { width: 52px; height: 52px; }
	.nav__toggle .icon { width: 22px; height: 22px; }
	.nav__list .menu-cta { border-bottom: 0; padding-top: 20px; }
	.nav__list .menu-cta > a { margin: 0; justify-content: center; font-family: var(--font-body); font-size: 17px; flex: 1; min-height: 52px; }
	.navpanel { position: static; flex-basis: 100%; box-shadow: none; border: 0; background: transparent; transform: none; opacity: 1; visibility: visible; display: none; }
	.has-panel.is-open .navpanel { display: block; }
	.navpanel__inner { grid-template-columns: 1fr; padding: 0 0 16px; gap: 12px; }
	.navpanel__grid { grid-template-columns: 1fr; }
	.navpanel__item { padding: 10px 4px; }
	.navpanel__aside { border: 0; padding: 4px; }
	.navpanel__lead { display: none; }
}

/* Mono tiles (NewCloudStore lettering, not provider logos) */
.mono {
	--tone: var(--accent); --tone-bg: var(--accent-soft);
	display: inline-grid; place-items: center; flex: none;
	width: 48px; height: 48px; border-radius: 12px;
	background: var(--tone-bg); color: var(--tone);
	font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -.01em; line-height: 1;
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone) 22%, transparent);
}
.mono--terracotta { --tone: #9A4323; --tone-bg: #F2DED2; }
.mono--slate { --tone: #3D4E62; --tone-bg: #DCE2E8; }
.mono--olive { --tone: #555847; --tone-bg: #E3E3D6; }
.mono--copper { --tone: #87552C; --tone-bg: #F0E0CC; }
.mono--sm { width: 38px; height: 38px; border-radius: 10px; font-size: 14.5px; }
.mono--long { font-size: 15px; letter-spacing: -.02em; }
.mono--sm.mono--long { font-size: 12px; }
.mono--lg.mono--long { font-size: 27px; }
.mono--lg { width: 88px; height: 88px; border-radius: 20px; font-size: 32px; }

/* Sections */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--panel { background: var(--panel); }
.section--night { background: var(--night); color: #EDE5D8; }
.section__head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); display: grid; gap: 16px; }
.section__head--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 4.2vw, 50px); line-height: 1.08; letter-spacing: -.018em; text-wrap: balance; }
.section__title--sm { font-size: clamp(26px, 3vw, 34px); margin-bottom: 24px; }
.section__lead { font-size: 18.5px; color: var(--ink-soft); max-width: 64ch; }
.section__more { margin-top: 40px; }

/* Hero */
.hero { padding-block: clamp(40px, 7vw, 88px) clamp(40px, 6vw, 64px); position: relative; overflow-x: clip; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 4.9vw, 62px); line-height: 1.06; letter-spacing: -.025em; text-wrap: balance; }
.hero__title em { font-style: italic; color: var(--accent); padding-right: .04em; }
.hero__lead { margin-top: 24px; font-size: clamp(18px, 1.6vw, 20.5px); color: var(--ink-soft); max-width: 52ch; }
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__art { position: relative; }
.hero__art::before { content: ""; position: absolute; inset: 8% -6% -6% 10%; background: var(--sand); border-radius: 28px; z-index: 0; }
.hero__art img { position: relative; z-index: 1; width: 100%; border-radius: 22px; aspect-ratio: 5 / 4; object-fit: cover; box-shadow: var(--shadow); }

.platform-strip { margin-top: clamp(48px, 6vw, 72px); padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 6px 28px; }
.platform-strip a { font-family: var(--font-display); font-size: 19px; color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.platform-strip a:hover { color: var(--accent); }

/* Intro */
.intro { padding-top: 0; }
.intro__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 72px); align-items: start; }
.intro .section__title--sm { margin: 0; }
.intro .prose { color: var(--ink-soft); }
@media (max-width: 980px) { .intro__grid { grid-template-columns: minmax(0, 1fr); } }

/* Provider index */
.pindex { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; border-top: 1px solid var(--line); }
.pindex > li { border-bottom: 1px solid var(--line); }
.pindex__row { display: flex; align-items: center; gap: 18px; padding: 18px 4px; text-decoration: none; transition: background-color .25s, padding .3s var(--ease); border-radius: 4px; }
.pindex__row > .icon { margin-left: auto; color: var(--muted); transition: transform .3s var(--ease), color .2s; }
.pindex__row:hover { background: rgba(227, 213, 190, .35); padding-inline: 12px; }
.pindex__row:hover > .icon { transform: translateX(4px); color: var(--accent); }
.pindex__text { display: grid; gap: 2px; min-width: 0; }
.pindex__name { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.2; }
.pindex__tag { font-size: 15px; color: var(--muted); line-height: 1.45; }
.pindex--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 32px; }
.pindex--compact .pindex__row { padding-block: 12px; }
.pindex--compact .pindex__name { font-size: 18px; }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: dense; gap: 16px; }
.bento__cell { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.bento__cell h3 { font-family: var(--font-display); font-weight: 500; font-size: 25px; line-height: 1.15; }
.bento__cell p { color: var(--ink-soft); font-size: 16px; }
.bento__cell .link-arrow { margin-top: auto; padding-top: 8px; font-size: 15.5px; }
.bento__cell--lg { grid-column: span 2; grid-row: span 2; background: var(--ink); color: var(--bg); border-color: var(--ink); justify-content: flex-end; }
.bento__cell--lg h3 { font-size: clamp(32px, 3.4vw, 44px); }
.bento__cell--lg p { color: #D9CFC1; font-size: 17.5px; max-width: 44ch; }
.bento__cell--lg .link-arrow { color: #E9A987; margin-top: 8px; }
.bento__cell--img { grid-column: span 2; padding: 0; overflow: hidden; background: var(--sand); }
.bento__cell--img img { width: 100%; height: 100%; object-fit: cover; }
.bento__cell--tint { background: var(--slate-soft); border-color: transparent; }
.bento__cell--wide { grid-column: span 2; }

/* Use cases */
.usecases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.usecases__col { padding: clamp(28px, 4vw, 48px); display: grid; gap: 18px; align-content: start; background: var(--surface); }
.usecases__col--alt { background: var(--bg); border-left: 1px solid var(--line); }
.usecases__col h3 { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.1; }
.usecases__col > p { color: var(--ink-soft); }
.ticks { display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.55; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .58em; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.ticks--light li::before { border-color: #E9A987; }

/* AI night section */
.ai { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.ai__art img { border-radius: 22px; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ai__copy { display: grid; gap: 20px; }
.ai__copy .section__title { color: #FBF6EE; }
.ai__copy p { color: #D8CEC0; }
.ai__links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.section--night .link-arrow { color: #EDA886; }

/* Habits */
.habits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 56px; counter-reset: habit; }
.habits li { counter-increment: habit; display: grid; grid-template-columns: 56px 1fr; column-gap: 12px; padding: 22px 0; border-top: 1px solid var(--line); }
.habits li::before { content: counter(habit); grid-row: span 2; font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--copper); font-style: italic; }
.habits h3 { font-family: var(--font-body); font-weight: 650; font-size: 18px; line-height: 1.35; }
.habits p { color: var(--ink-soft); font-size: 16px; margin-top: 4px; }

/* Guide cards */
.gcard { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s; }
.gcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--line); }
.gcard__media { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--sand); }
.gcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gcard:hover .gcard__media img { transform: scale(1.035); }
.gcard__body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 24px; flex: 1; }
.gcard__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: 13.5px; color: var(--muted); }
.topic { display: inline-block; padding: 3px 10px; border-radius: var(--r-pill); background: var(--slate-soft); color: var(--slate); font-weight: 600; font-size: 12.5px; letter-spacing: .02em; text-decoration: none; }
a.topic:hover { background: var(--slate); color: #fff; }
.gcard__title { font-family: var(--font-display); font-weight: 500; font-size: 23px; line-height: 1.18; letter-spacing: -.01em; text-wrap: balance; }
.gcard__title a { text-decoration: none; }
.gcard__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.gcard__title a:focus-visible { outline: none; }
.gcard:has(.gcard__title a:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; }
.gcard__excerpt { color: var(--ink-soft); font-size: 15.5px; }
.gcard__cta { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--accent); }
.gcard__cta .icon { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.gcard:hover .gcard__cta .icon { transform: translateX(4px); }

.gcard--feature { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
.gcard--feature .gcard__media { aspect-ratio: auto; min-height: 100%; }
.gcard--feature .gcard__body { padding: clamp(24px, 4vw, 44px); justify-content: center; gap: 14px; }
.gcard--feature .gcard__title { font-size: clamp(28px, 3vw, 38px); }
.gcard--feature .gcard__excerpt { font-size: 17px; }

.gcard--row { background: transparent; border: 0; border-radius: 0; border-bottom: 1px solid var(--line); }
.gcard--row:hover { box-shadow: none; transform: none; }
.gcard--row .gcard__body { padding: 20px 0; gap: 8px; }
.gcard--row .gcard__title { font-size: 21px; }
.gcard--row .gcard__title a:hover { color: var(--accent); }

.guide-preview { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.guide-preview .gcard--feature { display: flex; grid-column: auto; }
.guide-preview .gcard--feature .gcard__media { aspect-ratio: 16 / 9; }
.guide-preview__list { border-top: 1px solid var(--line); }

.ggrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

/* Topic chips */
.topics { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.chip { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 16px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--surface); text-decoration: none; font-weight: 500; font-size: 15px; transition: background-color .2s, border-color .2s, color .2s; }
.chip span { font-size: 12.5px; color: var(--muted); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip.is-active span { color: #CBBFAF; }

/* Page hero */
.page-hero { padding-block: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 40px); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg), var(--panel)); }
.page-hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 5vw, 62px); line-height: 1.05; letter-spacing: -.022em; text-wrap: balance; }
.page-hero__lead { margin-top: 16px; font-size: clamp(17.5px, 1.5vw, 19.5px); color: var(--ink-soft); max-width: 62ch; }
.page-hero--center { text-align: center; border: 0; background: none; padding-block: clamp(72px, 12vw, 140px); }
.page-hero--center .page-hero__lead { margin-inline: auto; }
.page-hero--center .hub-search { margin-inline: auto; }
.page-hero__code { font-family: var(--font-display); font-style: italic; font-size: clamp(80px, 14vw, 160px); line-height: 1; color: var(--copper); }

.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumbs .separator { margin-inline: 6px; color: var(--line); }
.crumbs p { margin: 0; }

.hub-search { margin-top: 28px; display: flex; align-items: center; gap: 10px; max-width: 560px; padding: 6px 6px 6px 18px; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-pill); }
.hub-search:focus-within { border-color: var(--accent); }
.hub-search input[type="search"] { flex: 1; min-width: 0; border: 0; background: transparent; min-height: 44px; }
.hub-search input:focus { outline: none; }
.hub-search .btn { min-height: 44px; padding-inline: 20px; }

/* Provider page */
.provider-hero { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(28px, 5vw, 64px); align-items: end; }
.factsheet { display: grid; gap: 16px; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.factsheet dt { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .03em; text-transform: uppercase; }
.factsheet dd { margin-top: 4px; font-size: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pills li { padding: 4px 11px; border-radius: var(--r-pill); background: var(--panel); border: 1px solid var(--line-soft); font-size: 13.5px; font-weight: 500; }
.provider-art { margin-top: clamp(28px, 4vw, 44px); }
.provider-art img { width: 100%; border-radius: 20px; aspect-ratio: 16 / 6; object-fit: cover; }

.pcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pcard { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 26px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-md); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pcard__top { display: flex; align-items: center; gap: 14px; }
.pcard__title { font-family: var(--font-display); font-weight: 500; font-size: 23px; line-height: 1.15; }
.pcard__title a { text-decoration: none; }
.pcard__title a::after { content: ""; position: absolute; inset: 0; }
.pcard__tag { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--ink-soft); line-height: 1.35; }
.pcard__best { font-size: 15px; color: var(--ink-soft); }
.pcard .gcard__cta { margin-top: auto; }

/* Article */
.article__head { padding-top: clamp(32px, 5vw, 56px); }
.article__title { margin-top: 14px; font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 4.6vw, 56px); line-height: 1.07; letter-spacing: -.02em; text-wrap: balance; }
.article__dek { margin-top: 18px; font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-soft); line-height: 1.55; }
.article__hero { margin-top: clamp(28px, 4vw, 44px); }
.article__hero img { width: 100%; border-radius: 20px; aspect-ratio: 16 / 7; object-fit: cover; }
.article__layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); padding-block: clamp(40px, 5vw, 64px) clamp(64px, 8vw, 96px); align-items: start; }
.article__layout > .prose:only-child { grid-column: 1 / -1; max-width: 740px; margin-inline: auto; }
.outline { position: sticky; top: calc(var(--header-h) + 28px); }
.outline__box summary { font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); cursor: pointer; list-style: none; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.outline__box summary::-webkit-details-marker { display: none; }
.outline ol { list-style: none; padding: 12px 0 0; margin: 0; display: grid; gap: 2px; }
.outline a { display: block; padding: 6px 0 6px 14px; border-left: 2px solid transparent; font-size: 14.5px; line-height: 1.4; color: var(--ink-soft); text-decoration: none; transition: color .2s, border-color .2s; }
.outline a:hover { color: var(--ink); }
.outline a.is-active { color: var(--accent); border-color: var(--accent); }

/* Prose */
.prose { max-width: 740px; font-size: 18px; line-height: 1.72; min-width: 0; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.8vw, 36px); line-height: 1.15; letter-spacing: -.015em; margin-top: 2.2em; text-wrap: balance; }
.prose h3 { font-family: var(--font-body); font-weight: 650; font-size: 20.5px; line-height: 1.35; margin-top: 1.8em; }
.prose h2 + *, .prose h3 + * { margin-top: .6em; }
.prose > :first-child { margin-top: 0; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose a.ext::after { content: "\2197"; font-size: .8em; margin-left: 2px; text-decoration: none; display: inline-block; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .45em; }
.prose li::marker { color: var(--copper); }
.prose strong { font-weight: 650; }
.prose code { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: .86em; background: var(--panel); padding: .12em .4em; border-radius: 5px; }
.prose blockquote { border-left: 3px solid var(--copper); padding: 4px 0 4px 20px; font-family: var(--font-display); font-style: italic; font-size: 1.15em; }
.prose hr { border: 0; border-top: 1px solid var(--line); }
.ncs-note { background: var(--panel); border-left: 3px solid var(--accent); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 18px 22px; font-size: 16.5px; }
.ncs-note p + p { margin-top: .6em; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; line-height: 1.5; min-width: 560px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); }
.prose thead th { background: var(--panel); font-weight: 650; font-size: 14px; letter-spacing: .02em; }
.prose tbody tr:last-child td { border-bottom: 0; }

.platform-box { margin-top: 3em; padding: 26px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.platform-box__title { font-family: var(--font-display); font-size: 22px !important; margin: 0 0 14px !important; }
.platform-box ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.platform-box li + li { margin-top: 0; }
.platform-box a { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); padding: 8px; border-radius: 10px; }
.platform-box a:hover { background: var(--panel); }
.platform-box a > span { display: grid; font-size: 15px; line-height: 1.4; }
.platform-box a > span > span { color: var(--muted); font-size: 14px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-layout > header { display: grid; gap: 18px; position: sticky; top: calc(var(--header-h) + 32px); }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 18px; line-height: 1.4; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__icon { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); transition: transform .3s var(--ease), border-color .2s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq__item[open] .faq__icon { border-color: var(--accent); color: var(--accent); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a { padding: 0 48px 24px 0; color: var(--ink-soft); }
.faq__a p + p { margin-top: .7em; }
.faq__a a { color: var(--accent); }
.faq-group { font-family: var(--font-display); font-weight: 500; font-size: 28px; margin: 48px 0 12px; }
.faq-group:first-child { margin-top: 0; }
.faq-after { margin-top: 48px; }

/* CTA band */
.cta-band { background: var(--accent); color: #FFF7F0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px 48px; padding-block: clamp(44px, 6vw, 64px); flex-wrap: wrap; }
.cta-band__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -.015em; }
.cta-band p { margin-top: 10px; color: #F8E3D6; max-width: 56ch; }
.cta-band .btn--primary { background: var(--night); color: #FFF7F0; }
.cta-band .btn--primary:hover { background: #000; }

/* Contact */
.contact { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.form { display: grid; gap: 20px; padding: clamp(24px, 4vw, 40px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); scroll-margin-top: calc(var(--header-h) + 24px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 600; font-size: 15px; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink); font-size: 16px; }
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168, 74, 40, .15); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__fine { font-size: 14px; color: var(--muted); }
.form .btn { justify-self: start; }
.form__notice { display: flex; gap: 10px; align-items: center; padding: 14px 18px; border-radius: 10px; font-weight: 500; }
.form__notice--ok { background: #E3E6D6; color: #3E4430; }
.form__notice--err { background: var(--accent-soft); color: var(--accent-deep); }

/* Search results */
.results { display: grid; border-top: 1px solid var(--line); max-width: 840px; }
.results__item { padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.results__title { font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1.2; }
.results__title a { text-decoration: none; }
.results__title a:hover { color: var(--accent); }
.results p { color: var(--ink-soft); }
.empty { display: grid; gap: 20px; justify-items: start; max-width: 560px; }

/* Pagination */
.pager { margin-top: 48px; }
.pager ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pager a, .pager span { display: inline-grid; place-items: center; min-width: 46px; min-height: 46px; padding: 0 14px; border-radius: var(--r-pill); border: 1px solid var(--line); text-decoration: none; font-weight: 500; }
.pager a:hover { border-color: var(--ink); }
.pager .current { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Footer */
.site-footer { background: var(--night); color: #CFC5B7; padding-top: clamp(56px, 7vw, 88px); font-size: 15.5px; }
.site-footer a { color: #EDE5D8; text-decoration: none; }
.site-footer a:hover { color: #F0B192; text-decoration: underline; text-underline-offset: 3px; }
.site-footer__top { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr) minmax(0, .9fr) minmax(0, .8fr); gap: 40px; padding-bottom: 56px; }
.site-footer__brand { display: grid; gap: 20px; justify-items: start; align-content: start; }
.site-footer__brand > a:first-child:hover { text-decoration: none; }
.site-footer__brand p { max-width: 36ch; }
.site-footer__title { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #9D9285; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.site-footer__providers { grid-template-columns: 1fr 1fr; column-gap: 20px; }
.site-footer__legal { border-top: 1px solid #3A342E; padding-block: 24px 32px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; font-size: 13.5px; color: #A89D90; }
.site-footer__legal p:last-child { max-width: 78ch; }

/* WooCommerce system pages */
.woo-wrap { max-width: var(--wrap); }

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
	.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
	.js .reveal.is-in { opacity: 1; transform: none; }
	.hero__copy > * { animation: rise .8s var(--ease) both; }
	.hero__copy > :nth-child(2) { animation-delay: .08s; }
	.hero__copy > :nth-child(3) { animation-delay: .16s; }
	.hero__art { animation: fade 1.1s var(--ease) .1s both; }
	.hero__art::before { animation: drift 1.2s var(--ease) .2s both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
@keyframes drift { from { opacity: 0; transform: translate(-14px, -10px); } to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 1100px) {
	.bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bento__cell--lg { grid-row: auto; }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
	.pindex--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
	.hero__grid, .ai, .faq-layout, .contact, .provider-hero, .guide-preview { grid-template-columns: minmax(0, 1fr); }
	.hero__art { max-width: 620px; }
	.faq-layout > header { position: static; }
	.article__layout { grid-template-columns: minmax(0, 1fr); }
	.outline { position: static; }
	.outline__box { border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 18px; background: var(--surface); }
	.outline__box summary { border: 0; padding: 0; min-height: 44px; display: flex; align-items: center; }
	.outline a { padding-block: 10px; }
	.outline__box:not([open]) summary::after { content: " +"; }
	.ggrid, .pcards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcard--feature { grid-template-columns: minmax(0, 1fr); }
	.gcard--feature .gcard__media { aspect-ratio: 16 / 9; }
	.ai__art { order: 2; }
	.ai__art img { aspect-ratio: 16 / 10; }
}
@media (max-width: 720px) {
	body { font-size: 16.5px; }
	.pindex, .pindex--compact, .habits, .usecases, .ggrid, .pcards, .form__row, .site-footer__providers { grid-template-columns: minmax(0, 1fr); }
	.usecases__col--alt { border-left: 0; border-top: 1px solid var(--line); }
	.bento { grid-template-columns: minmax(0, 1fr); }
	.bento__cell--lg, .bento__cell--img, .bento__cell--wide { grid-column: auto; }
	.bento__cell--img { aspect-ratio: 16 / 10; }
	.site-footer__top { grid-template-columns: minmax(0, 1fr); gap: 36px; }
	.prose { font-size: 17px; }
	.faq__a { padding-right: 0; }
	.hero__actions .btn { flex: 1 1 auto; }
	.hub-search { flex-wrap: nowrap; }
	.hub-search .btn { padding-inline: 16px; }
	.provider-art img, .article__hero img { aspect-ratio: 16 / 9; border-radius: 14px; }
	.cta-band .btn { width: 100%; }
	.logo__word { font-size: 21px; }
}
@media (max-width: 400px) {
	.hub-search > .icon { display: none; }
	.hero__title { font-size: 38px; }
}


/* ---------- Platform finder ---------- */
.finder { margin: -8px 0 28px; display: grid; gap: 12px; }
.finder__label { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--ink-soft); }
.finder__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip { min-height: 42px; padding: 8px 16px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-weight: 500; font-size: 15px; cursor: pointer; transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease); }
.fchip:hover { border-color: var(--ink); transform: translateY(-1px); }
.fchip.is-active { background: var(--accent); border-color: var(--accent); color: #FFF9F3; }
.finder__status { min-height: 1.4em; font-size: 14.5px; color: var(--muted); }
.finder-item { transition: opacity .45s var(--ease), filter .45s var(--ease), transform .45s var(--ease); }
.finder-item.is-out { opacity: .32; filter: grayscale(.9); }
.finder-item.is-match { transform: none; }
.finder-why { display: block; font-size: 14.5px; line-height: 1.45; color: var(--accent-deep); font-weight: 500; }
.finder-why::before { content: ""; display: inline-block; width: 14px; height: 1.5px; background: currentColor; vertical-align: middle; margin-right: 8px; }
.finder-why[hidden] { display: none; }
.pindex__text .finder-why { margin-top: 2px; }
.finder-item.is-match .pindex__tag, .finder-item.is-match .pcard__tag { display: none; }
.pcard.is-match { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
@media (prefers-reduced-motion: no-preference) {
	.finder-item.is-match { animation: pop .5s var(--ease); }
}
@keyframes pop { 0% { transform: translateY(6px); } 100% { transform: none; } }

/* ---------- Living details ---------- */
.site-header { transition: box-shadow .3s var(--ease), background-color .3s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(74, 52, 30, .45); }
.hero__art { will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
	.hero__art img { animation: floaty 9s ease-in-out 1.2s infinite; }
	.bento__cell { transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
	.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
	.bento__cell--img img { transition: transform 1.2s var(--ease); }
	.bento__cell--img:hover img { transform: scale(1.05); }
	.habits li { transition: background-color .3s var(--ease); }
	.ai__art img { transition: transform 1.2s var(--ease); }
	.ai__art:hover img { transform: scale(1.03) rotate(-.6deg); }
	.mono { transition: transform .35s var(--ease); }
	a:hover > .mono, .pcard:hover .mono { transform: rotate(-6deg) scale(1.06); }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.section__title em { font-style: italic; color: var(--accent); }

/* ---------- Guide reading aids ---------- */
.readbar { position: fixed; left: 0; right: 0; top: 0; height: 3px; z-index: 150; pointer-events: none; }
.admin-bar .readbar { top: 32px; }
.readbar span { display: block; height: 100%; background: linear-gradient(90deg, var(--copper), var(--accent)); transform: scaleX(0); transform-origin: left; }
.prose h2 { position: relative; }
.h-anchor { margin-left: 8px; font-family: var(--font-body); font-size: .6em; font-weight: 600; color: var(--copper) !important; text-decoration: none !important; opacity: 0; transition: opacity .2s; vertical-align: middle; }
.prose h2:hover .h-anchor, .h-anchor:focus-visible { opacity: 1; }
.postnav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding-bottom: clamp(48px, 6vw, 72px); }
.postnav__link { display: grid; gap: 8px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); text-decoration: none; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.postnav__link:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.postnav__link--next { text-align: right; grid-column: 2; }
.postnav__dir { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.postnav__link--next .postnav__dir { justify-content: flex-end; }
.postnav__link:not(.postnav__link--next) .icon { transform: rotate(180deg); }
.postnav__dir .icon { width: 16px; height: 16px; }
.postnav__title { font-family: var(--font-display); font-size: 21px; line-height: 1.25; }
.totop { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--bg); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s, background-color .2s; }
.totop .icon { transform: rotate(180deg); }
.totop.is-visible { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.totop:hover { background: var(--accent); }
@media (max-width: 720px) {
	.postnav { grid-template-columns: minmax(0, 1fr); }
	.postnav__link--next { grid-column: auto; }
	.h-anchor { opacity: .5; }
	.finder__chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-snap-type: x proximity; }
	.finder__chips::-webkit-scrollbar { display: none; }
	.fchip { flex: none; scroll-snap-align: start; }
}
@media (max-width: 782px) { .admin-bar .readbar { top: 46px; } }

@media print {
	.site-header, .site-footer, .cta-band, .outline, .readbar, .totop, .finder, .h-anchor { display: none; }
	.reveal { opacity: 1 !important; transform: none !important; }
}
