/* ============================================================
 * Home page - sourced from Figma node 145:537
 * ============================================================ */

.pc-home { display: block; position: relative; background: transparent; }
/* Front page only - solid orange band on <html> behind a fixed-height hero,
   body transparent so it bleeds full viewport including scrollbar gutter. */
body.home { background: transparent !important; }
html:has(body.home) {
	background: #fff;
	scrollbar-color: rgba(28, 28, 25, 0.25) transparent;
	overflow-x: clip;
}
body.home { overflow-x: clip; }
html:has(body.home)::-webkit-scrollbar { background: transparent; width: 12px; }
html:has(body.home)::-webkit-scrollbar-track { background: transparent; }
html:has(body.home)::-webkit-scrollbar-thumb { background: rgba(28, 28, 25, 0.3); border-radius: 8px; border: 3px solid transparent; background-clip: content-box; }
html:has(body.home)::-webkit-scrollbar-thumb:hover { background: rgba(28, 28, 25, 0.5); background-clip: content-box; }

/* Reveal pre-hide for HOME-only sections.
 * Hero excluded: it is always above the fold and is the LCP candidate.
 * Pre-hiding it pushes Lighthouse LCP by 3-4s.
 * Footer + newsletter pre-hide lives in base.css (apply on all pages). */
.pc-js .pc-stories__title,
.pc-js .pc-stories__carousel,
.pc-js .pc-stories__cta > *,
.pc-js .pc-quiz__copy > *,
.pc-js .pc-quiz__visual > *,
.pc-js .pc-features__title,
.pc-js .pc-features__row > * {
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.6s cubic-bezier(.2,.7,.2,1) var(--pc-reveal-delay, 0ms),
		transform 0.6s cubic-bezier(.2,.7,.2,1) var(--pc-reveal-delay, 0ms);
	will-change: opacity, transform;
}
@media (prefers-reduced-motion: reduce) {
	.pc-js .pc-stories__title,
	.pc-js .pc-stories__carousel,
	.pc-js .pc-stories__cta > *,
	.pc-js .pc-quiz__copy > *,
	.pc-js .pc-quiz__visual > *,
	.pc-js .pc-features__title,
	.pc-js .pc-features__row > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ========== Hero ========== */
/* Figma 822:3097 - gradient frame is 622px tall extending from y=84 to y=706.
 * Hero content is only y=84 to y=382, so gradient overlaps stories top ~324px.
 * Solution: backdrop layer on .pc-home that holds both CSS gradient + WebGL canvas,
 * positioned at top, height 622px, behind all sections. */
.pc-home__band {
	position: relative;
	/* Bleed across the scrollbar gutter so the right edge has no white strip. */
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: max(0px, calc(50vw - 50%));
	padding-right: max(0px, calc(50vw - 50%));
}
.pc-home__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	background: linear-gradient(
		180deg,
		#ff6a00 0%,
		#ff8a3a 15%,
		#ffb585 30%,
		#ffd9bf 40%,
		#fff0e3 47%,
		#ffffff 55%,
		#ffffff 100%
	);
}
.pc-home__backdrop::after { display: none; }
@keyframes pc-hero-breathe {
	0%   { transform: translate(-1%, -1%) scale(1);    opacity: 1;   }
	100% { transform: translate(2%, 1.5%) scale(1.05); opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) {
	.pc-home__backdrop::after { animation: none; }
}
.pc-home__backdrop > .pc-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.pc-hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	color: rgba(255, 255, 255, 0.85);
}
.pc-hero__grid-base,
.pc-hero__grid-bright {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.pc-hero__grid-base   { opacity: 0.025; }
.pc-hero__grid-bright { opacity: 0.18; }
.pc-hero {
	position: relative;
	z-index: 1;
	background: transparent;
}
.pc-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--pc-container-max);
	margin-inline: auto;
	padding: 80px var(--pc-container-pad) 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}
.pc-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-white);
	margin: 0;
}
.pc-hero__title {
	font-family: var(--pc-font);
	font-weight: 700;
	font-size: 48px;
	line-height: 56px;
	color: var(--pc-white);
	margin: 8px 0 0;
}
.pc-hero__sub {
	font-family: var(--pc-font);
	font-weight: 600;
	font-style: italic;
	font-size: 18px;
	line-height: 26px;
	color: var(--pc-white);
	margin: 16px 0 0;
}
.pc-hero__stats {
	display: flex;
	gap: 0;
	margin: 64px 0 0;
	padding: 0;
	list-style: none;
	align-items: center;
}
.pc-hero__stats li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 0 64px;
	position: relative;
}
.pc-hero__stats li + li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 50px;
	background: rgba(28, 28, 25, 0.18);
}
.pc-hero__stats strong {
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	color: var(--pc-heading);
}
.pc-hero__stats span {
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-heading);
	text-transform: uppercase;
}

/* ========== Stories ========== */
.pc-stories {
	padding: 80px 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.pc-stories__head {
	max-width: var(--pc-container-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--pc-container-pad);
	text-align: center;
}
.pc-stories__title {
	font-family: var(--pc-font);
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	color: var(--pc-heading);
	margin: 0;
}
/* Stories carousel - scroll-snap, archive-card style.
 * Strategy: viewport horizontal padding gives first/last card shadow breathing room.
 * Vertical shadow handled via padding-block + neg margin-block trick.
 */
.pc-stories__carousel {
	position: relative;
	width: 100%;
	max-width: var(--pc-container-max);
	margin-inline: auto;
	padding: 0 var(--pc-container-pad);
}
.pc-stories__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-block: 32px;
	margin-block: -32px;
	min-width: 0;
}
.pc-stories__viewport::-webkit-scrollbar { display: none; }
.pc-stories__viewport:focus-visible {
	outline: 2px solid var(--pc-primary);
	outline-offset: 4px;
	border-radius: 12px;
}
.pc-stories__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 3 * 24px) / 4);
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pc-stories__slide {
	scroll-snap-align: start;
	min-width: 0;
}
.pc-stories__slide .pc-archive__card { width: 100%; }
.pc-stories__slide .pc-archive__card-meta { width: 100%; min-width: 0; }
.pc-stories__slide .pc-archive__card-name {
	display: block;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Nav arrows - same fill-sweep + lift treatment as CTA buttons */
.pc-stories__nav {
	position: absolute;
	top: calc(50% - 40px);
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: var(--pc-r);
	background: var(--pc-white);
	border: 1.5px solid var(--pc-primary);
	color: var(--pc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	box-shadow: 0 4px 16px rgba(255, 106, 0, 0.18);
	transition:
		color .3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color .3s cubic-bezier(0.4, 0, 0.2, 1),
		transform .4s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow .4s cubic-bezier(0.4, 0, 0.2, 1),
		opacity .2s ease;
	z-index: 2;
}
.pc-stories__nav::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--pc-primary);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.pc-stories__nav:not(:hover)::before { transform-origin: right center; }
.pc-stories__nav:hover:not([disabled]) {
	color: var(--pc-white);
	transform: translateY(-50%) translateY(-3px);
	box-shadow: 0 12px 28px rgba(255, 106, 0, 0.32);
}
.pc-stories__nav:hover:not([disabled])::before {
	transform: scaleX(1);
	transform-origin: left center;
}
.pc-stories__nav:focus-visible {
	outline: 2px solid var(--pc-primary);
	outline-offset: 2px;
}
.pc-stories__nav[disabled] {
	opacity: 0.35;
	cursor: not-allowed;
}
.pc-stories__nav--prev { left: 64px; }
.pc-stories__nav--next { right: 64px; }
@media (min-width: 1281px) {
	.pc-stories__nav--prev { left: 76px; }
	.pc-stories__nav--next { right: 76px; }
}

/* Pagination dots */
.pc-stories__dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 16px;
}
/* WCAG 2.5.5: each interactive control needs >= 24x24px hit area. The dot is
 * styled visually as an 8px pill via the inner ::before pseudo, while the
 * <button> itself stays 24x24 so taps register reliably. */
.pc-stories__dot {
	width: 24px;
	height: 24px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.pc-stories__dot::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(28, 28, 25, 0.2);
	transition: background .2s, width .2s, border-radius .2s;
}
.pc-stories__dot[aria-current="true"]::before,
.pc-stories__dot[aria-selected="true"]::before,
.pc-stories__dot.is-active::before {
	background: var(--pc-primary);
	width: 24px;
	border-radius: 4px;
}
.pc-stories__dot:focus-visible {
	outline: 2px solid var(--pc-primary);
	outline-offset: 2px;
}

@media (max-width: 1440px) {
	.pc-stories__carousel { padding: 0 64px; }
	.pc-stories__nav--prev { left: 16px; }
	.pc-stories__nav--next { right: 16px; }
}
@media (max-width: 1080px) {
	.pc-stories__carousel { padding: 0 32px; }
	.pc-stories__track { grid-auto-columns: calc((100% - 2 * 24px) / 3); }
}
@media (max-width: 820px) {
	.pc-stories__track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 560px) {
	.pc-stories__carousel { padding: 0 16px; }
	.pc-stories__track { grid-auto-columns: calc((100vw - 56px) / 2.2); gap: 16px; }
	.pc-stories__nav { display: none; }
	.pc-stories__slide .pc-archive__card-name { font-size: 14px; line-height: 22px; }
	.pc-stories__slide .pc-archive__card-sport { font-size: 12px; line-height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
	.pc-stories__viewport { scroll-behavior: auto; }
	.pc-stories__nav, .pc-stories__dot { transition: none; }
}

.pc-story-card {
	flex: 0 0 277px;
	scroll-snap-align: start;
	background: var(--pc-white);
	border-radius: var(--pc-r);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.11);
	overflow: hidden;
	transition: transform .15s, box-shadow .15s;
	will-change: transform;
}
.pc-story-card.pc-reveal:not(.is-revealed) {
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.45s ease var(--pc-reveal-delay, 0ms),
		transform 0.45s ease var(--pc-reveal-delay, 0ms);
}
.pc-story-card.pc-reveal.is-revealed {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.45s ease var(--pc-reveal-delay, 0ms),
		transform 0.45s ease var(--pc-reveal-delay, 0ms),
		filter 0.35s ease;
}
.pc-story-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.pc-story-card__link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.pc-story-card__media {
	position: relative;
	width: 100%;
	height: 344px;
	overflow: hidden;
	background: var(--pc-img-bg);
	border-top-left-radius: var(--pc-r);
	border-top-right-radius: var(--pc-r);
}
.pc-story-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,0.45) 50%,
		rgba(255,255,255,0) 100%);
	animation: pc-shimmer 1.4s ease-in-out infinite;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.3s;
}
.pc-story-card__media.is-loaded::before {
	opacity: 0;
	animation: none;
}
@keyframes pc-shimmer {
	0%   { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}
.pc-story-card__img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
}
.pc-story-card__media.is-loaded .pc-story-card__img {
	opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
	.pc-story-card__media::before { animation: none; }
}
.pc-story-card__meta {
	background: var(--pc-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 12px 8px;
	text-align: center;
	border-bottom-left-radius: var(--pc-r);
	border-bottom-right-radius: var(--pc-r);
}
.pc-story-card__name {
	font-family: var(--pc-font);
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: var(--pc-heading);
	margin: 0;
	text-transform: uppercase;
	white-space: nowrap;
}
.pc-story-card__sport {
	font-family: var(--pc-font);
	font-weight: 800;
	font-size: 14px;
	line-height: 22px;
	color: var(--pc-primary);
	margin: 0;
	text-transform: uppercase;
}

.pc-stories__cta {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 var(--pc-container-pad);
}

/* ========== Quiz CTA - Figma 822:3182 ========== */
.pc-quiz {
	background: #fff5f0;
	padding: 56px 0;
}
.pc-quiz__inner {
	max-width: var(--pc-container-max);
	margin-inline: auto;
	padding: 0 var(--pc-container-pad);
	display: flex;
	gap: 151px;
	justify-content: center;
	align-items: flex-start;
}
.pc-quiz__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}
.pc-quiz__copy > * { margin: 0; }
.pc-quiz__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	/* Small uppercase text on peach background - use darker orange token to
	 * clear WCAG AA contrast (was 2.68:1, now 4.6:1). */
	color: var(--pc-primary-text);
	text-transform: uppercase;
}
.pc-quiz__eyebrow-dot {
	display: inline-block;
	width: 5px;
	height: 5px;
	background: var(--pc-primary);
}
.pc-quiz__title {
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 40px;
	line-height: 48px;
	color: var(--pc-heading);
	display: flex;
	flex-direction: column;
	gap: 0;
}
.pc-quiz__title-line { display: block; }
/* WCAG: brand #ff6a00 on light bg only hits 2.87:1 - even large text needs
 * 3:1. Switch all on-light orange text to the darker accessible token. */
.pc-quiz__title-accent { color: var(--pc-primary-text); }
.pc-quiz__sub-eyebrow {
	font-family: var(--pc-font);
	font-weight: 500;
	font-style: italic;
	font-size: 16px;
	line-height: 24px;
	/* WCAG AA: small italic text needs 4.5:1; the brand orange only hits 2.7. */
	color: var(--pc-primary-text);
	text-transform: uppercase;
}
.pc-quiz__cta-row { display: block; }
.pc-quiz__proof {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-desc);
}
.pc-quiz__proof-strong { color: var(--pc-heading); font-weight: 500; }
.pc-quiz__avatars {
	display: inline-flex;
	align-items: center;
	padding-right: 8px;
}
.pc-quiz__avatar {
	width: 32px !important;
	height: 32px !important;
	border-radius: 30px;
	object-fit: cover;
	margin-right: -8px;
}

.pc-quiz__visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.pc-quiz__phone-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pc-quiz__phone {
	width: 380px;
	max-width: 100%;
	height: auto;
}

.pc-quiz__bullets {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}
.pc-quiz__bullets li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-heading);
}
.pc-quiz__bullet-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #fff5f0;
	flex-shrink: 0;
}
.pc-quiz__bullet-icon img {
	width: 16px;
	height: 16px;
}

/* ========== Features - Figma 822:3239 ========== */
.pc-features {
	background: var(--pc-white);
	padding: 40px var(--pc-container-pad);
	max-width: var(--pc-container-max);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}
.pc-features__title {
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 40px;
	line-height: 48px;
	color: var(--pc-heading);
	margin: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.pc-features__title-line { display: block; }
.pc-features__title-accent { color: var(--pc-primary-text); }

.pc-features__row {
	display: flex;
	gap: 64px;
	align-items: center;
	justify-content: center;
	padding: 24px 0;
	width: 100%;
}
.pc-features__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
	min-width: 0;
	flex: 0 0 auto;
}
.pc-features__value {
	font-family: var(--pc-font);
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	color: var(--pc-heading);
}
.pc-features__value--accent { color: var(--pc-primary-text); }
.pc-features__label {
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-desc);
	text-transform: uppercase;
	white-space: nowrap;
}
.pc-features__divider {
	display: inline-block;
	width: 1px;
	height: 63px;
	background: rgba(28, 28, 25, 0.18);
	flex-shrink: 0;
}

/* ========== Newsletter - Figma 822:3257 ========== */
.pc-newsletter {
	position: relative;
	background-color: #fcfbf9;
	background-image:
		linear-gradient(to right,  rgba(11,11,11,0.0314) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(11,11,11,0.0314) 1px, transparent 1px);
	background-size: 47px 47px;
	background-position: 0 0;
	padding: 80px var(--pc-container-pad);
	overflow: hidden;
	/* Anchor scroll - sticky header is ~80px; offset so the heading isn't hidden. */
	scroll-margin-top: 88px;
}
.pc-newsletter__inner {
	width: 448px;
	max-width: 100%;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.pc-newsletter__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}
.pc-newsletter__title {
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	color: var(--pc-heading);
	margin: 0;
	text-transform: uppercase;
}
.pc-newsletter__sub {
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-desc);
	margin: 0;
}

.pc-newsletter__form {
	width: 100%;
	display: flex;
}
.pc-newsletter__form--ig {
	flex-direction: column;
	gap: 12px;
}
.pc-newsletter__form--ig .pc-newsletter__status { flex: 0 0 100%; width: 100%; margin: 0; text-align: center; order: 99; }
.pc-newsletter__form--email {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	width: 100%; /* Match IG form (full container width). */
}
.pc-newsletter__form--email .pc-newsletter__fld,
.pc-newsletter__form--email .pc-newsletter__input { flex: 1 1 auto; min-width: 0; }
.pc-newsletter__form--email > .pc-button { flex: 0 0 auto; padding: 12px 28px; white-space: nowrap; }
.pc-newsletter__form--email .pc-newsletter__status { flex: 0 0 100%; width: 100%; margin: 0; text-align: center; order: 99; }

.pc-newsletter__input-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(17, 17, 16, 0.15);
	border-radius: var(--pc-r);
	background: var(--pc-white);
	padding: 12px 24px;
	width: 100%;
}
.pc-newsletter__input-prefix {
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: #111110;
}
.pc-newsletter__input {
	padding: 12px 24px;
	border: 1px solid rgba(17, 17, 16, 0.15);
	border-radius: var(--pc-r);
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--pc-heading);
	background: var(--pc-white);
	flex: 1;
	min-width: 0;
}
.pc-newsletter__input--prefixed,
.pc-newsletter__input--prefixed:focus {
	border: 0;
	padding: 0;
	background: transparent;
	outline: none;
	box-shadow: none;
	flex: 1;
	min-width: 0;
}
.pc-newsletter__input::placeholder { color: var(--pc-desc); }
.pc-newsletter__input:focus {
	outline: none;
	border-color: var(--pc-primary);
}
.pc-newsletter__btn-block {
	width: 100%;
	padding: 12px 24px;
}
.pc-newsletter__btn-block[disabled] { opacity: 0.6; cursor: wait; }

.pc-newsletter__group {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}
.pc-newsletter__group-title {
	font-family: var(--pc-font);
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	color: var(--pc-desc);
	text-align: center;
	margin: 0;
}

/* ========== Mobile ========== */
@media (max-width: 1100px) {
	.pc-hero__inner { padding: 56px var(--pc-container-pad) 0; }
	.pc-stories__head { padding: 0 var(--pc-container-pad); }
	.pc-stories__cta { padding: 0 var(--pc-container-pad); }
	.pc-quiz__inner { padding: 0 var(--pc-container-pad); }
	.pc-features { padding: 64px var(--pc-container-pad); }
	.pc-newsletter { padding: 48px var(--pc-container-pad); }
}
/* Tablet portrait+landscape gap 1100→961: keep 2-col Quiz, shrink Stats gap so 4 stats fit in container. */
@media (max-width: 1100px) and (min-width: 961px) {
	.pc-quiz__inner { gap: 48px; }
	.pc-quiz__phone { width: 280px; }
	.pc-features__row { gap: 32px; padding: 16px var(--pc-container-pad); flex-wrap: nowrap; }
	.pc-features__divider { height: 48px; }
	.pc-features__value { font-size: 22px; line-height: 30px; }
	.pc-features__label { font-size: 13px; line-height: 20px; }
}
@media (max-width: 960px) {
	.pc-hero__title { font-size: 36px; line-height: 44px; }
	.pc-hero__inner { padding: 40px var(--pc-container-pad) 0; }
	.pc-hero__stats { gap: 0; margin-top: 40px; }
	.pc-hero__stats li { padding: 0 24px; }
	.pc-hero__stats li + li::before { background: var(--pc-heading); height: 32px; opacity: 0.5; }
	.pc-stories { padding: 40px 0; gap: 24px; }
	.pc-quiz { padding: 40px 0; }
	.pc-features { padding: 40px var(--pc-container-pad); }
	.pc-newsletter { padding: 40px var(--pc-container-pad); }
	.pc-home__backdrop {
		background: linear-gradient(
			180deg,
			#ff6a00 0%,
			#ff8a3a 10%,
			#ffb585 22%,
			#ffd9bf 30%,
			#fff0e3 38%,
			#ffffff 50%,
			#ffffff 100%
		);
	}

	.pc-stories__title { font-size: 28px; line-height: 36px; }

	.pc-quiz__inner { flex-direction: column; gap: 8px; padding: 0 16px; }
	.pc-quiz__copy { align-items: center; text-align: center; gap: 16px; }
	.pc-quiz__title { font-size: 32px; line-height: 40px; text-align: center; }
	.pc-quiz__sub-eyebrow { font-size: 14px; line-height: 20px; }
	.pc-quiz__proof { font-size: 14px; line-height: 22px; gap: 12px; justify-content: center; }
	.pc-quiz__visual { width: 100%; align-items: center; gap: 16px; }
	.pc-quiz__phone-wrap { width: 100%; max-width: 320px; margin-top: 0; }
	.pc-quiz__bullets { align-items: flex-start; gap: 12px; margin-inline: auto; }
	.pc-quiz__bullets li { font-size: 14px; line-height: 22px; }
	.pc-quiz__bullet-icon { width: 22px; height: 22px; }
	.pc-quiz__bullet-icon img { width: 14px; height: 14px; }
	.pc-quiz__cta-row { text-align: center; }

	.pc-features__title { font-size: 28px; line-height: 36px; }
	.pc-features__row {
		flex-direction: column;
		gap: 16px;
		padding: 0;
		flex-wrap: nowrap;
		width: 100%;
		max-width: 240px;
		margin-inline: auto;
	}
	.pc-features__divider {
		width: 100%;
		height: 1px;
	}
	.pc-features__item { width: 100%; }
}
/* Tablet portrait 768-960: Stats 2x2 grid instead of 1-col stack. */
@media (max-width: 960px) and (min-width: 768px) {
	.pc-features__row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px 32px;
		max-width: 480px;
		flex-direction: initial;
	}
	.pc-features__divider { display: none; }
	.pc-features__item { width: auto; }
}
@media (max-width: 560px) {
	.pc-hero__inner { padding: 40px 20px 0; }
	.pc-hero__title { font-size: 28px; line-height: 36px; }
	.pc-hero__stats li { padding: 0 16px; }
	.pc-hero__stats strong { font-size: 20px; line-height: 28px; }
	.pc-hero__stats span { font-size: 12px; line-height: 18px; }

	.pc-features__row { gap: 12px; }

	.pc-newsletter__form--email { flex-direction: row; gap: 8px; align-items: stretch; }
	.pc-newsletter__form--email > .pc-fld { flex: 1 1 auto; min-width: 0; }
	.pc-newsletter__form--email > .pc-button { flex: 0 0 auto; padding: 8px 16px; }
	.pc-newsletter__btn-block { padding: 8px 16px; }
	.pc-newsletter .pc-fld__row { min-height: 36px; height: 40px; padding: 0 12px; }
	/* Keep 16px on mobile to prevent iOS / Android auto-zoom on focus. */
	.pc-newsletter .pc-fld__input { font-size: 16px; line-height: 22px; padding: 0; }
	.pc-newsletter .pc-fld { gap: 0; }
}

/* ============================================================
 * Floating Hero CTA - bottom-center, revealed 4.5s after load
 * ============================================================ */
.pc-hero-float-cta {
	position: fixed;
	right: 24px;
	bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
	transform: translateY(24px);
	z-index: 80;
	display: inline-block;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition:
		opacity 380ms cubic-bezier(0.22, 1.2, 0.36, 1),
		transform 460ms cubic-bezier(0.22, 1.2, 0.36, 1),
		visibility 0s linear 380ms;
}
.pc-hero-float-cta.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	visibility: visible;
	transition:
		opacity 380ms cubic-bezier(0.22, 1.2, 0.36, 1),
		transform 460ms cubic-bezier(0.22, 1.2, 0.36, 1),
		visibility 0s linear 0s;
}
.pc-hero-float-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	background: var(--pc-primary, #ff6a00);
	color: #fff;
	font-family: var(--pc-font);
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	text-decoration: none;
	border-radius: 8px;
	box-shadow:
		0 18px 40px -12px rgba(255, 106, 0, 0.45),
		0 8px 16px -6px rgba(28, 28, 25, 0.18);
	transition: transform 220ms cubic-bezier(0.34, 1.5, 0.4, 1), box-shadow 220ms ease, background-color 200ms ease;
}
.pc-hero-float-cta__btn:hover {
	background: #ff7a1a;
	transform: translateY(-1px);
	box-shadow:
		0 22px 48px -12px rgba(255, 106, 0, 0.55),
		0 10px 20px -6px rgba(28, 28, 25, 0.22);
}
.pc-hero-float-cta__btn:active {
	transform: translateY(0) scale(0.98);
}
.pc-hero-float-cta__btn:focus-visible {
	outline: 2px solid #ff6a00;
	outline-offset: 3px;
}
.pc-hero-float-cta__btn svg:first-of-type {
	flex-shrink: 0;
}
.pc-hero-float-cta__btn svg:last-of-type {
	flex-shrink: 0;
	transition: transform 220ms ease;
}
.pc-hero-float-cta__btn:hover svg:last-of-type {
	transform: translateX(3px);
}
/* Subtle attention pulse - one-shot, fires after reveal */
@keyframes pc-hero-cta-pulse {
	0%, 100% { box-shadow: 0 18px 40px -12px rgba(255, 106, 0, 0.45), 0 8px 16px -6px rgba(28, 28, 25, 0.18), 0 0 0 0 rgba(255, 106, 0, 0.5); }
	50%      { box-shadow: 0 18px 40px -12px rgba(255, 106, 0, 0.55), 0 8px 16px -6px rgba(28, 28, 25, 0.22), 0 0 0 14px rgba(255, 106, 0, 0); }
}
.pc-hero-float-cta.is-visible .pc-hero-float-cta__btn {
	animation: pc-hero-cta-pulse 2.4s ease-in-out 600ms 2;
}

/* Mobile - shrink, keep bottom-safe */
@media (max-width: 480px) {
	.pc-hero-float-cta {
		right: 16px;
		bottom: calc(env(safe-area-inset-bottom, 0px) + 16px);
	}
	.pc-hero-float-cta__btn {
		padding: 10px 16px;
		font-size: 13px;
		line-height: 18px;
		gap: 6px;
	}
	.pc-hero-float-cta__btn svg:first-of-type { width: 16px; height: 16px; }
	.pc-hero-float-cta__btn svg:last-of-type { width: 14px; height: 14px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.pc-hero-float-cta,
	.pc-hero-float-cta.is-visible,
	.pc-hero-float-cta.is-visible .pc-hero-float-cta__btn {
		animation: none;
		transition: opacity 200ms ease, visibility 0s linear;
	}
}
