/* ═══════════════════════════════════════════════════════
   Grosmimi Homepage — SuperHi-inspired layout
   Design tokens from base.css :root
   ═══════════════════════════════════════════════════════ */


/* ── 0. Home wrapper ────────────────────────────────── */

.gm-sh-home {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* ══════════════════════════════════════════════════════════════
   HERO — CoLabs-style: large image left + 2 stacked cards right
   ══════════════════════════════════════════════════════════════ */

.gm-hero {
	width: 100%;
	overflow: hidden;
}

.gm-hero__inner {
	height: 60vh;
	display: flex;
	justify-content: space-between;
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
}

/* ── Left: main image area ── */
.gm-hero__main {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
	background: var(--gm-color-steel-faint);
	margin: 0 10px 0 0;
}

.gm-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 30px 30px 30px 0;
	opacity: 0;
	transition: opacity 1s ease;
}

.gm-hero__image.is-active {
	opacity: 1;
}

/* ── Title overlay — absolute bottom-left ── */
.gm-hero__title-wrap {
	max-width: 50%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--gm-color-bg);
	padding: 20px 20px 0 0;
	border-radius: 0 30px 0 0;
}

.gm-hero__title {
	font-family: var(--gm-font-title);
	font-size: clamp(2.5rem, 4vw, 3.6rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--gm-color-ink);
	margin: 0;
}

/* SVG curved corners — exact CoLabs positioning */
.gm-hero__corner-curve {
	display: block;
	width: 30px;
	height: auto;
	position: absolute;
	top: -30px;
	left: 0;
	transform: rotate(-90deg);
}

.gm-hero__corner-curve--bottom {
	top: auto;
	left: auto;
	right: -30px;
	bottom: 0;
	transform: rotate(-90deg);
}

/* Scroll button */
.gm-hero__scroll-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--gm-color-ink);
	color: var(--gm-color-ink);
	margin-top: 20px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.gm-hero__scroll-btn:hover {
	background: var(--gm-color-brand-accent);
}

.gm-hero__scroll-btn svg {
	width: 1.2rem;
	height: auto;
	transform: rotate(90deg);
}

/* ── Right: details column ── */
.gm-hero__details {
	width: 320px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* ── Cards ── */
.gm-hero__card {
	border-radius: 30px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	color: inherit;
}

/* Card bottom-right arrow — EXACT CoLabs ArrowCont pattern */
.gm-hero__card-btn {
	position: absolute;
	bottom: 0;
	right: 0;
}

.gm-hero__card-btn-wrap {
	background-color: var(--gm-color-bg);
	padding: 10px;
	border-radius: 50% 0 0;
	margin: 0 -10px -10px 0;
	position: relative;
}

/* Corner curve SVGs — organic cutout */
.gm-hero__card-btn-corner {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -20px;
	right: 10px;
	transform: rotate(180deg) scale(1.01);
	overflow: hidden;
}

.gm-hero__card-btn-corner--left {
	top: auto;
	right: auto;
	bottom: 10px;
	left: -20px;
	transform: rotate(180deg) scale(1.01);
}

.gm-hero__card-btn-corner svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Arrow circle — 50×50, centered icon */
.gm-hero__card-arrow {
	width: 50px;
	height: 50px;
	background-color: var(--gm-color-ink);
	border: 1px solid var(--gm-color-ink);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gm-hero__card--counter .gm-hero__card-arrow {
	background-color: var(--gm-color-blue);
	border-color: var(--gm-color-blue);
}

.gm-hero__card--brand .gm-hero__card-arrow {
	background-color: var(--gm-color-yellow);
	border-color: var(--gm-color-yellow);
}

.gm-hero__card-arrow svg {
	display: block;
	width: 14px;
	height: 14px;
	transition: 0.3s;
}

.gm-hero__card-arrow svg path {
	stroke: var(--gm-color-white);
}

.gm-hero__card:hover .gm-hero__card-arrow svg {
	transform: rotate(-22.5deg) scale(1.4);
}

.gm-hero__card--counter {
	flex: 0 0 40%;
	background: var(--gm-color-blue);
	color: var(--gm-color-ink);
	border-radius: 30px 30px 0px;
	mask-image: -webkit-radial-gradient(center, #fff, #000);
	position: relative;
	overflow: hidden;
}

.gm-hero__card-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140%;
	height: 140%;
	object-fit: cover;
	z-index: 0;
	border-radius: inherit;
}

.gm-hero__card--has-video > *:not(.gm-hero__card-btn):not(.gm-hero__card-video) {
	position: relative;
	z-index: 1;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	flex: 1;
}

.gm-hero__card-btn {
	z-index: 2;
}

.gm-hero__card--has-video > .gm-hero__card-video {
	position: absolute;
	z-index: 0;
}

.gm-hero__card--brand {
	flex: 1;
	background: #fff;
	color: var(--gm-color-ink);
	border-radius: 30px 30px 0px 30px;
	overflow: hidden;
	padding: 0;
}

/* Slider */
.gm-hero__slider-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-hero__slide {
	min-width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-sizing: border-box;
}

.gm-hero__card-highlight {
	font-family: var(--gm-font-description);
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--gm-color-yellow);
	margin: 0 0 0.5rem;
}

.gm-hero__slider-dots {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: flex;
	gap: 6px;
	z-index: 2;
}

.gm-hero__slider-dot {
	width: 22px;
	height: 6px;
	border-radius: 10px;
	border: none;
	padding: 0;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.25);
	overflow: hidden;
	position: relative;
}

.gm-hero__slider-dot::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	transform: var(--_progress, translateX(-100%));
	transition: none;
}

.gm-hero__slider-dot.is-active::before {
	transform: translateX(0);
	transition: transform 4s ease-out;
}

.gm-hero__card-label {
	font-family: var(--gm-font-description);
	font-size: 24px;
	font-weight: var(--gm-fw-medium);
	margin: 0 0 0.5rem;
	opacity: 0.8;
}

.gm-hero__counter {
	display: flex;
	align-items: baseline;
	gap: 0;
	margin: 0.5rem 0;
}

.gm-hero__counter-num {
	font-family: var(--gm-font-data);
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	height: 1em;
}

.gm-hero__counter-num .gm-hero__counter-val {
	display: block;
	transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.35s ease;
}

.gm-hero__counter-num .gm-hero__counter-val.is-leaving {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-110%);
	opacity: 0;
}

.gm-hero__counter-num .gm-hero__counter-val.is-entering {
	transform: translateY(110%);
	opacity: 0;
	transition: none;
}

.gm-hero__counter-sep {
	font-family: var(--gm-font-data);
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
}

.gm-hero__card-sub {
	font-family: var(--gm-font-description);
	font-size: 16px;
	line-height: 1.4;
	margin: 0.5rem 0 0;
	opacity: 0.85;
}

.gm-hero__card-cite {
	font-family: var(--gm-font-data);
	font-size: 0.65rem;
	margin: 0.5rem 0 0;
	opacity: 0.6;
}

.gm-hero__card-icon {
	margin-bottom: 0.75rem;
	opacity: 0.7;
}

.gm-hero__card-brand {
	font-family: var(--gm-font-description);
	font-size: 0.75rem;
	font-weight: var(--gm-fw-semibold);
	margin: 0 0 0.5rem;
	opacity: 0.8;
}

.gm-hero__card-msg {
	font-family: var(--gm-font-description);
	font-size: clamp(1rem, 1.5vw, 1.35rem);
	line-height: 1.4;
	margin: 0;
	font-weight: 400;
	max-width: 85%;
	color: #000;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.gm-hero__inner {
		flex-direction: column;
		height: auto;
	}

	.gm-hero__main {
		border-radius: 1.875rem;
		min-height: 400px;
	}

	.gm-hero__title-wrap {
		max-width: 70%;
	}

	.gm-hero__details {
		flex-direction: row;
		width: 100%;
		margin-top: 0.625rem;
	}

	.gm-hero__card {
		flex: 1;
	}
}

/* ── Mobile (≤989px): 타이틀 우하단 + 화살표 마스크(좌하단) + 하단 카드 1컬럼 ── */
@media (max-width: 989px) {
	.gm-hero {
		padding-top: 0.5rem;
	}

	.gm-hero__inner {
		flex-direction: column;
		height: auto;
	}

	.gm-hero__slide {
		height: 150px;
		min-height: 150px;
	}

	/* 화살표 마스크 카드 / 원형 보더 두께 토큰 */
	.gm-hero__main {
		--gm-hero-arrow-card: 80px;
		--gm-hero-arrow-circle: 60px;
		--gm-hero-arrow-pad: calc((var(--gm-hero-arrow-card) - var(--gm-hero-arrow-circle)) / 2);
	}

	/* 1) 타이틀 wrap: 풀 너비 투명 오버레이. ::before 가 좌하단 마스크 카드 배경 */
	.gm-hero__title-wrap {
		inset: auto 0 0 0;
		max-width: none;
		width: auto;
		background: transparent;
		padding: 0;
		border-radius: 0;
		pointer-events: none;
	}

	.gm-hero__title-wrap::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: var(--gm-hero-arrow-card);
		height: var(--gm-hero-arrow-card);
		background: var(--gm-color-bg);
		border-radius: 0 30px 0 0;
		pointer-events: none;
		z-index: 1;
	}

	/* 2) 타이틀: 이미지 위에 오버레이, 우측 하단 정렬 */
	.gm-hero__title {
		position: absolute;
		bottom: 24px;
		right: 24px;
		left: auto;
		margin: 0;
		width: auto;
		max-width: calc(100% - var(--gm-hero-arrow-card) - 30px);
		padding: 0;
		text-align: right;
		color: var(--gm-color-ink);
		font-size: 30px;
		line-height: 1.05;
		text-shadow:
			0 2px 12px color-mix(in srgb, var(--gm-color-bg) 92%, transparent),
			0 0 4px var(--gm-color-bg);
		pointer-events: auto;
		z-index: 5;
	}

	/* 3) 화살표: 마스크 카드 안의 원형 버튼 (보더 복구).
	      retina 서브픽셀 불균일 회피 → border 대신 box-shadow inset 1px */
	.gm-hero__scroll-btn {
		position: absolute;
		bottom: var(--gm-hero-arrow-pad);
		left: var(--gm-hero-arrow-pad);
		width: var(--gm-hero-arrow-circle);
		height: var(--gm-hero-arrow-circle);
		margin: 0;
		background: transparent;
		border: none;
		border-radius: 50%;
		box-shadow: inset 0 0 0 1px var(--gm-color-ink);
		color: var(--gm-color-ink);
		pointer-events: auto;
		z-index: 2;
	}

	.gm-hero__scroll-btn:hover {
		background: var(--gm-color-brand-accent);
		color: var(--gm-color-white);
		box-shadow: inset 0 0 0 1px var(--gm-color-brand-accent);
	}

	/* 4) 코너 마스크 SVG: 마스크 카드 둘레에 재배치 (토큰 기반) */
	.gm-hero__corner-curve {
		top: auto;
		bottom: var(--gm-hero-arrow-card);
		left: 0;
		z-index: 1;
	}

	.gm-hero__corner-curve--bottom {
		top: auto;
		right: auto;
		bottom: 0;
		left: var(--gm-hero-arrow-card);
		z-index: 1;
	}

	/* 5) 히어로 아래 카드 영역: 1컬럼 스택, 각 카드 컨텐츠 높이 */
	.gm-hero__details {
		flex-direction: column;
		width: 100%;
		margin-top: 10px;
		gap: 10px;
	}

	.gm-hero__card {
		flex: 0 0 auto;
		width: 100%;
		min-height: 240px;
	}
}


/* ── 1. Section title (shared) ──────────────────────── */

.gm-sh-section-title {
	font-family: var(--gm-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gm-color-ink);
	margin: 0;
}


/* ── 2. Scroll reveal ───────────────────────────────── */

.gm-sh-reveal-ready [data-sh-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.gm-sh-reveal-ready [data-sh-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Feature cards: preserve rotation during reveal */
.gm-sh-reveal-ready .gm-sh-popular__card[data-sh-reveal] {
	opacity: 0;
	transform: translateY(24px);
}

.gm-sh-reveal-ready .gm-sh-popular__card--accent[data-sh-reveal].is-visible {
	transform: rotate(-2deg);
}

.gm-sh-reveal-ready .gm-sh-popular__card--blue[data-sh-reveal].is-visible {
	transform: rotate(1deg);
}

.gm-sh-reveal-ready .gm-sh-popular__card--yellow[data-sh-reveal].is-visible {
	transform: rotate(3deg);
}


/* ═══════════════════════════════════════════════════════
   3. HERO — Full viewport, geometric shapes
   ═══════════════════════════════════════════════════════ */

.gm-sh-hero {
	--sh-green: color-mix(in oklch, var(--gm-color-blue) 40%, var(--gm-color-yellow));
	--sh-pink: color-mix(in oklch, var(--gm-color-brand-accent) 40%, var(--gm-color-white));
	--sh-lightblue: color-mix(in oklch, var(--gm-color-blue) 25%, var(--gm-color-white));

	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gm-color-bg);
	overflow: visible;
	padding: 2rem 2rem 12rem;
}

/* Geometric shapes container */
.gm-sh-shapes {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	mix-blend-mode: darken;
}

/* 모든 도형 동일 고정 크기 500px */
.gm-sh-s {
	position: absolute;
	display: block;
	object-fit: contain;
	pointer-events: none;
	will-change: transform;
	width: 400px;
	height: 400px;
	--sh-y: 0px;
	translate: 0 var(--sh-y);
	mask-image: radial-gradient(circle, black 60%, transparent 85%);
}

/*
 * 시계방향 인접 도형 모두 다른 종류:
 * 1:5sq(파오) 2:star(빨별) 3:tri_y(노삼) 4:5sq_y(노오)
 * 5:star_b(파별) 6:tri_p(빨삼) 7:star(빨별) 8:5sq_y(노오)
 * 9:tri_p(화면밖) 10:star_b(파별) 11:tri_y(화면밖) 12:5sq(화면밖)
 */

/* SuperHi Image #19 정밀 복제 — 1540x770 뷰포트 기준 px 측정 */

/*
 * SuperHi 1540px 실측 + 900/696 스케일 적용
 * 좌측: left 고정 / 우측: right 고정
 */
.gm-sh-s--1  { top: -80px;  left: -160px; }
.gm-sh-s--2  { top: -100px; left: 360px; }
.gm-sh-s--3  { top: 230px;  left: 20px; }
.gm-sh-s--4  { top: -80px;  right: 460px; }
.gm-sh-s--5  { top: -40px;  right: -140px; }
.gm-sh-s--6  { top: 330px;  right: 195px; }
.gm-sh-s--7  { top: 580px;  left: 40px; }
.gm-sh-s--8  { top: 670px;  left: 430px; }
.gm-sh-s--9  { top: 400px;  left: -500px; }
.gm-sh-s--10 { top: 700px;  right: 80px; }
.gm-sh-s--11 { top: 700px;  right: -500px; }
.gm-sh-s--12 { top: 350px;  right: -600px; }

/* ─── Responsive ─── */
@media (max-width: 989px) {
	.gm-sh-s { width: 250px; height: 250px; }
}

@media (max-width: 639px) {
	.gm-sh-s { width: 180px; height: 180px; }
}

/* Hero inner content */
.gm-sh-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
}

/* Brand mark icon */
.gm-sh-hero__mark {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gm-color-brand-accent);
	border-radius: 50%;
	color: var(--gm-color-white);
	animation: gm-mark-bounce 2s ease-in-out infinite;
}

.gm-sh-hero__mark svg {
	width: 28px;
	height: 28px;
	fill: var(--gm-color-white);
}

@keyframes gm-mark-bounce {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}

/* Hero title */
.gm-sh-hero__title {
	font-family: var(--gm-font-display);
	font-size: clamp(2.8rem, 6.5vw, 5.75rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.0;
	color: var(--gm-color-ink);
	margin: 0;
}

/* Hero description */
.gm-sh-hero__desc {
	font-family: var(--gm-font-body);
	font-size: clamp(1.125rem, 1.6vw, 1.5rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.007em;
	color: var(--gm-color-ink);
	max-width: 52ch;
	margin: 0;
}

/* CTA buttons row */
.gm-sh-hero__buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.5rem;
}

.gm-sh-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--gm-font-body);
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	padding: 3.6px 14.4px;
	border-radius: 48px;
	border: none;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--gm-transition);
}

.gm-sh-hero__cta span {
	display: inline-block;
	transition: transform 0.3s ease;
	font-size: 1.2em;
	line-height: 1;
}

.gm-sh-hero__cta:hover span {
	transform: translateX(4px);
}

.gm-sh-hero__cta:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

.gm-sh-hero .gm-sh-hero__cta--primary {
	background: var(--gm-color-brand-accent);
	color: var(--gm-color-white);
}

.gm-sh-hero__cta--primary:hover {
	background: var(--gm-color-brand-accent-strong);
}

.gm-sh-hero__cta--secondary {
	background: var(--gm-color-ink);
	color: var(--gm-color-white);
}

.gm-sh-hero__cta--secondary:hover {
	background: var(--gm-color-navy);
}

/* Hero responsive */
@media (max-width: 989px) {
	.gm-sh-hero {
		min-height: 85vh;
		min-height: 85dvh;
		padding: 7rem 1.5rem 2rem;
	}

	.gm-sh-hero__title {
		font-size: clamp(2.2rem, 10vw, 3.5rem);
	}
}

@media (max-width: 639px) {
	.gm-sh-hero {
		min-height: 80vh;
		min-height: 80dvh;
		padding: 6rem 1rem 2rem;
	}

	.gm-sh-hero__title {
		font-size: clamp(2rem, 9vw, 3rem);
	}

	.gm-sh-hero__desc {
		font-size: 1rem;
	}

	.gm-sh-hero__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.gm-sh-hero__cta {
		justify-content: center;
	}
}


/* ═══════════════════════════════════════════════════════
   4. EVIDENCE STRIP — Logo garden / social proof marquee
   ═══════════════════════════════════════════════════════ */

/* SuperHi-style trust panel: white card overlapping hero bottom */
.gm-sh-evidence {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: var(--gm-shell);
	margin: 0 auto;
	padding: 0;
	background: transparent;
}

.gm-sh-evidence__label {
	margin: 0;
	padding: 1.5rem 1.75rem 0;
	font-family: var(--gm-font-display);
	font-size: clamp(1.5rem, 3vw, 2.625rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--gm-color-ink);
	text-transform: none;
	text-align: left;
	background: var(--gm-color-surface);
	border-radius: 1.25rem 1.25rem 0 0;
}

.gm-sh-evidence__marquee {
	overflow: hidden;
	background: var(--gm-color-surface);
	border-radius: 0 0 1.25rem 1.25rem;
	padding: 1.25rem 0 1.5rem;
	-webkit-mask-image: none;
	mask-image: none;
}

.gm-sh-evidence__track {
	display: flex;
	width: max-content;
	animation: gm-evidence-scroll 120s linear infinite;
	will-change: transform;
}

.gm-sh-evidence__track:hover {
	animation-play-state: paused;
}

.gm-sh-evidence__set {
	display: flex;
	gap: 0.625rem;
	padding: 0 0.625rem 0 0;
	margin: 0;
	list-style: none;
	align-items: center;
	flex-shrink: 0;
}

.gm-sh-evidence__set + .gm-sh-evidence__set {
	padding-left: 0.625rem;
}

.gm-sh-evidence__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: auto;
	min-height: 2.5rem;
	padding: 0.55rem 1.5rem;
	border-radius: var(--gm-radius-pill);
	border: none;
	background: var(--gm-color-bg);
	font-family: var(--gm-font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--gm-color-ink);
	letter-spacing: 0.01em;
	white-space: nowrap;
	flex-shrink: 0;
}

.gm-sh-evidence__dot {
	display: none;
}

@keyframes gm-evidence-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-33.333%); }
}

/* Evidence responsive */
@media (max-width: 989px) {
	.gm-sh-evidence {
		margin-top: -2.5rem;
	}

	.gm-sh-evidence__label {
		font-size: 1.4rem;
		padding: 1.25rem 1.25rem 0;
	}

	.gm-sh-evidence__marquee {
		padding: 1rem 0 1.25rem;
	}

	.gm-sh-evidence__badge {
		padding: 0.45rem 1rem;
		font-size: 0.8rem;
		min-height: 2.25rem;
	}

	.gm-sh-evidence__set {
		gap: 0.5rem;
		padding: 0 0.5rem 0 0;
	}

	.gm-sh-evidence__set + .gm-sh-evidence__set {
		padding-left: 0.5rem;
	}

	.gm-sh-evidence__track {
		animation-duration: 60s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gm-sh-evidence__track {
		animation-play-state: paused;
	}
}


/* ═══════════════════════════════════════════════════════
   4b. BLOCK HERO — Microplastics counter (Playa-style)
   Playwright-measured: 1360×570 container, absolute overlays
   ═══════════════════════════════════════════════════════ */

.gm-block-hero {
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
}

.gm-block-hero__container {
	position: relative;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1360 / 570;
	background: transparent;
	border-radius: 0;
}

/* ── Image carousel with original blob mask (exact reference match) ── */
.gm-block-hero__image {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1360 570'%3E%3Cpath fill='%23000' d='M0 260.383V60C0 26.863 26.863 0 60 0h320.905c32.165 0 58.241 26.076 58.241 58.241v4.27a6.009 6.009 0 1 0 12.017 0v-4.27C451.163 26.076 477.239 0 509.405 0H1300c33.14 0 60 26.863 60 60v450c0 33.137-26.86 60-60 60H706.037c-32.632 0-59.086-26.453-59.086-59.085v-3.417a7.01 7.01 0 0 0-7.01-7.01 7.01 7.01 0 0 0-7.01 7.01v3.417c0 32.632-26.454 59.085-59.086 59.085H60c-33.137 0-60-26.863-60-60V390.211C0 358.062 26.062 332 58.21 332h12.701a6.703 6.703 0 0 0 0-13.406h-12.7C26.06 318.594 0 292.532 0 260.383'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1360 570'%3E%3Cpath fill='%23000' d='M0 260.383V60C0 26.863 26.863 0 60 0h320.905c32.165 0 58.241 26.076 58.241 58.241v4.27a6.009 6.009 0 1 0 12.017 0v-4.27C451.163 26.076 477.239 0 509.405 0H1300c33.14 0 60 26.863 60 60v450c0 33.137-26.86 60-60 60H706.037c-32.632 0-59.086-26.453-59.086-59.085v-3.417a7.01 7.01 0 0 0-7.01-7.01 7.01 7.01 0 0 0-7.01 7.01v3.417c0 32.632-26.454 59.085-59.086 59.085H60c-33.137 0-60-26.863-60-60V390.211C0 358.062 26.062 332 58.21 332h12.701a6.703 6.703 0 0 0 0-13.406h-12.7C26.06 318.594 0 292.532 0 260.383'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-size: cover;
}

.gm-block-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease;
}

.gm-block-hero__slide.is-active {
	opacity: 1;
}

/* ── Bottom-left popup card ── */
/* Ref: left=40 (2.9%), bottom=-14 (extends below container), w=400 (29.4%) */
.gm-block-hero__popup {
	position: absolute;
	bottom: 7%;
	left: 2.9%;
	min-height: 27.9%;
	width: 29.4%;
	display: flex;
	gap: clamp(14px, 1.39vw, 20px);
	padding: clamp(12px, 1.11vw, 16px);
	background: rgba(245, 245, 245, 0.5);
	backdrop-filter: blur(20px) brightness(1.1);
	-webkit-backdrop-filter: blur(20px) brightness(1.1);
	border-radius: clamp(10px, 0.97vw, 14px);
	overflow: hidden;
	z-index: 2;
	transform: translateY(calc(100% + 3rem));
	opacity: 0;
	transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1),
				opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gm-block-hero__popup.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.gm-block-hero__popup-icon {
	flex-shrink: 0;
	width: 25px;
	height: 24px;
	color: var(--gm-color-ink);
}

.gm-block-hero__popup-wrap {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.gm-block-hero__popup-brand {
	font-family: var(--gm-font-body);
	font-size: clamp(12px, 1.11vw, 16px);
	font-weight: 400;
	line-height: 1.18;
	color: var(--gm-color-ink);
}

.gm-block-hero__popup-title {
	font-family: var(--gm-font-display);
	font-size: clamp(16px, 1.67vw, 24px);
	font-weight: 400;
	color: var(--gm-color-ink);
	line-height: 1.1;
}

.gm-block-hero__popup-code {
	font-family: var(--gm-font-body);
	font-size: clamp(12px, 1.11vw, 16px);
	font-weight: 400;
	line-height: 1.18;
	color: var(--gm-color-ink);
	opacity: 0.5;
}

/* ── Top-right countdown-intro card ── */
/* Ref exact: top=40, right=40, w=400, h=158, bg=rgba(245,245,245,0.5), flex space-between */
.gm-block-hero__intro {
	position: absolute;
	top: 7%;
	right: 2.9%;
	width: 24%;
	height: 24%;
	padding: clamp(12px, 1.1vw, 16px);
	background: rgba(245, 245, 245, 0.5);
	backdrop-filter: blur(20px) brightness(1.1);
	-webkit-backdrop-filter: blur(20px) brightness(1.1);
	border-radius: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 400 158'%3E%3Cpath fill='%23fff' d='M0 113.829V14C0 6.268 6.268 0 14 0h372c7.732 0 14 6.268 14 14v130c0 7.732-6.268 14-14 14h-9.864c-6.979 0-12.636-5.657-12.636-12.636v-7.386a5.25 5.25 0 1 0-10.5 0v7.386c0 6.979-5.657 12.636-12.636 12.636H14c-7.732 0-14-6.268-14-14z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 400 158'%3E%3Cpath fill='%23fff' d='M0 113.829V14C0 6.268 6.268 0 14 0h372c7.732 0 14 6.268 14 14v130c0 7.732-6.268 14-14 14h-9.864c-6.979 0-12.636-5.657-12.636-12.636v-7.386a5.25 5.25 0 1 0-10.5 0v7.386c0 6.979-5.657 12.636-12.636 12.636H14c-7.732 0-14-6.268-14-14z'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.gm-block-hero__intro-title {
	font-family: var(--gm-font-display);
	font-size: clamp(16px, 1.67vw, 24px);
	font-weight: 400;
	color: var(--gm-color-ink);
	line-height: 1.1;
	margin: 0;
	max-width: clamp(200px, 18.75vw, 270px);
}

.gm-block-hero__intro-sub {
	font-family: var(--gm-font-body);
	font-size: clamp(12px, 1.11vw, 16px);
	font-weight: 400;
	line-height: 1;
	color: var(--gm-color-ink);
}

/* ── Notch connector (hidden — only visible with dark bg) ── */
.gm-block-hero__notch {
	display: none;
}

/* ── Countdown card (segmented timer — exact reference match) ── */
/* Ref: top=36%, right=2.9%, w=29.4%, h=17.9%, bg=rgb(246,190,240) */
.gm-block-hero__countdown {
	position: absolute;
	top: 31.2%;
	right: 2.9%;
	width: 24%;
	padding: 0 clamp(12px, 1.1vw, 16px);
	background: var(--gm-color-brand-accent);
	border-radius: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 17.9%;
	-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 400 102'%3E%3Cpath fill='%23f6bef0' d='M0 44.171V88c0 7.732 6.268 14 14 14h372c7.732 0 14-6.268 14-14V14c0-7.732-6.268-14-14-14h-12.781a9.72 9.72 0 0 0-9.719 9.719v.303a5.25 5.25 0 1 1-10.5 0V9.72c0-5.37-4.351-9.72-9.719-9.72H14C6.268 0 0 6.268 0 14z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 400 102'%3E%3Cpath fill='%23f6bef0' d='M0 44.171V88c0 7.732 6.268 14 14 14h372c7.732 0 14-6.268 14-14V14c0-7.732-6.268-14-14-14h-12.781a9.72 9.72 0 0 0-9.719 9.719v.303a5.25 5.25 0 1 1-10.5 0V9.72c0-5.37-4.351-9.72-9.719-9.72H14C6.268 0 0 6.268 0 14z'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.gm-block-hero__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	justify-content: center;
	transform: translateY(-4px);
}

.gm-block-hero__num-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: clamp(30px, 3.38vw, 50px);
	overflow: hidden;
}

.gm-block-hero__num {
	font-family: var(--gm-font-display);
	font-size: clamp(32px, 3.47vw, 50px);
	font-weight: 400;
	line-height: 1;
	color: var(--gm-color-white);
	font-variant-numeric: tabular-nums;
}

.gm-block-hero__ghost {
	display: none;
	top: -2px;
}

.gm-block-hero__divider {
	display: flex;
	align-items: center;
	margin-top: -4px;
	height: clamp(32px, 3.47vw, 50px);
	transform: translateY(-4px);
}

.gm-block-hero__divider span {
	font-family: var(--gm-font-display);
	font-size: clamp(32px, 3.47vw, 50px);
	font-weight: 400;
	line-height: 1;
	color: var(--gm-color-white);
}

.gm-block-hero__label {
	font-family: var(--gm-font-body);
	font-size: clamp(9px, 0.83vw, 12px);
	font-weight: 400;
	line-height: 1;
	color: var(--gm-color-ink);
	opacity: 0.5;
	margin: 0;
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

/* ── Block Hero responsive ── */
@media (max-width: 989px) {
	.gm-block-hero {
		padding: 0;
	}

	.gm-block-hero__container {
		aspect-ratio: auto;
		min-height: 420px;
	}

	.gm-block-hero__image {
		-webkit-mask-image: none;
		mask-image: none;
		border-radius: 12px;
	}

	.gm-block-hero__intro {
		top: 16px;
		right: 16px;
		width: min(280px, 50%);
		padding: 14px;
	}

	.gm-block-hero__notch {
		top: calc(16px + var(--gm-bh-intro-h, 120px));
		right: 16px;
	}

	.gm-block-hero__countdown {
		right: 16px;
		top: calc(16px + var(--gm-bh-intro-h, 120px) + 5px);
		width: min(280px, 50%);
		height: 80px;
		padding: 0 14px;
	}

	.gm-block-hero__popup {
		bottom: 16px;
		left: 16px;
		width: min(260px, 50%);
		padding: 12px;
		gap: 12px;
	}
}

@media (max-width: 639px) {
	.gm-block-hero {
		padding: 0 12px;
	}

	.gm-block-hero__container {
		min-height: 360px;
	}

	.gm-block-hero__intro {
		width: min(200px, 55%);
		padding: 10px;
	}

	.gm-block-hero__intro-title {
		font-size: 14px;
		margin-bottom: 1em;
	}

	.gm-block-hero__intro-sub {
		font-size: 12px;
	}

	.gm-block-hero__countdown {
		top: calc(16px + var(--gm-bh-intro-h, 90px) + 4px);
		width: min(200px, 55%);
		height: 60px;
		padding: 0 10px;
	}

	.gm-block-hero__notch {
		display: none;
	}

	.gm-block-hero__num {
		font-size: 20px;
	}

	.gm-block-hero__popup {
		width: min(180px, 50%);
		padding: 8px;
		gap: 8px;
	}

	.gm-block-hero__popup-brand {
		font-size: 12px;
	}

	.gm-block-hero__popup-title {
		font-size: 13px;
	}

	.gm-block-hero__popup-code {
		font-size: 11px;
	}
}


/* ═══════════════════════════════════════════════════════
   5. PRODUCT GALLERY — Horizontal scroll snap
   ═══════════════════════════════════════════════════════ */

.gm-sh-gallery {
	padding: var(--gm-section-space) 0;
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
}

.gm-sh-gallery__header {
	text-align: center;
	margin-bottom: clamp(2rem, 3vw, 3rem);
}

.gm-sh-gallery__title {
	font-family: var(--gm-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gm-color-ink);
	margin: 0 0 0.75rem;
}

.gm-sh-gallery__sub {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body-lg);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-muted);
	max-width: 52ch;
	margin: 0 auto;
	line-height: 1.65;
}

.gm-sh-gallery__scroll {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.5rem;
}

.gm-sh-gallery__scroll::-webkit-scrollbar {
	display: none;
}

.gm-sh-gallery__track {
	display: flex;
	gap: 1.25rem;
}

.gm-sh-gallery__item {
	flex: 0 0 260px;
	scroll-snap-align: start;
	border-radius: var(--gm-radius-card);
	overflow: hidden;
	border: 1px solid var(--gm-color-line);
	background: var(--gm-color-surface);
	position: relative;
	cursor: pointer;
	transition: all var(--gm-transition);
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.gm-sh-gallery__item:hover {
	border-color: var(--gm-color-line-hover);
	transform: translateY(-4px);
	box-shadow: var(--gm-shadow-subtle);
}

.gm-sh-gallery__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.gm-sh-gallery__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--gm-transition);
}

.gm-sh-gallery__item:hover .gm-sh-gallery__img img {
	transform: scale(1.05);
}

.gm-sh-gallery__meta {
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.gm-sh-gallery__type {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-caption);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.gm-sh-gallery__name {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-ink);
	margin: 0;
	line-height: 1.3;
}

.gm-sh-gallery__price {
	font-family: var(--gm-font-data);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-muted);
}

.gm-sh-gallery__footer {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.gm-sh-gallery__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-brand-accent);
	text-decoration: none;
	transition: color var(--gm-transition);
}

.gm-sh-gallery__link:hover {
	color: var(--gm-color-brand-accent-strong);
	text-decoration: underline;
}

.gm-sh-gallery__link:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

/* Gallery responsive */
@media (max-width: 639px) {
	.gm-sh-gallery__item {
		flex: 0 0 200px;
	}
}


/* ═══════════════════════════════════════════════════════
   6. FEATURE CARDS (Popular) — Bold colored cards
   ═══════════════════════════════════════════════════════ */

.gm-sh-popular {
	padding: var(--gm-section-space) 0;
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
}

.gm-sh-popular__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: clamp(2rem, 3vw, 3rem);
	flex-wrap: wrap;
}

.gm-sh-popular__title {
	font-family: var(--gm-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gm-color-ink);
	margin: 0;
}

.gm-sh-popular__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-brand-accent);
	text-decoration: none;
	transition: color var(--gm-transition);
}

.gm-sh-popular__link:hover {
	color: var(--gm-color-brand-accent-strong);
	text-decoration: underline;
}

.gm-sh-popular__link:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

.gm-sh-popular__cards {
	display: flex;
	gap: 1.5rem;
}

.gm-sh-popular__card {
	flex: 1;
	min-height: 580px;
	border-radius: 1.5rem;
	padding: 2.5rem 2.5rem 3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	overflow: hidden;
	transition: transform var(--gm-transition), box-shadow var(--gm-transition);
	text-decoration: none;
}

.gm-sh-popular__card:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

/* Card color variants */
.gm-sh-popular__card--accent {
	background: var(--gm-color-brand-accent);
	color: var(--gm-color-white);
	transform: rotate(-2deg);
}

.gm-sh-popular__card--blue {
	background: var(--gm-color-blue);
	color: var(--gm-color-white);
	transform: rotate(1deg);
}

.gm-sh-popular__card--yellow {
	background: var(--gm-color-yellow);
	color: var(--gm-color-ink);
	transform: rotate(3deg);
}

/* Hover: lift + straighten */
.gm-sh-popular__card:hover {
	transform: rotate(0deg) translateY(-8px);
	box-shadow: var(--gm-shadow-strong);
}

/* Card contents */
.gm-sh-popular__num {
	font-family: var(--gm-font-data);
	font-size: var(--gm-fs-caption);
	font-weight: var(--gm-fw-medium);
	letter-spacing: 0.08em;
	opacity: 0.7;
}

.gm-sh-popular__card-title {
	font-family: var(--gm-font-display);
	font-size: clamp(1.8rem, 3vw, 2.75rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0;
}

.gm-sh-popular__card-desc {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	line-height: 1.65;
	opacity: 0.85;
	margin: 0;
	flex: 1;
}

.gm-sh-popular__tag {
	display: inline-block;
	font-family: var(--gm-font-data);
	font-size: var(--gm-fs-caption);
	font-weight: var(--gm-fw-medium);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
	border-radius: var(--gm-radius-pill);
	background: rgba(255, 255, 255, 0.2);
	align-self: flex-start;
}

.gm-sh-popular__card--yellow .gm-sh-popular__tag {
	background: var(--gm-overlay-light);
}

.gm-sh-popular__arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid currentColor;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: flex-end;
	margin-top: auto;
	opacity: 0.6;
	transition: opacity var(--gm-transition);
}

.gm-sh-popular__card:hover .gm-sh-popular__arrow {
	opacity: 1;
}

.gm-sh-popular__arrow svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* Feature cards responsive */
@media (max-width: 989px) {
	.gm-sh-popular__cards {
		flex-direction: column;
	}

	.gm-sh-popular__card {
		min-height: 360px;
		transform: rotate(0deg);
	}

	.gm-sh-popular__card:hover {
		transform: translateY(-4px);
	}
}

@media (max-width: 639px) {
	.gm-sh-popular__card {
		min-height: 300px;
		padding: 2rem;
	}
}


/* ═══════════════════════════════════════════════════════
   7. WHERE TO START — Sticky scroll with tabs + cards
   ═══════════════════════════════════════════════════════ */

.gm-sh-start {
	padding: var(--gm-section-space) 0;
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
}

.gm-sh-start__header {
	text-align: center;
	margin-bottom: 2rem;
}

.gm-sh-start__title {
	font-family: var(--gm-font-display);
	font-size: clamp(2.2rem, 4.5vw, 3.5rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gm-color-ink);
	margin: 0;
}

.gm-sh-start__tabs {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: clamp(2rem, 3vw, 3rem);
}

.gm-sh-start__tab {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-ink);
	background: transparent;
	border: 1px solid var(--gm-color-line);
	border-radius: var(--gm-radius-pill);
	padding: 0.5rem 1.25rem;
	cursor: pointer;
	transition: all var(--gm-transition);
	white-space: nowrap;
}

.gm-sh-start__tab:hover {
	background: var(--gm-overlay-faint);
	border-color: var(--gm-color-line-hover);
}

.gm-sh-start__tab:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

.gm-sh-start__tab--active,
.gm-sh-start__tab.is-active {
	background: var(--gm-color-ink);
	color: var(--gm-color-white);
	border-color: var(--gm-color-ink);
}

/* Step cards */
.gm-sh-start__cards {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.gm-sh-start__card {
	background: color-mix(in srgb, var(--gm-color-blue) 8%, var(--gm-color-surface));
	border: none;
	border-radius: var(--gm-radius-card);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	overflow: hidden;
	transition: all var(--gm-transition);
}

.gm-sh-start__card:hover {
	box-shadow: var(--gm-shadow-subtle);
	transform: translateY(-2px);
}

/* Full colored background via accent class */
.gm-sh-start__accent {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: var(--gm-radius-card);
}

.gm-sh-start__accent--green {
	background: color-mix(in oklch, var(--gm-color-blue) 20%, var(--gm-color-yellow) 15%);
	opacity: 0.12;
}

.gm-sh-start__accent--blue {
	background: var(--gm-color-blue);
	opacity: 0.10;
}

.gm-sh-start__accent--yellow {
	background: var(--gm-color-yellow);
	opacity: 0.15;
}

.gm-sh-start__accent--accent {
	background: var(--gm-color-brand-accent);
	opacity: 0.10;
}

/* Card body content */
.gm-sh-start__card-body {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gm-sh-start__card-title {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-h3);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-ink);
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin: 0;
}

.gm-sh-start__card-desc {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-muted);
	line-height: 1.65;
	margin: 0;
}

.gm-sh-start__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-brand-accent);
	text-decoration: none;
	margin-top: 0.5rem;
	transition: color var(--gm-transition);
}

.gm-sh-start__link:hover {
	color: var(--gm-color-brand-accent-strong);
	text-decoration: underline;
}

.gm-sh-start__link:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

/* Newsletter form */
.gm-sh-start__form {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.gm-sh-start__input {
	flex: 1;
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-ink);
	background: var(--gm-color-bg);
	border: 1px solid var(--gm-color-line);
	border-radius: var(--gm-radius-pill);
	padding: 0.6rem 1.25rem;
	transition: border-color var(--gm-transition);
}

.gm-sh-start__input::placeholder {
	color: var(--gm-color-muted);
}

.gm-sh-start__input:focus {
	outline: none;
	border-color: var(--gm-color-blue);
}

.gm-sh-start__submit {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-white);
	background: var(--gm-color-brand-accent);
	border: none;
	border-radius: var(--gm-radius-pill);
	padding: 0.6rem 1.5rem;
	cursor: pointer;
	transition: all var(--gm-transition);
	white-space: nowrap;
}

.gm-sh-start__submit:hover {
	background: var(--gm-color-brand-accent-strong);
	transform: translateY(-1px);
}

.gm-sh-start__submit:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

/* Where To Start responsive */
@media (max-width: 989px) {
	.gm-sh-start__card {
		padding: 1.5rem 1.5rem 1.5rem 2rem;
	}
}

@media (max-width: 639px) {
	.gm-sh-start__card {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem 1.25rem 1.5rem 1.75rem;
	}

	.gm-sh-start__tabs {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		scrollbar-width: none;
	}

	.gm-sh-start__tabs::-webkit-scrollbar {
		display: none;
	}
}


/* ═══════════════════════════════════════════════════════
   8. TESTIMONIALS — Two-row opposite-direction marquee
   ═══════════════════════════════════════════════════════ */

.gm-sh-testimonials {
	padding: clamp(3rem, 5vw, 5rem) 0;
	background: var(--gm-overlay-faint);
	overflow: hidden;
}

.gm-sh-testimonials__header {
	text-align: center;
	max-width: var(--gm-shell);
	margin: 0 auto clamp(2rem, 3vw, 3rem);
}

.gm-sh-testimonials__title {
	font-family: var(--gm-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gm-color-ink);
	margin: 0;
}

/* Panel container */
.gm-sh-testimonials__panel {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Each marquee row */
.gm-sh-testimonials__row {
	overflow: hidden;
}

/* Track (scrolling container inside row) */
.gm-sh-testimonials__track {
	display: flex;
	width: max-content;
}

.gm-sh-testimonials__row--left .gm-sh-testimonials__track {
	animation: gm-testi-left 80s linear infinite;
}

.gm-sh-testimonials__row--right .gm-sh-testimonials__track {
	animation: gm-testi-right 80s linear infinite;
}

.gm-sh-testimonials__row:hover .gm-sh-testimonials__track {
	animation-play-state: paused;
}

@keyframes gm-testi-left {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@keyframes gm-testi-right {
	from { transform: translateX(-50%); }
	to   { transform: translateX(0); }
}

/* Set (group of cards, duplicated for seamless loop) */
.gm-sh-testimonials__set {
	display: inline-flex;
	gap: 1.5rem;
	flex-shrink: 0;
	padding-right: 1.5rem;
}

/* Testimonial card */
.gm-sh-testimonial {
	min-width: 300px;
	max-width: 380px;
	padding: 2rem;
	border-radius: var(--gm-radius-card);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-shrink: 0;
}

/* Card bg color variants */
.gm-sh-testimonial--accent {
	background: var(--gm-color-brand-accent);
	color: var(--gm-color-white);
}

.gm-sh-testimonial--blue {
	background: var(--gm-color-blue);
	color: var(--gm-color-white);
}

.gm-sh-testimonial--yellow {
	background: var(--gm-color-yellow);
	color: var(--gm-color-ink);
}

.gm-sh-testimonial--green {
	background: color-mix(in oklch, var(--gm-color-blue) 40%, var(--gm-color-yellow));
	color: var(--gm-color-ink);
}

.gm-sh-testimonial--surface {
	background: var(--gm-color-surface);
	color: var(--gm-color-ink);
	border: 1px solid var(--gm-color-line);
}

/* Avatar dots */
.gm-sh-testimonial__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.gm-sh-testimonial--yellow .gm-sh-testimonial__avatar,
.gm-sh-testimonial--green .gm-sh-testimonial__avatar {
	background: var(--gm-overlay-light);
}

.gm-sh-testimonial--surface .gm-sh-testimonial__avatar {
	background: var(--gm-color-bg);
}

/* Quote text */
.gm-sh-testimonial__quote {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	line-height: 1.65;
	margin: 0;
	flex: 1;
}

/* Cite */
.gm-sh-testimonial__cite {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-caption);
	font-weight: var(--gm-fw-semibold);
	font-style: normal;
	opacity: 0.8;
	margin: 0;
}

/* Testimonials responsive */
@media (max-width: 639px) {
	.gm-sh-testimonial {
		min-width: 260px;
		max-width: 300px;
		padding: 1.5rem;
	}

	.gm-sh-testimonials__row--left .gm-sh-testimonials__track {
		animation-duration: 50s;
	}

	.gm-sh-testimonials__row--right .gm-sh-testimonials__track {
		animation-duration: 50s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gm-sh-testimonials__row--left .gm-sh-testimonials__track,
	.gm-sh-testimonials__row--right .gm-sh-testimonials__track {
		animation-play-state: paused;
	}
}


/* ═══════════════════════════════════════════════════════
   9. FAQ — Accordion with grid-row animation
   ═══════════════════════════════════════════════════════ */

.gm-sh-faq {
	padding: var(--gm-section-space) 0;
	width: 800px;
	max-width: calc(100% - 2rem);
	margin: 0 auto;
	line-height: 1.3;
}

.gm-sh-faq > .gm-sh-section-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	letter-spacing: -0.04em;
	margin-bottom: clamp(2rem, 3vw, 3rem);
}

.gm-sh-faq__list {
	display: flex;
	flex-direction: column;
}

.gm-sh-faq__item {
	border-bottom: 1px solid var(--gm-color-line);
}

.gm-sh-faq__item:first-child {
	border-top: none;
}

/* Toggle button */
.gm-sh-faq__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--gm-font-body);
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-ink);
	transition: color var(--gm-transition);
}

.gm-sh-faq__toggle:hover {
	color: var(--gm-color-brand-accent);
}

.gm-sh-faq__toggle:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: -2px;
}

/* Old FAQ icon styles removed — replaced by SuperHi-style in section below */

/* Answer — grid-template-rows animation */
.gm-sh-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.gm-sh-faq__item.is-open .gm-sh-faq__answer {
	grid-template-rows: 1fr;
}

.gm-sh-faq__answer-inner {
	overflow: hidden;
}

.gm-sh-faq__answer-inner p {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	line-height: 1.65;
	color: var(--gm-color-muted);
	margin: 0;
	padding: 0 0 1.25rem;
}

/* FAQ responsive */
@media (max-width: 639px) {
	.gm-sh-faq {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.gm-sh-faq__toggle {
		font-size: 1rem;
		padding: 1rem 0;
	}
}


/* ═══════════════════════════════════════════════════════
   10. TRUSTED — Stat cards grid / social proof
   ═══════════════════════════════════════════════════════ */

.gm-sh-trusted {
	padding: var(--gm-section-space) 0;
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
}

.gm-sh-trusted__header {
	text-align: center;
	margin-bottom: clamp(2rem, 3vw, 3rem);
}

.gm-sh-trusted__title {
	font-family: var(--gm-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gm-color-ink);
	margin: 0;
}

.gm-sh-trusted__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.gm-sh-trusted__card {
	background: var(--gm-color-surface);
	border: 1px solid var(--gm-color-line);
	border-radius: var(--gm-radius-card);
	padding: 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: all var(--gm-transition);
}

.gm-sh-trusted__card:hover {
	transform: translateY(-4px);
	border-color: var(--gm-color-line-hover);
	box-shadow: var(--gm-shadow-subtle);
}

/* Colored card variants */
.gm-sh-trusted__card--accent {
	background: color-mix(in srgb, var(--gm-color-brand-accent) 8%, var(--gm-color-surface));
	border-color: color-mix(in srgb, var(--gm-color-brand-accent) 18%, transparent);
}

.gm-sh-trusted__card--blue {
	background: color-mix(in srgb, var(--gm-color-blue) 8%, var(--gm-color-surface));
	border-color: color-mix(in srgb, var(--gm-color-blue) 18%, transparent);
}

.gm-sh-trusted__card--yellow {
	background: color-mix(in srgb, var(--gm-color-yellow) 8%, var(--gm-color-surface));
	border-color: color-mix(in srgb, var(--gm-color-yellow) 18%, transparent);
}

.gm-sh-trusted__card--green {
	background: color-mix(in srgb, color-mix(in oklch, var(--gm-color-blue) 40%, var(--gm-color-yellow)) 8%, var(--gm-color-surface));
	border-color: color-mix(in srgb, color-mix(in oklch, var(--gm-color-blue) 40%, var(--gm-color-yellow)) 18%, transparent);
}

.gm-sh-trusted__stat {
	font-family: var(--gm-font-display);
	font-size: clamp(2.5rem, 4.5vw, 4rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.0;
	color: var(--gm-color-ink);
}

.gm-sh-trusted__stat-suffix {
	font-size: 0.6em;
	color: var(--gm-color-brand-accent);
	vertical-align: super;
}

.gm-sh-trusted__stat-label {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-ink);
	margin: 0;
}

.gm-sh-trusted__detail {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-caption);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-muted);
	margin: 0;
	line-height: 1.4;
}

/* Trusted responsive */
@media (max-width: 989px) {
	.gm-sh-trusted__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.gm-sh-trusted__card {
		flex-direction: row;
		text-align: left;
		align-items: center;
		gap: 1.5rem;
	}
}


/* ═══════════════════════════════════════════════════════
   11. FEATURED — Wide CTA card with image
   ═══════════════════════════════════════════════════════ */

.gm-sh-featured {
	padding: var(--gm-section-space) 0;
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
}

.gm-sh-featured__card {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	align-items: flex-end;
}

.gm-sh-featured__image {
	position: absolute;
	inset: 0;
}

.gm-sh-featured__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gm-sh-featured__card:hover .gm-sh-featured__image img {
	transform: scale(1.03);
}

.gm-sh-featured__overlay {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 3rem;
	background: linear-gradient(to top, var(--gm-color-ink), transparent);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.gm-sh-featured__eyebrow {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-caption);
	font-weight: var(--gm-fw-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.gm-sh-featured__title {
	font-family: var(--gm-font-display);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: var(--gm-fw-bold);
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--gm-color-white);
	margin: 0;
	max-width: 50ch;
}

.gm-sh-featured__desc {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	max-width: 50ch;
}

.gm-sh-featured__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-white);
	background: var(--gm-color-brand-accent);
	border: none;
	border-radius: var(--gm-radius-pill);
	padding: 0.6rem 1.5rem;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--gm-transition);
	align-self: flex-start;
}

.gm-sh-featured__cta:hover {
	background: var(--gm-color-brand-accent-strong);
	transform: translateY(-1px);
}

.gm-sh-featured__cta:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

/* Featured responsive */
@media (max-width: 639px) {
	.gm-sh-featured__card {
		min-height: 300px;
	}

	.gm-sh-featured__overlay {
		padding: 2rem 1.5rem;
	}
}


/* ═══════════════════════════════════════════════════════
   12. BRAND ICON — Floating centered circle
   ═══════════════════════════════════════════════════════ */

.gm-sh-brand-icon {
	display: flex;
	justify-content: center;
	padding: var(--gm-section-space) 0;
}

.gm-sh-brand-icon__circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--gm-color-brand-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: gm-brand-float 3s ease-in-out infinite;
}

.gm-sh-brand-icon__circle svg,
.gm-sh-brand-icon__circle img {
	width: 56px;
	height: 56px;
	fill: var(--gm-color-white);
}

@keyframes gm-brand-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
	.gm-sh-brand-icon__circle {
		animation: none;
	}
}


/* ═══════════════════════════════════════════════════════
   13. Shared link / pill / button helpers
   ═══════════════════════════════════════════════════════ */

/* Shared link style */
.gm-sh-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-semibold);
	color: var(--gm-color-brand-accent);
	text-decoration: none;
	transition: color var(--gm-transition);
}

.gm-sh-link:hover {
	color: var(--gm-color-brand-accent-strong);
	text-decoration: underline;
}

.gm-sh-link:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

.gm-sh-link svg {
	width: 14px;
	height: 10px;
}

/* Tab pills (shared by products + where-to-start) */
.gm-sh-pills {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.gm-sh-pill {
	font-family: var(--gm-font-body);
	font-size: var(--gm-fs-body);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-ink);
	background: transparent;
	border: 1px solid var(--gm-color-line);
	border-radius: var(--gm-radius-pill);
	padding: 0.4rem 1rem;
	cursor: pointer;
	transition: all var(--gm-transition);
	white-space: nowrap;
}

.gm-sh-pill:hover {
	background: var(--gm-overlay-faint);
	border-color: var(--gm-color-line-hover);
}

.gm-sh-pill:focus-visible {
	outline: 2px solid var(--gm-color-blue);
	outline-offset: 2px;
}

.gm-sh-pill.is-active {
	background: var(--gm-color-ink);
	color: var(--gm-color-surface);
	border-color: var(--gm-color-ink);
}


/* ═══════════════════════════════════════════════════════
   14. GLOBAL RESPONSIVE — Section-level overrides
   ═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 989px) {
	.gm-sh-home {
		gap: 32px;
	}
}

/* Mobile */
@media (max-width: 639px) {
	.gm-sh-home {
		gap: 24px;
	}

	.gm-sh-section-title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}
}


/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION — SuperHi Accordion_default style
   ═══════════════════════════════════════════════════════ */

.gm-sh-faq {
	width: 100%;
	max-width: 100%;
	padding: 0;
	background: var(--gm-color-bg);
}

.gm-sh-faq__inner {
	width: var(--gm-shell);
	margin: 0 auto;
}

.gm-sh-faq__title {
	margin: 0 0 2rem;
	font-family: var(--gm-font-description);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--gm-color-ink);
}

.gm-sh-faq__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gm-sh-faq__item {
	background: var(--gm-color-surface);
	border-radius: 24px;
	border: none;
	overflow: hidden;
}

.gm-sh-faq__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 20px 28px;
	cursor: pointer;
	list-style: none;
}

.gm-sh-faq__summary::-webkit-details-marker { display: none; }
.gm-sh-faq__summary::marker { display: none; content: ""; }

.gm-sh-faq__summary h3 {
	margin: 0;
	font-family: var(--gm-font-body);
	font-size: clamp(1.5rem, 2.4vw, 2.1875rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--gm-color-ink);
}

.gm-sh-faq__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	position: relative;
	transition: transform 0.3s ease;
}

/* Horizontal bar */
.gm-sh-faq__icon::before,
.gm-sh-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--gm-color-ink);
}

.gm-sh-faq__icon::before {
	width: 20px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}

/* Vertical bar (forms the +) */
.gm-sh-faq__icon::after {
	width: 1.5px;
	height: 20px;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Open: vertical bar rotates to form × */
.gm-sh-faq__item[open] .gm-sh-faq__icon {
	transform: rotate(45deg);
}

.gm-sh-faq__answer {
	padding: 0 28px 24px;
}

.gm-sh-faq__answer p {
	margin: 0;
	font-family: var(--gm-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gm-color-ink);
	max-width: 56ch;
}

/* FAQ responsive */
@media (max-width: 989px) {
	.gm-sh-faq__inner {
		padding: 0;
	}

	.gm-sh-faq__title {
		font-size: clamp(2rem, 5vw, 2.5rem);
	}

	.gm-sh-faq__summary h3 {
		font-size: clamp(1.1rem, 3vw, 1.35rem);
	}

	.gm-sh-faq__summary {
		padding: 16px 20px;
	}

	.gm-sh-faq__answer {
		padding: 0 20px 20px;
	}
}

/* ══════════════════════════════════════════════════════════════
   Product Cards — Playa-style hover-reveal
   ══════════════════════════════════════════════════════════════ */

/* ── Product Cards — things.inc logs-home style ── */
.gm-product-cards {
	padding: 0;
}

.gm-product-cards__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 1.5rem;
	align-items: stretch;
	height: clamp(380px, 33vw, 470px);
	overflow: hidden;
}

/* Side column: 2 cards side by side */
.gm-product-cards__side {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

/* Shared link reset — stretch to fill grid cell */
.gm-product-cards__featured,
.gm-product-cards__card {
	text-decoration: none;
	color: inherit;
	display: block;
	min-height: 0;
}

.gm-product-cards__side {
	min-height: 0;
}

/* Frame — colored border via bg + padding (like things.inc) */
.gm-product-cards__frame {
	position: relative;
	background: #fff;
	transition: background 0.3s ease;
	border-radius: 1.75rem;
	padding: 0.75rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}


/* Badge (featured only) */
.gm-product-cards__badge {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	background: var(--gm-color-surface);
	color: var(--gm-color-ink);
	font-family: var(--gm-font-description);
	font-size: 0.8rem;
	font-weight: var(--gm-fw-medium);
	padding: 0.4rem 0.9rem;
	border-radius: var(--gm-radius-pill);
	z-index: 2;
}

/* Arrow button — default: brand color bg + white dot top-right */
.gm-product-cards__arrow {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 3rem;
	height: 3rem;
	border-radius: 1.2rem;
	background: var(--frame-color);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	color: var(--gm-color-surface);
	transition: background 0.25s ease, color 0.25s ease;
}

/* White dot — positioned upper-right inside the square */
.gm-product-cards__arrow::before {
	content: '';
	position: absolute;
	top: 0.6rem;
	right: 0.7rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gm-color-surface);
	transition: opacity 0.25s ease;
}

/* Arrow SVG hidden by default */
.gm-product-cards__arrow svg {
	opacity: 0;
	transition: opacity 0.25s ease;
}

/* Hover: card bg → brand color */
.gm-product-cards__frame:hover {
	background: var(--frame-color);
}

/* Hover: square → white, arrow → brand color */
.gm-product-cards__frame:hover .gm-product-cards__arrow {
	background: var(--gm-color-surface);
	color: var(--frame-color);
}

.gm-product-cards__frame:hover .gm-product-cards__arrow::before {
	opacity: 0;
}

.gm-product-cards__frame:hover .gm-product-cards__arrow svg {
	opacity: 1;
}

/* Image wrap — inner radius = frame radius - frame padding */
.gm-product-cards__img-wrap {
	border-radius: 1rem;
	overflow: hidden;
	flex: 1;
}

.gm-product-cards__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.gm-product-cards__frame:hover .gm-product-cards__img-wrap img {
	transform: scale(1.05);
}

/* Side cards — smaller padding, adjusted inner radius */
.gm-product-cards__side .gm-product-cards__frame {
	padding: 0.45rem;
}

.gm-product-cards__side .gm-product-cards__img-wrap {
	border-radius: 1.3rem;
}

/* Product images — contain, not cover */
.gm-product-cards__side .gm-product-cards__img-wrap {
	background: var(--gm-color-surface);
}

.gm-product-cards__side .gm-product-cards__img-wrap img {
	object-fit: contain;
	padding: 1rem;
}

/* Meta section */
.gm-product-cards__meta {
	padding: 1rem 0.5rem 0.5rem;
}

.gm-product-cards__title {
	font-family: var(--gm-font-body);
	font-size: clamp(1rem, 1.6vw, 1.4rem);
	font-weight: var(--gm-fw-medium);
	color: var(--gm-color-ink);
	line-height: 1.3;
	margin: 0;
}

.gm-product-cards__sub {
	font-family: var(--gm-font-body);
	font-size: clamp(0.75rem, 1vw, 0.9rem);
	color: var(--gm-color-muted);
	margin: 0.25rem 0 0;
	line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 989px) {
	.gm-product-cards {
		padding: 0;
	}

	.gm-product-cards__grid {
		grid-template-columns: 1fr;
		height: auto;
		overflow: visible;
		gap: 1rem;
	}

	.gm-product-cards__featured .gm-product-cards__frame {
		min-height: clamp(280px, 70vw, 420px);
	}

	.gm-product-cards__side {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.gm-product-cards__side .gm-product-cards__frame {
		min-height: clamp(220px, 50vw, 320px);
	}

	.gm-product-cards__badge {
		top: 0.9rem;
		left: 0.9rem;
		font-size: 0.75rem;
		padding: 0.35rem 0.75rem;
	}

	.gm-product-cards__arrow {
		top: 0.9rem;
		right: 0.9rem;
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 1rem;
	}

	.gm-product-cards__side .gm-product-cards__arrow {
		width: 2.25rem;
		height: 2.25rem;
		border-radius: 0.85rem;
		top: 0.7rem;
		right: 0.7rem;
	}

	.gm-product-cards__side .gm-product-cards__img-wrap img {
		padding: 0.6rem;
	}

	.gm-product-cards__meta {
		padding: 0.85rem 0.5rem 0.4rem;
	}

	.gm-product-cards__title {
		font-size: 0.95rem;
	}

	.gm-product-cards__sub {
		font-size: 0.75rem;
	}
}

@media (max-width: 480px) {
	.gm-product-cards__side {
		gap: 0.6rem;
	}

	.gm-product-cards__side .gm-product-cards__frame {
		min-height: clamp(180px, 42vw, 240px);
		padding: 0.4rem;
	}

	.gm-product-cards__side .gm-product-cards__arrow {
		width: 1.85rem;
		height: 1.85rem;
		border-radius: 0.7rem;
		top: 0.55rem;
		right: 0.55rem;
	}

	.gm-product-cards__side .gm-product-cards__img-wrap img {
		padding: 0.4rem;
	}

	.gm-product-cards__side .gm-product-cards__title {
		font-size: 0.82rem;
	}

	.gm-product-cards__side .gm-product-cards__sub {
		font-size: 0.68rem;
	}

	.gm-product-cards__side .gm-product-cards__meta {
		padding: 0.6rem 0.35rem 0.3rem;
	}
}

/* ══════════════════════════════════════════════════════════════
   Block Charts — Raw Materials divider + capabilities style
   ══════════════════════════════════════════════════════════════ */

.gm-block-charts {
	width: var(--gm-shell);
	max-width: 100%;
	margin: 0 auto;
	padding: 48px 24px 0;
	box-sizing: content-box;
}

/* ── Big Divider — video bg + title ── */
.gm-block-charts__divider {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 144px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--gm-color-brand-accent);
	margin-bottom: 16px;
}

.gm-block-charts__divider-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.gm-block-charts__divider-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.gm-block-charts__divider-title {
	position: relative;
	z-index: 2;
	flex: 1;
	font-family: var(--gm-font-body);
	font-size: clamp(3rem, 7vw, 6.25rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -1px;
	color: var(--gm-color-surface);
	text-align: center;
	margin: 0;
}

.gm-block-charts__divider-label {
	position: relative;
	z-index: 2;
	font-family: var(--gm-font-body);
	font-size: 14px;
	font-weight: 400;
	color: rgba(0,0,0,0.5);
	white-space: nowrap;
}

.gm-block-charts__divider-label--left {
	margin-left: 48px;
}

.gm-block-charts__divider-label--right {
	margin-right: 48px;
}

/* ── Capabilities Block — 3 columns ── */
.gm-block-charts__caps {
	display: flex;
	gap: 16px;
}

.gm-block-charts__cap {
	flex: 1;
	background: #fff;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	padding: 1rem 0 32px;
}

.gm-block-charts__cap-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
	margin-bottom: 14px;
}

.gm-block-charts__cap-title {
	font-family: var(--gm-font-body);
	font-size: 36px;
	font-weight: 400;
	color: var(--gm-color-ink);
	margin: 0;
	letter-spacing: 0.02em;
}

.gm-block-charts__cap-num {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	border: 1px solid var(--gm-color-ink);
	border-radius: 24px;
	font-family: var(--gm-font-body);
	font-size: 36px;
	font-weight: 400;
	color: var(--gm-color-ink);
	padding: 0 1rem;
}

.gm-block-charts__cap-list {
	display: flex;
	flex-direction: column;
	padding: 0 30px;
}

.gm-block-charts__cap-tag {
	font-family: var(--gm-font-body);
	font-size: 17px;
	font-weight: 400;
	color: var(--gm-color-ink);
	line-height: 39px;
	height: 39px;
	border-top: 1px solid #83807C;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gm-block-charts__cap-tag--first {
	border-top: none;
	font-size: 24px;
	font-weight: 700;
	line-height: 52px;
	height: 52px;
}

/* ── Mobile ── */
@media (max-width: 989px) {
	.gm-block-charts {
		padding: 0 16px;
	}

	.gm-block-charts__divider {
		height: 100px;
	}

	.gm-block-charts__divider-label {
		display: none;
	}

	.gm-block-charts__caps {
		flex-direction: column;
	}
}

/* ══════════════════════════════════════════════════════════════
   Category Slider — CoLabs-style horizontal video cards
   ══════════════════════════════════════════════════════════════ */

.gm-cat-slider {
	overflow: hidden;
	padding: 48px 0 0;
	width: var(--gm-shell);
	margin-inline: auto;
}

.gm-cat-slider__track {
	display: flex;
	gap: 10px;
	width: max-content;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gm-cat-slider__card {
	flex: 0 0 calc((var(--gm-shell) - 30px) / 4);
	height: auto;
	aspect-ratio: 2 / 1;
	background: transparent;
	position: relative;
	overflow: visible;
}

.gm-cat-slider__card-link {
	display: block;
	padding: 20px 30px;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	background: transparent;
}

.gm-cat-slider__card-title {
	position: relative;
	z-index: 2;
	max-width: 60%;
	font-family: var(--gm-font-body);
	font-size: 34px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.05em;
	color: var(--gm-color-white);
	margin: 0;
}

.gm-cat-slider__card-media {
	position: absolute;
	inset: 0;
	border-radius: 30px;
	overflow: hidden;
	z-index: 0;
}

.gm-cat-slider__card-media video,
.gm-cat-slider__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gm-cat-slider__card-action {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: flex-end;
	z-index: 3;
}

.gm-cat-slider__card-cta {
	display: none;
}

.gm-cat-slider__card-arrow-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: 0 7px 7px 0;
}

.gm-cat-slider__card-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gm-color-white);
	transition: transform 0.2s ease;
}

.gm-cat-slider__card:hover .gm-cat-slider__card-arrow {
	transform: scale(1.1);
}

.gm-cat-slider__card-curve {
	position: absolute;
	display: block !important;
	width: 14px;
	height: 14px;
	z-index: 4;
}

.gm-cat-slider__card-curve path {
	fill: var(--gm-color-bg, #F0F0F2);
}

.gm-cat-slider__card-curve--top {
	top: -14px;
	right: 0;
}

.gm-cat-slider__card-curve--left {
	bottom: 0;
	left: -14px;
	transform: rotate(-90deg);
}

.gm-cat-slider__cta-wrap {
	display: flex;
	justify-content: center;
	padding: 56px 0 24px;
}

.gm-cat-slider__cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 7px 40px;
	border-radius: 999px;
	background: var(--gm-color-brand-accent);
	color: var(--gm-color-white);
	text-decoration: none;
	font-family: var(--gm-font-body);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.02em;
	transition: transform 0.25s ease, background 0.25s ease;
}

.gm-cat-slider__cta:hover,
.gm-cat-slider__cta:focus-visible {
	transform: translateY(-2px);
	background: color-mix(in srgb, var(--gm-color-brand-accent) 88%, #000);
}

.gm-cat-slider__cta-arrow {
	transition: transform 0.25s ease;
}

.gm-cat-slider__cta:hover .gm-cat-slider__cta-arrow,
.gm-cat-slider__cta:focus-visible .gm-cat-slider__cta-arrow {
	transform: translateX(4px);
}

@media (max-width: 989px) {
	.gm-cat-slider__card {
		flex: 0 0 calc((var(--gm-shell) - 10px) / 2);
		aspect-ratio: 4 / 3;
		height: auto;
	}

	.gm-cat-slider__card-title {
		font-size: 26px;
		max-width: 60%;
	}
}
