/* Edyzoa Spark v2 — colourful, calm and unmistakably made for learning. */
:root {
	--navy-950: #34276b;
	--navy-900: #40327f;
	--navy-800: #51409b;
	--navy-700: #624fc0;
	--sky-500: #25b9d7;
	--sky-300: #82ddec;
	--sky-100: #e7faff;
	--leaf-600: #35b97a;
	--leaf-100: #e6faef;
	--sun-500: #f7b731;
	--sun-100: #fff5d5;
	--coral-500: #ff6671;
	--coral-100: #ffedf0;
	--violet-500: #6c4fe0;
	--violet-100: #f0ecff;
	--ink: #302c4c;
	--muted: #667189;
	--line: #e8e4f2;
	--paper: #ffffff;
	--wash: #fbfaff;
	--shadow-sm: 0 10px 30px rgba( 63, 46, 127, .08 );
	--shadow-md: 0 26px 70px rgba( 63, 46, 127, .15 );
	--radius-sm: 15px;
	--radius-md: 26px;
	--radius-lg: 42px;
}

body {
	background: #fff;
	color: var(--ink);
	font-family: ui-rounded, "Avenir Next Rounded", "Segoe UI", Arial, sans-serif;
	font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--navy-950);
	font-family: ui-rounded, "Arial Rounded MT Bold", "Avenir Next Rounded", "Trebuchet MS", sans-serif;
	font-weight: 900;
	letter-spacing: -.04em;
}

a {
	color: var(--violet-500);
}

a:hover {
	color: #e94e5b;
}

:focus-visible {
	outline-color: var(--sun-500);
	outline-width: 4px;
}

.section-space {
	padding-block: clamp( 72px, 8vw, 118px );
}

.section-tint {
	background:
		radial-gradient( circle at 8% 8%, rgba( 37, 185, 215, .09 ), transparent 24% ),
		linear-gradient( 180deg, #fcfbff 0%, #f7f5ff 100% );
}

.eyebrow {
	display: inline-flex;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--violet-100);
	color: var(--violet-500);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .12em;
}

.eyebrow span {
	color: var(--sun-500);
}

/* Header and identity */
.site-header {
	border-bottom: 1px solid rgba( 108, 79, 224, .11 );
	background: rgba( 255, 255, 255, .96 );
	box-shadow: 0 8px 30px rgba( 63, 46, 127, .07 );
}

.trust-bar {
	position: relative;
	overflow: hidden;
	background: linear-gradient( 90deg, #fff3c8, #ffeaf0 50%, #e8faff );
	color: var(--navy-950);
	font-size: .73rem;
}

.trust-bar::before,
.trust-bar::after {
	position: absolute;
	width: 52px;
	height: 52px;
	border: 10px solid rgba( 255, 255, 255, .52 );
	border-radius: 50%;
	content: "";
}

.trust-bar::before {
	top: -35px;
	left: 12%;
}

.trust-bar::after {
	right: 8%;
	bottom: -39px;
}

.trust-bar__inner {
	position: relative;
	z-index: 1;
	min-height: 38px;
}

.trust-bar p span {
	color: #e69800;
}

.trust-bar nav {
	align-items: center;
	gap: 14px;
}

.trust-bar a {
	color: var(--navy-950);
	font-weight: 800;
}

.trust-bar a:hover {
	color: var(--coral-500);
}

.trust-note {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 900;
}

.trust-note i {
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	border-radius: 50%;
	background: var(--leaf-600);
	color: #fff;
	font-size: .62rem;
	font-style: normal;
}

.header-main {
	grid-template-columns: minmax( 210px, 252px ) 1fr 48px;
	gap: 20px;
	min-height: 96px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.brand-logo {
	display: inline-flex;
	align-items: center;
	width: min( 100%, 242px );
	text-decoration: none;
}

.brand-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.primary-menu {
	gap: 2px;
}

.primary-menu a {
	position: relative;
	min-height: 46px;
	padding: 10px 13px;
	border-radius: 15px;
	color: var(--ink);
	font-size: .81rem;
	font-weight: 900;
}

.primary-menu a::after {
	position: absolute;
	right: 13px;
	bottom: 5px;
	left: 13px;
	height: 3px;
	border-radius: 999px;
	background: var(--coral-500);
	content: "";
	opacity: 0;
	transform: scaleX( .35 );
	transition: .2s ease;
}

.primary-menu li:nth-child( 3n + 2 ) a::after { background: var(--sky-500); }
.primary-menu li:nth-child( 3n ) a::after { background: var(--sun-500); }

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	background: var(--violet-100);
	color: var(--navy-950);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after {
	opacity: 1;
	transform: scaleX( 1 );
}

.primary-menu .sub-menu {
	border: 1px solid #e8e1ff;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
}

.search-toggle,
.menu-toggle,
.back-to-top {
	width: 46px;
	height: 46px;
	background: linear-gradient( 145deg, var(--violet-500), #5339bd );
	box-shadow: 0 10px 24px rgba( 108, 79, 224, .25 );
}

.search-toggle:hover,
.menu-toggle:hover,
.back-to-top:hover {
	background: linear-gradient( 145deg, var(--coral-500), #f05261 );
}

.header-search {
	border-color: #eee9f8;
	background: #fbfaff;
}

.search-field {
	border: 2px solid #e7e1f3;
	border-radius: 17px;
}

.search-field:focus {
	border-color: var(--violet-500);
	box-shadow: 0 0 0 5px rgba( 108, 79, 224, .11 );
}

.search-submit {
	border-radius: 17px;
	background: var(--coral-500);
}

/* Buttons */
.button {
	min-height: 54px;
	padding: 14px 23px;
	border-radius: 18px;
	font-weight: 900;
}

.button--primary {
	background: linear-gradient( 135deg, var(--violet-500), #5035bb );
	box-shadow: 0 14px 28px rgba( 108, 79, 224, .25 );
	color: #fff;
}

.button--primary:hover {
	background: linear-gradient( 135deg, var(--coral-500), #ed4d5b );
	box-shadow: 0 16px 30px rgba( 255, 102, 113, .25 );
}

.button--ghost {
	border: 2px solid rgba( 108, 79, 224, .2 );
	background: rgba( 255, 255, 255, .78 );
	color: var(--navy-950);
}

.button--ghost:hover {
	border-color: var(--sky-500);
	background: var(--sky-100);
	color: var(--navy-950);
}

.button--small {
	background: var(--violet-500);
}

/* Homepage hero */
.hero-section {
	position: relative;
	background:
		radial-gradient( circle at 7% 24%, rgba( 247, 183, 49, .24 ), transparent 20% ),
		radial-gradient( circle at 90% 13%, rgba( 37, 185, 215, .2 ), transparent 27% ),
		linear-gradient( 135deg, #fffdf6 0%, #f3f0ff 48%, #eafaff 100% );
}

.hero-section::before {
	position: absolute;
	top: 62px;
	left: 3.5%;
	width: 66px;
	height: 66px;
	background-image: radial-gradient( var(--coral-500) 2px, transparent 2px );
	background-size: 13px 13px;
	content: "";
	opacity: .3;
	transform: rotate( 10deg );
}

.hero-grid {
	grid-template-columns: minmax( 0, 1.1fr ) minmax( 430px, .9fr );
	gap: clamp( 34px, 4vw, 60px );
	min-height: 735px;
	padding-block: clamp( 74px, 8vw, 112px );
}

.hero-copy {
	position: relative;
	z-index: 4;
}

.hero-copy h1 {
	max-width: 760px;
	margin-top: 13px;
	font-size: clamp( 3rem, 4.15vw, 4.2rem );
	line-height: 1.04;
}

.hero-copy h1::after {
	width: 146px;
	height: 10px;
	margin-top: 24px;
	background: repeating-linear-gradient( 90deg, var(--coral-500) 0 25px, var(--sun-500) 25px 50px, var(--sky-500) 50px 75px, var(--leaf-600) 75px 100px );
	transform: skewX( -18deg );
}

.hero-intro {
	max-width: 600px;
	margin: 24px 0 19px;
	color: #59657c;
	font-size: clamp( 1.04rem, 1.65vw, 1.18rem );
}

.hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.hero-chips > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 11px;
	border: 1px solid rgba( 108, 79, 224, .1 );
	border-radius: 999px;
	background: rgba( 255, 255, 255, .72 );
	box-shadow: 0 6px 17px rgba( 63, 46, 127, .05 );
	color: #50566a;
	font-size: .72rem;
	font-weight: 900;
}

.hero-chips i {
	display: grid;
	width: 23px;
	height: 23px;
	place-items: center;
	border-radius: 8px;
	background: var(--sky-100);
	color: var(--sky-500);
	font-size: .66rem;
	font-style: normal;
}

.hero-chips span:nth-child( 2 ) i { background: var(--sun-100); color: #b87900; }
.hero-chips span:nth-child( 3 ) i { background: var(--coral-100); color: var(--coral-500); }

.hero-proof {
	gap: 12px;
	margin-top: 32px;
}

.hero-proof span {
	min-width: 105px;
	padding: 10px 14px;
	border: 1px solid rgba( 108, 79, 224, .1 );
	border-radius: 16px;
	background: rgba( 255, 255, 255, .64 );
	color: #6c7488;
	font-size: .64rem;
}

.hero-proof span:last-child {
	padding-right: 14px;
	border: 1px solid rgba( 108, 79, 224, .1 );
}

.hero-proof strong {
	color: var(--violet-500);
	font-size: 1.38rem;
}

.hero-feature {
	position: relative;
	margin: 0;
	padding-bottom: 86px;
}

.hero-feature::before {
	inset: 8% 2% 15% 8%;
	border-radius: 46% 54% 50% 50% / 48% 44% 56% 52%;
	background: rgba( 255, 255, 255, .72 );
	box-shadow: 0 35px 85px rgba( 73, 51, 145, .13 );
	transform: rotate( -3deg );
}

.hero-feature::after {
	inset: 13% 7% 11% 2%;
	border: 3px dashed rgba( 108, 79, 224, .12 );
	border-radius: 50%;
	background: transparent;
	transform: rotate( 5deg );
}

.hero-feature__media {
	position: relative;
	z-index: 2;
	overflow: visible;
	width: 100%;
	aspect-ratio: 840 / 690;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.hero-feature__media .learning-world {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow( 0 20px 24px rgba( 62, 46, 126, .08 ) );
	transition: transform .5s ease;
}

.hero-feature:hover .hero-feature__media .learning-world {
	transform: translateY( -5px ) rotate( -.7deg );
}

.hero-letter {
	position: absolute;
	z-index: 3;
	display: none;
}

.hero-feature__card {
	position: absolute;
	z-index: 5;
	right: 4%;
	bottom: 16px;
	left: 4%;
	display: grid;
	width: auto;
	min-height: 128px;
	margin: 0;
	padding: 14px;
	grid-template-columns: 112px 1fr;
	align-items: center;
	gap: 17px;
	border: 5px solid rgba( 255, 255, 255, .9 );
	border-radius: 28px;
	background: rgba( 255, 255, 255, .96 );
	box-shadow: 0 24px 55px rgba( 63, 46, 127, .18 );
	backdrop-filter: blur( 16px );
}

.hero-feature__thumb {
	overflow: hidden;
	width: 112px;
	height: 96px;
	border-radius: 19px;
	background: var(--sky-100);
}

.hero-feature__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-feature__thumb > span {
	display: grid;
	height: 100%;
	place-items: center;
	color: var(--violet-500);
}

.hero-feature__thumb svg {
	width: 48px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
}

.hero-feature__story {
	min-width: 0;
}

.hero-feature__label {
	margin: 0 0 4px;
	color: var(--coral-500);
	font-size: .65rem;
}

.hero-feature__card h2 {
	margin: 0;
	font-size: clamp( 1.06rem, 1.7vw, 1.36rem );
	line-height: 1.24;
}

.story-link {
	display: inline-flex;
	margin-top: 7px;
	color: var(--violet-500);
	font-size: .72rem;
	font-weight: 900;
	text-decoration: none;
}

.float-badge {
	padding: 9px 12px;
	border-width: 4px;
	box-shadow: 0 12px 26px rgba( 63, 46, 127, .12 );
}

.float-badge--safe {
	top: 19%;
	left: -4px;
	background: #e3faed;
	color: #1d8756;
}

.float-badge--fun {
	top: 42%;
	right: -7px;
	background: #fff2c4;
	color: #9a6900;
}

.hero-orb {
	border-color: rgba( 108, 79, 224, .13 );
}

/* Learning collections */
.topic-section {
	position: relative;
	overflow: hidden;
	background: #fff;
}

.topic-section::before {
	position: absolute;
	top: 70px;
	right: -55px;
	width: 180px;
	height: 180px;
	border: 26px solid var(--sun-100);
	border-radius: 50%;
	content: "";
}

.section-heading--center .eyebrow {
	margin-inline: auto;
}

.section-heading--center h2,
.section-heading--split h2 {
	font-size: clamp( 2.1rem, 4vw, 3.35rem );
}

.topic-grid {
	position: relative;
	z-index: 2;
	gap: 16px;
}

.topic-card {
	--card-accent: var(--sky-500);
	min-height: 302px;
	padding: 23px;
	border: 2px solid transparent;
	border-radius: 29px;
	background: var(--sky-100);
	box-shadow: 0 12px 28px rgba( 63, 46, 127, .06 );
}

.topic-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 8px;
	background: var(--card-accent);
	content: "";
}

.topic-card::after {
	right: -38px;
	bottom: -38px;
	width: 135px;
	height: 135px;
	border: 18px solid rgba( 255, 255, 255, .4 );
	opacity: 1;
}

.topic-card--sky { --card-accent: var(--sky-500); border-color: #c9f0f7; background: #eafbff; }
.topic-card--sun { --card-accent: var(--sun-500); border-color: #f8e7ae; background: #fff7db; }
.topic-card--leaf { --card-accent: var(--leaf-600); border-color: #cdeedc; background: #eafaF1; }
.topic-card--berry { --card-accent: var(--coral-500); border-color: #ffd6da; background: #fff0f2; }
.topic-card--violet { --card-accent: var(--violet-500); border-color: #dfd7ff; background: #f1edff; }

.topic-card:hover {
	border-color: var(--card-accent);
	box-shadow: 0 24px 48px rgba( 63, 46, 127, .13 );
	transform: translateY( -9px ) rotate( -.5deg );
}

.topic-card__icon {
	width: 72px;
	height: 72px;
	border: 4px solid rgba( 255, 255, 255, .8 );
	border-radius: 24px 24px 24px 8px;
	background: var(--card-accent);
	box-shadow: 0 12px 24px rgba( 63, 46, 127, .12 );
	color: #fff;
	transform: rotate( -4deg );
}

.topic-card:nth-child( even ) .topic-card__icon {
	transform: rotate( 4deg );
}

.topic-card__icon svg {
	width: 40px;
	height: 40px;
}

.topic-card__count {
	margin-top: 25px;
	color: #677187;
}

.topic-card strong {
	font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
	font-size: 1.2rem;
}

.topic-card > span:last-child {
	position: relative;
	z-index: 2;
	color: var(--card-accent);
}

/* Article cards */
.post-card {
	position: relative;
	border: 1px solid #e9e5f1;
	border-radius: 29px;
	box-shadow: 0 13px 34px rgba( 63, 46, 127, .08 );
}

.post-card::before {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	left: 0;
	height: 6px;
	background: linear-gradient( 90deg, var(--sky-500), var(--violet-500), var(--coral-500) );
	content: "";
}

.post-card:hover {
	box-shadow: 0 25px 55px rgba( 63, 46, 127, .14 );
	transform: translateY( -7px );
}

.post-card__media {
	aspect-ratio: 16 / 10;
	background: var(--violet-100);
}

.post-card__body {
	padding: 27px;
}

.topic-pill {
	padding: 7px 11px;
	background: var(--violet-100);
	color: var(--violet-500);
}

.topic-pill:hover {
	background: var(--violet-500);
	color: #fff;
}

.post-card__title {
	font-size: clamp( 1.24rem, 2vw, 1.52rem );
}

.text-link {
	color: var(--violet-500);
}

.featured-section {
	position: relative;
	overflow: hidden;
}

.featured-section::after {
	position: absolute;
	right: 4%;
	bottom: 5%;
	width: 75px;
	height: 75px;
	background-image: radial-gradient( var(--sky-500) 2px, transparent 2px );
	background-size: 12px 12px;
	content: "";
	opacity: .22;
}

/* Purpose panel */
.promise-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient( circle at 9% 18%, rgba( 247, 183, 49, .28 ), transparent 24% ),
		radial-gradient( circle at 93% 82%, rgba( 37, 185, 215, .29 ), transparent 28% ),
		linear-gradient( 135deg, #5c43cf, #43328f );
	color: #fff;
}

.promise-section::before {
	position: absolute;
	top: -85px;
	right: 7%;
	width: 260px;
	height: 260px;
	border: 34px solid rgba( 255, 255, 255, .08 );
	border-radius: 50%;
	content: "";
}

.promise-copy h2,
.promise-list h3 {
	color: #fff;
}

.promise-copy .eyebrow {
	background: rgba( 255, 255, 255, .14 );
	color: #fff2b4;
}

.promise-copy p:last-child,
.promise-list p {
	color: #e7e1ff;
}

.promise-list > div {
	border: 1px solid rgba( 255, 255, 255, .18 );
	border-radius: 23px;
	background: rgba( 255, 255, 255, .1 );
	box-shadow: 0 16px 38px rgba( 38, 24, 91, .12 );
	backdrop-filter: blur( 12px );
}

.promise-list span {
	border-radius: 15px 15px 15px 5px;
	background: var(--coral-500);
	color: #fff;
}

.promise-list div:nth-child( 2 ) span { background: var(--sky-500); }
.promise-list div:nth-child( 3 ) span { background: var(--sun-500); color: var(--navy-950); }

/* Archive, pages and reading */
.page-hero,
.article-header {
	background:
		radial-gradient( circle at 90% 20%, rgba( 37, 185, 215, .19 ), transparent 27% ),
		linear-gradient( 135deg, #fffaf0, #f0ecff 55%, #e9faff );
}

.page-hero::after {
	border: 22px solid rgba( 108, 79, 224, .09 );
}

.page-hero__icon {
	border-color: rgba( 255, 255, 255, .8 );
	border-radius: 46px 46px 46px 13px;
	background: linear-gradient( 145deg, var(--violet-500), #553cc4 );
	color: #fff;
}

.page-hero--sun { background: linear-gradient( 135deg, #fffaf0, #fff1bc ); }
.page-hero--leaf { background: linear-gradient( 135deg, #f7fff9, #dff8e9 ); }
.page-hero--berry { background: linear-gradient( 135deg, #fff8f8, #ffe3e7 ); }
.page-hero--violet { background: linear-gradient( 135deg, #fbf9ff, #e7e0ff ); }

.breadcrumbs a {
	color: var(--violet-500);
}

.article-header h1 {
	max-width: 980px;
	font-size: clamp( 2.65rem, 5vw, 4.55rem );
}

.article-main,
.article-rail .rail-card,
.author-card,
.comments-area,
.page-content-card {
	border-color: #e9e4f3;
	border-radius: 28px;
	box-shadow: var(--shadow-sm);
}

.article-note {
	border-color: #f4df99;
	border-radius: 20px;
	background: var(--sun-100);
}

.entry-content h2 {
	padding-left: 17px;
	border-left: 6px solid var(--coral-500);
}

.entry-content h3 {
	color: var(--violet-500);
}

.entry-content blockquote {
	border-color: var(--sky-500);
	border-radius: 0 22px 22px 0;
	background: var(--sky-100);
}

.entry-content a {
	color: var(--violet-500);
	font-weight: 700;
}

.rail-card--topic {
	background: var(--violet-100);
}

.rail-card--topic .topic-card__icon {
	background: var(--violet-500);
}

.author-card {
	background: linear-gradient( 135deg, #fbfaff, #f0ecff );
}

.author-card img {
	border: 5px solid #fff;
	box-shadow: 0 9px 22px rgba( 63, 46, 127, .15 );
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--violet-500);
	background: var(--violet-500);
}

/* Ads remain visually separated from editorial content. */
.edy-ad-widget {
	border-color: #dcd5e9;
	border-radius: 18px;
	background: #fcfbff;
}

/* Footer */
.site-footer {
	position: relative;
	border-top: 10px solid transparent;
	border-image: linear-gradient( 90deg, var(--coral-500), var(--sun-500), var(--leaf-600), var(--sky-500), var(--violet-500) ) 1;
	background:
		radial-gradient( circle at 7% 20%, rgba( 247, 183, 49, .15 ), transparent 22% ),
		linear-gradient( 155deg, #f7f4ff, #eaf9ff );
	color: #555f77;
}

.footer-grid h2,
.site-footer strong {
	color: var(--navy-950);
}

.brand-logo--footer {
	width: 255px;
}

.footer-links a {
	color: #4d5770;
}

.footer-links a:hover {
	color: var(--coral-500);
}

.adult-note {
	border-color: #c9ecd9;
	background: #e8faef;
	color: #25754e;
}

.footer-bottom {
	border-color: rgba( 108, 79, 224, .13 );
	color: #6c7488;
}

.back-to-top {
	background: var(--coral-500);
}

/* Motion is gentle and automatically disabled when requested. */
@media ( prefers-reduced-motion: no-preference ) {
	.hero-feature__media .learning-world {
		animation: edyzoa-float 5.8s ease-in-out infinite;
	}

	.float-badge--safe { animation: edyzoa-float-small 4.8s ease-in-out infinite; }
	.float-badge--fun { animation: edyzoa-float-small 4.8s ease-in-out -2.2s infinite; }

	@keyframes edyzoa-float {
		0%, 100% { transform: translateY( 0 ); }
		50% { transform: translateY( -8px ); }
	}

	@keyframes edyzoa-float-small {
		0%, 100% { transform: translateY( 0 ) rotate( 0 ); }
		50% { transform: translateY( -7px ) rotate( 1deg ); }
	}
}

@media ( max-width: 1120px ) {
	.header-main {
		grid-template-columns: 210px 1fr 46px;
		gap: 10px;
	}

	.primary-menu a {
		padding-inline: 9px;
		font-size: .75rem;
	}

	.hero-grid {
		grid-template-columns: minmax( 0, 1.06fr ) minmax( 390px, .94fr );
		gap: 35px;
	}

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

	.topic-card:nth-child( 4 ),
	.topic-card:nth-child( 5 ) {
		min-height: 250px;
	}
}

@media ( max-width: 900px ) {
	.trust-note {
		display: none;
	}

	.header-main {
		grid-template-columns: minmax( 190px, 1fr ) 46px 46px;
		min-height: 82px;
	}

	.brand-logo {
		width: 208px;
	}

	.menu-toggle {
		background: var(--coral-500);
	}

	.primary-navigation {
		background: linear-gradient( 180deg, #fff, #f7f4ff );
	}

	.primary-menu a {
		justify-content: flex-start;
		padding-inline: 17px;
		font-size: .9rem;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-block: 68px 85px;
		text-align: center;
	}

	.hero-copy .eyebrow,
	.hero-chips,
	.hero-actions,
	.hero-proof {
		justify-content: center;
	}

	.hero-copy h1,
	.hero-intro {
		margin-inline: auto;
	}

	.hero-copy h1::after {
		margin-inline: auto;
	}

	.hero-feature {
		width: min( 100%, 610px );
		margin-inline: auto;
	}

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

	.topic-card,
	.topic-card:nth-child( 4 ),
	.topic-card:nth-child( 5 ) {
		min-height: 260px;
	}
}

@media ( max-width: 640px ) {
	.site-shell {
		width: min( calc( 100% - 28px ), var(--shell) );
	}

	.trust-bar__inner {
		justify-content: center;
		text-align: center;
	}

	.trust-bar nav {
		display: none;
	}

	.header-main {
		grid-template-columns: minmax( 145px, 1fr ) 42px 42px;
		gap: 7px;
		min-height: 72px;
	}

	.brand-logo {
		width: 174px;
	}

	.search-toggle,
	.menu-toggle {
		width: 41px;
		height: 41px;
	}

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

	.hero-grid {
		padding-block: 50px 70px;
	}

	.hero-copy h1 {
		font-size: clamp( 2.55rem, 12vw, 3.45rem );
	}

	.hero-chips > span {
		font-size: .65rem;
	}

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

	.hero-proof {
		gap: 7px;
	}

	.hero-proof span {
		min-width: 0;
		padding: 9px;
		flex: 1;
	}

	.hero-feature {
		padding-bottom: 110px;
	}

	.hero-feature__card {
		right: 0;
		bottom: 8px;
		left: 0;
		min-height: 116px;
		grid-template-columns: 80px 1fr;
		gap: 12px;
		border-width: 4px;
		border-radius: 23px;
	}

	.hero-feature__thumb {
		width: 80px;
		height: 78px;
		border-radius: 15px;
	}

	.float-badge {
		display: none;
	}

	.topic-grid {
		grid-template-columns: 1fr;
	}

	.topic-card,
	.topic-card:nth-child( 4 ),
	.topic-card:nth-child( 5 ) {
		min-height: 235px;
	}

	.featured-grid,
	.latest-grid {
		gap: 19px;
	}

	.promise-list > div {
		grid-template-columns: 46px 1fr;
		padding: 18px;
	}

	.brand-logo--footer {
		width: 225px;
	}
}
