:root {
	--home-bg: #f4efe7;
	--home-surface: #fbf8f1;
	--home-card: rgba(255, 255, 255, 0.84);
	--home-card-strong: #fffdfa;
	--home-text: #1d1915;
	--home-text-soft: #6c6257;
	--home-line: rgba(96, 75, 58, 0.16);
	--home-line-strong: rgba(96, 75, 58, 0.24);
	--home-accent: #765842;
	--home-accent-deep: #5d4330;
	--home-accent-soft: #d5bea5;
	--home-success: #4f7660;
	--home-danger: #935149;
	--home-shadow: 0 18px 44px rgba(39, 28, 20, 0.08);
	--home-shadow-soft: 0 8px 18px rgba(39, 28, 20, 0.06);
	--home-radius-lg: 28px;
	--home-radius-md: 20px;
	--home-radius-sm: 14px;
	--home-container: 1180px;
	--home-heading-standard: 16ch;
	--home-heading-split: 14ch;
	--home-heading-cta: 13ch;
	--home-heading-mobile: 16ch;
	--home-heading-spotlight-mobile: 10ch;
	--home-font-ui: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--home-font-display: Georgia, "Times New Roman", serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background: var(--home-bg);
}

body {
	font-family: var(--home-font-ui);
	font-size: 16px;
	line-height: 1.6;
	color: var(--home-text);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 32%),
		linear-gradient(180deg, #f8f3eb 0%, var(--home-bg) 100%);
}

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

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

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

.site-shell {
	min-height: 100vh;
	overflow: clip;
}

.home-container {
	width: min(calc(100% - 32px), var(--home-container));
	margin: 0 auto;
}

.section-space {
	padding: 80px 0;
}

.section-kicker {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--home-accent);
}

.section-heading {
	max-width: 720px;
	margin-bottom: 32px;
}

.section-heading h2,
.hero-copy h1,
.hero-stage h2,
.material-card-feature h2,
.promise-block h2,
.legacy-card h2,
.cta-panel h2 {
	font-family: var(--home-font-display);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.06;
	color: var(--home-text);
	text-wrap: balance;
}

.section-heading h2 {
	font-size: clamp(36px, 5vw, 58px);
	max-width: var(--home-heading-standard);
}

.hero-copy h1,
.material-card-feature h2,
.promise-block h2,
.legacy-card h2,
.cta-panel h2 {
	font-variant-ligatures: common-ligatures;
}

.home-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(16px);
	background: rgba(248, 243, 235, 0.78);
	border-bottom: 1px solid rgba(96, 75, 58, 0.08);
}

.home-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}

.home-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.home-brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #7b5d46 0%, #594131 100%);
	color: #fffaf5;
	font-family: var(--home-font-display);
	font-size: 24px;
	box-shadow: var(--home-shadow-soft);
	flex-shrink: 0;
}

.home-brand-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.home-brand-name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--home-text);
}

.home-brand-tag {
	font-size: 12px;
	color: var(--home-text-soft);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-menu-toggle {
	display: none;
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	background: rgba(118, 88, 66, 0.1);
	color: var(--home-accent);
	font-weight: 700;
	cursor: pointer;
}

.home-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	font-size: 14px;
	color: var(--home-text-soft);
}

.home-nav-link {
	position: relative;
	padding: 8px 0;
	transition: color 0.2s ease;
}

.home-nav a:hover {
	color: var(--home-text);
}

@media (min-width: 761px) {
	.home-nav-link.is-active {
		padding: 10px 14px;
		border-radius: 999px;
		background: rgba(118, 88, 66, 0.1);
		color: var(--home-text);
		box-shadow: inset 0 0 0 1px rgba(118, 88, 66, 0.12);
	}

	.home-nav-link.is-active::after {
		content: "";
		position: absolute;
		left: 14px;
		right: 14px;
		bottom: 7px;
		height: 1px;
		background: rgba(118, 88, 66, 0.38);
	}
}

.home-nav-cta {
	padding: 11px 18px;
	border-radius: 999px;
	background: var(--home-accent);
	color: #fffaf5 !important;
	box-shadow: var(--home-shadow-soft);
}

.hero-section {
	padding: 28px 0 68px;
}

.comfort-section {
	padding-bottom: 18px;
}

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

.comfort-pill {
	min-height: 58px;
	padding: 0 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--home-accent);
	background: rgba(255, 255, 255, 0.66);
	border: 1px solid var(--home-line);
	box-shadow: var(--home-shadow-soft);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: 34px;
	align-items: center;
}

.hero-copy h1 {
	font-size: clamp(46px, 6.2vw, 78px);
	max-width: 8.2em;
	margin-bottom: 16px;
	line-height: 0.98;
}

.hero-lead {
	max-width: 520px;
	font-size: 18px;
	line-height: 1.75;
	color: var(--home-text-soft);
	margin-bottom: 24px;
}

.action-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.action-row--compact {
	margin-bottom: 0;
}

.action-row--center {
	justify-content: center;
	margin-bottom: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	border: 1px solid transparent;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--home-accent);
	color: #fffaf5;
	box-shadow: var(--home-shadow-soft);
}

.btn-primary:hover {
	background: var(--home-accent-deep);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.55);
	border-color: rgba(118, 88, 66, 0.18);
	color: var(--home-text);
}

.hero-points {
	display: grid;
	gap: 12px;
	max-width: 500px;
	list-style: none;
}

.hero-points li {
	position: relative;
	padding-left: 24px;
	color: var(--home-text-soft);
}

.hero-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(145deg, #8a6a52 0%, #d1b89d 100%);
	box-shadow: 0 0 0 6px rgba(138, 106, 82, 0.12);
}

.hero-stage {
	position: relative;
	padding: 28px;
	border-radius: 34px;
	background:url('../img/84c.png');
	box-shadow: var(--home-shadow);
	overflow: hidden;
}
.hero-stage p{}


.hero-stage-copy {
	position: relative;
	z-index: 1;
	max-width: 330px;
	margin-bottom: 8px;
}

.hero-stage-label,
.product-label {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background:  var(--home-accent);
	color:  #fffaf5 !important;
	margin-bottom: 14px;
}

.hero-stage h2 {
	font-size: clamp(32px, 4.2vw, 54px);
	margin-bottom: 12px;
	max-width: 9ch;
}

.product-body p,
.material-card p,
.material-card span,
.promise-points span,
.step-card p,
	.digital-copy p,
	.digital-line span,
	.legacy-card p,
	.audience-card p,
	.faq-item p,
	.cta-panel p,
	.home-footer p,
	.value-card p {
	color: var(--home-text-soft);
}

.hero-stage-image {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	margin-left: auto;
	filter: drop-shadow(0 28px 30px rgba(43, 31, 23, 0.16));
}

.value-grid,
.product-grid,
.step-grid,
.audience-grid {
	display: grid;
	gap: 18px;
}

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

.value-card,
.product-card,
.material-card,
.step-card,
.audience-card,
	.faq-item,
	.legacy-card,
	.cta-panel {
	border: 1px solid var(--home-line);
	background: var(--home-card);
	backdrop-filter: blur(10px);
	box-shadow: var(--home-shadow-soft);
}

.value-card {
	padding: 24px;
	border-radius: var(--home-radius-md);
	min-height: 200px;
}

.value-card h3,
.product-body h3,
.step-card h3,
.audience-card h3,
.material-card strong,
	.promise-points strong,
	.digital-line strong {
	font-size: 20px;
	line-height: 1.3;
	color: var(--home-text);
}

.value-card h3,
.step-card h3,
.audience-card h3 {
	margin-bottom: 12px;
}

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

.product-strip {
	margin-bottom: 24px;
	padding: 18px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--home-line);
	box-shadow: var(--home-shadow-soft);
	display: grid;
	gap: 10px;
}

.product-strip img {
	width: 100%;
	border-radius: 22px;
	background: #f7f0e7;
	border: 1px solid rgba(96, 75, 58, 0.1);
}

.product-card {
	display: flex;
	flex-direction: column;
	border-radius: 30px;
	overflow: hidden;
	min-height: 100%;
}

.product-media {
	padding: 22px 22px 0;
}

.product-media img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.product-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px;
	flex: 1;
}

.product-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.product-head h3 {
	margin: 0;
	flex: 1;
}

.product-price {
	white-space: nowrap;
	font-family: var(--home-font-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--home-accent);
}

.product-notes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.product-notes span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(118, 88, 66, 0.08);
	color: var(--home-text-soft);
	font-size: 12px;
	line-height: 1.4;
}

.material-layout,
.digital-grid,
.promise-grid,
.faq-layout {
	display: grid;
	gap: 20px;
}

.scene-visual img,
.material-visual-stack img {
	width: 100%;
	border-radius: 20px;
	background: #f7f0e7;
	border: 1px solid rgba(96, 75, 58, 0.1);
}

.visual-note {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 12px;
	background: rgba(118, 88, 66, 0.04);
	border: 1px dashed rgba(118, 88, 66, 0.11);
	font-size: 11px;
	line-height: 1.45;
	letter-spacing: 0.01em;
	color: rgba(108, 98, 87, 0.8);
}

.asset-note {
	display: grid;
	gap: 8px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 243, 214, 0.94);
	border: 1px dashed rgba(183, 121, 43, 0.62);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
	font-size: 12px;
	line-height: 1.65;
	letter-spacing: 0.01em;
	color: #765126;
}

.asset-note::before {
	content: "临时图需标注";
	display: inline-flex;
	align-items: center;
	justify-self: start;
	min-height: 24px;
	padding: 0 9px;
	border-radius: 999px;
	background: rgba(183, 121, 43, 0.14);
	color: #8f5e1f;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.material-stack,
.promise-points,
.faq-list {
	display: grid;
	gap: 16px;
}

.scene-box-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}


.scene-box {
	display: grid;
	gap: 14px;
}

.scene-box-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 22px;
	border: 1px solid rgba(96, 75, 58, 0.1);
	background: #f7f0e7;
	box-shadow: var(--home-shadow-soft);
}


.scene-box h3 {
	font-size: 22px;
	line-height: 1.25;
	color: var(--home-text);
}


.scene-box p {
	color: var(--home-text-soft);
	max-width: 34ch;
}

.material-card,
.promise-points div,
.digital-line,
.audience-card {
	padding: 20px;
	border-radius: var(--home-radius-md);
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid var(--home-line);
	box-shadow: var(--home-shadow-soft);
}
.material-layout {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	align-items: stretch;
}

.material-visual-stack {
	margin-top: 24px;
	display: grid;
	gap: 12px;
}

.material-card-feature,
.legacy-card,
.cta-panel {
	padding: 36px;
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(255, 253, 250, 0.92) 0%, rgba(248, 242, 234, 0.94) 100%);
}

.material-card-feature h2,
.promise-block h2,
.legacy-card h2,
.cta-panel h2 {
	font-size: clamp(34px, 5vw, 56px);
	margin-bottom: 18px;
}

.promise-block {
	max-width: 620px;
}

.promise-block h2,
.digital-copy h2 {
	max-width: var(--home-heading-split);
}

.promise-block p {
	max-width: 38ch;
}

.cta-panel h2 {
	max-width: var(--home-heading-cta);
	margin-left: auto;
	margin-right: auto;
}

.section-heading h2,
.material-card-feature h2,
.promise-block h2,
.legacy-card h2,
.cta-panel h2 {
	text-transform: none;
	word-spacing: -0.03em;
}

.promise-grid,
.digital-grid,
.faq-layout {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.faq-layout {
	gap: 28px;
}

.faq-layout .section-heading {
	max-width: 620px;
	margin-bottom: 0;
}

.faq-visual {
	margin-top: 22px;
	overflow: hidden;
}

.faq-visual img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
}

.digital-grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
	grid-template-areas:
		"copy stage"
		"panel panel"
		"actions actions";
	column-gap: 32px;
	row-gap: 24px;
}

.digital-copy {
	grid-area: copy;
	max-width: 580px;
	margin-bottom: 0;
	align-self: center;
}

.digital-copy h2 {
	max-width: var(--home-heading-split);
}

.digital-copy p {
	max-width: 44ch;
}

.digital-note {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	margin-top: 4px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--home-line);
	box-shadow: var(--home-shadow-soft);
	color: var(--home-text-soft);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.digital-note::before {
	content: "Access & privacy";
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(118, 88, 66, 0.1);
	color: var(--home-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-right: 10px;
}

.digital-stage {
	grid-area: stage;
	display: grid;
	gap: 14px;
	align-self: center;
}

.digital-stage img {
	width: 100%;
	object-fit: cover;
	object-position: bottom center;
}

.promise-points div,
.digital-line {
	display: grid;
	gap: 6px;
}

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

.step-card {
	padding: 24px;
	border-radius: 28px;
}

.step-number {
	font-family: var(--home-font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--home-accent);
	margin-bottom: 16px;
}

.digital-panel {
	grid-area: panel;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 0;
	border-radius: 0;
	border: 0;
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
	align-self: start;
}

.digital-grid > .action-row {
	grid-area: actions;
	justify-content: flex-start;
	margin-top: 2px;
	margin-bottom: 0;
}

.digital-line {
	gap: 10px;
	min-height: 126px;
	padding: 20px 18px 18px;
	background: rgba(255, 255, 255, 0.72);
	border-color: var(--home-line);
}

.digital-line strong {
	font-size: 18px;
	line-height: 1.2;
	color: var(--home-text);
	font-weight: 700;
}

.digital-line span {
	max-width: 22ch;
	font-size: 14px;
	line-height: 1.6;
	color: var(--home-text-soft);
}

.legacy-card,
.cta-panel {
	text-align: center;
}

.legacy-card p,
.cta-panel p {
	max-width: 640px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.75;
}

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

.audience-card {
	min-height: 220px;
}

.faq-item {
	border-radius: 24px;
	overflow: hidden;
}

.faq-item summary {
	position: relative;
	list-style: none;
	padding: 22px 60px 22px 24px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	color: var(--home-text);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 400;
	color: var(--home-accent);
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
	padding: 0 24px 22px;
	font-size: 15px;
	line-height: 1.8;
}

.home-footer {
	padding: 30px 0 42px;
	border-top: 1px solid rgba(96, 75, 58, 0.1);
}

.home-footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: flex-end;
}

.home-footer-brand {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--home-accent);
	margin-bottom: 8px;
}

.home-footer p {
	max-width: 560px;
	font-size: 14px;
}

.home-footer-links {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 14px;
	color: var(--home-text-soft);
	flex-wrap: wrap;
	justify-content: flex-end;
}

.reveal-up {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.section-space {
		padding: 68px 0;
	}

	.hero-grid,
	.material-layout,
	.promise-grid,
	.digital-grid,
	.faq-layout {
		grid-template-columns: 1fr;
	}

	.value-grid,
	.comfort-grid,
	.product-grid,
	.scene-box-grid,
	.step-grid,
	.audience-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-stage {
		max-width: 760px;
		margin: 0 auto;
	}

	.digital-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"copy"
			"stage"
			"panel"
			"actions";
	}

	.digital-copy {
		max-width: 640px;
	}

	.promise-block {
		max-width: 640px;
	}

	.digital-copy h2,
	.promise-block h2 {
		max-width: var(--home-heading-standard);
	}

	.digital-stage {
		max-width: 760px;
	}

	.digital-panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.hero-stage-copy {
		max-width: none;
	}
}

@media (max-width: 760px) {
	body {
		font-size: 15px;
	}

	.home-container {
		width: min(calc(100% - 24px), var(--home-container));
	}

	.section-space {
		padding: 52px 0;
	}

	.hero-section {
		padding: 20px 0 48px;
	}

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

	.home-nav {
		position: absolute;
		top: 100%;
		left: 12px;
		right: 12px;
		padding: 16px;
		background: rgba(255, 251, 246, 0.96);
		border: 1px solid var(--home-line);
		border-radius: 22px;
		box-shadow: var(--home-shadow);
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		display: none;
	}

	body.nav-open .home-nav {
		display: flex;
	}

	.home-nav-cta {
		text-align: center;
	}

	.home-nav-link {
		padding: 0;
	}

	.home-brand-tag {
		display: none;
	}

	.hero-copy h1 {
		font-size: 44px;
		max-width: none;
		line-height: 1.02;
	}

	.hero-stage h2 {
		font-size: 34px;
	}

	.section-heading h2,
	.material-card-feature h2,
	.promise-block h2,
	.legacy-card h2,
	.cta-panel h2,
	.digital-copy h2 {
		max-width: min(100%, var(--home-heading-mobile));
	}

	.hero-stage h2 {
		max-width: min(100%, var(--home-heading-spotlight-mobile));
	}

	.hero-lead {
		font-size: 16px;
		line-height: 1.65;
	}

	.visual-note {
		font-size: 10px;
		line-height: 1.4;
	}

	.asset-note {
		font-size: 11px;
		padding: 10px 12px;
	}

	.action-row,
	.home-footer-inner,
	.home-footer-links {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
	}

	.value-grid,
	.comfort-grid,
	.product-grid,
	.scene-box-grid,
	.step-grid,
	.audience-grid {
		grid-template-columns: 1fr;
	}

	.faq-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.product-head {
		align-items: baseline;
	}

	.scene-box-image {
		height: 220px;
	}

	.faq-visual {
		display: none;
	}

	.digital-note {
		display: grid;
		justify-items: start;
		gap: 8px;
		min-height: 0;
		padding: 12px 14px;
		border-radius: 18px;
	}

	.digital-stage {
		padding: 14px;
		border-radius: 26px;
	}

	.digital-stage img {
		border-radius: 18px;
	}

	.digital-panel {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.digital-line {
		min-height: 0;
		padding: 18px;
	}

	.digital-line strong {
		font-size: 20px;
	}

	.digital-line span {
		max-width: none;
	}

	.digital-grid > .action-row {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-stage,
	.material-card-feature,
	.legacy-card,
	.cta-panel,
	.step-card,
	.product-card,
	.digital-panel,
	.faq-item,
	.value-card {
		border-radius: 24px;
	}

	.hero-stage,
	.material-card-feature,
	.legacy-card,
	.cta-panel {
		padding: 24px 22px;
	}

	.hero-stage-image {
		width: 100%;
	}

	.section-heading,
	.hero-copy,
	.digital-copy,
	.promise-block {
		max-width: none;
	}

	.faq-item summary {
		padding-right: 52px;
	}

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

	.reveal-up {
		opacity: 1;
		transform: none;
	}
}
