/* =========================================================================
   GameCosmos Premium — design system + sections + site-wide custom chrome.
   Loads site-wide so the custom header/footer are consistent on every page.
   ========================================================================= */

/* Global tokens so the injected header/footer are styled outside .gc-home too. */
:root {
	--gc-bg: #080808;
	--gc-bg-2: #111111;
	--gc-surface: #171717;
	--gc-border: #262626;
	--gc-border-strong: #333333;
	--gc-accent: #7c3aed;
	--gc-accent-soft: #8b5cf6;
	--gc-accent-tint: #1b1430;
	--gc-text: #ffffff;
	--gc-muted: #a1a1aa;
	--gc-display: "Space Grotesk", system-ui, sans-serif;
	--gc-sans: "Inter", system-ui, sans-serif;
	--gc-max: 1280px;
	--gc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Site-wide custom chrome: hide old header/footer, clear the fixed header ---- */
body.gc-has-custom-chrome .elementor-location-header,
body.gc-has-custom-chrome .elementor-location-footer,
body.gc-has-custom-chrome #masthead,
body.gc-has-custom-chrome .site-header,
body.gc-has-custom-chrome .ast-above-header-wrap,
body.gc-has-custom-chrome .ast-main-header-wrap,
body.gc-has-custom-chrome .ast-below-header-wrap,
body.gc-has-custom-chrome #colophon,
body.gc-has-custom-chrome .site-footer,
body.gc-has-custom-chrome .ast-hfb-header { display: none !important; }
body.gc-has-custom-chrome { padding-top: 72px; }
body.admin-bar.gc-has-custom-chrome { padding-top: 104px; }

/* ---- Mobile cart icon in the header ---- */
.gc-cart { position: relative; }
.gc-cart__count {
	position: absolute; top: 2px; right: 2px;
	min-width: 16px; height: 16px; padding: 0 4px;
	display: grid; place-items: center;
	background: var(--gc-accent); color: #fff;
	font-family: var(--gc-sans); font-size: 10px; font-weight: 600;
	border-radius: 999px; line-height: 1;
}

/* ---- Cookie consent banner ---- */
.gc-cookie {
	position: fixed; z-index: 200;
	left: 12px; right: 12px; bottom: 12px;
	max-width: 640px; margin-inline: auto;
	display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
	padding: 16px 18px;
	background: rgba(17, 17, 17, 0.96); backdrop-filter: blur(16px);
	border: 1px solid var(--gc-border); border-radius: 14px;
	opacity: 0; transform: translateY(12px);
	transition: opacity 0.3s var(--gc-ease), transform 0.3s var(--gc-ease);
}
.gc-cookie.is-in { opacity: 1; transform: translateY(0); }
.gc-cookie__text { flex: 1; min-width: 220px; margin: 0; font-family: var(--gc-sans); font-size: 13px; line-height: 1.6; color: var(--gc-muted); }
.gc-cookie__text a { color: var(--gc-accent-soft); text-decoration: underline; text-underline-offset: 2px; }
.gc-cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
.gc-cookie__btn {
	font-family: var(--gc-sans); font-size: 12px; font-weight: 500;
	letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
	padding: 9px 16px; border-radius: 2px; transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.gc-cookie__btn--decline { background: none; border: 1px solid var(--gc-border); color: var(--gc-muted); }
.gc-cookie__btn--decline:hover { color: #fff; border-color: var(--gc-border-strong); }
.gc-cookie__btn--accept { background: none; border: 1px solid var(--gc-accent); color: #fff; }
.gc-cookie__btn--accept:hover { background: rgba(124, 58, 237, 0.18); }
@media (min-width: 768px) { .gc-cookie { left: auto; right: 20px; bottom: 20px; } }

.gc-home {
	--gc-bg: #080808;
	--gc-bg-2: #111111;
	--gc-surface: #171717;
	--gc-border: #262626;
	--gc-border-strong: #333333;
	--gc-accent: #7c3aed;
	--gc-accent-soft: #8b5cf6;
	--gc-accent-tint: #1b1430;
	--gc-text: #ffffff;
	--gc-muted: #a1a1aa;
	--gc-display: "Space Grotesk", system-ui, sans-serif;
	--gc-sans: "Inter", system-ui, sans-serif;
	--gc-max: 1280px;
	--gc-ease: cubic-bezier(0.16, 1, 0.3, 1);

	background: var(--gc-bg);
	color: var(--gc-text);
	font-family: var(--gc-sans);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.gc-home h1,
.gc-home h2,
.gc-home h3 {
	font-family: var(--gc-display);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.04;
	color: var(--gc-text);
	margin: 0;
}

.gc-home p { margin: 0; }
.gc-home a { color: inherit; text-decoration: none; }
.gc-home ::selection { background: var(--gc-accent); color: #fff; }
.gc-home :focus-visible { outline: 2px solid var(--gc-accent-soft); outline-offset: 3px; }

.gc-container {
	width: 100%;
	max-width: var(--gc-max);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ---------- Custom angular button system ---------- */
.gc-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	font-family: var(--gc-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	transition: transform 0.2s var(--gc-ease);
}
.gc-btn:hover { transform: translateY(-1px); }
.gc-btn:active { transform: translateY(0); }

.gc-btn__b1,
.gc-btn__b2 {
	position: absolute;
	transition: background-color 0.2s ease;
	clip-path: polygon(
		9px 0,
		100% 0,
		100% calc(100% - 9px),
		calc(100% - 9px) 100%,
		0 100%,
		0 9px
	);
}
.gc-btn__b1 { inset: 0; background: var(--gc-accent); }
.gc-btn__b2 { inset: 1.5px; }
.gc-btn:hover .gc-btn__b1 { background: var(--gc-accent-soft); }

.gc-btn--filled .gc-btn__b2 { background: var(--gc-accent); }
.gc-btn--filled:hover .gc-btn__b2 { background: var(--gc-accent-soft); }

.gc-btn--outline .gc-btn__b2 { background: var(--gc-bg); }
.gc-btn--outline:hover .gc-btn__b2 { background: var(--gc-accent-tint); }

.gc-btn__label {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.gc-btn__arrow { transition: transform 0.2s var(--gc-ease); }
.gc-btn:hover .gc-btn__arrow { transform: translateX(4px); }

/* ---------- Shared section atoms ---------- */
.gc-eyebrow-text {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gc-muted);
}

/* ---------- Hero ---------- */
.gc-hero {
	position: relative;
	height: 100svh;
	min-height: 600px;
	width: 100%;
	overflow: hidden;
	background: var(--gc-bg);
}
.gc-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gc-hero__scrim {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 55%;
	background: linear-gradient(
		to top,
		var(--gc-bg) 0%,
		rgba(8, 8, 8, 0.7) 45%,
		transparent 100%
	);
	pointer-events: none;
}
.gc-hero__inner {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 2;
	padding-bottom: clamp(4rem, 7vw, 6rem);
}
.gc-hero__content {
	max-width: var(--gc-max);
	margin-inline: auto;
	text-align: center;
}
.gc-hero__headline {
	margin: 1.25rem auto 0;
	max-width: 56rem;
	font-size: clamp(2.1rem, 5.5vw, 4.5rem);
	font-weight: 600;
	line-height: 1.02;
	text-wrap: balance;
}
.gc-hero__subtext {
	margin: 1.25rem auto 0;
	max-width: 36rem;
	font-size: clamp(0.95rem, 1.4vw, 1rem);
	line-height: 1.65;
	color: var(--gc-muted);
}
.gc-hero__cta { margin-top: 2.25rem; }
/* Higher specificity than the .gc-home h1/p resets, so the auto margins
   actually centre the headline + subtext (not just the text inside them). */
.gc-home .gc-hero__headline { margin: 1.25rem auto 0; }
.gc-home .gc-hero__subtext { margin: 1.25rem auto 0; }

/* ---------- Shared section atoms ---------- */
.gc-section { padding: clamp(5rem, 9vw, 8rem) 0; }
.gc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gc-accent-soft);
}
.gc-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gc-accent-soft); opacity: 0.6; }
.gc-section__title {
	margin-top: 1.25rem;
	max-width: 42rem;
	font-size: clamp(1.9rem, 4vw, 3rem);
	line-height: 1.05;
	text-wrap: balance;
}
.gc-card {
	height: 100%;
	border: 1px solid var(--gc-border);
	background: var(--gc-surface);
	border-radius: 16px;
	padding: 2rem;
	transition: border-color 0.3s ease;
}
.gc-card:hover { border-color: var(--gc-border-strong); }
.gc-card__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--gc-border);
	border-radius: 12px;
	background: var(--gc-bg-2);
	color: var(--gc-accent-soft);
}
.gc-card__title { margin-top: 1.6rem; font-size: 1.25rem; }
.gc-card__body { margin-top: 0.75rem; font-size: 15px; line-height: 1.65; color: var(--gc-muted); }

/* ---------- Why Choose ---------- */
.gc-why__grid {
	margin-top: 3.5rem;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}

/* ---------- Showcase ---------- */
.gc-showcase__grid {
	margin-top: 3.5rem;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}
.gc-showcase__card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border: 1px solid var(--gc-border);
	border-radius: 16px;
	background: var(--gc-surface);
}
.gc-showcase__media,
.gc-showcase__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--gc-ease);
}
.gc-showcase__media--empty { background: radial-gradient(circle at 50% 35%, #241640, var(--gc-bg-2)); }
.gc-showcase__card:hover .gc-showcase__media img { transform: scale(1.05); }
.gc-showcase__overlay {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 1.5rem;
	background: linear-gradient(to top, var(--gc-bg), transparent);
}
.gc-showcase__label { font-family: var(--gc-display); font-size: 1.5rem; font-weight: 600; }
.gc-showcase__cta {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--gc-border-strong);
	border-radius: 50%;
	background: rgba(8, 8, 8, 0.6);
	color: #fff;
	transition: background-color 0.3s ease;
}
.gc-showcase__card:hover .gc-showcase__cta { background: var(--gc-accent); }

/* ---------- Best Sellers ---------- */
.gc-bs__scroller { margin-top: 3rem; overflow: hidden; }
.gc-bs__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	scrollbar-width: thin;
}
.gc-bs__card { flex: 0 0 clamp(240px, 30vw, 320px); scroll-snap-align: start; }
.gc-bs__media {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid var(--gc-border);
	border-radius: 14px;
	background: var(--gc-surface);
}
.gc-bs__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--gc-ease); }
.gc-bs__card:hover .gc-bs__media img { transform: scale(1.05); }
.gc-bs__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--gc-muted);
	background: rgba(8, 8, 8, 0.7);
	border: 1px solid var(--gc-border-strong);
	border-radius: 999px;
	backdrop-filter: blur(6px);
}
.gc-bs__info { margin-top: 1rem; }
.gc-bs__name { font-size: 15px; font-weight: 500; line-height: 1.4; }
.gc-bs__price { margin-top: 4px; font-size: 14px; color: var(--gc-muted); }
.gc-bs__price del { opacity: 0.6; margin-right: 6px; }
.gc-bs__price ins { text-decoration: none; color: var(--gc-text); }
.gc-bs__more { margin-top: 2.5rem; }

@media (max-width: 880px) {
	.gc-why__grid, .gc-showcase__grid { grid-template-columns: 1fr; }
}

/* ---------- Custom header ---------- */
.gc-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 100;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
body.admin-bar .gc-header { top: 32px; }
.gc-header.is-solid {
	background: rgba(8, 8, 8, 0.8);
	border-bottom-color: var(--gc-border);
	backdrop-filter: blur(18px);
}
.gc-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}
.gc-logo {
	font-family: var(--gc-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.04em;
	color: #fff;
}
.gc-logo span { color: var(--gc-accent-soft); }
.gc-nav { display: flex; gap: 36px; }
.gc-nav__link { font-size: 13px; color: var(--gc-muted); transition: color 0.2s ease; }
.gc-nav__link:hover { color: #fff; }
.gc-header__actions { display: flex; align-items: center; gap: 10px; }
.gc-iconbtn {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: #fff;
	border-radius: 3px;
	transition: background-color 0.2s ease;
}
.gc-iconbtn:hover { background: rgba(255, 255, 255, 0.06); }
.gc-header__cta { padding-block: 11px; }
.gc-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	cursor: pointer;
}
.gc-burger span { width: 20px; height: 1.5px; background: #fff; transition: transform 0.25s ease, opacity 0.25s ease; }
.gc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.gc-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
.gc-drawer { background: rgba(8, 8, 8, 0.97); border-top: 1px solid var(--gc-border); backdrop-filter: blur(18px); }
.gc-drawer__nav { display: flex; flex-direction: column; padding: 8px clamp(1.25rem, 5vw, 4rem) 16px; }
.gc-drawer__nav a { padding: 14px 0; font-size: 16px; color: var(--gc-muted); border-bottom: 1px solid rgba(38, 38, 38, 0.6); }
.gc-drawer__nav a:hover { color: #fff; }

@media (max-width: 880px) {
	.gc-nav, .gc-header__cta, .gc-header__actions .gc-iconbtn--account { display: none; }
	.gc-cart { display: grid; }
	.gc-burger { display: flex; }
}

/* ---------- Custom footer ---------- */
.gc-footer { background: var(--gc-bg-2); border-top: 1px solid var(--gc-border); }
.gc-footer__inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.gc-footer__brand { max-width: 26rem; }
.gc-logo--footer { font-size: 24px; display: inline-block; }
.gc-footer__tagline { margin-top: 1rem; font-size: 14px; line-height: 1.7; color: var(--gc-muted); }
.gc-footer__nav { display: flex; gap: 28px; align-items: flex-start; }
.gc-footer__nav a { font-size: 14px; color: var(--gc-muted); transition: color 0.2s ease; }
.gc-footer__nav a:hover { color: #fff; }
.gc-footer__bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-block: 1.5rem; border-top: 1px solid var(--gc-border); font-size: 13px; color: var(--gc-muted); }
.gc-footer__pay { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.gc-pay-badge { border: 1px solid var(--gc-border); border-radius: 3px; padding: 3px 9px; font-size: 11px; letter-spacing: 0.04em; }
.gc-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.gc-footer__legal a { font-size: 13px; color: var(--gc-muted); transition: color 0.2s ease; }
.gc-footer__legal a:hover { color: #fff; }

/* ---------- Neutralize global site chrome that conflicts with the custom homepage ---------- */
/* Elementor Pro "Page Transitions" injects a full-screen preloader overlay on
   every load (a global setting). Suppress it on this template only. */
body.page-template-home-premium .e-page-transition,
body.page-template-home-premium .e-page-transition--preloader,
body.page-template-home-premium .e-page-transition--entrance,
body.page-template-home-premium .elementor-page-transition,
body.page-template-home-premium #e-page-transition {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* ---------- Upgrade Ecosystem ---------- */
.gc-upgrades__head { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: space-between; align-items: flex-end; }
.gc-upgrades__lead { max-width: 24rem; font-size: 15px; line-height: 1.7; color: var(--gc-muted); }
.gc-upgrades__grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gc-border); border: 1px solid var(--gc-border); border-radius: 16px; overflow: hidden; }
.gc-upgrade { background: var(--gc-bg); padding: 2rem; transition: background-color 0.3s ease; }
.gc-upgrade:hover { background: var(--gc-surface); }
.gc-upgrade__icon { color: var(--gc-accent-soft); }
.gc-upgrade__title { margin-top: 1.25rem; font-size: 1.1rem; }
.gc-upgrade__body { margin-top: 0.5rem; font-size: 14px; line-height: 1.6; color: var(--gc-muted); }

/* ---------- Builder ---------- */
.gc-builder__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.gc-builder__stage { position: relative; aspect-ratio: 1/1; border: 1px solid var(--gc-border); border-radius: 24px; overflow: hidden; background: var(--gc-bg); }
.gc-builder__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.gc-builder__bar { position: absolute; inset-inline: 0; bottom: 0; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: linear-gradient(to top, var(--gc-bg), transparent); font-size: 14px; color: var(--gc-muted); }
.gc-builder__price { font-family: var(--gc-display); font-size: 1.5rem; font-weight: 600; color: #fff; }
.gc-builder__group { margin-top: 2rem; }
.gc-builder__label { font-size: 14px; color: var(--gc-muted); margin-bottom: 0.75rem; }
.gc-builder__swatches { display: flex; gap: 12px; }
.gc-swatch { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gc-border); cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease; }
.gc-swatch:hover { transform: scale(1.05); }
.gc-swatch.is-active { border-color: #fff; transform: scale(1.1); }
.gc-builder__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.gc-chip { border: 1px solid var(--gc-border); background: none; color: var(--gc-muted); border-radius: 999px; padding: 9px 16px; font-family: var(--gc-sans); font-size: 14px; cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease; }
.gc-chip:hover { border-color: var(--gc-border-strong); }
.gc-chip.is-on { border-color: var(--gc-accent); background: rgba(124, 58, 237, 0.14); color: #fff; }
.gc-builder__cta { margin-top: 2.5rem; }

/* ---------- How It Works ---------- */
.gc-how__grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 2.5rem; }
.gc-how__icon { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid var(--gc-border); border-radius: 12px; background: var(--gc-surface); color: var(--gc-accent-soft); }
.gc-how__title { margin-top: 1.75rem; font-size: 1.1rem; }
.gc-how__body { margin-top: 0.6rem; font-size: 15px; line-height: 1.6; color: var(--gc-muted); }

/* ---------- Reviews ---------- */
.gc-reviews__scroller { margin-top: 3rem; overflow: hidden; }
.gc-reviews__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.gc-review { flex: 0 0 clamp(280px, 32vw, 360px); scroll-snap-align: start; background: var(--gc-surface); border: 1px solid var(--gc-border); border-radius: 16px; padding: 2rem; }
.gc-review__stars { display: flex; gap: 3px; color: var(--gc-accent-soft); }
.gc-review__body { margin-top: 1.25rem; font-size: 15px; line-height: 1.65; color: #fff; }
.gc-review__by { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; }
.gc-review__avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(124, 58, 237, 0.2); color: var(--gc-accent-soft); font-family: var(--gc-display); font-weight: 600; }
.gc-review__name { display: block; font-size: 14px; font-weight: 500; }
.gc-review__product { display: block; font-size: 12px; color: var(--gc-muted); }

/* ---------- FAQ ---------- */
.gc-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.gc-faq__list { border-top: 1px solid var(--gc-border); }
.gc-faq__item { border-bottom: 1px solid var(--gc-border); }
.gc-faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.4rem 0; font-size: 1.05rem; color: #fff; cursor: pointer; list-style: none; }
.gc-faq__item summary::-webkit-details-marker { display: none; }
.gc-faq__mark { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.gc-faq__mark::before, .gc-faq__mark::after { content: ""; position: absolute; background: var(--gc-muted); transition: transform 0.25s ease; }
.gc-faq__mark::before { top: 8px; left: 0; width: 18px; height: 2px; }
.gc-faq__mark::after { top: 0; left: 8px; width: 2px; height: 18px; }
.gc-faq__item[open] .gc-faq__mark::after { transform: scaleY(0); }
.gc-faq__answer { padding: 0 3rem 1.5rem 0; font-size: 15px; line-height: 1.7; color: var(--gc-muted); }

/* ---------- Final CTA ---------- */
.gc-final__box { border: 1px solid var(--gc-border); background: var(--gc-bg-2); border-radius: 28px; padding: clamp(3rem, 7vw, 6rem) 1.5rem; text-align: center; }
.gc-final__title { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.05; text-wrap: balance; max-width: 40rem; margin-inline: auto; }
.gc-final__title span { color: var(--gc-accent-soft); }
.gc-final__text { margin: 1.25rem auto 0; max-width: 32rem; font-size: 16px; color: var(--gc-muted); }
.gc-final__cta { margin-top: 2.25rem; display: flex; justify-content: center; }

@media (max-width: 880px) {
	.gc-upgrades__grid, .gc-how__grid { grid-template-columns: 1fr 1fr; }
	.gc-builder__grid, .gc-faq__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.gc-upgrades__grid, .gc-how__grid { grid-template-columns: 1fr; }
}

/* ---------- Lenis smooth scroll (required for Lenis to drive scrolling) ---------- */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------- Inner page shell (about / contact / legal use the same header/footer) ---------- */
.gc-page { padding-top: clamp(7rem, 12vw, 10rem); }
.gc-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gc-muted); }
.gc-breadcrumb a:hover { color: #fff; }
.gc-page__title { margin-top: 1.25rem; font-size: clamp(2rem, 4.5vw, 3.25rem); }
.gc-page__intro { margin-top: 1rem; max-width: 40rem; font-size: 16px; line-height: 1.7; color: var(--gc-muted); }

/* ---------- Legal prose ---------- */
.gc-legal { max-width: 48rem; margin-inline: auto; }
.gc-legal__meta { margin-top: 1.25rem; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gc-muted); border-bottom: 1px solid var(--gc-border); padding-bottom: 2.5rem; }
.gc-prose { color: var(--gc-muted); font-size: 15px; line-height: 1.75; margin-top: 2.5rem; }
.gc-prose h2 { font-family: var(--gc-display); color: #fff; font-size: 1.35rem; font-weight: 600; margin: 2.75rem 0 0.9rem; }
.gc-prose h2:first-child { margin-top: 0; }
.gc-prose p { margin-bottom: 1rem; }
.gc-prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.gc-prose li { margin-bottom: 0.5rem; }
.gc-prose strong { color: #fff; font-weight: 500; }
.gc-prose a { color: var(--gc-accent-soft); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- About page ---------- */
.gc-about__hero-media { margin-top: 3.5rem; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--gc-border); border-radius: 16px; }
.gc-about__hero-media img { width: 100%; height: 100%; object-fit: cover; }
.gc-about__split { display: grid; gap: 2.5rem 4rem; grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.gc-about__split p { font-size: 16px; line-height: 1.8; color: var(--gc-muted); }
.gc-about__split p + p { margin-top: 1.25rem; }
.gc-about__media { aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--gc-border); border-radius: 16px; }
.gc-about__media img { width: 100%; height: 100%; object-fit: cover; }
.gc-about__list { border-top: 1px solid var(--gc-border); }
.gc-about__list-row { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--gc-border); }
.gc-about__list-row span:first-child { color: #fff; font-size: 15px; }
.gc-about__list-row span:last-child { color: var(--gc-muted); font-size: 14px; text-align: right; }
.gc-about__reasons { margin-top: 3.5rem; display: grid; gap: 2rem 2.5rem; grid-template-columns: repeat(3, 1fr); }
.gc-about__reason { display: flex; align-items: center; gap: 1rem; }
.gc-about__reason span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--gc-border); border-radius: 10px; background: var(--gc-surface); color: var(--gc-accent-soft); }

/* ---------- Contact page ---------- */
.gc-contact__grid { display: grid; gap: 3.5rem; grid-template-columns: 0.85fr 1.15fr; align-items: start; }
.gc-contact__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.gc-contact__item { display: flex; gap: 1rem; }
.gc-contact__item-ico { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid var(--gc-border); border-radius: 8px; background: var(--gc-surface); color: var(--gc-accent-soft); }
.gc-contact__item p { font-size: 14px; color: var(--gc-muted); }
.gc-contact__item p strong { display: block; color: #fff; font-weight: 500; margin-top: 2px; }
.gc-form { background: var(--gc-bg-2); border: 1px solid var(--gc-border); border-radius: 16px; padding: clamp(1.5rem, 3vw, 2.25rem); }
.gc-form__row { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; }
.gc-field { margin-bottom: 1.25rem; }
.gc-field label { display: block; margin-bottom: 0.5rem; font-size: 14px; color: var(--gc-muted); }
.gc-field input, .gc-field textarea { width: 100%; background: var(--gc-bg); border: 1px solid var(--gc-border); border-radius: 3px; padding: 11px 14px; font-family: var(--gc-sans); font-size: 15px; color: #fff; transition: border-color 0.2s ease; }
.gc-field input:focus, .gc-field textarea:focus { outline: none; border-color: var(--gc-accent); }
.gc-field textarea { resize: vertical; min-height: 130px; }
.gc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.gc-form__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.5rem; }
.gc-form__note { font-size: 12px; color: var(--gc-muted); }
.gc-form__success { display: flex; gap: 12px; align-items: flex-start; padding: 1rem 1.25rem; border: 1px solid rgba(124,58,237,0.4); background: rgba(124,58,237,0.08); border-radius: 10px; color: #fff; font-size: 14px; margin-bottom: 1.5rem; }
.gc-form__success svg { color: var(--gc-accent-soft); flex: 0 0 auto; }

@media (max-width: 880px) {
	.gc-about__split, .gc-about__reasons, .gc-contact__grid, .gc-form__row { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal (resilient: hidden only when JS is ready) ---------- */
html.gc-js .gc-home [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
	html.gc-js .gc-home [data-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}
}
