/* ============================================================
   GSR Coatings — design system / component styles
   Palette + type tokens live in theme.json. This file handles
   layout, typography details, components and responsive rules.
   ============================================================ */

:root {
	--gsr-night:   #070B12;
	--gsr-surface: #0E1522;
	--gsr-raised:  #16202F;
	--gsr-blue:    #1F6BFF;
	--gsr-blue-dim:#0F2A5A;
	--gsr-silver:  #C7CDD8;
	--gsr-chrome:  #AAB3C1;
	--gsr-bone:    #F5F7FA;
	--gsr-line:    rgba(199, 205, 216, 0.18);
	--gsr-maxw:    1440px;
	--gsr-gutter:  clamp(20px, 5vw, 48px);
}

/* ---------- Base ---------- */
body {
	background: var(--gsr-night);
	color: var(--gsr-bone);
	font-family: 'Manrope', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

/* ---------- Sections ---------- */
.gsr-section {
	padding: clamp(60px, 9vw, 110px) 0;
}
.gsr-section__head {
	max-width: 680px;
	margin: 0 auto 44px;
	text-align: center;
	gap: 10px;
}
.gsr-section__title {
	margin: 0;
}
.gsr-section__lede {
	color: var(--gsr-silver);
	max-width: 560px;
	margin: 0 auto;
}

/* ---------- Cards ---------- */
.gsr-appgrid {
	gap: 22px;
}
.gsr-card {
	background: var(--gsr-surface);
	border: 1px solid var(--gsr-line);
	border-radius: 18px;
	padding: 28px 26px;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.gsr-card:hover {
	border-color: rgba(31,107,255,.45);
	transform: translateY(-3px);
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.gsr-card h3 {
	margin: 0 0 10px;
	font-family: 'Space Grotesk', sans-serif;
}
.gsr-card p {
	color: var(--gsr-silver);
	margin: 0 0 6px;
}
.gsr-card p a {
	color: var(--gsr-blue);
	text-decoration: none;
	font-weight: 600;
}
.gsr-card p a:hover {
	color: var(--gsr-bone);
}
.gsr-card__body {
	gap: 12px;
}
.gsr-card__thumb {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 4px;
}
.gsr-card__excerpt {
	color: var(--gsr-silver);
}

/* Specs */
.gsr-specs {
	padding: 14px 16px;
	background: var(--gsr-night);
	border-radius: 12px;
	border: 1px solid var(--gsr-line);
}
.gsr-specs p {
	margin: 0 0 6px;
	color: var(--gsr-silver);
}
.gsr-specs p:last-child { margin-bottom: 0; }
.gsr-specs strong {
	color: var(--gsr-bone);
	font-family: 'JetBrains Mono', monospace;
}

/* ---------- CTA band ---------- */
.gsr-cta-band {
	background:
		radial-gradient(120% 120% at 50% 120%, rgba(31,107,255,.25) 0%, rgba(31,107,255,0) 60%),
		var(--gsr-surface);
	border-top: 1px solid var(--gsr-line);
	padding: clamp(56px, 8vw, 100px) 0;
}
.gsr-cta-band__inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 var(--gsr-gutter);
}
.gsr-cta-band__title {
	margin: 0;
}

/* ---------- Page / subhero ---------- */
.gsr-page {
	padding-bottom: clamp(48px, 7vw, 90px);
}
.gsr-page__head {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(48px, 7vw, 80px) var(--gsr-gutter) 10px;
	text-align: center;
}
.gsr-page__title {
	margin: 0;
}
.gsr-rule {
	width: 96px;
	height: 3px;
	margin: 20px auto;
	border-radius: 3px;
	background: linear-gradient(90deg, #F7F9FC 0%, #AAB3C1 50%, #7E8796 100%);
}

.gsr-subhero {
	background:
		radial-gradient(110% 100% at 85% -10%, rgba(31,107,255,.2) 0%, rgba(31,107,255,0) 55%),
		var(--gsr-night);
	padding: clamp(56px, 9vw, 100px) 0 clamp(36px, 5vw, 60px);
}
.gsr-subhero__inner {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 var(--gsr-gutter);
}
.gsr-subhero__title {
	margin: 0;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
}
.gsr-subhero__sub {
	color: var(--gsr-silver);
	max-width: 620px;
}

/* ---------- Single / blog ---------- */
.gsr-single,
.gsr-blog,
.gsr-archive,
.gsr-index,
.gsr-search {
	padding-bottom: clamp(48px, 7vw, 90px);
}
.gsr-single__head,
.gsr-archive__head {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(44px, 7vw, 76px) var(--gsr-gutter) 12px;
	text-align: center;
}
.gsr-single__title,
.gsr-archive__title {
	margin: 0;
}
.gsr-single__meta {
	justify-content: center;
	color: var(--gsr-silver);
	margin-top: 12px;
	font-size: .92rem;
}
.gsr-single__thumb {
	border-radius: 16px;
	overflow: hidden;
	max-width: var(--gsr-maxw);
	margin: 24px auto;
}
.gsr-single__foot {
	max-width: 760px;
	margin: 30px auto 0;
	padding: 0 var(--gsr-gutter);
	color: var(--gsr-silver);
}

/* Blog card grid */
.gsr-cardgrid {
	max-width: var(--gsr-maxw);
	margin: 0 auto;
	padding: 0 var(--gsr-gutter) 20px;
}

/* ---------- Contact ---------- */
.gsr-contact {
	gap: 40px;
	padding: clamp(48px, 7vw, 80px) var(--gsr-gutter);
}
.gsr-contact__info {
	gap: 14px;
}
.gsr-contact__title {
	margin: 0 0 4px;
}

/* ---------- 404 ---------- */
.gsr-404 {
	padding: clamp(70px, 12vh, 140px) 0;
}
.gsr-404__inner {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}
.gsr-404__code {
	font-family: 'JetBrains Mono', monospace;
	font-weight: 600;
	color: var(--gsr-blue);
	opacity: .8;
}

/* ---------- Search ---------- */
.gsr-searchbar {
	max-width: 620px;
	margin: 20px auto 0;
}
.gsr-searchbar input {
	background: var(--gsr-surface);
	border: 1px solid var(--gsr-line);
	color: var(--gsr-bone);
	border-radius: 4px;
	padding: 12px 18px;
}
.gsr-searchbar button {
	background: var(--gsr-blue);
	border-radius: 2px;
}

/* ---------- Content typography (post content) ---------- */
.entry-content p { color: var(--gsr-silver); }
.entry-content h2, .entry-content h3, .entry-content h4 {
	font-family: 'Space Grotesk', sans-serif;
	color: var(--gsr-bone);
}
.entry-content a { color: var(--gsr-blue); }

/* ---------- Focus / a11y ---------- */
:where(a, button, input, textarea, [role="button"]):focus-visible {
	outline: 2px solid var(--gsr-blue);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {

}
@media (max-width: 900px) {
	.gsr-header__navwrap { gap: 8px; }
	.gsr-stats__row { gap: 20px; }
	.gsr-card { padding: 24px 20px; }
}

@media (max-width: 782px) {
	.gsr-header__bar { padding: 12px var(--gsr-gutter); }
	/* Nav becomes overlay menu on mobile (handled by wp:navigation overlayMenu) */

	.gsr-hero__sub { font-size: 1.1rem; }
	.gsr-stats { padding: 8px 0; }
	.gsr-stats__row { flex-direction: column; gap: 18px; padding: 24px var(--gsr-gutter); }
	.gsr-stat { min-width: 0; }
	.gsr-appgrid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
	.gsr-appgrid { grid-template-columns: 1fr; }
	.gsr-hero__cta { flex-direction: column; }
	.gsr-hero__cta .wp-block-button { width: 100%; margin: 4px 0; }
	.gsr-hero__cta .wp-block-button__link { display: block; text-align: center; }
	.gsr-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
	.gsr-card:hover { transform: none; }
}


/* ============================================================
   GSR — component CSS (consolidated, loaded site-wide)
   ============================================================ */


/* ===== HEADER ===== */
/* ===== GSR · Header (component CSS — loaded on the front end) ===== */
header.gsr-header{position:absolute !important;top:0 !important;left:0 !important;right:0 !important;width:100% !important;z-index:200 !important;background:transparent !important;border-top:none !important;border-right:none !important;border-left:none !important;border-bottom:1px solid rgba(199,205,216,.18) !important;box-shadow:none !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important}
header.gsr-header .gsr-header__bar{max-width:1440px;margin:0 auto;padding:26px clamp(20px,6vw,48px);display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;gap:24px}
header.gsr-header .gsr-brand{flex:0 0 auto;display:flex;align-items:center;gap:12px}
header.gsr-header .gsr-brand__logo img{height:64px;width:auto;display:block;margin:0}
header.gsr-header .gsr-header__navwrap{display:flex;align-items:center;justify-content:flex-end;gap:18px;min-width:0}
header.gsr-header .gsr-nav{list-style:none !important;margin:0;padding:0;display:flex;align-items:center;gap:2px}
header.gsr-header .gsr-nav>li{position:relative;margin:0;padding:0}
header.gsr-header .gsr-nav>li>a{font-family:'Space Grotesk',sans-serif;font-weight:600;font-size:.9rem;letter-spacing:.04em;text-transform:uppercase;padding:10px 14px;color:var(--gsr-bone,#F5F7FA);white-space:nowrap;transition:color .18s;text-decoration:none;border-radius:0 !important;background:transparent !important;display:inline-block}
header.gsr-header .gsr-nav>li>a:hover{color:var(--gsr-blue)}
header.gsr-header .gsr-nav__sub{list-style:none;margin:0;padding:10px 0;position:absolute;top:100%;left:0;background:#0E1522;border:1px solid rgba(199,205,216,.12);border-radius:4px;box-shadow:0 14px 40px rgba(0,0,0,.4);min-width:250px;display:none;flex-direction:column}
header.gsr-header .gsr-nav__has-child:hover .gsr-nav__sub,header.gsr-header .gsr-nav__has-child:focus-within .gsr-nav__sub{display:flex}
header.gsr-header .gsr-nav__sub a{font-family:'Manrope',sans-serif;font-size:.86rem;letter-spacing:.02em;text-transform:uppercase;color:var(--gsr-silver,#C7CDD8);padding:9px 18px;display:block;text-decoration:none;background:transparent}
header.gsr-header .gsr-nav__sub a:hover{color:var(--gsr-blue)}
header.gsr-header .gsr-cta-wrap{flex:0 0 auto;display:flex;align-items:center}
header.gsr-header .gsr-cta-wrap .wp-block-button{margin:0}
header.gsr-header .gsr-cta-wrap .wp-block-button__link{background:var(--gsr-blue,#1F6BFF) !important;border:1px solid var(--gsr-blue,#1F6BFF) !important;color:#fff !important;box-shadow:none !important;padding:12px 24px;border-radius:4px !important;white-space:nowrap;transition:background .18s,color .18s;font-family:'Space Grotesk',sans-serif;font-weight:600;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;text-decoration:none}
header.gsr-header .gsr-cta-wrap .wp-block-button__link:hover{background:#2f7cff;border-color:#2f7cff}
header.gsr-header .gsr-navtoggle{display:none;background:none;border:none;width:34px;height:28px;position:relative;cursor:pointer;padding:0}
header.gsr-header .gsr-navtoggle span{position:absolute;left:0;width:100%;height:2px;background:var(--gsr-bone,#F5F7FA);border-radius:2px;transition:.2s}
header.gsr-header .gsr-navtoggle span:nth-child(1){top:4px}
header.gsr-header .gsr-navtoggle span:nth-child(2){top:13px}
header.gsr-header .gsr-navtoggle span:nth-child(3){top:22px}
@media(max-width:1024px){header.gsr-header .gsr-brand__logo img{height:54px}header.gsr-header .gsr-nav>li>a{font-size:.78rem;padding:8px 9px}}
@media(max-width:900px){
	header.gsr-header .gsr-navtoggle{display:flex;flex-direction:column;justify-content:center;gap:6px}
	header.gsr-header .gsr-navtoggle span{position:static;width:100%;height:2px}
	header.gsr-header .gsr-nav{display:none;position:absolute;top:100%;left:0;right:0;background:rgba(7,11,18,.94);flex-direction:column;align-items:stretch;padding:16px clamp(20px,6vw,28px);border-top:1px solid rgba(199,205,216,.08)}
	header.gsr-header .gsr-header__navwrap.open header.gsr-header .gsr-nav{display:flex}
	header.gsr-header .gsr-nav>li>a{display:block;padding:12px 0;border-bottom:1px solid rgba(199,205,216,.08)}
	header.gsr-header .gsr-nav>li{width:100%}
	header.gsr-header .gsr-nav__sub{position:static;display:flex;background:none;border:none;box-shadow:none;padding:0 0 0 14px}
	header.gsr-header .gsr-cta-wrap{display:none}
}
@media(max-width:760px){header.gsr-header .gsr-header__bar{flex-wrap:wrap;padding:22px clamp(20px,6vw,28px)}header.gsr-header .gsr-brand__logo img{height:48px}}

/* ===== HERO ===== */
/* ===== HERO — UX/UI Pro Max discipline, GSR palette ===== */
.gsr-hero {
	position: relative;
	background-image: url('https://gsrcoatings.co.uk/wp-content/uploads/2026/08/hero_v2.jpg');
	background-size: cover;
	background-position: center right;
	min-height: 100vh;
	display: flex;
	align-items: center;
	margin-top: 0 !important;
	padding-top: 0 !important;
	padding: 0;
}
/* Stronger left-to-right gradient so text NEVER sits over bright car body */
.gsr-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(7,11,18,.98) 0%,
		rgba(7,11,18,.88) 30%,
		rgba(7,11,18,.62) 52%,
		rgba(7,11,18,.18) 78%,
		rgba(7,11,18,.05) 100%
	);
	pointer-events: none;
}
/* Constrain the text column so it stays in the dark legible zone */
.gsr-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1440px !important;
	margin: 0 auto;
	width: 100%;
	padding: 90px clamp(24px,6vw,64px);
	align-items: flex-start;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
}
.gsr-hero__inner > * { max-width: 620px; }
/* Eyebrow */
.gsr-hero__inner .gsr-eyebrow {
	text-align: left;
	margin: 0 0 24px;
	letter-spacing: .32em;
}
/* Headline */
.gsr-hero__title {
	text-align: left;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: clamp(3rem, 6.2vw, 5.6rem);
	line-height: 1.02;
	letter-spacing: -.03em;
	color: var(--gsr-bone);
	margin: 0;
	text-wrap: balance;
}
.gsr-hero__title:after {
	content: "";
	display: block;
	width: 96px;
	height: 4px;
	margin: 28px 0 0;
	border-radius: 4px;
	background: linear-gradient(90deg, #F7F9FC 0%, #AAB3C1 50%, #7E8796 100%);
	box-shadow: 0 0 24px rgba(199,205,216,.35);
}
/* Subhead */
.gsr-hero__sub {
	text-align: left;
	color: var(--gsr-silver);
	max-width: 44ch;
	font-size: 1.22rem;
	line-height: 1.7;
	font-weight: 300;
	margin: 34px 0 0;
}
/* CTA row — even gap, consistent */
.gsr-hero__cta {
	justify-content: flex-start;
	gap: 14px;
	margin-top: 48px;
}
.gsr-hero__cta .wp-block-button { margin: 0; }
.gsr-hero__cta .wp-block-button__link { padding: 12px 26px; border-radius: 2px; }
/* Stats — horizontal, baseline aligned */
.gsr-stats {
	border-top: 1px solid var(--gsr-line);
	border-bottom: 1px solid var(--gsr-line);
	background: var(--gsr-surface);
}
.gsr-stats__row {
	max-width: 1440px !important;
	margin: 0 auto;
	padding: 40px clamp(24px,6vw,64px);
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	justify-content: flex-start;
	align-items: flex-end;
}
.gsr-stat { text-align: left; }
.gsr-stat__num {
	font-family: 'JetBrains Mono', monospace;
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 1;
	color: var(--gsr-bone);
	margin: 0 0 8px;
}
.gsr-stat__label {
	font-family: 'Manrope', sans-serif;
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gsr-silver);
	margin: 0;
}
@media (max-width: 760px) {
	.gsr-hero { min-height: 78vh; background-position: center; }
	.gsr-hero__inner { padding: 64px clamp(20px,6vw,28px); }
	.gsr-hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
	.gsr-hero__cta { flex-direction: column; }
	.gsr-hero__cta .wp-block-button { width: 100%; }
	.gsr-hero__cta .wp-block-button__link { display: block; text-align: center; }
	.gsr-stats__row { gap: 30px 40px; padding: 30px clamp(20px,6vw,28px); }
}
/* Hero ghost button — brighter border + text for legibility over dark image */
.gsr-hero__cta .wp-block-button.is-style-gsr-ghost .wp-block-button__link{background:rgba(7,11,18,.35);border:1px solid rgba(245,247,250,.45);color:var(--gsr-bone)}
.gsr-hero__cta .wp-block-button.is-style-gsr-ghost .wp-block-button__link:hover{border-color:var(--gsr-blue);color:var(--gsr-blue)}

/* Feature row: tidy 6-column grid, icon+label centered, dividers between */
.gsr-hero__inner .gsr-hero__features{display:grid;grid-template-columns:repeat(6,1fr);width:100%;max-width:1440px !important;margin:56px 0 0;padding-top:26px;border-top:1px solid rgba(199,205,216,.14)}
.gsr-feature{display:flex;align-items:center;gap:12px;padding:0 20px;border-left:1px solid rgba(199,205,216,.14);min-width:0}
.gsr-feature:first-child{border-left:none;padding-left:0}
.gsr-feature__icon{flex:0 0 auto;width:28px;height:28px;color:var(--gsr-blue)}
.gsr-feature__icon svg{width:100%;height:100%;display:block}
.gsr-feature__label{font-family:'Manrope',sans-serif;font-size:.66rem;font-weight:500;letter-spacing:.05em;text-transform:uppercase;color:var(--gsr-silver);line-height:1.3;margin:0;white-space:nowrap}
@media(max-width:920px){.gsr-hero__inner .gsr-hero__features{grid-template-columns:repeat(3,1fr);row-gap:24px}.gsr-feature{padding:0 0 0 20px}.gsr-feature:nth-child(4){border-left:none;padding-left:0}}
@media(max-width:600px){.gsr-hero__inner .gsr-hero__features{grid-template-columns:repeat(2,1fr)}.gsr-feature:nth-child(3n){border-left:none;padding-left:0}}
@media(max-width:760px){
	.gsr-hero__features{gap:18px 0;padding-top:20px;margin-top:28px;max-width:100%}
	.gsr-feature{padding:0 16px}
	.gsr-feature__icon{width:26px;height:26px}
	.gsr-feature__label{font-size:.66rem}
}

/* ===== MARQUEE ===== */
/* Prominent marquee — big bold text, alternating solid/outline, star separators */
.gsr-marquee{overflow:hidden;padding:38px 0;width:100%}
.gsr-mtrack{display:flex;width:max-content;align-items:center;animation:gsr-marquee 30s linear infinite}
.gsr-marquee:hover .gsr-mtrack{animation-play-state:paused}
@keyframes gsr-marquee{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}
.gsr-mwrap{display:flex;align-items:center;gap:56px;padding-right:56px;white-space:nowrap}
.gsr-mtext{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:clamp(2.6rem,5.2vw,4.4rem);letter-spacing:-.01em;line-height:1;color:var(--gsr-bone);text-transform:none}
.gsr-mtext.outline{color:transparent;-webkit-text-stroke:2px var(--gsr-blue);text-stroke:2px var(--gsr-blue)}
.gsr-star{flex:0 0 auto;color:var(--gsr-blue);width:42px;height:42px;opacity:.9}
@media(max-width:760px){.gsr-marquee{padding:24px 0}.gsr-mwrap{gap:32px;padding-right:32px}.gsr-mtext{font-size:clamp(1.8rem,9vw,2.6rem)}.gsr-mtext.outline{-webkit-text-stroke:1.5px var(--gsr-blue)}.gsr-star{width:30px;height:30px}}

/* ===== FOOTER ===== */
:root{--gsr-maxw:1440px !important}
.gsr-footer{background:var(--gsr-night,#070B12);border-top:1px solid var(--gsr-line);color:var(--gsr-silver);position:relative;overflow:hidden}
.gsr-footer *{box-sizing:border-box}
/* Newsletter */
.gsr-footer__news{position:relative;background:linear-gradient(rgba(7,11,18,.92),rgba(7,11,18,.92)),radial-gradient(circle at 30% 0%,rgba(31,107,255,.18),transparent 60%);padding:78px 0 70px;border-bottom:1px solid var(--gsr-line)}
.gsr-footer__news__inner{max-width:760px;margin:0 auto;text-align:center}
.gsr-footer__eyebrow{letter-spacing:.3em;color:var(--gsr-blue);font-weight:600;margin:0 0 6px}
.gsr-footer__newstitle{font-family:'Space Grotesk',sans-serif;font-weight:700;color:var(--gsr-bone);font-size:clamp(1.9rem,4vw,3rem);line-height:1.1;letter-spacing:-.01em;margin:0 0 10px;text-wrap:balance}
.gsr-footer__newssub{color:var(--gsr-silver);margin:0 auto 28px;max-width:50ch}
.gsr-newsform{display:flex;gap:12px;max-width:540px;margin:0 auto;flex-wrap:wrap}
.gsr-newsform__input{flex:1 1 240px;background:rgba(245,247,250,.06);border:1px solid var(--gsr-line);border-radius:4px;color:var(--gsr-bone);padding:13px 18px;font-size:.95rem;outline:none;transition:border-color .18s}
.gsr-newsform__input::placeholder{color:rgba(199,205,216,.5)}
.gsr-newsform__input:focus{border-color:var(--gsr-blue)}
.gsr-newsform__btn{background:var(--gsr-blue);border:none;color:#fff;font-family:'Space Grotesk',sans-serif;font-weight:600;font-size:.82rem;letter-spacing:.06em;text-transform:uppercase;padding:13px 26px;border-radius:4px;cursor:pointer;transition:background .18s}
.gsr-newsform__btn:hover{background:#2f7cff}
/* Grid */
.gsr-footer__grid{max-width:1440px !important;margin:0 auto;padding:60px clamp(24px,6vw,64px);display:grid;grid-template-columns:1.35fr 1fr 1.05fr 1.2fr;gap:44px;text-align:left}
.gsr-footer__col{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;text-align:left;gap:16px;min-width:0}
.gsr-footer__brand .gsr-footer__logo img{height:52px;width:auto;display:block;margin:0}
.gsr-footer__tag{color:rgba(199,205,216,.62);line-height:1.7;max-width:26ch;text-align:left}
.gsr-footer__head{font-family:'Space Grotesk',sans-serif;font-weight:600;font-size:.95rem;letter-spacing:.07em;text-transform:uppercase;color:var(--gsr-bone);margin:0 0 12px;padding-bottom:10px;border-bottom:1px solid rgba(199,205,216,.1)}
.gsr-footer__links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;align-items:flex-start;gap:9px;width:100%;text-align:left}
.gsr-footer__links li{text-align:left;width:100%}
.gsr-footer__links a{color:rgba(199,205,216,.78);font-size:.82rem;line-height:1.5;padding:1px 0;display:block;text-align:left;transition:color .18s}
.gsr-footer__links a:hover{color:var(--gsr-blue)}
.gsr-footer__phone{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:1.25rem;margin:0}
.gsr-footer__phone a{color:var(--gsr-blue)}
.gsr-footer__phone a:hover{color:#5c95ff}
.gsr-footer__email a{color:var(--gsr-bone);text-decoration:underline;text-decoration-color:rgba(199,205,216,.3)}
.gsr-footer__email a:hover{color:var(--gsr-blue)}
.gsr-footer__social{display:flex;gap:12px;margin-top:6px;justify-content:flex-start}
.gsr-footer__social a{color:rgba(199,205,216,.7);display:inline-flex;transition:color .18s}
.gsr-footer__social a:hover{color:var(--gsr-blue)}
.gsr-footer__bottom{max-width:1440px !important;margin:0 auto;padding:22px clamp(24px,6vw,64px);border-top:1px solid var(--gsr-line);font-size:.85rem;color:rgba(199,205,216,.5);justify-content:space-between;text-align:left}
.gsr-footer__bottom a{color:rgba(199,205,216,.6)}
.gsr-footer__bottom a:hover{color:var(--gsr-blue)}
@media(max-width:1024px){.gsr-footer__grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.gsr-footer__grid{grid-template-columns:1fr;gap:36px}.gsr-newsform{flex-direction:column}.gsr-newsform__btn{width:100%}.gsr-footer__bottom{flex-direction:column;align-items:center;gap:6px;text-align:center}}

/* ===== LINKS — global: no underline ===== */
:where(a){text-decoration:none !important;text-underline:none !important}
.gsr-footer__email a{text-decoration:none !important;text-decoration-color:transparent !important}

/* ===== GLOBAL — flat buttons + no underlined links ===== */
.wp-block-button__link,.wp-block-button.is-style-gsr-cta .wp-block-button__link,.wp-block-button.is-style-gsr-ghost .wp-block-button__link,
.gsr-cta-wrap .wp-block-button__link,.gsr-hero__cta .wp-block-button__link,.gsr-cta-band .wp-block-button__link,
.gsr-searchbar button{border-radius:2px !important;padding:10px 20px !important}
:where(a){text-decoration:none !important;text-underline:none !important}
.gsr-footer__email a{text-decoration:none !important;text-decoration-color:transparent !important}


/* ===== APP / PAGE COMPONENTS ===== */
.gsr-prose{max-width:820px;margin:0 auto}
.gsr-lead{font-family:'Space Grotesk',sans-serif;font-size:clamp(1.3rem,2.4vw,1.75rem);font-weight:500;line-height:1.5;color:var(--gsr-bone);margin:0 0 20px;text-wrap:balance}
.gsr-prose p{color:var(--gsr-silver);max-width:72ch}
.gsr-statement{background:var(--gsr-surface);border-top:1px solid var(--gsr-line);border-bottom:1px solid var(--gsr-line)}
.gsr-statement__inner{max-width:820px;margin:0 auto;padding:72px clamp(24px,6vw,64px);text-align:center;align-items:center}
.gsr-statement__title{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:clamp(2rem,4.5vw,3.4rem);line-height:1.08;letter-spacing:-.02em;color:var(--gsr-bone);margin:0 0 14px;text-wrap:balance}
.gsr-statement__sub{color:var(--gsr-silver);max-width:54ch;font-size:1.1rem;line-height:1.7;margin:0}
.gsr-section{padding:72px clamp(24px,6vw,64px) 0}
.gsr-section__head{max-width:820px;margin:0 auto 40px;text-align:center;align-items:center}
.gsr-section__title{font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:clamp(1.8rem,3.4vw,2.6rem);letter-spacing:-.02em;color:var(--gsr-bone);margin:0}
.gsr-card{background:var(--gsr-surface);border:1px solid var(--gsr-line);border-radius:6px;padding:28px 26px;display:flex;flex-direction:column;gap:12px;transition:border-color .18s}
.gsr-card:hover{border-color:var(--gsr-blue)}
.gsr-card__title{color:var(--gsr-bone);margin:0}
.gsr-card p{color:var(--gsr-silver);margin:0;line-height:1.65}
.gsr-specs{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:7px;color:var(--gsr-silver)}
.gsr-specs li{padding-left:22px;position:relative}
.gsr-specs li:before{content:"✓";position:absolute;left:0;color:var(--gsr-blue)}
.gsr-card__link a{color:var(--gsr-blue);font-weight:600}
.gsr-card__link a:hover{color:#5c95ff}
/* ===== TEMPLATE-PART WRAPPER — no top gap above hero ===== */
header.wp-block-template-part{margin:0 !important;padding:0 !important;display:block}
main.gsr-hero{margin-top:0 !important;padding-top:0 !important}

/* ===== HEADER ACTIONS — cart + user icons ===== */
header.gsr-header .gsr-header__actions{display:flex;align-items:center;gap:4px;list-style:none}
header.gsr-header .gsr-iconbtn{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;color:var(--gsr-bone,#F5F7FA);background:transparent;border:1px solid transparent;border-radius:4px;text-decoration:none;transition:color .18s,border-color .18s,background .18s}
header.gsr-header .gsr-iconbtn:hover{color:var(--gsr-blue,#1F6BFF);border-color:var(--gsr-line);background:rgba(245,247,250,.04)}
header.gsr-header .gsr-iconbtn svg{width:23px;height:23px;display:block}
@media(max-width:900px){header.gsr-header .gsr-header__actions{display:flex}}






/* ===== HERO HEXAGON FEATURE BADGES ===== */
.gsr-hexa-rail{position:absolute;right:clamp(28px,7vw,96px);top:50%;transform:translateY(-50%);z-index:3;display:grid;grid-template-columns:1fr 1fr;gap:22px 18px;max-width:330px;opacity:0;animation:gsr-hexaIn .7s ease .15s forwards}
.gsr-hexa{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;padding:18px 8px 14px;cursor:default}
.gsr-hexa__tile{position:relative;width:72px;height:80px;display:flex;align-items:center;justify-content:center}
.gsr-hexa__bg{position:absolute;inset:0;clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);background:linear-gradient(160deg,var(--gsr-blue,#1F6BFF),#0F2A5A)}
.gsr-hexa__fill{position:absolute;inset:2px;clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);background:linear-gradient(160deg,#13202F 0%,#0B1220 60%,#070B12)}
.gsr-hexa__icon{position:relative;width:28px;height:28px;color:var(--gsr-blue,#1F6BFF);filter:drop-shadow(0 0 10px rgba(31,107,255,.55));transition:transform .35s cubic-bezier(.2,.7,.3,1.4),color .3s}
.gsr-hexa__icon svg{width:100%;height:100%;display:block}
.gsr-hexa__label{font-family:'Space Grotesk',sans-serif;font-weight:600;font-size:.58rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gsr-bone,#F5F7FA);text-align:center;line-height:1.35;max-width:116px;margin:0}
.gsr-hexa:hover .gsr-hexa__icon{transform:translateY(-3px) scale(1.08);color:#5c95ff}
.gsr-hexa:hover .gsr-hexa__fill{background:linear-gradient(160deg,#1B2C44 0%,#101A2C 60%,#0B1220)}
.gsr-hexa:nth-child(odd){animation:gsr-hexaFloatL 5.5s ease-in-out infinite}
.gsr-hexa:nth-child(even){animation:gsr-hexaFloatR 6.5s ease-in-out infinite}
@keyframes gsr-hexaIn{from{opacity:0}to{opacity:1}}
@keyframes gsr-hexaFloatL{0%,100%{transform:translateY(0) rotate(-.4deg)}50%{transform:translateY(-6px) rotate(-.4deg)}}
@keyframes gsr-hexaFloatR{0%,100%{transform:translateY(0) rotate(.4deg)}50%{transform:translateY(-6px) rotate(.4deg)}}
@media(max-width:1200px){.gsr-hexa-rail{right:24px;gap:18px 12px;max-width:290px}.gsr-hexa__tile{width:62px;height:69px}.gsr-hexa__icon{width:24px;height:24px}.gsr-hexa__label{font-size:.54rem}}
@media(max-width:980px){.gsr-hexa-rail{position:static;transform:none;max-width:100%;margin:46px auto 0;padding:0 clamp(20px,6vw,48px);grid-template-columns:repeat(3,1fr);gap:24px 12px}}
@media(max-width:600px){.gsr-hexa-rail{grid-template-columns:repeat(2,1fr)}}
@media(prefers-reduced-motion:reduce){.gsr-hexa-rail{animation:none;opacity:1}.gsr-hexa:nth-child(odd),.gsr-hexa:nth-child(even){animation:none}}
