:root {
	--ivory: #fffaf2;
	--ivory-deep: #f5ede0;
	--paper: #ffffff;
	--navy: #17233f;
	--navy-soft: #31405f;
	--muted: #677087;
	--line: rgba(23, 35, 63, 0.12);
	--coral: #ef7864;
	--coral-dark: #c95544;
	--coral-soft: #ffe0d6;
	--sage: #8db49c;
	--sage-soft: #dfefe4;
	--sky: #72c7ed;
	--sky-soft: #dcf4ff;
	--violet: #7b6fd6;
	--violet-dark: #594eb5;
	--violet-soft: #e6e1ff;
	--rose: #f79bad;
	--radius-sm: 16px;
	--radius-md: 24px;
	--radius-lg: 36px;
	--radius-xl: 52px;
	--shadow-sm: 0 12px 35px rgba(23, 35, 63, 0.08);
	--shadow-lg: 0 28px 80px rgba(23, 35, 63, 0.13);
	--shell: 1180px;
	--font-sans: Inter, ui-rounded, "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

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

body.menu-open {
	overflow: hidden;
}

::selection {
	background: var(--coral-soft);
	color: var(--navy);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

figure,
p,
ul,
ol {
	margin-top: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

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

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

:focus-visible {
	outline: 3px solid var(--sky);
	outline-offset: 4px;
	border-radius: 6px;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.55em;
	color: var(--navy);
	font-weight: 780;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3rem, 6.2vw, 5.7rem);
	letter-spacing: -0.06em;
}

h2 {
	font-size: clamp(2.25rem, 4vw, 3.8rem);
}

h3 {
	font-size: clamp(1.3rem, 2vw, 1.65rem);
}

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

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

.content-shell {
	max-width: 1080px;
}

.section {
	position: relative;
	padding: clamp(82px, 10vw, 144px) 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;
}

.screen-reader-text:focus {
	position: fixed !important;
	top: 16px;
	left: 16px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--navy);
	color: #fff;
	border-radius: 10px;
	font-weight: 750;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 250, 242, 0.86);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(255, 250, 242, 0.96);
	border-color: var(--line);
	box-shadow: 0 9px 34px rgba(23, 35, 63, 0.07);
}

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

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	gap: 26px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
	color: var(--navy);
	text-decoration: none;
}

.brand-symbol,
.brand-custom-logo {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(23, 35, 63, 0.08);
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(23, 35, 63, 0.09);
}

.brand-mode-logo,
.brand-custom-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}

.site-mode-huppo .brand-symbol {
	background: var(--coral-soft);
}

.site-mode-napillo .brand-symbol {
	background: linear-gradient(145deg, var(--sky-soft), var(--violet-soft));
}

.brand-copy {
	display: grid;
	line-height: 1.1;
}

.brand-copy strong {
	font-size: 1.05rem;
	letter-spacing: -0.025em;
}

.brand-wordmark {
	display: inline-flex;
	align-items: baseline;
	font-size: clamp(1.18rem, 1.8vw, 1.42rem) !important;
	font-weight: 850;
	letter-spacing: -0.065em !important;
	line-height: 0.95;
}

.brand-word-baby {
	color: var(--coral-dark);
}

.brand-word-asistan {
	color: var(--violet-dark);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
	.brand-word-baby {
		background: linear-gradient(135deg, var(--coral-dark), #e9785e);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}

	.brand-word-asistan {
		background: linear-gradient(135deg, #236e91, var(--violet-dark));
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
}

.brand-copy small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.01em;
}

.site-navigation,
.primary-menu {
	display: flex;
	align-items: center;
}

.site-navigation {
	gap: 24px;
}

.primary-menu {
	gap: clamp(16px, 2vw, 30px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu li {
	position: relative;
	margin: 0;
}

.primary-menu a,
.family-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 8px 0;
	color: var(--navy-soft);
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-menu a:hover,
.family-link:hover {
	color: var(--coral-dark);
}

.site-mode-napillo .primary-menu a:hover,
.site-mode-napillo .family-link:hover {
	color: var(--violet-dark);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: -18px;
	min-width: 220px;
	padding: 10px;
	margin: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
	list-style: none;
}

.primary-menu .sub-menu a {
	padding: 9px 10px;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 9px;
	padding: 10px 13px;
	background: #fff;
	color: var(--navy);
	border: 1px solid var(--line);
	border-radius: 12px;
	font-size: 0.82rem;
	font-weight: 750;
	cursor: pointer;
}

.menu-toggle-lines {
	display: grid;
	gap: 5px;
	width: 18px;
}

.menu-toggle-lines i {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease;
}

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

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

.button,
button.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 52px;
	padding: 13px 22px;
	background: var(--navy);
	color: #fff;
	border: 1px solid var(--navy);
	border-radius: 15px;
	box-shadow: 0 12px 26px rgba(23, 35, 63, 0.17);
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
button.button:hover,
input[type="submit"]:hover {
	background: #253454;
	box-shadow: 0 15px 32px rgba(23, 35, 63, 0.22);
	transform: translateY(-2px);
}

.button-small {
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 12px;
	font-size: 0.82rem;
}

.button-coral {
	background: var(--coral);
	border-color: var(--coral);
	box-shadow: 0 12px 28px rgba(239, 120, 100, 0.25);
}

.button-coral:hover {
	background: var(--coral-dark);
}

.button-violet {
	background: var(--violet);
	border-color: var(--violet);
	box-shadow: 0 12px 28px rgba(123, 111, 214, 0.25);
}

.button-violet:hover {
	background: var(--violet-dark);
}

.button-light {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
}

.button-light:hover {
	background: var(--ivory);
}

.button.is-disabled {
	background: #dad6cf;
	color: #65615d;
	border-color: #dad6cf;
	box-shadow: none;
	cursor: not-allowed;
}

.text-link,
.product-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--navy);
	font-weight: 760;
	text-decoration: none;
}

.text-link span,
.product-link span {
	transition: transform 160ms ease;
}

.text-link:hover span,
.product-link:hover span {
	transform: translateX(4px);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 20px;
	color: var(--coral-dark);
	font-size: 0.76rem;
	font-weight: 820;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.site-mode-napillo .eyebrow {
	color: var(--violet-dark);
}

.eyebrow-dot {
	width: 8px;
	height: 8px;
	background: currentColor;
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(239, 120, 100, 0.12);
}

.site-mode-napillo .eyebrow-dot {
	box-shadow: 0 0 0 6px rgba(123, 111, 214, 0.12);
}

.hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: calc(100svh - 84px);
	padding: clamp(64px, 8vw, 108px) 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 20%, rgba(239, 120, 100, 0.1), transparent 28%),
		radial-gradient(circle at 90% 80%, rgba(123, 111, 214, 0.1), transparent 30%);
}

.hero::before {
	content: "";
	position: absolute;
	top: 8%;
	right: -110px;
	width: 310px;
	height: 310px;
	background: rgba(141, 180, 156, 0.12);
	border-radius: 48% 52% 63% 37%;
	filter: blur(1px);
	transform: rotate(16deg);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
	align-items: center;
	gap: clamp(46px, 7vw, 94px);
}

.hero-copy {
	max-width: 670px;
}

.hero-lead {
	max-width: 630px;
	margin-bottom: 32px;
	color: var(--navy-soft);
	font-size: clamp(1.08rem, 1.6vw, 1.32rem);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 32px;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	padding: 0;
	margin: 0;
	color: var(--muted);
	font-size: 0.84rem;
	font-weight: 680;
	list-style: none;
}

.trust-list span {
	margin-right: 5px;
	color: var(--sage);
}

.hero-visual {
	position: relative;
	min-height: 590px;
	background-color: var(--coral-soft);
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	isolation: isolate;
}

.visual-babyasistan {
	background-image:
		linear-gradient(135deg, rgba(255, 244, 231, 0.05), rgba(123, 111, 214, 0.08)),
		url("../images/hero-babyasistan.png");
	background-position: 68% center;
	background-size: cover;
}

.visual-glow {
	position: absolute;
	inset: 20% 8% 8% 28%;
	z-index: -1;
	background: rgba(255, 255, 255, 0.34);
	border-radius: 50%;
	filter: blur(38px);
}

.floating-product {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 196px;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 18px;
	box-shadow: 0 15px 35px rgba(23, 35, 63, 0.15);
	backdrop-filter: blur(14px);
}

.floating-product span:last-child {
	display: grid;
	line-height: 1.25;
}

.floating-product strong {
	font-size: 0.92rem;
}

.floating-product small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.68rem;
}

.floating-huppo {
	bottom: 54px;
	left: -34px;
}

.floating-napillo {
	top: 54px;
	right: -26px;
}

.app-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid rgba(23, 35, 63, 0.07);
	border-radius: 13px;
	box-shadow: 0 6px 16px rgba(23, 35, 63, 0.12);
}

.app-icon-large {
	width: 62px;
	height: 62px;
	border-radius: 18px;
}

.icon-huppo {
	background-color: var(--coral-soft);
	background-image: url("../images/huppo-icon.png");
}

.icon-napillo {
	background-color: var(--violet-soft);
	background-image: url("../images/napillo-icon.png");
}

.quick-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.quick-stats > div {
	display: grid;
	min-width: 122px;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.67);
	border: 1px solid rgba(23, 35, 63, 0.08);
	border-radius: 15px;
}

.quick-stats strong {
	font-size: 1.02rem;
	line-height: 1.15;
}

.quick-stats span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.7rem;
	line-height: 1.2;
}

.hero-product::before {
	width: 380px;
	height: 380px;
}

.hero-huppo {
	background:
		radial-gradient(circle at 10% 18%, rgba(239, 120, 100, 0.17), transparent 30%),
		radial-gradient(circle at 90% 78%, rgba(141, 180, 156, 0.19), transparent 31%),
		var(--ivory);
}

.hero-napillo {
	background:
		radial-gradient(circle at 8% 20%, rgba(114, 199, 237, 0.18), transparent 30%),
		radial-gradient(circle at 92% 78%, rgba(123, 111, 214, 0.18), transparent 32%),
		var(--ivory);
}

.phone-visual {
	min-height: 650px;
	background-repeat: no-repeat;
	background-size: cover;
	border: 12px solid rgba(255, 255, 255, 0.8);
	border-radius: 58px;
}

.visual-huppo-product {
	background-color: var(--coral-soft);
	background-image:
		linear-gradient(rgba(255, 248, 242, 0.03), rgba(239, 120, 100, 0.06)),
		url("../images/huppo-product-visual.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.visual-napillo-dashboard {
	background-color: var(--sky-soft);
	background-image:
		linear-gradient(rgba(225, 246, 255, 0.02), rgba(123, 111, 214, 0.06)),
		url("../images/napillo-dashboard.png");
	background-position: center 22%;
	background-repeat: no-repeat;
	background-size: cover;
}

.visual-napillo-analysis {
	background-color: var(--violet-soft);
	background-image:
		linear-gradient(rgba(230, 225, 255, 0.03), rgba(114, 199, 237, 0.05)),
		url("../images/napillo-analysis.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.visual-napillo-guide {
	background-color: var(--sky-soft);
	background-image:
		linear-gradient(rgba(220, 244, 255, 0.03), rgba(123, 111, 214, 0.05)),
		url("../images/napillo-guide.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.visual-note {
	position: absolute;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.93);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 13px;
	box-shadow: 0 12px 28px rgba(23, 35, 63, 0.15);
	font-size: 0.75rem;
	font-weight: 750;
	line-height: 1.2;
}

.visual-note.note-one {
	top: 58px;
	left: -34px;
}

.visual-note.note-two {
	right: -24px;
	bottom: 78px;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	align-items: end;
	gap: 60px;
	margin-bottom: clamp(44px, 7vw, 76px);
}

.section-heading h2 {
	max-width: 790px;
	margin-bottom: 0;
}

.section-heading > p,
.section-heading > div > p:last-child {
	margin-bottom: 5px;
	color: var(--muted);
}

.section-heading.centered {
	display: block;
	max-width: 830px;
	margin-inline: auto;
	text-align: center;
}

.section-heading.centered .eyebrow {
	justify-content: center;
}

.product-section {
	background: #fff;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.product-card {
	display: grid;
	grid-template-rows: auto 420px;
	overflow: hidden;
	border: 1px solid rgba(23, 35, 63, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.product-huppo {
	background: linear-gradient(145deg, #fff8f4, var(--coral-soft));
}

.product-napillo {
	background: linear-gradient(145deg, #f6fcff, var(--violet-soft));
}

.product-content {
	padding: clamp(28px, 4vw, 46px);
}

.product-title-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.product-title-row h3 {
	margin: 0;
	font-size: 2.2rem;
}

.product-kicker {
	margin: 0 0 2px;
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 780;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.product-content > p {
	color: var(--navy-soft);
}

.feature-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 24px 0 25px;
	list-style: none;
}

.feature-inline li,
.month-pills span {
	padding: 7px 11px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(23, 35, 63, 0.08);
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 720;
}

.product-media {
	min-height: 420px;
	margin: 0 24px 24px;
	border: 9px solid rgba(255, 255, 255, 0.66);
	border-radius: 28px;
	box-shadow: inset 0 0 0 1px rgba(23, 35, 63, 0.05);
}

.surface-card {
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(23, 35, 63, 0.08);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.approach-section {
	background:
		radial-gradient(circle at 8% 15%, rgba(141, 180, 156, 0.13), transparent 23%),
		var(--ivory);
}

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

.value-card,
.feature-card {
	padding: clamp(25px, 3vw, 38px);
}

.value-number {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 52px;
	background: var(--sage-soft);
	color: #406f56;
	border-radius: 15px;
	font-size: 0.76rem;
	font-weight: 820;
}

.value-card:nth-child(2) .value-number {
	background: var(--coral-soft);
	color: var(--coral-dark);
}

.value-card:nth-child(3) .value-number {
	background: var(--violet-soft);
	color: var(--violet-dark);
}

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

.community-section {
	background: #fff;
}

.community-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
	align-items: center;
	gap: 60px;
	padding: clamp(42px, 7vw, 84px);
	overflow: hidden;
	background:
		radial-gradient(circle at 80% 10%, rgba(114, 199, 237, 0.23), transparent 30%),
		linear-gradient(135deg, #1b2948, #27385e);
	color: #fff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
}

.community-copy {
	position: relative;
	z-index: 2;
}

.community-card h2,
.community-card .eyebrow {
	color: #fff;
}

.community-card p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.75);
}

.community-bubbles {
	position: relative;
	min-height: 330px;
}

.bubble {
	position: absolute;
	max-width: 260px;
	padding: 17px 20px;
	background: #fff;
	color: var(--navy);
	border-radius: 22px 22px 22px 5px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
	font-size: 0.82rem;
	font-weight: 680;
}

.bubble-one {
	top: 18px;
	left: 12%;
	transform: rotate(-3deg);
}

.bubble-two {
	top: 125px;
	right: 2%;
	background: var(--coral-soft);
	transform: rotate(2deg);
}

.bubble-three {
	bottom: 18px;
	left: 22%;
	background: var(--sage-soft);
	transform: rotate(-1deg);
}

.manifesto-section {
	background: var(--ivory);
}

.manifesto-grid {
	display: grid;
	grid-template-columns: 0.35fr 1.65fr;
	gap: 70px;
}

.manifesto-grid h2 {
	max-width: 900px;
}

.manifesto-grid p:last-child {
	max-width: 760px;
	color: var(--muted);
	font-size: 1.08rem;
}

.feature-section {
	background: #fff;
}

.feature-card {
	min-height: 285px;
}

.feature-symbol {
	display: inline-grid;
	place-items: center;
	width: 51px;
	height: 51px;
	margin-bottom: 48px;
	background: var(--coral-soft);
	color: var(--coral-dark);
	border-radius: 16px;
	font-size: 1rem;
	font-weight: 840;
}

.site-mode-napillo .feature-symbol {
	background: linear-gradient(145deg, var(--sky-soft), var(--violet-soft));
	color: var(--violet-dark);
}

.feature-grid-five .feature-card:last-child {
	grid-column: 2;
}

.health-note {
	max-width: 900px;
	margin: 34px auto 0;
	padding: 16px 20px;
	background: var(--ivory);
	color: var(--muted);
	border: 1px solid var(--line);
	border-radius: 14px;
	font-size: 0.78rem;
	text-align: center;
}

.steps-section {
	background:
		radial-gradient(circle at 90% 15%, rgba(239, 120, 100, 0.12), transparent 25%),
		var(--ivory);
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	gap: clamp(50px, 9vw, 120px);
}

.split-copy {
	position: sticky;
	top: 130px;
	align-self: start;
}

.split-copy p:last-child {
	color: var(--muted);
}

.steps-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.steps-list li {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 20px;
	padding: 26px 0;
	border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
	padding-top: 0;
}

.steps-list li > span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	background: var(--coral-soft);
	color: var(--coral-dark);
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 820;
}

.steps-list h3 {
	margin-bottom: 7px;
}

.steps-list p {
	margin: 0;
	color: var(--muted);
}

.guide-section {
	background: #fff;
}

.guide-card {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 50px;
	padding: clamp(40px, 7vw, 82px);
	background:
		radial-gradient(circle at 90% 40%, rgba(141, 180, 156, 0.25), transparent 32%),
		linear-gradient(140deg, #fff8f4, var(--coral-soft));
	border: 1px solid rgba(239, 120, 100, 0.16);
	border-radius: var(--radius-xl);
}

.guide-card > div:first-child {
	max-width: 680px;
}

.guide-card p:last-child {
	color: var(--navy-soft);
}

.month-pills {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.month-pills span {
	min-width: 82px;
	padding: 12px 14px;
	text-align: center;
}

.gallery-section {
	background: #fff;
}

.screen-gallery {
	display: grid;
	grid-template-columns: 1.15fr 0.925fr 0.925fr;
	gap: 20px;
}

.screen-card {
	overflow: hidden;
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: 30px;
}

.screen-card-primary {
	background: linear-gradient(145deg, var(--sky-soft), #f8f6ff);
}

.screen-media {
	height: 460px;
	margin: 20px 20px 0;
	border: 8px solid rgba(255, 255, 255, 0.78);
	border-bottom: 0;
	border-radius: 25px 25px 0 0;
	box-shadow: 0 12px 30px rgba(23, 35, 63, 0.12);
}

.screen-card > div:last-child {
	padding: 27px 27px 31px;
}

.screen-card > div:last-child > span {
	color: var(--violet-dark);
	font-size: 0.7rem;
	font-weight: 820;
	letter-spacing: 0.1em;
}

.screen-card h3 {
	margin: 7px 0;
}

.screen-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.86rem;
}

.data-section {
	background:
		radial-gradient(circle at 8% 82%, rgba(114, 199, 237, 0.16), transparent 24%),
		var(--ivory);
}

.data-card {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	align-items: center;
	gap: clamp(45px, 8vw, 100px);
	padding: clamp(42px, 7vw, 82px);
	background: linear-gradient(140deg, #eefaff, #f3f0ff);
	border: 1px solid rgba(123, 111, 214, 0.14);
	border-radius: var(--radius-xl);
}

.data-card p:not(.eyebrow) {
	color: var(--navy-soft);
}

.data-orbit {
	position: relative;
	display: grid;
	place-items: center;
	width: min(100%, 320px);
	aspect-ratio: 1;
	margin-inline: auto;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(123, 111, 214, 0.16);
	border-radius: 50%;
	box-shadow: inset 0 0 50px rgba(114, 199, 237, 0.13), var(--shadow-sm);
}

.data-orbit span {
	display: grid;
	place-items: center;
	width: 96px;
	height: 96px;
	background: linear-gradient(145deg, var(--sky), var(--violet));
	color: #fff;
	border-radius: 31px;
	box-shadow: 0 18px 38px rgba(123, 111, 214, 0.27);
	font-size: 2.2rem;
}

.data-orbit i {
	position: absolute;
	width: 16px;
	height: 16px;
	background: var(--violet);
	border-radius: 50%;
}

.data-orbit i:nth-child(2) { top: 16%; left: 20%; }
.data-orbit i:nth-child(3) { right: 16%; bottom: 24%; background: var(--sky); }
.data-orbit i:nth-child(4) { left: 31%; bottom: 10%; width: 10px; height: 10px; background: var(--rose); }

.data-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
	margin-top: 28px;
}

.final-cta-section {
	background: #fff;
}

.final-cta {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	padding: clamp(34px, 5vw, 58px);
	border-radius: var(--radius-lg);
}

.final-cta h2 {
	max-width: 710px;
	margin: 0;
	font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.final-cta .eyebrow {
	margin-bottom: 10px;
}

.final-cta-huppo {
	background: linear-gradient(135deg, #fff7f1, var(--coral-soft));
	border: 1px solid rgba(239, 120, 100, 0.15);
}

.final-cta-napillo {
	background: linear-gradient(135deg, var(--sky-soft), var(--violet-soft));
	border: 1px solid rgba(123, 111, 214, 0.14);
}

.content-main {
	min-height: 60vh;
	padding-bottom: 110px;
}

.page-hero {
	padding: clamp(76px, 10vw, 130px) 0 clamp(52px, 7vw, 80px);
	background:
		radial-gradient(circle at 15% 20%, rgba(239, 120, 100, 0.12), transparent 27%),
		radial-gradient(circle at 86% 70%, rgba(123, 111, 214, 0.12), transparent 25%);
}

.compact-hero h1 {
	font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.compact-hero p:last-child {
	max-width: 650px;
	color: var(--muted);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 60px;
}

.post-card {
	overflow: hidden;
	padding: 26px;
}

.post-thumbnail {
	display: block;
	margin: -26px -26px 24px;
}

.post-thumbnail img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-meta {
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 0.72rem;
}

.post-card h2 {
	font-size: 1.45rem;
}

.post-card h2 a {
	text-decoration: none;
}

.post-excerpt {
	color: var(--muted);
	font-size: 0.88rem;
}

.empty-state {
	max-width: 720px;
	padding: 45px;
	margin: 60px auto 0;
	text-align: center;
}

.navigation.pagination {
	margin-top: 40px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 11px;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--navy);
	color: #fff;
}

.entry-content {
	padding: clamp(30px, 6vw, 70px);
	margin-top: 54px;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.5em;
}

.entry-content a {
	color: var(--violet-dark);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--line);
	text-align: left;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
}

.single-post-image {
	margin: 0 0 34px;
}

.post-navigation {
	margin-top: 28px;
	margin-bottom: 70px;
}

.post-navigation .nav-links {
	justify-content: space-between;
	align-items: stretch;
}

.post-navigation a {
	display: block;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
	text-decoration: none;
}

.forum-shell {
	max-width: 1180px;
}

.not-found-main {
	display: grid;
	place-items: center;
	min-height: 70vh;
	padding: 80px 0;
}

.not-found-card {
	max-width: 760px;
	padding: clamp(40px, 8vw, 90px);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.not-found-card .eyebrow {
	justify-content: center;
}

.not-found-card h1 {
	font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.not-found-card > p:not(.eyebrow, .error-code) {
	color: var(--muted);
}

.error-code {
	margin-bottom: 0;
	color: var(--coral-soft);
	font-size: clamp(6rem, 18vw, 11rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.9;
}

.site-footer {
	padding: 76px 0 24px;
	background: #111c34;
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 80px;
	padding-bottom: 60px;
}

.brand-footer {
	color: #fff;
}

.brand-footer .brand-copy small {
	color: rgba(255, 255, 255, 0.55);
}

.footer-brand > p {
	max-width: 500px;
	margin: 24px 0 0;
}

.footer-navigation h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-navigation ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-navigation a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.82rem;
	text-decoration: none;
}

.footer-navigation a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-bottom {
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.72rem;
}

/* bbPress inherits the theme without affecting sites where the plugin is absent. */
#bbpress-forums {
	color: var(--navy-soft);
	font-family: var(--font-sans);
	font-size: 0.94rem;
}

#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-replies,
#bbpress-forums fieldset.bbp-form {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
	padding: 14px 18px;
	background: var(--ivory-deep);
	border-color: var(--line);
}

#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic,
#bbpress-forums div.reply {
	padding: 16px 18px;
	border-color: var(--line);
}

#bbpress-forums a {
	color: var(--violet-dark);
}

#bbpress-forums input[type="text"],
#bbpress-forums input[type="email"],
#bbpress-forums input[type="password"],
#bbpress-forums select,
#bbpress-forums textarea,
.bbp-login-form input[type="text"],
.bbp-login-form input[type="password"] {
	width: 100%;
	max-width: 100%;
	padding: 11px 13px;
	background: #fff;
	color: var(--navy);
	border: 1px solid rgba(23, 35, 63, 0.24);
	border-radius: 10px;
}

#bbpress-forums input:focus,
#bbpress-forums select:focus,
#bbpress-forums textarea:focus,
.bbp-login-form input:focus {
	outline: 3px solid var(--sky);
	outline-offset: 2px;
	border-color: var(--violet);
}

#bbpress-forums button,
#bbpress-forums input[type="submit"],
.bbp-login-form button,
.bbp-login-form input[type="submit"] {
	min-height: 44px;
	padding: 10px 17px;
	background: var(--navy);
	color: #fff;
	border: 1px solid var(--navy);
	border-radius: 11px;
	font-weight: 750;
	cursor: pointer;
}

#bbpress-forums .bbp-pagination-links a,
#bbpress-forums .bbp-pagination-links span.current {
	padding: 6px 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.reveal {
	animation: babyasistan-rise 650ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal-delay {
	animation-delay: 100ms;
}

.reveal-delay-2 {
	animation-delay: 180ms;
}

@keyframes babyasistan-rise {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
		gap: 44px;
	}

	.hero-visual {
		min-height: 530px;
	}

	.phone-visual {
		min-height: 590px;
	}

	.header-action {
		display: none;
	}

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

@media (max-width: 960px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.header-inner {
		flex-wrap: wrap;
		min-height: 74px;
		padding: 10px 0;
	}

	.js .menu-toggle {
		display: inline-flex;
	}

	.site-navigation {
		order: 3;
		flex: 1 0 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
		padding: 14px 0 9px;
	}

	.js .site-navigation {
		display: none;
	}

	.js .site-navigation.is-open {
		display: flex;
	}

	.primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-menu a,
	.family-link {
		display: flex;
		padding: 11px 4px;
		border-bottom: 1px solid var(--line);
	}

	.primary-menu .sub-menu {
		position: static;
		padding: 0 0 0 14px;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.header-action {
		display: inline-flex;
		align-self: flex-start;
		margin-top: 7px;
	}

	.hero {
		min-height: auto;
	}

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

	.hero-copy {
		max-width: 780px;
	}

	.hero-visual,
	.phone-visual {
		width: min(100%, 650px);
		min-height: 610px;
		margin-inline: auto;
	}

	.product-grid,
	.community-card,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.community-card {
		gap: 25px;
	}

	.community-bubbles {
		min-height: 300px;
	}

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

	.feature-grid-five .feature-card:last-child {
		grid-column: auto;
	}

	.split-section,
	.data-card {
		grid-template-columns: 1fr;
	}

	.split-copy {
		position: static;
	}

	.data-orbit {
		width: 280px;
	}

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

	.screen-card-primary {
		grid-column: 1 / -1;
	}

	.screen-card-primary .screen-media {
		background-size: contain;
	}

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

@media (max-width: 700px) {
	body {
		font-size: 16px;
	}

	.shell {
		width: min(calc(100% - 28px), var(--shell));
	}

	.section {
		padding: 74px 0;
	}

	.brand-symbol,
	.brand-custom-logo {
		width: 43px;
		height: 43px;
		border-radius: 14px;
	}

	.brand-copy small {
		display: none;
	}

	.menu-toggle-label {
		display: none;
	}

	.hero {
		padding: 56px 0 76px;
	}

	.hero h1 {
		font-size: clamp(2.8rem, 14vw, 4.2rem);
	}

	.hero-lead {
		font-size: 1rem;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .button,
	.hero-actions .text-link {
		justify-content: center;
		width: 100%;
	}

	.trust-list {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.hero-visual,
	.phone-visual {
		min-height: 480px;
		border-radius: 36px;
	}

	.phone-visual {
		border-width: 8px;
	}

	.floating-product {
		min-width: 174px;
		padding: 10px;
	}

	.floating-huppo {
		bottom: 22px;
		left: 10px;
	}

	.floating-napillo {
		top: 22px;
		right: 10px;
	}

	.visual-note.note-one {
		top: 18px;
		left: 12px;
	}

	.visual-note.note-two {
		right: 12px;
		bottom: 20px;
	}

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

	.quick-stats > div {
		min-width: 0;
		padding: 10px;
	}

	.section-heading {
		display: block;
		margin-bottom: 40px;
	}

	.section-heading > p {
		margin-top: 18px;
	}

	.product-grid,
	.value-grid,
	.feature-grid,
	.screen-gallery,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.product-card {
		grid-template-rows: auto 330px;
	}

	.product-media {
		min-height: 330px;
	}

	.value-card,
	.feature-card {
		min-height: auto;
	}

	.value-number,
	.feature-symbol {
		margin-bottom: 30px;
	}

	.community-card {
		padding: 36px 24px;
		border-radius: 34px;
	}

	.community-bubbles {
		min-height: 330px;
	}

	.bubble-one { left: 0; }
	.bubble-two { right: 0; }
	.bubble-three { left: 8%; }

	.manifesto-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.guide-card,
	.final-cta {
		grid-template-columns: 1fr;
	}

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

	.screen-card-primary {
		grid-column: auto;
	}

	.screen-media {
		height: 420px;
	}

	.final-cta .button {
		width: 100%;
	}

	.footer-grid {
		gap: 45px;
	}

	.footer-navigation ul {
		grid-template-columns: 1fr;
	}

	.entry-content {
		padding: 25px 20px;
	}

	#bbpress-forums li.bbp-header,
	#bbpress-forums li.bbp-footer,
	#bbpress-forums li.bbp-body ul.forum,
	#bbpress-forums li.bbp-body ul.topic {
		padding: 12px 10px;
	}
}

@media (max-width: 420px) {
	.quick-stats {
		grid-template-columns: 1fr;
	}

	.quick-stats > div {
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 8px;
	}

	.quick-stats span {
		margin: 0;
	}

	.hero-visual,
	.phone-visual {
		min-height: 420px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.hero-actions,
	.final-cta-section {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.section,
	.page-hero {
		padding: 24px 0;
	}
}

/* Applications catalogue page. */
.applications-page {
	position: relative;
	overflow: hidden;
	background: var(--ivory);
}

.applications-hero {
	position: relative;
	padding: clamp(74px, 9vw, 132px) 0 clamp(88px, 11vw, 154px);
	overflow: hidden;
	background:
		radial-gradient(circle at 9% 18%, rgba(239, 120, 100, 0.15), transparent 28%),
		radial-gradient(circle at 92% 76%, rgba(123, 111, 214, 0.17), transparent 30%),
		linear-gradient(160deg, #fffaf2 0%, #fffdf9 48%, #f5f2ff 100%);
}

.applications-hero::before,
.applications-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.applications-hero::before {
	top: -160px;
	right: 14%;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(123, 111, 214, 0.13);
	box-shadow: 0 0 0 56px rgba(123, 111, 214, 0.035), 0 0 0 112px rgba(114, 199, 237, 0.025);
}

.applications-hero::after {
	bottom: -220px;
	left: 4%;
	width: 390px;
	height: 390px;
	background: rgba(141, 180, 156, 0.08);
}

.applications-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
	align-items: center;
	gap: clamp(48px, 8vw, 108px);
}

.applications-hero-copy {
	max-width: 690px;
}

.applications-hero-copy h1 {
	font-size: clamp(3.35rem, 6.1vw, 5.8rem);
}

.applications-hero-copy .hero-lead {
	max-width: 620px;
}

.applications-jump-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}

.applications-jump-link {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--navy);
	border: 1px solid rgba(23, 35, 63, 0.09);
	border-radius: 17px;
	box-shadow: 0 12px 30px rgba(23, 35, 63, 0.07);
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.applications-jump-link:hover {
	border-color: rgba(23, 35, 63, 0.18);
	box-shadow: 0 16px 34px rgba(23, 35, 63, 0.11);
	transform: translateY(-2px);
}

.jump-huppo:hover {
	border-color: rgba(239, 120, 100, 0.4);
}

.jump-napillo:hover {
	border-color: rgba(123, 111, 214, 0.36);
}

.applications-jump-link > span:nth-child(2) {
	display: grid;
	min-width: 0;
	line-height: 1.15;
}

.applications-jump-link strong {
	font-size: 0.88rem;
}

.applications-jump-link small {
	margin-top: 5px;
	overflow: hidden;
	color: var(--muted);
	font-size: 0.65rem;
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.applications-jump-link > span:last-child {
	color: var(--muted);
	font-weight: 800;
}

.applications-hero-art {
	position: relative;
	min-height: 520px;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95), transparent 18%),
		linear-gradient(145deg, rgba(255, 224, 214, 0.78), rgba(220, 244, 255, 0.72) 52%, rgba(230, 225, 255, 0.82));
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 52px;
	box-shadow: var(--shadow-lg);
	isolation: isolate;
}

.applications-family-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 118px;
	height: 118px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 38px;
	box-shadow: 0 24px 60px rgba(23, 35, 63, 0.17);
	transform: translate(-50%, -50%) rotate(-3deg);
}

.applications-family-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.applications-hero-product {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 220px;
	padding: 15px 17px;
	background: rgba(255, 255, 255, 0.91);
	border: 1px solid rgba(255, 255, 255, 0.96);
	border-radius: 21px;
	box-shadow: 0 20px 48px rgba(23, 35, 63, 0.16);
	backdrop-filter: blur(16px);
}

.applications-hero-product > span:last-child {
	display: grid;
	line-height: 1.2;
}

.applications-hero-product strong {
	font-size: 1rem;
}

.applications-hero-product small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.66rem;
}

.hero-product-huppo {
	top: 72px;
	left: 28px;
	transform: rotate(-3deg);
}

.hero-product-napillo {
	right: 25px;
	bottom: 68px;
	transform: rotate(3deg);
}

.applications-orbit {
	position: absolute;
	z-index: -1;
	border: 1px solid rgba(23, 35, 63, 0.11);
	border-radius: 50%;
}

.orbit-one {
	inset: 55px;
	transform: rotate(18deg);
}

.orbit-two {
	inset: 113px 32px;
	border-color: rgba(123, 111, 214, 0.16);
	transform: rotate(-28deg);
}

.applications-catalog {
	padding: clamp(86px, 11vw, 152px) 0;
	background: #fff;
}

.applications-section-heading {
	max-width: 850px;
	margin: 0 auto clamp(48px, 7vw, 80px);
	text-align: center;
}

.applications-section-heading .eyebrow {
	justify-content: center;
}

.applications-section-heading h2 {
	margin-bottom: 20px;
}

.applications-section-heading > p:last-child {
	max-width: 700px;
	margin-inline: auto;
	color: var(--muted);
}

.application-showcase {
	scroll-margin-top: 110px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 42px;
	box-shadow: 0 25px 74px rgba(23, 35, 63, 0.1);
}

.application-showcase + .application-showcase {
	margin-top: clamp(34px, 6vw, 68px);
}

.application-showcase-huppo {
	background:
		radial-gradient(circle at 4% 8%, rgba(255, 255, 255, 0.92), transparent 30%),
		linear-gradient(145deg, #fffaf5, #fff0e8);
}

.application-showcase-napillo {
	background:
		radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.88), transparent 30%),
		linear-gradient(145deg, #f2fbff, #f0edff);
}

.application-showcase-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
	align-items: stretch;
	min-height: 700px;
}

.application-showcase-copy {
	align-self: center;
	padding: clamp(38px, 5.5vw, 68px);
}

.application-identity {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 15px;
	margin-bottom: 28px;
}

.application-identity h2 {
	margin: 0;
	font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.application-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 790;
	line-height: 1.2;
	white-space: nowrap;
}

.application-status i {
	width: 7px;
	height: 7px;
	background: currentColor;
	border-radius: 50%;
	box-shadow: 0 0 0 4px currentColor;
	opacity: 0.68;
}

.application-status.is-available {
	background: #e4f3e8;
	color: #27633f;
	border-color: rgba(39, 99, 63, 0.16);
}

.application-status.is-upcoming {
	background: rgba(255, 255, 255, 0.72);
	color: #596176;
	border-color: rgba(23, 35, 63, 0.12);
}

.application-summary {
	margin-bottom: 30px;
	color: var(--navy-soft);
	font-size: clamp(1rem, 1.3vw, 1.14rem);
	line-height: 1.7;
}

.application-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 11px;
	padding: 0;
	margin: 0 0 32px;
	list-style: none;
}

.application-feature-list li {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 11px;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(23, 35, 63, 0.08);
	border-radius: 14px;
}

.application-feature-list li > span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	background: var(--coral-soft);
	color: var(--coral-dark);
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 840;
}

.application-showcase-napillo .application-feature-list li > span {
	background: linear-gradient(145deg, var(--sky-soft), var(--violet-soft));
	color: var(--violet-dark);
}

.application-feature-list li > div {
	display: grid;
	min-width: 0;
	line-height: 1.18;
}

.application-feature-list strong {
	font-size: 0.76rem;
}

.application-feature-list small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 0.64rem;
	line-height: 1.3;
}

.applications-actions {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 11px;
}

.applications-actions .button {
	min-height: 48px;
	font-size: 0.78rem;
}

.applications-actions .button.button-secondary {
	background: rgba(255, 255, 255, 0.58);
	color: var(--navy);
	border-color: rgba(23, 35, 63, 0.16);
	box-shadow: none;
}

.applications-actions .button.button-secondary:hover {
	background: #fff;
	border-color: rgba(23, 35, 63, 0.28);
}

.application-disclaimer {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 0.68rem;
	line-height: 1.55;
}

.application-visual-panel {
	position: relative;
	min-height: 700px;
	overflow: hidden;
}

.application-huppo-art {
	margin: 24px 24px 24px 0;
	background-color: var(--coral-soft);
	background-image:
		linear-gradient(145deg, rgba(255, 247, 239, 0.04), rgba(239, 120, 100, 0.06)),
		url("../images/huppo-product-visual.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 10px solid rgba(255, 255, 255, 0.7);
	border-radius: 31px;
	box-shadow: inset 0 0 0 1px rgba(23, 35, 63, 0.06), 0 22px 52px rgba(239, 120, 100, 0.16);
}

.application-visual-badge {
	position: absolute;
	display: grid;
	min-width: 96px;
	padding: 10px 13px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--muted);
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 14px 34px rgba(23, 35, 63, 0.14);
	font-size: 0.64rem;
	line-height: 1.18;
	backdrop-filter: blur(12px);
}

.application-visual-badge strong {
	color: var(--navy);
	font-size: 1.12rem;
}

.application-visual-badge.badge-top {
	top: 35px;
	right: 28px;
}

.application-visual-badge.badge-bottom {
	bottom: 36px;
	left: 28px;
}

.application-showcase-napillo .application-visual-panel {
	order: -1;
}

.application-napillo-art {
	display: grid;
	place-items: center;
	min-width: 0;
	padding: 32px;
	margin: 24px 0 24px 24px;
	background:
		radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9), transparent 28%),
		linear-gradient(145deg, rgba(220, 244, 255, 0.82), rgba(230, 225, 255, 0.86));
	border: 1px solid rgba(123, 111, 214, 0.1);
	border-radius: 31px;
}

.napillo-neutral-composition {
	position: relative;
	width: min(100%, 440px);
	min-height: 602px;
	padding: 27px;
	overflow: hidden;
	background:
		radial-gradient(circle at 76% 20%, rgba(114, 199, 237, 0.18), transparent 25%),
		radial-gradient(circle at 18% 78%, rgba(247, 155, 173, 0.14), transparent 25%),
		rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 36px;
	box-shadow: 0 24px 58px rgba(23, 35, 63, 0.14);
	backdrop-filter: blur(15px);
}

.napillo-neutral-composition::before,
.napillo-neutral-composition::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
}

.napillo-neutral-composition::before {
	top: -82px;
	right: -64px;
	width: 205px;
	height: 205px;
	border: 1px solid rgba(123, 111, 214, 0.13);
	box-shadow: 0 0 0 29px rgba(123, 111, 214, 0.035);
}

.napillo-neutral-composition::after {
	bottom: -68px;
	left: -64px;
	width: 180px;
	height: 180px;
	background: rgba(114, 199, 237, 0.1);
}

.napillo-neutral-brand {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 13px;
}

.napillo-neutral-brand > span:last-child {
	display: grid;
	line-height: 1.15;
}

.napillo-neutral-brand strong {
	font-size: 1.05rem;
}

.napillo-neutral-brand small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 0.68rem;
}

.napillo-sleep-orbit {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 280px;
	aspect-ratio: 1;
	margin: 54px auto 34px;
	border: 1px solid rgba(123, 111, 214, 0.19);
	border-radius: 50%;
	box-shadow: 0 0 0 25px rgba(114, 199, 237, 0.055), inset 0 0 44px rgba(123, 111, 214, 0.08);
}

.napillo-sleep-orbit > span {
	display: grid;
	place-items: center;
	width: 104px;
	height: 104px;
	background: linear-gradient(145deg, var(--sky), var(--violet));
	color: #fff;
	border-radius: 34px;
	box-shadow: 0 20px 42px rgba(123, 111, 214, 0.3);
	font-size: 2.4rem;
}

.napillo-sleep-orbit i {
	position: absolute;
	width: 15px;
	height: 15px;
	background: var(--sky);
	border: 4px solid rgba(255, 255, 255, 0.86);
	border-radius: 50%;
	box-shadow: 0 6px 14px rgba(23, 35, 63, 0.13);
}

.napillo-sleep-orbit i:nth-child(2) {
	top: 12%;
	left: 24%;
}

.napillo-sleep-orbit i:nth-child(3) {
	right: 8%;
	bottom: 31%;
	background: var(--violet);
}

.napillo-sleep-orbit i:nth-child(4) {
	bottom: 8%;
	left: 31%;
	background: var(--rose);
}

.napillo-rhythm-line {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	align-items: end;
	gap: 7px;
	height: 62px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(23, 35, 63, 0.07);
	border-radius: 15px;
}

.napillo-rhythm-line i {
	display: block;
	height: 45%;
	background: linear-gradient(180deg, var(--sky), var(--violet));
	border-radius: 6px 6px 3px 3px;
}

.napillo-rhythm-line i:nth-child(2) { height: 78%; }
.napillo-rhythm-line i:nth-child(3) { height: 58%; }
.napillo-rhythm-line i:nth-child(4) { height: 92%; }
.napillo-rhythm-line i:nth-child(5) { height: 66%; }
.napillo-rhythm-line i:nth-child(6) { height: 84%; }
.napillo-rhythm-line i:nth-child(7) { height: 52%; }

.napillo-neutral-labels {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	gap: 7px;
	margin-top: 13px;
}

.napillo-neutral-labels span {
	padding: 7px 9px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--navy-soft);
	border: 1px solid rgba(23, 35, 63, 0.07);
	border-radius: 999px;
	font-size: 0.63rem;
	font-weight: 740;
}

.napillo-neutral-hero {
	display: grid;
	place-items: center;
	padding: 24px;
	background:
		radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.88), transparent 28%),
		linear-gradient(145deg, rgba(220, 244, 255, 0.9), rgba(230, 225, 255, 0.94));
}

.napillo-neutral-hero .napillo-neutral-composition {
	width: min(100%, 430px);
	min-height: 540px;
}

.napillo-neutral-hero .napillo-sleep-orbit {
	width: 250px;
	margin-block: 40px 30px;
}

.napillo-concept-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 34px;
	overflow: hidden;
	background:
		radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.95), transparent 27%),
		linear-gradient(155deg, var(--sky-soft), var(--violet-soft));
}

.napillo-concept-media::before {
	content: "";
	position: absolute;
	bottom: -92px;
	left: -80px;
	width: 230px;
	height: 230px;
	background: rgba(247, 155, 173, 0.13);
	border-radius: 50%;
}

.napillo-concept-media > span {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	background: linear-gradient(145deg, var(--sky), var(--violet));
	color: #fff;
	border: 8px solid rgba(255, 255, 255, 0.76);
	border-radius: 30px;
	box-shadow: 0 20px 42px rgba(123, 111, 214, 0.26);
	font-size: 2rem;
	font-weight: 820;
}

.napillo-concept-media > div {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(72%, 230px);
	gap: 9px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 17px;
	box-shadow: 0 14px 34px rgba(23, 35, 63, 0.09);
}

.napillo-concept-media i {
	display: block;
	background: linear-gradient(90deg, var(--sky), var(--violet));
	border-radius: 999px;
}

.concept-diary > div,
.concept-guide > div {
	flex-direction: column;
}

.concept-diary i,
.concept-guide i {
	width: 100%;
	height: 9px;
}

.concept-diary i:nth-child(2),
.concept-guide i:nth-child(2) {
	width: 74%;
}

.concept-diary i:nth-child(3),
.concept-guide i:nth-child(3) {
	width: 48%;
}

.concept-week > div {
	align-items: flex-end;
	height: 116px;
}

.concept-week i {
	flex: 1;
	height: 42%;
	background: linear-gradient(180deg, var(--sky), var(--violet));
	border-radius: 6px 6px 3px 3px;
}

.concept-week i:nth-child(2) { height: 78%; }
.concept-week i:nth-child(3) { height: 55%; }
.concept-week i:nth-child(4) { height: 92%; }
.concept-week i:nth-child(5) { height: 67%; }
.concept-week i:nth-child(6) { height: 82%; }
.concept-week i:nth-child(7) { height: 50%; }

.applications-closing {
	background: var(--ivory);
}

.applications-closing-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(35px, 7vw, 90px);
	padding: clamp(42px, 7vw, 78px);
	background:
		radial-gradient(circle at 88% 16%, rgba(114, 199, 237, 0.24), transparent 28%),
		linear-gradient(135deg, #182541, #293b64);
	color: #fff;
	border-radius: 44px;
	box-shadow: var(--shadow-lg);
}

.applications-closing-card h2,
.applications-closing-card .eyebrow {
	color: #fff;
}

.applications-closing-card h2 {
	max-width: 720px;
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.applications-closing-card p:not(.eyebrow) {
	max-width: 670px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
}

.applications-closing-actions {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 13px;
	min-width: 210px;
}

.applications-closing-actions .button {
	width: 100%;
}

.text-link-light {
	color: #fff;
}

@media (max-width: 1080px) {
	.applications-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
		gap: 45px;
	}

	.applications-hero-art {
		min-height: 470px;
	}

	.application-showcase-grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
	}

	.application-feature-list {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 900px) {
	.applications-hero-grid,
	.application-showcase-grid {
		grid-template-columns: 1fr;
	}

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

	.applications-hero-art {
		width: min(100%, 650px);
		min-height: 520px;
		margin-inline: auto;
	}

	.application-showcase-copy {
		padding-bottom: 38px;
	}

	.application-showcase-napillo .application-visual-panel {
		order: 0;
	}

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

	.application-visual-panel {
		min-height: 570px;
	}

	.application-huppo-art {
		margin: 0 24px 24px;
		background-position: center 45%;
	}

	.application-napillo-art {
		margin: 0 24px 24px;
	}

	.napillo-neutral-composition {
		min-height: 500px;
	}

	.napillo-neutral-hero .napillo-neutral-composition {
		min-height: 500px;
	}

	.applications-closing-card {
		grid-template-columns: 1fr;
	}

	.applications-closing-actions {
		align-items: flex-start;
		min-width: 0;
	}
}

@media (max-width: 650px) {
	.applications-hero {
		padding: 58px 0 82px;
	}

	.applications-hero-copy h1 {
		font-size: clamp(2.8rem, 13.5vw, 4.1rem);
	}

	.applications-jump-nav {
		grid-template-columns: 1fr;
	}

	.applications-hero-art {
		min-height: 390px;
		border-radius: 34px;
	}

	.applications-family-mark {
		width: 92px;
		height: 92px;
		border-radius: 29px;
	}

	.applications-hero-product {
		min-width: 180px;
		padding: 11px 12px;
	}

	.hero-product-huppo {
		top: 35px;
		left: 14px;
	}

	.hero-product-napillo {
		right: 14px;
		bottom: 36px;
	}

	.application-showcase {
		border-radius: 30px;
	}

	.application-showcase-copy {
		padding: 31px 21px;
	}

	.application-identity {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.application-status {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.application-feature-list {
		grid-template-columns: 1fr;
	}

	.applications-actions {
		flex-direction: column;
	}

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

	.application-visual-panel {
		min-height: 440px;
	}

	.application-huppo-art {
		margin: 0 13px 13px;
		border-width: 7px;
		border-radius: 22px;
	}

	.application-napillo-art {
		padding: 14px 10px;
		margin: 0 13px 13px;
		border-radius: 22px;
	}

	.napillo-neutral-composition {
		min-height: 410px;
		padding: 18px;
		border-radius: 24px;
	}

	.napillo-neutral-hero .napillo-neutral-composition {
		min-height: 410px;
	}

	.napillo-neutral-brand .app-icon-large {
		width: 52px;
		height: 52px;
	}

	.napillo-sleep-orbit {
		width: 205px;
		margin: 38px auto 25px;
		box-shadow: 0 0 0 17px rgba(114, 199, 237, 0.055), inset 0 0 34px rgba(123, 111, 214, 0.08);
	}

	.napillo-neutral-hero .napillo-sleep-orbit {
		width: 205px;
		margin: 38px auto 25px;
	}

	.napillo-sleep-orbit > span {
		width: 80px;
		height: 80px;
		border-radius: 27px;
		font-size: 1.9rem;
	}

	.napillo-rhythm-line {
		height: 50px;
		padding: 8px;
	}

	.napillo-neutral-labels span {
		padding: 6px 7px;
		font-size: 0.57rem;
	}

	.application-visual-badge.badge-top {
		top: 18px;
		right: 14px;
	}

	.application-visual-badge.badge-bottom {
		bottom: 18px;
		left: 14px;
	}

	.applications-closing-card {
		padding: 37px 24px;
		border-radius: 31px;
	}

	.applications-closing-actions,
	.applications-closing-actions .button {
		width: 100%;
	}

	.applications-closing-actions .text-link {
		align-self: center;
	}
}

@media print {
	.applications-hero-art,
	.application-visual-panel,
	.applications-jump-nav,
	.applications-actions,
	.applications-closing-actions {
		display: none !important;
	}

	.application-showcase-grid,
	.applications-closing-card {
		display: block;
	}

	.application-showcase {
		break-inside: avoid;
		box-shadow: none;
	}
}
