:root {
	--gws-ink: #07131f;
	--gws-ink-2: #0b1d2d;
	--gws-ink-3: #10283a;
	--gws-paper: #f3f1eb;
	--gws-paper-2: #e9e7df;
	--gws-white: #fff;
	--gws-lime: #c9ff45;
	--gws-lime-dark: #9bc927;
	--gws-orange: #f25822;
	--gws-blue: #2475ff;
	--gws-muted: #66727e;
	--gws-line: rgba(7, 19, 31, 0.14);
	--gws-radius: 2px;
	--gws-shadow: 0 24px 70px rgba(7, 19, 31, 0.12);
	--gws-shell: 1280px;
}

html {
	scroll-behavior: smooth;
}

body.bredewald-gws-page {
	background: var(--gws-paper);
}

.gws,
.gws * {
	box-sizing: border-box;
}

.gws {
	position: relative;
	overflow: clip;
	background: var(--gws-paper);
	color: var(--gws-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.gws img,
.gws svg {
	display: block;
	max-width: 100%;
}

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

.gws button,
.gws input {
	font: inherit;
}

.gws [hidden] {
	display: none !important;
}

.gws-shell {
	width: min(calc(100% - 64px), var(--gws-shell));
	margin-inline: auto;
}

.gws-breadcrumb {
	position: relative;
	z-index: 10;
	background: #06111b;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.58);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gws-breadcrumb ol {
	display: flex;
	gap: 10px;
	align-items: center;
	width: min(calc(100% - 64px), var(--gws-shell));
	min-height: 42px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.gws-breadcrumb li + li::before {
	margin-right: 10px;
	color: rgba(255, 255, 255, 0.25);
	content: "/";
}

.gws-breadcrumb a:hover,
.gws-breadcrumb a:focus-visible {
	color: var(--gws-white);
}

.gws-hero {
	position: relative;
	min-height: min(860px, calc(100svh - 42px));
	overflow: hidden;
	background: var(--gws-ink);
	color: var(--gws-white);
}

.gws-hero__image,
.gws-hero__veil {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.gws-hero__image {
	object-fit: cover;
	object-position: center 60%;
	filter: saturate(0.86) contrast(1.06);
	transform: scale(1.01);
}

.gws-hero__veil {
	background:
		linear-gradient(90deg, rgba(3, 12, 20, 0.97) 0%, rgba(3, 12, 20, 0.85) 38%, rgba(3, 12, 20, 0.33) 70%, rgba(3, 12, 20, 0.12) 100%),
		linear-gradient(180deg, rgba(3, 12, 20, 0.2) 38%, rgba(3, 12, 20, 0.93) 100%);
}

.gws-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: min(860px, calc(100svh - 42px));
	padding-block: clamp(88px, 11vh, 138px) 116px;
	flex-direction: column;
	justify-content: space-between;
}

.gws-hero__copy {
	max-width: 930px;
}

.gws-kicker,
.gws-eyebrow {
	margin: 0 0 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.gws-kicker {
	display: flex;
	gap: 12px;
	align-items: center;
	color: rgba(255, 255, 255, 0.76);
}

.gws-kicker span {
	display: inline-block;
	width: 32px;
	height: 2px;
	background: var(--gws-lime);
}

.gws-hero h1 {
	max-width: 930px;
	margin: 0;
	font-size: clamp(58px, 7.3vw, 108px);
	font-weight: 560;
	letter-spacing: -0.064em;
	line-height: 0.91;
	text-wrap: balance;
}

.gws-hero h1 em {
	color: var(--gws-lime);
	font-style: normal;
}

.gws-hero__lead {
	max-width: 790px;
	margin: 34px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 400;
	letter-spacing: -0.018em;
	line-height: 1.5;
}

.gws-actions,
.gws-contact__buttons {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 36px;
}

.gws-button {
	display: inline-flex;
	min-height: 54px;
	padding: 0 25px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: var(--gws-radius);
	font-size: 14px;
	font-weight: 750;
	letter-spacing: 0.01em;
	line-height: 1.2;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gws-button:hover,
.gws-button:focus-visible {
	transform: translateY(-2px);
}

.gws-button--primary {
	background: var(--gws-lime);
	color: var(--gws-ink);
}

.gws-button--primary:hover,
.gws-button--primary:focus-visible {
	background: #d7ff77;
}

.gws-button--ghost {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.07);
	color: var(--gws-white);
	backdrop-filter: blur(14px);
}

.gws-button--ghost:hover,
.gws-button--ghost:focus-visible {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.14);
}

.gws-button--ghost-dark {
	border-color: rgba(255, 255, 255, 0.26);
	color: var(--gws-white);
}

.gws-button--ghost-dark:hover,
.gws-button--ghost-dark:focus-visible {
	border-color: var(--gws-white);
}

.gws-hero__assurance {
	max-width: 680px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	letter-spacing: 0.02em;
}

.gws-hero__spectrum {
	display: grid;
	width: min(910px, calc(100% - 340px));
	margin-top: 66px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid rgba(255, 255, 255, 0.19);
	background: rgba(5, 17, 28, 0.62);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.gws-hero__spectrum > div {
	min-width: 0;
	padding: 20px 22px 19px;
}

.gws-hero__spectrum > div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.gws-hero__spectrum span,
.gws-hero__spectrum small {
	display: block;
}

.gws-hero__spectrum span {
	margin-bottom: 6px;
	color: var(--gws-lime);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gws-hero__spectrum strong {
	display: block;
	font-size: 26px;
	font-weight: 650;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.gws-hero__spectrum small {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	line-height: 1.45;
}

.gws-hero__caption {
	position: absolute;
	right: max(32px, calc((100vw - var(--gws-shell)) / 2));
	bottom: 33px;
	z-index: 3;
	max-width: 340px;
	padding: 13px 16px;
	border-left: 2px solid var(--gws-lime);
	background: rgba(5, 17, 28, 0.64);
	color: rgba(255, 255, 255, 0.68);
	font-size: 10px;
	letter-spacing: 0.04em;
	line-height: 1.45;
	backdrop-filter: blur(12px);
}

.gws-hero__caption span,
.gws-hero__caption strong {
	display: block;
}

.gws-hero__caption strong {
	margin-top: 3px;
	color: var(--gws-white);
	font-size: 11px;
	font-weight: 650;
}

.gws-hero--compact {
	min-height: 830px;
	background:
		radial-gradient(circle at 75% 42%, rgba(201, 255, 69, 0.11), transparent 24%),
		radial-gradient(circle at 68% 64%, rgba(36, 117, 255, 0.14), transparent 34%),
		linear-gradient(135deg, #06111b 0%, #091b2a 56%, #0c2434 100%);
}

.gws-hero--compact .gws-hero__veil {
	opacity: 0.34;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.gws-hero__inner--product {
	display: grid;
	min-height: 830px;
	padding-block: 68px 58px;
	grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
	gap: clamp(34px, 5vw, 76px);
	align-items: center;
	justify-content: initial;
}

.gws-hero__inner--product .gws-hero__copy {
	max-width: 700px;
}

.gws-hero--compact h1 {
	max-width: 700px;
	font-size: clamp(54px, 5.4vw, 78px);
	letter-spacing: -0.058em;
	line-height: 0.96;
}

.gws-hero--compact .gws-hero__lead {
	max-width: 660px;
	margin-top: 28px;
	font-size: clamp(18px, 1.6vw, 22px);
}

.gws-hero--compact .gws-hero__spectrum {
	width: 100%;
	margin-top: 40px;
}

.gws-product-stage {
	position: relative;
	min-width: 0;
	height: 660px;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		rgba(4, 14, 23, 0.42);
	box-shadow: 0 36px 90px rgba(0, 0, 0, 0.26);
	backdrop-filter: blur(18px);
}

.gws-product-stage::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	content: "";
}

.gws-product-stage__halo {
	position: absolute;
	top: 18%;
	right: -4%;
	width: 78%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 255, 69, 0.18), rgba(36, 117, 255, 0.06) 42%, transparent 69%);
	filter: blur(4px);
}

.gws-product-stage__unit {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: flex-end;
}

.gws-product-stage__unit img {
	position: relative;
	z-index: 1;
	object-fit: contain;
	filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.34));
}

.gws-product-stage__unit span {
	position: relative;
	z-index: 2;
	margin-top: -3px;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	background: rgba(4, 14, 23, 0.78);
	color: rgba(255, 255, 255, 0.72);
	font-size: 9px;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.gws-product-stage__unit--battery {
	bottom: 100px;
	left: 4%;
	width: 48%;
	height: 76%;
}

.gws-product-stage__unit--battery img {
	width: auto;
	height: calc(100% - 34px);
}

.gws-product-stage__unit--inverter {
	right: 2%;
	bottom: 128px;
	width: 58%;
}

.gws-product-stage__unit--inverter img {
	width: 100%;
	height: auto;
}

.gws-product-stage figcaption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 4;
	padding: 12px 14px;
	border-left: 2px solid var(--gws-lime);
	background: rgba(4, 14, 23, 0.82);
	font-size: 9px;
	line-height: 1.5;
	backdrop-filter: blur(12px);
}

.gws-product-stage figcaption span,
.gws-product-stage figcaption strong {
	display: block;
}

.gws-product-stage figcaption span {
	color: var(--gws-lime);
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.gws-product-stage figcaption strong {
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 500;
}

.gws-sectionnav {
	position: sticky;
	top: 0;
	z-index: 80;
	border-bottom: 1px solid var(--gws-line);
	background: rgba(243, 241, 235, 0.94);
	backdrop-filter: blur(18px);
}

.gws-sectionnav__inner {
	display: flex;
	min-height: 58px;
	align-items: center;
	gap: 30px;
	overflow-x: auto;
	scrollbar-width: none;
}

.gws-sectionnav__inner::-webkit-scrollbar {
	display: none;
}

.gws-sectionnav a {
	position: relative;
	flex: 0 0 auto;
	color: #465463;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.035em;
}

.gws-sectionnav a::after {
	position: absolute;
	right: 0;
	bottom: -20px;
	left: 0;
	height: 2px;
	background: var(--gws-ink);
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.gws-sectionnav a:hover,
.gws-sectionnav a:focus-visible,
.gws-sectionnav a.is-current {
	color: var(--gws-ink);
}

.gws-sectionnav a.is-current::after {
	transform: scaleX(1);
}

.gws-sectionnav .gws-sectionnav__cta {
	min-height: 34px;
	margin-left: auto;
	padding: 0 16px;
	border-radius: var(--gws-radius);
	background: var(--gws-ink);
	color: var(--gws-white);
	line-height: 34px;
}

.gws-sectionnav .gws-sectionnav__cta::after {
	display: none;
}

.gws-section {
	position: relative;
	padding-block: clamp(92px, 10vw, 148px);
}

.gws-eyebrow {
	color: #66727e;
}

.gws-heading {
	max-width: 880px;
	margin-bottom: 62px;
}

.gws-heading h2,
.gws-editorial-heading h2,
.gws-brief-intro h2,
.gws-contact__copy h2,
.gws-faq-intro h2 {
	margin: 0;
	font-size: clamp(42px, 5vw, 70px);
	font-weight: 570;
	letter-spacing: -0.055em;
	line-height: 1.02;
	text-wrap: balance;
}

.gws-heading > p:last-child,
.gws-editorial-heading__copy > p,
.gws-brief-intro > p,
.gws-contact__copy > p,
.gws-faq-intro > p {
	margin: 25px 0 0;
	color: #52606d;
	font-size: 19px;
	line-height: 1.68;
}

.gws-editorial-heading {
	display: grid;
	margin-bottom: 68px;
	grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
	gap: clamp(48px, 8vw, 120px);
	align-items: end;
}

.gws-editorial-heading__copy > p {
	margin-top: 0;
}

.gws-arrow-link {
	display: inline-flex;
	gap: 10px;
	margin-top: 20px;
	align-items: center;
	border-bottom: 1px solid var(--gws-ink);
	font-size: 14px;
	font-weight: 750;
}

.gws-arrow-link span {
	font-size: 19px;
}

.gws-section--decision {
	background:
		linear-gradient(90deg, rgba(7, 19, 31, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
		linear-gradient(rgba(7, 19, 31, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
		var(--gws-paper);
}

.gws-board-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--gws-ink);
	border-bottom: 1px solid var(--gws-ink);
}

.gws-board-card {
	min-width: 0;
	padding: 32px 27px 34px;
	background: rgba(243, 241, 235, 0.88);
}

.gws-board-card + .gws-board-card {
	border-left: 1px solid var(--gws-line);
}

.gws-board-card--accent {
	background: var(--gws-lime);
}

.gws-board-card__index {
	display: block;
	margin-bottom: 72px;
	color: #7a8490;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.14em;
}

.gws-board-card--accent .gws-board-card__index {
	color: rgba(7, 19, 31, 0.55);
}

.gws-board-card h3 {
	margin: 0 0 15px;
	font-size: 25px;
	font-weight: 620;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.gws-board-card p {
	margin: 0;
	color: #586572;
	font-size: 14px;
	line-height: 1.65;
}

.gws-board-card--accent p {
	color: rgba(7, 19, 31, 0.7);
}

.gws-board-card ul {
	margin: 25px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--gws-line);
	list-style: none;
}

.gws-board-card li {
	position: relative;
	margin-top: 8px;
	padding-left: 15px;
	font-size: 12px;
	font-weight: 650;
}

.gws-board-card li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--gws-lime-dark);
	content: "";
}

.gws-board-card--accent li::before {
	background: var(--gws-ink);
}

.gws-section--ink {
	background: var(--gws-ink);
	color: var(--gws-white);
}

.gws-heading--light .gws-eyebrow,
.gws-section--ink .gws-eyebrow {
	color: var(--gws-lime);
}

.gws-heading--light > p:last-child {
	color: rgba(255, 255, 255, 0.64);
}

.gws-usecases {
	border-top: 1px solid rgba(255, 255, 255, 0.17);
	border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

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

.gws-tablist button {
	position: relative;
	min-width: 0;
	padding: 25px 24px 23px;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.17);
	background: transparent;
	color: rgba(255, 255, 255, 0.48);
	cursor: pointer;
	text-align: left;
}

.gws-tablist button + button {
	border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.gws-tablist button::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: var(--gws-lime);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.gws-tablist button[aria-selected="true"] {
	background: rgba(255, 255, 255, 0.045);
	color: var(--gws-white);
}

.gws-tablist button[aria-selected="true"]::after {
	transform: scaleX(1);
}

.gws-tablist span,
.gws-tablist strong,
.gws-tablist small {
	display: block;
}

.gws-tablist span {
	margin-bottom: 24px;
	color: var(--gws-lime);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.gws-tablist strong {
	font-size: 17px;
	font-weight: 650;
}

.gws-tablist small {
	margin-top: 4px;
	font-size: 11px;
}

.gws-usecase-panel {
	display: grid;
	min-height: 520px;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
}

.gws-usecase-panel__copy {
	padding: clamp(42px, 6vw, 80px);
	border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.gws-usecase-panel__label {
	margin: 0 0 18px;
	color: var(--gws-lime);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gws-usecase-panel h3 {
	max-width: 700px;
	margin: 0;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 560;
	letter-spacing: -0.05em;
	line-height: 1.06;
}

.gws-usecase-panel__copy > p:nth-of-type(2) {
	max-width: 700px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 17px;
}

.gws-fact-list {
	display: grid;
	margin: 37px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.gws-fact-list > div {
	display: grid;
	padding: 13px 0;
	grid-template-columns: 120px 1fr;
	gap: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gws-fact-list dt,
.gws-fact-list dd {
	margin: 0;
}

.gws-fact-list dt {
	color: rgba(255, 255, 255, 0.4);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gws-fact-list dd {
	font-size: 13px;
	font-weight: 600;
}

.gws-chart {
	position: relative;
	min-width: 0;
	padding: clamp(38px, 5vw, 64px);
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
		var(--gws-ink-2);
}

.gws-chart__head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gws-chart__head strong {
	color: var(--gws-lime);
	font-weight: 750;
}

.gws-chart > p {
	position: absolute;
	right: clamp(30px, 4vw, 54px);
	bottom: 28px;
	left: clamp(30px, 4vw, 54px);
	margin: 0;
	color: rgba(255, 255, 255, 0.42);
	font-size: 11px;
	line-height: 1.5;
}

.gws-chart__bars {
	position: absolute;
	right: 11%;
	bottom: 94px;
	left: 11%;
	display: flex;
	height: 250px;
	align-items: flex-end;
	gap: 8px;
}

.gws-chart__bars i {
	position: relative;
	flex: 1;
	height: var(--h);
	background: rgba(255, 255, 255, 0.72);
}

.gws-chart__bars i.is-cut {
	background: linear-gradient(to top, var(--gws-lime) 0 67%, rgba(242, 88, 34, 0.9) 67% 100%);
}

.gws-chart__limit {
	position: absolute;
	right: 8%;
	top: 48%;
	left: 8%;
	border-top: 1px dashed var(--gws-lime);
}

.gws-chart__limit span {
	position: absolute;
	top: -27px;
	right: 0;
	color: var(--gws-lime);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gws-chart--energy svg {
	position: absolute;
	right: 8%;
	top: 25%;
	left: 8%;
	width: 84%;
	height: auto;
	overflow: visible;
}

.gws-chart--energy svg line {
	stroke: rgba(255, 255, 255, 0.22);
}

.gws-chart--energy .area {
	fill: url(#gws-area);
}

.gws-chart--energy .pv,
.gws-chart--energy .load {
	fill: none;
	stroke-width: 4;
}

.gws-chart--energy .pv {
	stroke: var(--gws-lime);
}

.gws-chart--energy .load {
	stroke: rgba(255, 255, 255, 0.84);
}

.gws-chart__legend {
	position: absolute;
	right: 10%;
	bottom: 84px;
	left: 10%;
	display: flex;
	gap: 22px;
}

.gws-chart__legend span {
	position: relative;
	padding-left: 16px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 10px;
}

.gws-chart__legend span::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 9px;
	height: 2px;
	background: var(--gws-white);
	content: "";
}

.gws-chart__legend .is-lime::before {
	background: var(--gws-lime);
}

.gws-marketline {
	position: absolute;
	right: 8%;
	top: 25%;
	left: 8%;
}

.gws-marketline svg {
	width: 100%;
}

.gws-marketline path {
	fill: none;
	stroke: var(--gws-lime);
	stroke-width: 4;
}

.gws-marketline__charge,
.gws-marketline__sell {
	position: absolute;
	padding: 5px 9px;
	background: var(--gws-white);
	color: var(--gws-ink);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gws-marketline__charge {
	left: 14%;
	bottom: 7%;
}

.gws-marketline__sell {
	right: 11%;
	top: 4%;
	background: var(--gws-lime);
}

.gws-chart--response {
	padding-top: 64px;
}

.gws-response-row {
	display: grid;
	margin-top: 60px;
	grid-template-columns: 48px 1fr 60px;
	gap: 13px;
	align-items: center;
}

.gws-response-row + .gws-response-row {
	margin-top: 28px;
}

.gws-response-row > span {
	font-size: 12px;
	font-weight: 800;
}

.gws-response-row > div {
	height: 8px;
	background: rgba(255, 255, 255, 0.1);
}

.gws-response-row i {
	display: block;
	width: var(--w);
	height: 100%;
	background: var(--gws-lime);
}

.gws-response-row strong {
	font-size: 11px;
	text-align: right;
}

.gws-response-scale {
	display: flex;
	margin: 17px 73px 0 61px;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.35);
	font-size: 9px;
}

.gws-section--market {
	background: #dfe4e4;
}

.gws-dispatch {
	display: grid;
	min-height: 290px;
	grid-template-columns: 0.85fr 1.2fr 1.1fr;
	background: var(--gws-ink);
	box-shadow: var(--gws-shadow);
	color: var(--gws-white);
}

.gws-dispatch__asset,
.gws-dispatch__core,
.gws-dispatch__routes {
	min-width: 0;
	padding: clamp(32px, 4vw, 52px);
}

.gws-dispatch__asset,
.gws-dispatch__core {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.gws-dispatch__asset span,
.gws-dispatch__core span {
	color: rgba(255, 255, 255, 0.44);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gws-dispatch__asset strong,
.gws-dispatch__core strong {
	margin-top: 12px;
	font-size: clamp(23px, 2.5vw, 34px);
	font-weight: 570;
	letter-spacing: -0.04em;
	line-height: 1.15;
}

.gws-dispatch__asset small {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.47);
	font-size: 11px;
}

.gws-dispatch__core {
	background: var(--gws-lime);
	color: var(--gws-ink);
}

.gws-dispatch__core span {
	color: rgba(7, 19, 31, 0.53);
}

.gws-dispatch__pulse {
	display: flex;
	gap: 7px;
	margin-top: 27px;
	align-items: end;
}

.gws-dispatch__pulse i {
	display: block;
	width: 7px;
	height: 22px;
	background: var(--gws-ink);
}

.gws-dispatch__pulse i:nth-child(2) {
	height: 37px;
}

.gws-dispatch__pulse i:nth-child(3) {
	height: 29px;
}

.gws-dispatch__routes {
	display: grid;
	gap: 0;
}

.gws-dispatch__routes > div {
	display: grid;
	padding: 13px 0;
	grid-template-columns: 34px 1fr;
	border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.gws-dispatch__routes > div:last-child {
	border-bottom: 0;
}

.gws-dispatch__routes span {
	grid-row: 1 / 3;
	color: var(--gws-lime);
	font-size: 10px;
	font-weight: 800;
}

.gws-dispatch__routes strong {
	font-size: 15px;
	font-weight: 650;
}

.gws-dispatch__routes small {
	color: rgba(255, 255, 255, 0.43);
	font-size: 10px;
}

.gws-market-facts {
	display: grid;
	margin-top: 34px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gws-market-facts article {
	padding: 30px 26px 28px;
	border-top: 1px solid var(--gws-ink);
	border-bottom: 1px solid var(--gws-ink);
}

.gws-market-facts article + article {
	border-left: 1px solid rgba(7, 19, 31, 0.22);
}

.gws-market-facts__tag {
	margin: 0 0 52px;
	color: #56636f;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gws-market-facts article > strong {
	display: block;
	font-size: 34px;
	font-weight: 590;
	letter-spacing: -0.05em;
	line-height: 1;
}

.gws-market-facts h3 {
	margin: 16px 0 10px;
	font-size: 16px;
	font-weight: 700;
}

.gws-market-facts article > p:last-child {
	margin: 0;
	color: #586570;
	font-size: 12px;
	line-height: 1.6;
}

.gws-source-strip,
.gws-data-note {
	margin: 26px 0 0;
	color: #65717b;
	font-size: 11px;
	line-height: 1.65;
}

.gws-source-strip a,
.gws-data-note a {
	border-bottom: 1px solid currentColor;
	color: var(--gws-ink);
}

.gws-section--systems {
	background: var(--gws-paper);
}

.gws-system {
	display: grid;
	min-height: 650px;
	grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
	background: var(--gws-white);
	box-shadow: var(--gws-shadow);
}

.gws-system + .gws-system {
	margin-top: 36px;
}

.gws-system__media {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: #e7eaec;
}

.gws-system__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gws-system__media--product {
	display: flex;
	padding: 52px;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 50% 55%, rgba(36, 117, 255, 0.14), transparent 44%),
		linear-gradient(135deg, #eef2f5, #dce3e8);
}

.gws-system__media--product > img {
	width: min(85%, 520px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 38px 34px rgba(7, 19, 31, 0.18));
}

.gws-system__media--duo {
	background:
		radial-gradient(circle at 58% 47%, rgba(201, 255, 69, 0.24), transparent 30%),
		linear-gradient(145deg, #dfe5e7, #f4f6f5 58%, #d8e0e3);
}

.gws-system__media--duo::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(7, 19, 31, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 19, 31, 0.045) 1px, transparent 1px);
	background-size: 44px 44px;
	content: "";
}

.gws-system-duo__item {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: flex-end;
}

.gws-system-duo__item img {
	object-fit: contain;
	filter: drop-shadow(0 32px 26px rgba(7, 19, 31, 0.2));
}

.gws-system-duo__item span {
	margin-top: -2px;
	padding: 6px 9px;
	background: var(--gws-ink);
	color: var(--gws-white);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.gws-system-duo__item--battery {
	bottom: 73px;
	left: 5%;
	width: 48%;
	height: 82%;
}

.gws-system-duo__item--battery img {
	width: auto;
	height: calc(100% - 28px);
}

.gws-system-duo__item--inverter {
	right: 1%;
	bottom: 112px;
	width: 60%;
}

.gws-system-duo__item--inverter img {
	width: 100%;
	height: auto;
}

.gws-system__media--technical {
	display: grid;
	padding: clamp(42px, 6vw, 78px);
	place-items: center;
	background:
		radial-gradient(circle at 68% 32%, rgba(201, 255, 69, 0.18), transparent 26%),
		linear-gradient(145deg, #07131f, #10283a);
}

.gws-technical-plate {
	position: relative;
	width: min(100%, 390px);
	padding: 38px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 34px 70px rgba(0, 0, 0, 0.24);
	color: var(--gws-white);
	backdrop-filter: blur(14px);
}

.gws-technical-plate::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 86px;
	height: 4px;
	background: var(--gws-lime);
	content: "";
}

.gws-technical-plate > span,
.gws-technical-plate > strong,
.gws-technical-plate > small {
	display: block;
}

.gws-technical-plate > span {
	color: var(--gws-lime);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.gws-technical-plate > strong {
	margin-top: 62px;
	font-size: clamp(84px, 9vw, 132px);
	font-weight: 540;
	letter-spacing: -0.07em;
	line-height: 0.78;
}

.gws-technical-plate > small {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gws-technical-plate > div {
	display: grid;
	margin-top: 62px;
	grid-template-columns: repeat(4, 1fr);
	gap: 7px;
}

.gws-technical-plate i {
	height: 6px;
	background: var(--gws-lime);
}

.gws-system__caveat {
	margin-top: 24px !important;
	padding: 14px 0 14px 17px;
	border-left: 2px solid var(--gws-lime-dark);
	background: linear-gradient(90deg, rgba(201, 255, 69, 0.09), transparent);
	font-size: 12px !important;
	line-height: 1.6;
}

.gws-system__media > p {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	margin: 0;
	padding: 11px 13px;
	background: rgba(7, 19, 31, 0.82);
	color: rgba(255, 255, 255, 0.67);
	font-size: 10px;
	letter-spacing: 0.03em;
	line-height: 1.4;
	backdrop-filter: blur(10px);
}

.gws-system__media > p span {
	margin-right: 8px;
	color: var(--gws-lime);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gws-system__body {
	padding: clamp(44px, 6vw, 78px);
}

.gws-system__brand {
	display: flex;
	padding-bottom: 28px;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 1px solid var(--gws-line);
}

.gws-system__brand span,
.gws-system__brand strong {
	display: block;
}

.gws-system__brand span {
	color: #6e7882;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gws-system__brand strong {
	margin-top: 3px;
	font-size: 13px;
	font-weight: 650;
}

.gws-system__brand b {
	color: var(--gws-orange);
	font-size: 21px;
	font-weight: 850;
	letter-spacing: 0.02em;
}

.gws-system--sungrow .gws-system__brand b {
	color: var(--gws-blue);
}

.gws-system--sungrow .gws-system__media {
	order: 2;
}

.gws-system h3 {
	margin: 38px 0 17px;
	font-size: clamp(32px, 3.5vw, 50px);
	font-weight: 570;
	letter-spacing: -0.05em;
	line-height: 1.05;
}

.gws-system__body > p {
	margin: 0;
	color: #596673;
	font-size: 15px;
}

.gws-product-facts {
	margin-top: 35px;
	border-top: 1px solid var(--gws-line);
}

.gws-product-facts > div {
	padding: 22px 0;
	border-bottom: 1px solid var(--gws-line);
}

.gws-product-facts span,
.gws-product-facts strong,
.gws-product-facts small {
	display: block;
}

.gws-product-facts span {
	color: #68747f;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gws-product-facts strong {
	margin-top: 5px;
	font-size: 24px;
	font-weight: 620;
	letter-spacing: -0.035em;
}

.gws-product-facts small {
	margin-top: 7px;
	color: #64707a;
	font-size: 11px;
	line-height: 1.5;
}

.gws-system__links {
	display: flex;
	gap: 11px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.gws-system__links a {
	display: inline-flex;
	min-height: 41px;
	padding: 0 13px;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--gws-line);
	font-size: 10px;
	font-weight: 750;
}

.gws-system__links a:hover,
.gws-system__links a:focus-visible {
	border-color: var(--gws-ink);
}

.gws-system__links span {
	font-size: 15px;
}

.gws-data-note {
	max-width: 960px;
}

.gws-section--projects {
	background: var(--gws-ink);
	color: var(--gws-white);
}

.gws-section--projects .gws-eyebrow {
	color: var(--gws-lime);
}

.gws-section--projects .gws-editorial-heading__copy > p {
	color: rgba(255, 255, 255, 0.62);
}

.gws-project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.gws-project {
	min-width: 0;
	background: var(--gws-white);
	color: var(--gws-ink);
}

.gws-project__media {
	position: relative;
	display: block;
	height: 290px;
	overflow: hidden;
	background: #cbd2d5;
}

.gws-project__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gws-project:nth-child(2) .gws-project__media img {
	object-position: center;
}

.gws-project__media:hover img,
.gws-project__media:focus-visible img {
	transform: scale(1.035);
}

.gws-project__media > span {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 7px 10px;
	background: rgba(7, 19, 31, 0.86);
	color: var(--gws-white);
	font-size: 9px;
	font-weight: 750;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.gws-project__body {
	padding: 27px 27px 25px;
}

.gws-project__body > p {
	margin: 0;
	color: #6b7680;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gws-project h3 {
	margin: 15px 0 17px;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 590;
	letter-spacing: -0.05em;
	line-height: 1;
}

.gws-project h3 span {
	color: #a1a9b0;
	font-weight: 400;
}

.gws-project ul {
	display: flex;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
}

.gws-project li {
	padding: 5px 8px;
	background: #edf0f1;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gws-project__body small {
	display: block;
	margin-top: 22px;
	padding-top: 15px;
	border-top: 1px solid var(--gws-line);
	color: #7c858d;
	font-size: 9px;
	line-height: 1.45;
}

.gws-section--process {
	background: var(--gws-paper);
}

.gws-process {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--gws-ink);
	list-style: none;
}

.gws-process li {
	display: grid;
	min-height: 156px;
	padding: 30px 0;
	grid-template-columns: 100px 1fr 170px;
	gap: 36px;
	align-items: start;
	border-bottom: 1px solid var(--gws-line);
}

.gws-process li > span {
	color: #7a848d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.gws-process strong {
	display: block;
	font-size: 25px;
	font-weight: 620;
	letter-spacing: -0.035em;
}

.gws-process p {
	max-width: 720px;
	margin: 10px 0 0;
	color: #5d6974;
	font-size: 14px;
}

.gws-process small {
	padding-top: 5px;
	color: #65717b;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.gws-section--brief {
	background: #0c2538;
	color: var(--gws-white);
}

.gws-brief-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(540px, 1.28fr);
	gap: clamp(48px, 8vw, 110px);
	align-items: start;
}

.gws-brief-intro {
	position: sticky;
	top: 98px;
}

.gws-brief-intro .gws-eyebrow {
	color: var(--gws-lime);
}

.gws-brief-intro > p {
	color: rgba(255, 255, 255, 0.64);
}

.gws-brief-intro__facts {
	margin-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.gws-brief-intro__facts > div {
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gws-brief-intro__facts span,
.gws-brief-intro__facts strong {
	display: block;
}

.gws-brief-intro__facts span {
	color: rgba(255, 255, 255, 0.38);
	font-size: 9px;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gws-brief-intro__facts strong {
	margin-top: 3px;
	font-size: 12px;
	font-weight: 650;
}

.gws-check {
	background: var(--gws-white);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
	color: var(--gws-ink);
}

.gws-check__top {
	display: grid;
	padding: 19px 24px;
	grid-template-columns: auto 1fr;
	gap: 20px;
	align-items: center;
	border-bottom: 1px solid var(--gws-line);
}

.gws-check__top > span {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gws-check__track {
	height: 3px;
	overflow: hidden;
	background: #e3e6e7;
}

.gws-check__track i {
	display: block;
	width: 25%;
	height: 100%;
	background: var(--gws-lime-dark);
	transition: width 240ms ease;
}

.gws-check__step {
	min-width: 0;
	margin: 0;
	padding: 36px 34px 40px;
	border: 0;
}

.gws-check__step legend {
	display: block;
	width: 100%;
	margin: 0 0 28px;
	padding: 0;
	font-size: clamp(25px, 3vw, 36px);
	font-weight: 590;
	letter-spacing: -0.04em;
	line-height: 1.15;
}

.gws-check__step legend span {
	display: block;
	margin-bottom: 11px;
	color: #7b858e;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.gws-check__step label {
	display: block;
	cursor: pointer;
}

.gws-check__step label + label {
	margin-top: 9px;
}

.gws-check__step input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gws-check__step label > span {
	position: relative;
	display: block;
	padding: 17px 52px 17px 18px;
	border: 1px solid var(--gws-line);
	background: #f8f8f6;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.gws-check__step label > span::after {
	position: absolute;
	top: 50%;
	right: 18px;
	width: 17px;
	height: 17px;
	border: 1px solid #9ba3aa;
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.gws-check__step input:checked + span {
	border-color: var(--gws-ink);
	background: #eef1eb;
}

.gws-check__step input:checked + span::after {
	border: 5px solid var(--gws-ink);
	background: var(--gws-lime);
}

.gws-check__step input:focus-visible + span {
	outline: 2px solid var(--gws-blue);
	outline-offset: 2px;
}

.gws-check__step label strong,
.gws-check__step label small {
	display: block;
}

.gws-check__step label strong {
	font-size: 14px;
	font-weight: 700;
}

.gws-check__step label small {
	margin-top: 2px;
	color: #74808a;
	font-size: 10px;
}

.gws-check__summary {
	padding: 38px 34px 42px;
}

.gws-check__summary .gws-eyebrow {
	margin-bottom: 12px;
}

.gws-check__summary h3 {
	margin: 0;
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 590;
	letter-spacing: -0.045em;
	line-height: 1.12;
}

.gws-check__summary dl {
	margin: 28px 0 0;
	border-top: 1px solid var(--gws-line);
}

.gws-check__summary dl > div {
	display: grid;
	padding: 11px 0;
	grid-template-columns: 110px 1fr;
	gap: 16px;
	border-bottom: 1px solid var(--gws-line);
}

.gws-check__summary dt,
.gws-check__summary dd {
	margin: 0;
	font-size: 11px;
}

.gws-check__summary dt {
	color: #747f89;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.gws-check__summary dd {
	font-weight: 650;
}

.gws-check__next-step {
	margin: 22px 0;
	padding: 17px 18px;
	background: #edf1e5;
}

.gws-check__next-step span,
.gws-check__next-step strong {
	display: block;
}

.gws-check__next-step span {
	color: #68727b;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.gws-check__next-step strong {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 650;
}

.gws-check__controls {
	display: grid;
	min-height: 68px;
	padding: 12px 16px;
	grid-template-columns: auto 1fr auto;
	gap: 16px;
	align-items: center;
	border-top: 1px solid var(--gws-line);
}

.gws-check__controls button {
	min-height: 40px;
	padding: 0 16px;
	border: 1px solid var(--gws-line);
	background: transparent;
	color: var(--gws-ink);
	cursor: pointer;
	font-size: 11px;
	font-weight: 750;
}

.gws-check__controls button.is-primary {
	border-color: var(--gws-ink);
	background: var(--gws-ink);
	color: var(--gws-white);
}

.gws-check__controls button:disabled {
	cursor: not-allowed;
	opacity: 0.38;
}

.gws-check__controls p {
	margin: 0;
	color: #737e87;
	font-size: 9px;
	line-height: 1.4;
	text-align: center;
}

.gws-contact {
	position: relative;
	background: #050d14;
	color: var(--gws-white);
}

.gws-contact__grid {
	display: grid;
	min-height: 720px;
	grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1.14fr);
	align-items: stretch;
}

.gws-contact__portrait {
	position: relative;
	min-height: 650px;
	overflow: hidden;
}

.gws-contact__portrait::after {
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(transparent, rgba(5, 13, 20, 0.92));
	content: "";
}

.gws-contact__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
}

.gws-contact__portrait > div {
	position: absolute;
	right: 28px;
	bottom: 28px;
	left: 28px;
	z-index: 2;
	padding-top: 17px;
	border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.gws-contact__portrait span,
.gws-contact__portrait strong {
	display: block;
}

.gws-contact__portrait span {
	color: var(--gws-lime);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gws-contact__portrait strong {
	margin-top: 5px;
	font-size: 15px;
	font-weight: 650;
}

.gws-contact__copy {
	display: flex;
	padding: clamp(60px, 8vw, 112px);
	flex-direction: column;
	justify-content: center;
}

.gws-contact__copy .gws-eyebrow {
	color: var(--gws-lime);
}

.gws-contact__copy > p {
	color: rgba(255, 255, 255, 0.62);
}

.gws-contact__note {
	margin-top: 30px !important;
	color: rgba(255, 255, 255, 0.36) !important;
	font-size: 10px !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gws-section--faq {
	background: var(--gws-paper);
}

.gws-faq-layout {
	display: grid;
	grid-template-columns: minmax(270px, 0.72fr) minmax(520px, 1.28fr);
	gap: clamp(54px, 9vw, 128px);
	align-items: start;
}

.gws-faq-intro {
	position: sticky;
	top: 100px;
}

.gws-faqs {
	border-top: 1px solid var(--gws-ink);
}

.gws-faqs details {
	border-bottom: 1px solid var(--gws-line);
}

.gws-faqs summary {
	position: relative;
	padding: 25px 52px 25px 0;
	cursor: pointer;
	font-size: 17px;
	font-weight: 650;
	letter-spacing: -0.015em;
	list-style: none;
}

.gws-faqs summary::-webkit-details-marker {
	display: none;
}

.gws-faqs summary::before,
.gws-faqs summary::after {
	position: absolute;
	top: 50%;
	right: 5px;
	width: 17px;
	height: 1px;
	background: var(--gws-ink);
	content: "";
	transition: transform 180ms ease;
}

.gws-faqs summary::after {
	transform: rotate(90deg);
}

.gws-faqs details[open] summary::after {
	transform: rotate(0);
}

.gws-faqs details > div {
	padding: 0 58px 27px 0;
}

.gws-faqs details p {
	margin: 0;
	color: #596671;
	font-size: 14px;
}

[data-gws-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1180px) {
	.gws-hero__spectrum {
		width: min(820px, calc(100% - 250px));
	}

	.gws-hero__inner--product {
		grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
		gap: 34px;
	}

	.gws-hero--compact h1 {
		font-size: clamp(50px, 5.5vw, 68px);
	}

	.gws-product-stage {
		height: 610px;
	}

	.gws-board-grid,
	.gws-market-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gws-board-card:nth-child(3),
	.gws-board-card:nth-child(4),
	.gws-market-facts article:nth-child(3),
	.gws-market-facts article:nth-child(4) {
		border-top: 1px solid var(--gws-line);
	}

	.gws-board-card:nth-child(3),
	.gws-market-facts article:nth-child(3) {
		border-left: 0;
	}

	.gws-tablist {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gws-tablist button:nth-child(3) {
		border-left: 0;
	}

	.gws-usecase-panel {
		grid-template-columns: 1fr;
	}

	.gws-usecase-panel__copy {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.17);
	}

	.gws-chart {
		min-height: 480px;
	}

	.gws-project-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gws-project:last-child {
		grid-column: 1 / -1;
		max-width: calc(50% - 9px);
	}
}

@media (max-width: 960px) {
	.gws-shell,
	.gws-breadcrumb ol {
		width: min(calc(100% - 40px), var(--gws-shell));
	}

	.gws-hero {
		min-height: 820px;
	}

	.gws-hero__inner {
		min-height: 820px;
		padding-bottom: 150px;
	}

	.gws-hero__spectrum {
		width: 100%;
	}

	.gws-hero__caption {
		right: 20px;
		bottom: 22px;
		left: 20px;
		max-width: none;
	}

	.gws-hero--compact {
		min-height: 0;
	}

	.gws-hero__inner--product {
		min-height: 0;
		padding-block: 72px 58px;
		grid-template-columns: 1fr;
	}

	.gws-hero__inner--product .gws-hero__copy {
		max-width: 780px;
	}

	.gws-hero--compact h1 {
		max-width: 780px;
	}

	.gws-product-stage {
		height: 590px;
	}

	.gws-editorial-heading,
	.gws-brief-layout,
	.gws-faq-layout {
		grid-template-columns: 1fr;
	}

	.gws-editorial-heading {
		gap: 32px;
	}

	.gws-brief-intro,
	.gws-faq-intro {
		position: static;
	}

	.gws-dispatch {
		grid-template-columns: 1fr 1fr;
	}

	.gws-dispatch__routes {
		grid-column: 1 / -1;
	}

	.gws-dispatch__core {
		border-right: 0;
	}

	.gws-system {
		grid-template-columns: 1fr;
	}

	.gws-system--sungrow .gws-system__media {
		order: 0;
	}

	.gws-system__media {
		min-height: 520px;
	}

	.gws-contact__grid {
		width: 100%;
		grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
	}

	.gws-contact__copy {
		padding: 58px 42px;
	}
}

@media (max-width: 720px) {
	.gws {
		font-size: 16px;
	}

	.gws-shell,
	.gws-breadcrumb ol {
		width: min(calc(100% - 32px), var(--gws-shell));
	}

	.gws-breadcrumb {
		font-size: 9px;
	}

	.gws-hero,
	.gws-hero__inner {
		min-height: 790px;
	}

	.gws-hero__veil {
		background:
			linear-gradient(90deg, rgba(3, 12, 20, 0.95), rgba(3, 12, 20, 0.55)),
			linear-gradient(180deg, rgba(3, 12, 20, 0.1) 30%, rgba(3, 12, 20, 0.96) 100%);
	}

	.gws-hero__inner {
		padding-top: 72px;
		padding-bottom: 144px;
	}

	.gws-hero h1 {
		font-size: clamp(48px, 14vw, 74px);
	}

	.gws-hero__lead {
		margin-top: 25px;
		font-size: 17px;
	}

	.gws-actions,
	.gws-contact__buttons {
		align-items: stretch;
		flex-direction: column;
	}

	.gws-actions .gws-button,
	.gws-contact__buttons .gws-button {
		width: 100%;
	}

	.gws-hero__assurance {
		font-size: 11px;
	}

	.gws-hero__spectrum {
		display: none;
	}

	.gws-hero__caption {
		font-size: 8px;
	}

	.gws-sectionnav__inner {
		gap: 22px;
	}

	.gws-sectionnav .gws-sectionnav__cta {
		display: none;
	}

	.gws-section {
		padding-block: 82px;
	}

	.gws-heading h2,
	.gws-editorial-heading h2,
	.gws-brief-intro h2,
	.gws-contact__copy h2,
	.gws-faq-intro h2 {
		font-size: clamp(38px, 11vw, 56px);
	}

	.gws-heading > p:last-child,
	.gws-editorial-heading__copy > p,
	.gws-brief-intro > p,
	.gws-contact__copy > p,
	.gws-faq-intro > p {
		font-size: 16px;
	}

	.gws-board-grid,
	.gws-market-facts,
	.gws-project-grid,
	.gws-tablist,
	.gws-dispatch,
	.gws-contact__grid {
		grid-template-columns: 1fr;
	}

	.gws-board-card + .gws-board-card,
	.gws-board-card:nth-child(3),
	.gws-market-facts article + article,
	.gws-market-facts article:nth-child(3),
	.gws-tablist button + button,
	.gws-tablist button:nth-child(3) {
		border-left: 0;
	}

	.gws-board-card + .gws-board-card,
	.gws-market-facts article + article {
		border-top: 1px solid var(--gws-line);
	}

	.gws-board-card__index {
		margin-bottom: 34px;
	}

	.gws-tablist button {
		display: grid;
		padding: 17px 18px;
		grid-template-columns: 28px 1fr;
	}

	.gws-tablist span {
		grid-row: 1 / 3;
		margin: 4px 0 0;
	}

	.gws-usecase-panel__copy,
	.gws-chart {
		padding: 34px 22px;
	}

	.gws-usecase-panel h3 {
		font-size: 35px;
	}

	.gws-fact-list > div {
		grid-template-columns: 92px 1fr;
	}

	.gws-chart {
		min-height: 390px;
	}

	.gws-chart__bars {
		bottom: 86px;
		height: 190px;
	}

	.gws-dispatch__asset,
	.gws-dispatch__core,
	.gws-dispatch__routes {
		grid-column: auto;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	}

	.gws-market-facts__tag {
		margin-bottom: 28px;
	}

	.gws-system__media {
		min-height: 390px;
	}

	.gws-system__media--product {
		padding: 35px;
	}

	.gws-system__body {
		padding: 36px 24px;
	}

	.gws-system__brand {
		align-items: flex-end;
	}

	.gws-system__brand b {
		font-size: 16px;
	}

	.gws-project:last-child {
		grid-column: auto;
		max-width: none;
	}

	.gws-project__media {
		height: 260px;
	}

	.gws-process li {
		min-height: 0;
		padding: 25px 0;
		grid-template-columns: 48px 1fr;
		gap: 15px;
	}

	.gws-process small {
		grid-column: 2;
		padding-top: 0;
	}

	.gws-check__step,
	.gws-check__summary {
		padding: 30px 20px 34px;
	}

	.gws-check__controls {
		grid-template-columns: 1fr 1fr;
	}

	.gws-check__controls p {
		grid-row: 2;
		grid-column: 1 / -1;
	}

	.gws-contact__grid {
		min-height: 0;
	}

	.gws-contact__portrait {
		min-height: 560px;
	}

	.gws-contact__copy {
		padding: 72px 20px;
	}

	.gws-faqs summary {
		font-size: 15px;
	}

	.gws-hero--compact,
	.gws-hero--compact .gws-hero__inner--product {
		min-height: 0;
	}

	.gws-hero--compact .gws-hero__veil {
		opacity: 0.25;
		background-image:
			linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
		background-size: 44px 44px;
	}

	.gws-hero--compact .gws-hero__inner--product {
		padding-top: 64px;
		padding-bottom: 42px;
	}

	.gws-hero--compact h1 {
		font-size: clamp(44px, 12vw, 62px);
	}

	.gws-hero--compact .gws-hero__spectrum {
		display: grid;
		margin-top: 34px;
		grid-template-columns: 1fr;
	}

	.gws-hero--compact .gws-hero__spectrum > div {
		padding: 16px 18px;
	}

	.gws-hero--compact .gws-hero__spectrum > div + div {
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		border-left: 0;
	}

	.gws-product-stage {
		height: 480px;
	}

	.gws-product-stage__unit--battery {
		bottom: 96px;
		left: 1%;
		width: 49%;
		height: 70%;
	}

	.gws-product-stage__unit--inverter {
		right: -2%;
		bottom: 118px;
		width: 62%;
	}

	.gws-product-stage figcaption {
		right: 12px;
		bottom: 12px;
		left: 12px;
	}

	.gws-system-duo__item--battery {
		left: 1%;
		width: 49%;
	}

	.gws-system-duo__item--inverter {
		right: -3%;
		width: 64%;
	}

	.gws-system__media--technical {
		padding: 30px;
	}

	.gws-technical-plate {
		padding: 28px;
	}

	.gws-technical-plate > strong {
		margin-top: 46px;
	}

	.gws-technical-plate > div {
		margin-top: 45px;
	}
}

@media (max-width: 420px) {
	.gws-hero h1 {
		font-size: 45px;
	}

	.gws-hero__lead {
		font-size: 15px;
	}

	.gws-fact-list > div,
	.gws-check__summary dl > div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.gws-chart {
		min-height: 350px;
	}

	.gws-chart__bars {
		right: 7%;
		left: 7%;
		height: 155px;
		gap: 4px;
	}

	.gws-response-row {
		grid-template-columns: 38px 1fr 50px;
	}

	.gws-product-facts strong {
		font-size: 21px;
	}

	.gws-contact__portrait {
		min-height: 500px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.gws *,
	.gws *::before,
	.gws *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	[data-gws-reveal] {
		opacity: 1;
		transform: none;
	}
}
