:root {
	--ink: #190c22;
	--ink-soft: #4d3d55;
	--night: #160821;
	--night-deep: #0c0611;
	--purple: #7d2ee6;
	--purple-bright: #b84cff;
	--orange: #ff7a13;
	--orange-hot: #ff4f0a;
	--lime: #b9ef45;
	--cream: #fff5dd;
	--paper: #fffaf0;
	--white: #fff;
	--line: rgba(25, 12, 34, 0.14);
	--shadow: 0 24px 60px rgba(20, 6, 28, 0.22);
	--display: "Cooper Black", "Bookman Old Style", Georgia, serif;
	--body: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
	--shell: min(1180px, calc(100% - 40px));
	--radius: 28px;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

::selection { color: var(--night); background: var(--lime); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 88px 0; }

.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: fixed;
	left: 16px;
	top: -100px;
	z-index: 1000;
	padding: 12px 18px;
	color: var(--night);
	background: var(--lime);
	border-radius: 10px;
	font-weight: 800;
	transition: top 160ms ease;
}

.skip-link:focus { top: 16px; }

.site-header {
	position: absolute;
	inset: 0 0 auto;
	z-index: 100;
	padding: 14px 0;
	transition: background 200ms ease, box-shadow 200ms ease, padding 200ms ease;
}

.site-header.is-scrolled {
	position: fixed;
	padding: 8px 0;
	background: rgba(16, 6, 24, 0.9);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(18px);
}

body:not(.home) .site-header { background: var(--night-deep); }

.admin-bar .site-header.is-scrolled { top: 32px; }

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand { display: block; width: min(230px, 58vw); }
.site-brand > a { display: block; }
.site-brand img, .site-brand .custom-logo { width: 100%; max-height: 78px; object-fit: contain; object-position: left center; }
.custom-logo-link { display: block; }

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 8px 13px;
	color: var(--cream);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 99px;
	cursor: pointer;
	backdrop-filter: blur(12px);
}

.menu-toggle__label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.menu-toggle__icon { display: grid; gap: 4px; width: 20px; }
.menu-toggle__icon i { display: block; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.primary-navigation {
	position: fixed;
	inset: 0;
	z-index: -1;
	display: grid;
	place-items: center;
	padding: 100px 24px 40px;
	background:
		radial-gradient(circle at 20% 15%, rgba(184, 76, 255, 0.3), transparent 30%),
		radial-gradient(circle at 80% 80%, rgba(255, 122, 19, 0.22), transparent 32%),
		var(--night-deep);
	opacity: 0;
	visibility: hidden;
	transition: opacity 200ms ease, visibility 200ms ease;
}

.primary-navigation::before {
	content: "☾";
	position: absolute;
	top: 16%;
	right: 9%;
	color: var(--purple-bright);
	font-size: clamp(4rem, 18vw, 8rem);
	line-height: 1;
	filter: drop-shadow(0 0 28px rgba(184, 76, 255, 0.62));
}

.primary-navigation.is-open { opacity: 1; visibility: visible; }
.site-menu { display: grid; gap: 12px; width: min(100%, 430px); margin: 0; padding: 0; list-style: none; text-align: center; }
.site-menu a { display: block; padding: 8px 14px; color: var(--cream); font-family: var(--display); font-size: clamp(1.6rem, 8vw, 2.75rem); line-height: 1.15; text-decoration: none; }
.site-menu a:hover, .site-menu a:focus-visible { color: var(--lime); }
.site-menu .menu-download { display: inline-flex; justify-content: center; margin-top: 16px; padding: 14px 24px; color: var(--night); background: var(--lime); border-radius: 99px; font-family: var(--body); font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; }

.hero {
	position: relative;
	min-height: 860px;
	overflow: hidden;
	color: var(--cream);
	background:
		linear-gradient(rgba(10, 4, 15, 0.15) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 4, 15, 0.15) 1px, transparent 1px),
		radial-gradient(circle at 76% 30%, rgba(126, 35, 218, 0.46), transparent 29%),
		linear-gradient(155deg, #251034 0%, var(--night) 46%, #0c0611 100%);
	background-size: 36px 36px, 36px 36px, auto, auto;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.12;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.hero__grid { position: relative; z-index: 2; display: grid; align-items: center; gap: 50px; min-height: 860px; padding-top: 140px; padding-bottom: 94px; }
.hero__copy { position: relative; z-index: 4; }

.eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	color: var(--lime);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.35;
	text-transform: uppercase;
}

.eyebrow span { font-size: 1rem; }
.eyebrow--dark { color: #6c2db9; }

h1, h2, h3 { margin-top: 0; font-family: var(--display); line-height: 1.02; letter-spacing: -0.035em; }
.hero h1 { display: grid; max-width: 720px; margin-bottom: 24px; font-size: clamp(3rem, 13vw, 6.8rem); text-wrap: balance; }
.hero h1 .hero__product-name { display: block; margin-bottom: 0.7rem; color: var(--lime); font-family: var(--body); font-size: clamp(0.78rem, 3.4vw, 1.1rem); font-weight: 900; letter-spacing: 0.13em; line-height: 1.2; text-transform: uppercase; text-shadow: none; }
.hero__headline-line { display: block; }
h1 em, h2 em { color: var(--orange); font-style: normal; text-shadow: 0.04em 0.05em 0 rgba(125, 46, 230, 0.68); }
.hero__lede { max-width: 620px; margin: 0 0 30px; color: rgba(255, 245, 221, 0.82); font-size: clamp(1.02rem, 2.5vw, 1.18rem); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

.app-store-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 62px;
	padding: 9px 21px 10px 16px;
	color: var(--white);
	background: #050407;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
	line-height: 1.05;
	user-select: none;
}

.app-store-button svg { width: 30px; height: 30px; fill: currentColor; }
.app-store-button span { display: grid; gap: 2px; font-size: 1.2rem; font-weight: 700; }
.app-store-button small { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.02em; }
.app-store-button--light { color: var(--night); background: var(--cream); border-color: transparent; }

.text-link { display: inline-flex; align-items: center; gap: 7px; padding: 10px 2px; color: var(--cream); font-weight: 800; text-underline-offset: 4px; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }
.text-link--dark { color: var(--purple); }

.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 28px 0 0; padding: 0; color: rgba(255, 245, 221, 0.64); font-size: 0.78rem; font-weight: 700; list-style: none; }
.hero__trust li::before { content: "✦"; margin-right: 7px; color: var(--orange); }

.hero__art { position: relative; min-height: 540px; }
.phone-card {
	position: relative;
	z-index: 3;
	width: min(72vw, 315px);
	margin: 0 auto;
	padding: 9px;
	background: #050407;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 42px;
	box-shadow: 0 45px 100px rgba(0, 0, 0, 0.58), 0 0 55px rgba(149, 44, 255, 0.3);
	transform: rotate(2.5deg);
}

.phone-card > img:first-of-type { width: 100%; aspect-ratio: 9 / 16; border-radius: 33px; object-fit: cover; }
.phone-card__speaker { position: absolute; z-index: 5; top: 19px; left: 50%; width: 30%; height: 19px; transform: translateX(-50%); background: #050407; border-radius: 99px; }
.phone-card .phone-card__logo { position: absolute; z-index: 4; top: 10%; left: 10%; width: 80%; filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.85)); }
.phone-card__cta { position: absolute; z-index: 4; right: 10%; bottom: 7%; left: 10%; display: flex; justify-content: center; gap: 8px; padding: 12px 10px; color: var(--night); background: var(--lime); border-radius: 99px; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4); }

.peek-card { position: absolute; z-index: 1; top: 24%; width: 38%; overflow: hidden; border: 5px solid var(--cream); border-radius: 22px; box-shadow: var(--shadow); }
.peek-card img { aspect-ratio: 9 / 14; object-fit: cover; }
.peek-card--left { left: -2%; transform: rotate(-12deg); }
.peek-card--right { right: -2%; transform: rotate(12deg); }
.hero__spark { position: absolute; z-index: 5; color: var(--lime); font-size: 2.4rem; filter: drop-shadow(0 0 12px rgba(185, 239, 69, 0.8)); animation: twinkle 2.4s ease-in-out infinite; }
.hero__spark--one { top: 5%; left: 6%; }
.hero__spark--two { right: 5%; bottom: 8%; animation-delay: -1.2s; }
.hero__mist { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.25; }
.hero__mist--one { right: -10%; bottom: 8%; width: 520px; height: 240px; background: var(--orange); }
.hero__mist--two { left: -15%; top: 24%; width: 400px; height: 220px; background: var(--purple-bright); }
.hero__bats { position: absolute; z-index: 2; top: 18%; right: 5%; display: flex; gap: 35px; color: #050407; transform: rotate(-12deg); }
.hero__bats span { display: inline-block; transform: scaleX(2.4) rotate(45deg); }
.hero__bats span:nth-child(2) { margin-top: 40px; transform: scale(0.7) scaleX(2.4) rotate(45deg); }
.hero__bats span:nth-child(3) { margin-top: -18px; transform: scale(0.48) scaleX(2.4) rotate(45deg); }
.candy-stripe { position: absolute; right: 0; bottom: 0; left: 0; z-index: 5; height: 14px; background: repeating-linear-gradient(120deg, var(--orange) 0 28px, var(--cream) 28px 48px, var(--purple) 48px 76px, var(--cream) 76px 96px); }

.section-heading h2, .feature-band h2, .final-cta h2 { margin-bottom: 20px; font-size: clamp(2.55rem, 9vw, 5.25rem); text-wrap: balance; }
.section-heading > p:not(.eyebrow) { max-width: 610px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }

.transformation {
	position: relative;
	background:
		radial-gradient(circle at 12% 20%, rgba(185, 239, 69, 0.18), transparent 25%),
		linear-gradient(180deg, var(--paper), #fff1cf);
}

.transformation__grid { display: grid; gap: 48px; align-items: center; }
.spell-steps { display: grid; gap: 18px; margin: 35px 0 0; padding: 0; list-style: none; }
.spell-steps li { display: flex; align-items: center; gap: 15px; }
.spell-steps li > span { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; color: var(--cream); background: var(--purple); border: 3px solid var(--ink); border-radius: 50%; box-shadow: 4px 4px 0 var(--orange); font-family: var(--display); }
.spell-steps div { display: grid; }
.spell-steps strong { line-height: 1.25; }
.spell-steps small { color: var(--ink-soft); font-size: 0.88rem; }

.before-after { position: relative; width: min(100%, 430px); margin-inline: auto; }
.before-after__frame { position: relative; overflow: hidden; aspect-ratio: 9 / 14; background: var(--night); border: 8px solid var(--white); border-radius: 32px; box-shadow: 12px 14px 0 var(--purple), var(--shadow); }
.before-after__image { width: 100%; height: 100%; object-fit: cover; }
.before-after__after { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--reveal)) 0 0); }
.before-after__after img { width: 100%; max-width: none; }
.before-after__line { position: absolute; top: 0; bottom: 0; left: var(--reveal); width: 0; pointer-events: none; }
.before-after__line b { position: absolute; top: 50%; left: 0; display: grid; width: 44px; height: 44px; place-items: center; color: var(--night); background: var(--lime); border: 3px solid var(--night); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26); }
.before-after__tag { position: absolute; top: 16px; z-index: 3; padding: 5px 10px; color: var(--white); background: rgba(12, 6, 17, 0.74); border-radius: 99px; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.before-after__tag--before { right: 16px; }
.before-after__tag--after { left: 16px; }
.before-after input[type="range"] { position: absolute; inset: 0; width: 100%; height: calc(100% - 32px); margin: 0; opacity: 0; cursor: ew-resize; }
.before-after__hint { margin: 19px 0 0; color: var(--purple); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em; text-align: center; text-transform: uppercase; }

.effects {
	position: relative;
	overflow: hidden;
	color: var(--cream);
	background:
		radial-gradient(circle at 80% 8%, rgba(255, 122, 19, 0.23), transparent 23%),
		radial-gradient(circle at 8% 88%, rgba(125, 46, 230, 0.5), transparent 31%),
		var(--night);
}

.effects::before, .effects::after { content: ""; position: absolute; width: 260px; height: 260px; border: 2px solid rgba(185, 239, 69, 0.18); border-radius: 50%; }
.effects::before { top: -170px; left: -80px; box-shadow: 0 0 0 30px rgba(185, 239, 69, 0.04), 0 0 0 70px rgba(185, 239, 69, 0.03); }
.effects::after { right: -130px; bottom: -150px; box-shadow: 0 0 0 30px rgba(255, 122, 19, 0.04), 0 0 0 70px rgba(255, 122, 19, 0.03); }
.effects .section-heading > p:not(.eyebrow) { color: rgba(255, 245, 221, 0.7); }
.section-heading--centred { margin: 0 auto 46px; text-align: center; }
.section-heading--centred .eyebrow { justify-content: center; }
.section-heading--centred > p:not(.eyebrow) { margin-inline: auto; }

.effect-rail {
	display: grid;
	grid-auto-columns: minmax(215px, 72vw);
	grid-auto-flow: column;
	gap: 18px;
	overflow-x: auto;
	margin-right: calc((100vw - var(--shell)) / -2);
	padding: 12px calc((100vw - var(--shell)) / 2) 34px 3px;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--purple) transparent;
}

.effect-card { position: relative; overflow: hidden; aspect-ratio: 4 / 5.8; border: 5px solid var(--cream); border-radius: 25px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34); scroll-snap-align: start; transform: rotate(-1.5deg); }
.effect-card:nth-child(even) { transform: rotate(1.5deg) translateY(8px); }
.effect-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(0.2, 0.7, 0, 1); }
.effect-card:hover img { transform: scale(1.055); }
.effect-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(10, 3, 15, 0.92)); }
.effect-card__copy { position: absolute; right: 17px; bottom: 17px; left: 17px; z-index: 2; }
.effect-card__copy small { color: var(--lime); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.effect-card__copy h3 { margin: 2px 0 0; font-size: 1.35rem; letter-spacing: -0.02em; }
.effect-card--1 { border-color: var(--lime); }
.effect-card--2 { border-color: #ffb0ed; }
.effect-card--3 { border-color: #c6adff; }
.rail-hint { margin: 8px 0 0; color: rgba(255, 245, 221, 0.54); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; }

.feature-band { position: relative; overflow: hidden; background: var(--lime); }
.feature-band::before { content: ""; position: absolute; inset: 0; opacity: 0.22; background-image: radial-gradient(var(--purple) 1.2px, transparent 1.2px); background-size: 18px 18px; }
.feature-band__grid { position: relative; display: grid; align-items: center; gap: 50px; }
.feature-band__art { position: relative; width: min(80vw, 430px); aspect-ratio: 1; margin-inline: auto; }
.feature-band__art::before { content: ""; position: absolute; inset: 8%; background: var(--orange); border: 5px solid var(--ink); border-radius: 43% 57% 53% 47% / 45% 42% 58% 55%; box-shadow: 14px 16px 0 var(--purple); transform: rotate(-7deg); }
.feature-band__icon { position: absolute; inset: 16%; width: 68%; border-radius: 25%; box-shadow: 0 20px 45px rgba(24, 8, 33, 0.32); transform: rotate(4deg); }
.orbit { position: absolute; z-index: 3; display: grid; place-items: center; color: var(--cream); background: var(--purple); border: 3px solid var(--ink); border-radius: 50%; font-weight: 900; box-shadow: 4px 4px 0 var(--ink); }
.orbit--one { top: 4%; right: 9%; width: 58px; height: 58px; }
.orbit--two { bottom: 4%; left: 2%; width: 42px; height: 42px; color: var(--lime); }
.orbit--three { right: 1%; bottom: 22%; width: 48px; height: 48px; background: var(--orange); }
.feature-band__copy h2 em { color: var(--purple); text-shadow: 0.04em 0.05em 0 rgba(255, 122, 19, 0.8); }
.feature-list { display: grid; gap: 20px; margin-top: 34px; }
.feature-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.feature-list > div > span { display: grid; width: 46px; height: 46px; place-items: center; color: var(--cream); background: var(--night); border-radius: 14px; font-size: 1.2rem; transform: rotate(-4deg); }
.feature-list p { display: grid; margin: 0; line-height: 1.45; }
.feature-list strong { font-size: 1.02rem; }
.feature-list p { color: rgba(25, 12, 34, 0.72); font-size: 0.93rem; }

.final-cta { position: relative; overflow: hidden; color: var(--cream); background: linear-gradient(180deg, #281038, var(--night-deep)); text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 105%, rgba(255, 122, 19, 0.28), transparent 30%); }
.final-cta__inner { position: relative; z-index: 2; }
.final-cta__inner > img { width: min(450px, 86vw); margin: 0 auto 22px; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { margin: 0 0 27px; color: rgba(255, 245, 221, 0.7); }
.final-cta__moon { position: absolute; top: -80px; right: -60px; width: 220px; height: 220px; background: var(--purple); border-radius: 50%; box-shadow: 0 0 70px rgba(184, 76, 255, 0.65); opacity: 0.75; }
.final-cta__pumpkin { position: absolute; bottom: -55px; left: -30px; font-size: 9rem; transform: rotate(14deg); filter: saturate(0.8); opacity: 0.42; }

.site-footer { position: relative; overflow: hidden; padding: 45px 0 30px; color: rgba(255, 245, 221, 0.65); background: #08030c; }
.site-footer__inner { position: relative; z-index: 2; display: grid; gap: 26px; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: var(--cream); }
.footer-brand img { width: 64px; border-radius: 18px; }
.footer-brand div { display: grid; }
.footer-brand strong { font-family: var(--display); font-size: 1.1rem; }
.footer-brand span { color: rgba(255, 245, 221, 0.56); font-size: 0.82rem; }
.footer-menu { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0; padding: 0; list-style: none; }
.footer-menu a { color: var(--cream); font-size: 0.86rem; font-weight: 700; text-underline-offset: 4px; }
.site-footer__legal { margin: 0; font-size: 0.76rem; }

.content-shell { min-height: 70vh; padding-top: 155px; padding-bottom: 100px; }
.content-shell::before { content: ""; position: fixed; z-index: -1; inset: 0; background: radial-gradient(circle at 90% 15%, rgba(184, 76, 255, 0.12), transparent 26%), linear-gradient(#fffaf0, #fff2d5); }
.archive-header, .entry-header { max-width: 980px; margin-bottom: 44px; }
.archive-header h1, .entry-header h1 { margin-bottom: 20px; font-size: clamp(3rem, 10vw, 6rem); color: var(--ink); }
.archive-description, .entry-intro { max-width: 700px; color: var(--ink-soft); font-size: 1.2rem; }
.post-grid { display: grid; gap: 28px; }
.post-card { overflow: hidden; background: var(--white); border: 2px solid var(--ink); border-radius: 24px; box-shadow: 8px 9px 0 var(--purple); }
.post-card__media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--night); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 24px; }
.post-card__meta { margin: 0 0 7px; color: var(--purple); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.post-card h2 { margin-bottom: 12px; font-size: 1.8rem; }
.post-card h2 a { text-decoration: none; }
.post-card__body > p:not(.post-card__meta) { color: var(--ink-soft); }
.navigation.pagination { margin-top: 50px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 9px; }
.page-numbers { display: grid; min-width: 42px; height: 42px; padding: 0 12px; place-items: center; color: var(--ink); background: var(--white); border: 2px solid var(--ink); border-radius: 99px; font-weight: 800; text-decoration: none; }
.page-numbers.current { color: var(--cream); background: var(--purple); }
.empty-state, .not-found { max-width: 680px; margin: 30px auto; padding: 50px 28px; background: var(--white); border: 3px solid var(--ink); border-radius: 30px; box-shadow: 11px 12px 0 var(--purple); text-align: center; }
.empty-state > span, .not-found__ghost { display: block; margin-bottom: 15px; font-size: 4rem; }
.empty-state h2, .not-found h1 { margin-bottom: 12px; font-size: clamp(2.4rem, 8vw, 4.6rem); }
.empty-state p, .not-found p { color: var(--ink-soft); }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 10px 22px; color: var(--cream); background: var(--purple); border: 2px solid var(--ink); border-radius: 99px; box-shadow: 4px 5px 0 var(--orange); font-weight: 900; text-decoration: none; }

.entry { max-width: 1080px; margin: 0 auto; }
.entry-hero { overflow: hidden; margin: 0 0 46px; border: 4px solid var(--ink); border-radius: 28px; box-shadow: 10px 12px 0 var(--purple); }
.entry-hero img { width: 100%; max-height: 650px; object-fit: cover; }
.entry-content { max-width: 900px; margin-inline: auto; }
.entry-content > * { margin-top: 0; margin-bottom: 1.5em; }
.entry-content h2 { margin-top: 1.45em; margin-bottom: 0.55em; font-size: clamp(2rem, 6vw, 3.2rem); }
.entry-content h3 { margin-top: 1.35em; margin-bottom: 0.45em; font-size: 1.65rem; }
.entry-content a { color: var(--purple); font-weight: 700; text-underline-offset: 3px; }
.entry-content blockquote { margin-inline: 0; padding: 25px 28px; color: var(--ink); background: var(--lime); border: 3px solid var(--ink); border-radius: 20px; box-shadow: 7px 8px 0 var(--orange); font-family: var(--display); font-size: 1.3rem; line-height: 1.45; }
.entry-content code { padding: 0.15em 0.4em; background: rgba(125, 46, 230, 0.1); border-radius: 5px; }
.entry-content pre { overflow-x: auto; padding: 20px; color: var(--cream); background: var(--night); border-radius: 16px; }
.entry-content pre code { padding: 0; color: inherit; background: transparent; }
.entry-content .alignwide { width: min(100vw - 40px, 1040px); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-content .legal-meta { display: inline-flex; padding: 6px 12px; color: var(--purple); background: rgba(125, 46, 230, 0.1); border-radius: 99px; font-size: 0.78rem; font-weight: 800; }
.entry-content .legal-callout { padding: 22px 24px; background: var(--cream); border: 3px solid var(--ink); border-radius: 18px; box-shadow: 6px 7px 0 var(--orange); }
.entry-content .legal-callout strong:first-child { display: block; margin-bottom: 6px; }
.entry-content .legal-contents { padding: 22px 25px; background: rgba(185, 239, 69, 0.22); border-left: 5px solid var(--purple); border-radius: 0 16px 16px 0; }
.entry-content .legal-contents ul { margin-bottom: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; max-width: 900px; margin: 40px auto 0; }
.tag-list a { padding: 6px 12px; color: var(--purple); background: rgba(125, 46, 230, 0.1); border-radius: 99px; font-size: 0.78rem; font-weight: 800; text-decoration: none; }
.post-navigation { display: grid; gap: 14px; max-width: 1080px; margin: 60px auto 0; padding-top: 28px; border-top: 2px solid var(--line); }
.post-navigation a { display: flex; justify-content: space-between; gap: 14px; color: var(--purple); font-weight: 900; text-decoration: none; }

@keyframes twinkle {
	0%, 100% { opacity: 0.45; transform: scale(0.8) rotate(-8deg); }
	50% { opacity: 1; transform: scale(1.15) rotate(8deg); }
}

@media (min-width: 700px) {
	:root { --shell: min(1180px, calc(100% - 72px)); }
	.section { padding: 112px 0; }
	.hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr); gap: 40px; padding-top: 130px; }
	.hero__art { min-height: 620px; }
	.phone-card { width: min(31vw, 340px); }
	.peek-card { width: 34%; }
	.transformation__grid { grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr); gap: 9vw; }
	.effect-rail { grid-auto-columns: 250px; }
	.feature-band__grid { grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr); gap: 8vw; }
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-footer__inner { grid-template-columns: 1fr auto; align-items: center; }
	.site-footer__legal { grid-column: 1 / -1; }
	.post-navigation { grid-template-columns: 1fr 1fr; }
	.post-navigation a:last-child { justify-content: flex-end; text-align: right; }
}

@media (min-width: 960px) {
	.site-header { padding: 18px 0; }
	.site-brand { width: 275px; }
	.menu-toggle { display: none; }
	.primary-navigation { position: static; z-index: auto; display: block; padding: 0; background: none; opacity: 1; visibility: visible; }
	.primary-navigation::before { display: none; }
	.site-menu { display: flex; align-items: center; justify-content: flex-end; gap: 5px; width: auto; }
	.site-menu a { padding: 9px 12px; font-family: var(--body); font-size: 0.86rem; font-weight: 800; letter-spacing: 0.01em; }
	.site-menu .menu-download { display: flex; margin: 0 0 0 8px; padding: 10px 18px; font-size: 0.78rem; }
	.hero h1 { font-size: clamp(4.6rem, 7.6vw, 7rem); }
	.effect-rail { grid-auto-columns: 275px; }
	.post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.site-footer__inner { grid-template-columns: 1fr auto auto; }
	.site-footer__legal { grid-column: auto; text-align: right; }
}

@media (max-width: 699px) {
	.admin-bar .site-header.is-scrolled { top: 46px; }
	.hero__grid { padding-top: 135px; }
	.hero__copy { text-align: center; }
	.hero__copy .eyebrow { justify-content: center; }
	.hero__actions, .hero__trust { justify-content: center; }
	.hero__art { margin-top: 10px; }
	.feature-band__copy { text-align: center; }
	.feature-band__copy .eyebrow { justify-content: center; }
	.feature-list { text-align: left; }
}

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

@media (prefers-contrast: more) {
	.eyebrow { color: #d9ff7e; }
	.hero__lede, .effects .section-heading > p:not(.eyebrow), .final-cta p { color: var(--cream); }
}
