:root {
	--ink: #163b43;
	--ink-soft: #245b62;
	--cream: #ffffff;
	--paper: #ffffff;
	--muted: #5e706f;
	--line: rgba(22, 59, 67, 0.14);
	--lime: #c9eb69;
	--aqua: #62b6ad;
	--orange: var(--lime);
	--white: #ffffff;
	--display: "Manrope", sans-serif;
	--body: "Inter", sans-serif;
	--radius-lg: 28px;
	--radius-md: 16px;
	--shadow: 0 18px 60px rgba(22, 59, 67, 0.12);
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}
body,
button,
input,
select,
textarea {
	font-family: var(--body);
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	max-width: 100%;
}
button,
input,
select,
textarea {
	font: inherit;
}
button {
	cursor: pointer;
}
.container {
	width: min(1180px, calc(100% - 64px));
	margin: 0 auto;
}
.skip-link {
	position: fixed;
	left: 16px;
	top: -100px;
	z-index: 100;
	padding: 10px 16px;
	color: var(--ink);
	background: var(--lime);
	border-radius: 4px;
}
.skip-link:focus {
	top: 16px;
}

/* Shared typography */
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	color: var(--aqua);
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.eyebrow-dot {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 0 5px rgba(215, 255, 100, 0.14);
}
.dark-eyebrow {
	color: #74817e;
}
.section {
	padding: 136px 0;
}
.section-label {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #7e8986;
	font-family: var(--display);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.section-label span:first-child {
	color: var(--ink);
}
h1,
h2,
h3,
p {
	margin-top: 0;
}
h1,
h2,
h3 {
	font-family: var(--display);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.98;
}
h2 {
	margin-bottom: 28px;
	font-size: clamp(42px, 5vw, 72px);
}
h2 span {
	color: #78908c;
}
h3 {
	font-size: 28px;
}
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid currentColor;
	font-family: var(--display);
	font-size: 14px;
	font-weight: 600;
	transition:
		gap 0.25s ease,
		opacity 0.25s ease;
}
.text-link:hover {
	gap: 18px;
	opacity: 0.75;
}
.dark-link {
	color: var(--ink);
}
.light-link {
	color: var(--white);
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-height: 54px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--display);
	font-size: 13px;
	font-weight: 600;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease;
}
.button:hover {
	transform: translateY(-3px);
}
.button-primary {
	color: var(--ink);
	background: var(--lime);
}
.button-primary:hover {
	background: var(--white);
}
.button-lime {
	color: var(--ink);
	background: var(--lime);
	width: 100%;
}

/* Header */
.site-header {
	position: fixed;
	z-index: 20;
	top: 0;
	width: 100%;
	color: var(--white);
	transition:
		background 0.3s ease,
		backdrop-filter 0.3s ease;
}
.site-header.scrolled {
	background: rgba(8, 26, 33, 0.9);
	backdrop-filter: blur(16px);
}
.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 86px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}
.brand-mark {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 9px;
	background: var(--lime);
	transform: rotate(45deg);
}
.brand-mark span {
	width: 11px;
	height: 18px;
	display: block;
	background: var(--ink);
	clip-path: polygon(50% 0, 100% 48%, 58% 48%, 77% 100%, 0 40%, 40% 40%);
	transform: rotate(-45deg);
}
.brand-name {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 0;
	font-family: var(--display);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.08em;
}
.brand-name > span {
	color: var(--lime);
}
.brand-name small {
	position: absolute;
	bottom: -10px;
	left: 1px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 7px;
	font-weight: 600;
	letter-spacing: 0.23em;
}
.primary-nav {
	display: flex;
	align-items: center;
	gap: 34px;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 500;
}
.primary-nav a:not(.nav-cta) {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s ease;
}
.primary-nav a:not(.nav-cta):hover {
	color: var(--lime);
}
.nav-cta {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	padding: 12px 16px;
	border: 1px solid rgba(215, 255, 100, 0.55);
	border-radius: 999px;
	color: var(--lime);
}
.nav-cta:hover {
	color: var(--ink);
	background: var(--lime);
}
.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: transparent;
}
.menu-toggle span {
	display: block;
	width: 16px;
	height: 1px;
	margin: 4px auto;
	background: white;
	transition: transform 0.2s ease;
}

/* Hero */
.hero {
	position: relative;
	min-height: 850px;
	overflow: hidden;
	color: var(--white);
	background: var(--ink);
}
.hero-grid-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image:
		linear-gradient(rgba(156, 233, 223, 0.18) 1px, transparent 1px),
		linear-gradient(90deg, rgba(156, 233, 223, 0.18) 1px, transparent 1px);
	background-size: 84px 84px;
	mask-image: linear-gradient(90deg, black, transparent 70%);
}
.hero-grid-pattern::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		radial-gradient(
			circle at 68% 42%,
			rgba(215, 255, 100, 0.17),
			transparent 27%
		),
		linear-gradient(180deg, transparent 60%, var(--ink) 100%);
}
.hero-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 0.91fr;
	gap: 60px;
	align-items: center;
	min-height: 720px;
	padding-top: 100px;
}
.hero-copy {
	max-width: 640px;
	padding-bottom: 10px;
}
.hero h1 {
	margin: 0 0 28px;
	font-size: clamp(68px, 8.3vw, 126px);
}
.hero h1 em {
	color: var(--lime);
	font-style: normal;
}
.hero-lede {
	max-width: 390px;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 18px;
	line-height: 1.55;
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 74px;
}
.hero-proof {
	display: flex;
	align-items: center;
	gap: 22px;
}
.proof-item {
	display: grid;
	gap: 1px;
}
.proof-item strong {
	color: var(--lime);
	font-family: var(--display);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.05em;
}
.proof-item span {
	color: rgba(255, 255, 255, 0.48);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.proof-line {
	width: 1px;
	height: 28px;
	background: rgba(255, 255, 255, 0.2);
}
.hero-visual {
	position: relative;
	padding-top: 42px;
}
.hero-image-wrap {
	position: relative;
	height: 520px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 180px 180px 16px 16px;
	background: #57746d;
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}
.hero-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
	mix-blend-mode: screen;
	opacity: 0.88;
}
.image-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		145deg,
		rgba(8, 26, 33, 0.1),
		rgba(8, 26, 33, 0.5)
	);
}
.hero-float-card {
	position: absolute;
	right: 20px;
	bottom: 38px;
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 168px;
	padding: 17px 20px;
	color: var(--ink);
	background: var(--lime);
	border-radius: 13px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	font-size: 12px;
	line-height: 1.25;
}
.hero-float-card b {
	font-family: var(--display);
	font-size: 16px;
	font-weight: 600;
}
.float-icon {
	font-size: 22px;
}
.sun-orbit {
	position: absolute;
	top: 30px;
	right: -72px;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(215, 255, 100, 0.58);
	border-radius: 50%;
}
.sun-orbit::before,
.sun-orbit::after {
	position: absolute;
	inset: 15px;
	content: "";
	border: 1px solid rgba(215, 255, 100, 0.22);
	border-radius: 50%;
}
.sun-orbit::after {
	inset: 30px;
}
.sun-orbit span {
	position: absolute;
	top: -5px;
	left: 75px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 24px var(--lime);
}
.visual-caption {
	display: flex;
	justify-content: space-between;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.45);
	font-family: var(--display);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.visual-caption span {
	color: var(--lime);
}
.hero-marquee {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.65);
	font-family: var(--display);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}
.marquee-track {
	display: flex;
	align-items: center;
	gap: 32px;
	width: max-content;
	padding: 15px 0;
	animation: marquee 34s linear infinite;
}
.marquee-track i {
	color: var(--lime);
	font-size: 14px;
	font-style: normal;
}
@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

/* Intro */
.intro-section {
	background: var(--paper);
}
.intro-grid {
	display: grid;
	grid-template-columns: 1fr 2fr 0.8fr;
	gap: 60px;
}
.intro-copy {
	max-width: 660px;
}
.intro-copy h2 {
	margin-top: 0;
}
.intro-copy > p:not(.eyebrow) {
	max-width: 540px;
	color: var(--muted);
}
.intro-copy .text-link {
	margin-top: 16px;
}
.intro-aside {
	align-self: end;
	padding-bottom: 8px;
}
.accent-line {
	width: 100%;
	height: 3px;
	margin-bottom: 24px;
	background: var(--lime);
}
.intro-aside p {
	margin-bottom: 14px;
	font-family: var(--display);
	font-size: 18px;
	line-height: 1.3;
}
.intro-aside span {
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Solutions */
.solutions-section {
	background: var(--cream);
}
.section-heading {
	display: grid;
	grid-template-columns: 1fr 1.45fr 1fr;
	gap: 60px;
	align-items: end;
	margin-bottom: 58px;
}
.section-heading h2 {
	margin-bottom: 0;
}
.heading-note {
	max-width: 240px;
	justify-self: end;
	margin-bottom: 7px;
	color: var(--muted);
	font-size: 14px;
}
.solution-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.solution-card {
	position: relative;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 26px 28px 29px;
	border-radius: var(--radius-lg);
}
.solution-card-dark {
	color: var(--white);
	background: var(--ink);
}
.solution-card-image {
	color: var(--white);
	background: var(--ink-soft);
}
.solution-card-lime {
	color: var(--ink);
	background: var(--lime);
}
.card-topline {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.5);
	font-family: var(--display);
	font-size: 10px;
	letter-spacing: 0.14em;
}
.solution-card-lime .card-topline {
	color: rgba(8, 26, 33, 0.52);
}
.solution-card h3 {
	position: relative;
	z-index: 1;
	margin: auto 0 18px;
	font-size: clamp(38px, 4vw, 54px);
}
.solution-card p {
	position: relative;
	z-index: 1;
	max-width: 310px;
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
}
.solution-card-lime p {
	color: rgba(8, 26, 33, 0.64);
}
.card-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--lime);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
}
.solution-card-lime .card-link {
	color: var(--ink);
	border-color: rgba(8, 26, 33, 0.23);
}
.card-image {
	position: absolute;
	inset: 0;
	opacity: 0.35;
}
.card-image::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(
		180deg,
		rgba(8, 26, 33, 0.25),
		var(--ink-soft) 80%
	);
}
.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.solution-icon {
	position: relative;
	z-index: 1;
	width: 92px;
	height: 92px;
	margin: 54px 0 0;
}
.module-icon {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 5px;
	padding: 8px;
	border: 1px solid rgba(215, 255, 100, 0.7);
	border-radius: 50%;
	transform: rotate(-18deg);
}
.module-icon span {
	display: block;
	border: 1px solid rgba(215, 255, 100, 0.7);
	border-radius: 2px;
}
.battery-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.battery-icon::after {
	position: absolute;
	left: 50%;
	top: 13px;
	width: 35px;
	height: 64px;
	border: 1px solid var(--lime);
	border-radius: 4px;
	content: "";
	transform: translateX(-50%);
}
.battery-icon span {
	z-index: 1;
	width: 11px;
	height: 35px;
	border-radius: 2px;
	background: var(--lime);
}
.inverter-icon {
	display: grid;
	place-items: center;
	border: 1px solid rgba(8, 26, 33, 0.68);
	border-radius: 50%;
}
.inverter-icon::before {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(8, 26, 33, 0.68);
	border-radius: 50%;
	content: "";
}
.inverter-icon span {
	position: absolute;
	width: 1px;
	height: 88px;
	background: var(--ink);
	transform: rotate(45deg);
}
.inverter-icon b {
	position: absolute;
	font-family: var(--display);
	font-size: 18px;
	font-weight: 400;
}

/* Why */
.why-section {
	color: var(--white);
	background: var(--ink);
}
.why-grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: clamp(70px, 10vw, 145px);
	align-items: center;
}
.why-visual {
	position: relative;
	min-height: 590px;
}
.why-image {
	height: 590px;
	overflow: hidden;
	border-radius: 150px 18px 18px 18px;
}
.why-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
}
.why-image::after {
	position: absolute;
	inset: 0;
	content: "";
	border-radius: 150px 18px 18px 18px;
	background: linear-gradient(0deg, rgba(8, 26, 33, 0.7), transparent 65%);
}
.why-stamp {
	position: absolute;
	right: -42px;
	bottom: 45px;
	width: 147px;
	height: 147px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border: 1px solid var(--lime);
	border-radius: 50%;
	color: var(--lime);
	background: var(--ink);
	text-align: center;
	transform: rotate(11deg);
}
.why-stamp span {
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.16em;
}
.why-stamp strong {
	font-family: var(--display);
	font-size: 23px;
	line-height: 0.86;
	letter-spacing: -0.08em;
}
.why-copy h2 {
	margin-bottom: 22px;
}
.why-copy h2 span {
	color: var(--lime);
}
.why-copy > p:not(.eyebrow) {
	max-width: 520px;
	margin-bottom: 45px;
	color: rgba(255, 255, 255, 0.59);
}
.why-copy .section-label {
	margin-bottom: 70px;
	color: rgba(255, 255, 255, 0.44);
}
.why-copy .section-label span:first-child {
	color: var(--lime);
}
.benefit-list {
	display: grid;
	gap: 0;
}
.benefit {
	display: grid;
	grid-template-columns: 43px 1fr;
	gap: 20px;
	padding: 21px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.benefit:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.benefit-number {
	color: var(--lime);
	font-family: var(--display);
	font-size: 11px;
}
.benefit h3 {
	margin: 0 0 7px;
	color: var(--white);
	font-size: 19px;
	letter-spacing: -0.03em;
}
.benefit p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
}

/* Audiences */
.audiences-section {
	background: var(--aqua);
}
.audience-intro {
	display: grid;
	grid-template-columns: 1fr 2.2fr;
	align-items: start;
	margin-bottom: 74px;
}
.audience-intro h2 {
	margin: 0;
}
.audience-intro h2 span {
	color: rgba(8, 26, 33, 0.42);
}
.audience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid rgba(8, 26, 33, 0.25);
	border-bottom: 1px solid rgba(8, 26, 33, 0.25);
}
.audience-item {
	position: relative;
	min-height: 250px;
	padding: 28px 30px 28px 0;
	border-right: 1px solid rgba(8, 26, 33, 0.25);
}
.audience-item + .audience-item {
	padding-left: 30px;
}
.audience-item:last-child {
	border-right: 0;
}
.audience-icon {
	display: block;
	margin-bottom: 28px;
	font-family: var(--display);
	font-size: 34px;
	font-weight: 400;
}
.audience-item h3 {
	margin-bottom: 10px;
	font-size: 25px;
}
.audience-item p {
	max-width: 240px;
	margin: 0;
	color: rgba(8, 26, 33, 0.65);
	font-size: 14px;
}
.audience-arrow {
	position: absolute;
	right: 28px;
	bottom: 28px;
	font-size: 22px;
}

/* Process */
.process-section {
	background: var(--paper);
}
.process-top {
	display: grid;
	grid-template-columns: 1fr 1.25fr 1.25fr;
	align-items: start;
	margin-bottom: 72px;
}
.process-top h2 {
	margin: 26px 0 0;
}
.process-top .eyebrow {
	margin-top: 32px;
}
.process-line {
	width: 100%;
	height: 1px;
	margin-bottom: 0;
	background: var(--line);
}
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.process-step {
	position: relative;
	min-height: 205px;
	padding: 27px 26px 20px 0;
	border-right: 1px solid var(--line);
}
.process-step + .process-step {
	padding-left: 26px;
}
.process-step:last-child {
	border-right: 0;
}
.process-step > span {
	color: var(--orange);
	font-family: var(--display);
	font-size: 11px;
}
.process-step h3 {
	margin: 48px 0 10px;
	font-size: 20px;
	letter-spacing: -0.03em;
}
.process-step p {
	max-width: 190px;
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

/* Contact */
.contact-section {
	position: relative;
	overflow: hidden;
	color: var(--white);
	background: var(--ink);
}
.contact-glow {
	position: absolute;
	top: -240px;
	right: -150px;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(215, 255, 100, 0.15);
	border-radius: 50%;
	box-shadow:
		0 0 0 70px rgba(215, 255, 100, 0.025),
		0 0 0 140px rgba(215, 255, 100, 0.02);
}
.contact-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.86fr;
	gap: 90px;
	align-items: center;
}
.contact-copy h2 {
	max-width: 570px;
	margin-bottom: 25px;
	font-size: clamp(58px, 7vw, 98px);
}
.contact-copy h2 em {
	color: var(--lime);
	font-style: normal;
}
.contact-copy > p:not(.eyebrow) {
	max-width: 380px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 17px;
}
.contact-details {
	display: grid;
	gap: 12px;
	margin-top: 52px;
}
.contact-details a {
	display: flex;
	justify-content: space-between;
	max-width: 330px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--lime);
	font-family: var(--display);
	font-size: 14px;
}
.quote-form {
	padding: 30px;
	border-radius: var(--radius-lg);
	color: var(--ink);
	background: var(--paper);
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}
.form-heading {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	color: #7c8986;
	font-family: var(--display);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
.form-heading span:first-child {
	color: var(--ink);
}
.quote-form label {
	display: grid;
	gap: 7px;
	margin-bottom: 18px;
	color: #596764;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid var(--line);
	outline: 0;
	border-radius: 0;
	color: var(--ink);
	background: transparent;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	border-color: var(--ink);
}
.quote-form textarea {
	resize: vertical;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
	color: #a0aaa7;
}
.form-note {
	margin: 14px 0 0;
	color: #87928f;
	font-size: 11px;
	text-align: center;
}

/* FAQ / Footer */
.faq-section {
	background: var(--cream);
}
.faq-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 110px;
}
.faq-intro h2 {
	margin-top: 60px;
}
.faq-intro p {
	color: var(--muted);
	font-size: 14px;
}
.faq-intro p a {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.faq-list details {
	border-top: 1px solid var(--line);
}
.faq-list details:last-child {
	border-bottom: 1px solid var(--line);
}
.faq-list summary {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 25px 0;
	list-style: none;
	cursor: pointer;
	font-family: var(--display);
	font-size: 18px;
	font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
	display: none;
}
.faq-list summary span {
	color: #89948f;
	font-size: 22px;
	font-weight: 300;
	transition: transform 0.2s ease;
}
.faq-list details[open] summary span {
	transform: rotate(45deg);
	color: var(--orange);
}
.faq-list details p {
	max-width: 560px;
	padding: 0 40px 25px 0;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}
.site-footer {
	color: var(--white);
	background: var(--ink);
}
.footer-top {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 30px;
	align-items: center;
	min-height: 150px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-brand .brand-name small {
	color: rgba(255, 255, 255, 0.55);
}
.footer-top p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
}
.footer-arrow {
	width: 43px;
	height: 43px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(215, 255, 100, 0.55);
	border-radius: 50%;
	color: var(--lime);
	font-size: 22px;
}
.footer-arrow:hover {
	color: var(--ink);
	background: var(--lime);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 21px 0 26px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 10px;
	letter-spacing: 0.03em;
}

/* Motion */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay {
	transition-delay: 0.12s;
}
.reveal-delay-2 {
	transition-delay: 0.24s;
}
.reveal-delay-3 {
	transition-delay: 0.36s;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* Responsive */
@media (max-width: 980px) {
	.container {
		width: min(100% - 42px, 760px);
	}
	.hero {
		min-height: auto;
	}
	.hero-layout {
		grid-template-columns: 1fr;
		gap: 20px;
		padding-top: 150px;
		padding-bottom: 100px;
	}
	.hero-copy {
		max-width: 650px;
	}
	.hero h1 {
		font-size: clamp(66px, 14vw, 108px);
	}
	.hero-visual {
		max-width: 590px;
		width: 92%;
		justify-self: end;
	}
	.intro-grid,
	.why-grid,
	.contact-grid,
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 55px;
	}
	.intro-grid {
		gap: 30px;
	}
	.intro-aside {
		max-width: 320px;
		margin-left: auto;
	}
	.section-heading {
		grid-template-columns: 1fr 1.8fr;
		gap: 30px;
	}
	.heading-note {
		grid-column: 2;
		justify-self: start;
	}
	.solution-card {
		min-height: 470px;
	}
	.why-grid {
		gap: 60px;
	}
	.why-visual {
		max-width: 560px;
		width: 86%;
	}
	.why-copy .section-label {
		margin-bottom: 45px;
	}
	.audience-intro {
		grid-template-columns: 1fr 1.8fr;
	}
	.process-top {
		grid-template-columns: 1fr 1.8fr;
		gap: 30px;
	}
	.process-top .eyebrow {
		grid-column: 2;
		grid-row: 1;
	}
	.process-top h2 {
		grid-column: 2;
	}
	.contact-grid {
		gap: 40px;
	}
	.faq-intro h2 {
		margin-top: 30px;
	}
}
@media (max-width: 700px) {
	.container {
		width: calc(100% - 36px);
	}
	.section {
		padding: 86px 0;
	}
	.site-header {
		background: rgba(8, 26, 33, 0.72);
		backdrop-filter: blur(12px);
	}
	.nav-wrap {
		min-height: 72px;
	}
	.menu-toggle {
		display: block;
	}
	.primary-nav {
		position: absolute;
		top: 72px;
		left: 18px;
		right: 18px;
		display: grid;
		gap: 0;
		padding: 11px;
		border: 1px solid rgba(255, 255, 255, 0.13);
		border-radius: 15px;
		background: rgba(8, 26, 33, 0.96);
		box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 0.2s ease,
			transform 0.2s ease;
	}
	.primary-nav.open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
	.primary-nav a {
		padding: 13px 12px;
	}
	.nav-cta {
		justify-content: space-between;
		margin-top: 5px;
	}
	.hero-layout {
		padding-top: 125px;
		padding-bottom: 92px;
	}
	.hero h1 {
		font-size: clamp(59px, 16vw, 88px);
	}
	.hero-lede {
		font-size: 16px;
	}
	.hero-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 54px;
	}
	.hero-proof {
		gap: 13px;
	}
	.proof-item span {
		font-size: 8px;
		letter-spacing: 0.02em;
	}
	.hero-visual {
		width: 88%;
		padding-top: 20px;
	}
	.hero-image-wrap {
		height: 390px;
		border-radius: 130px 130px 14px 14px;
	}
	.hero-float-card {
		right: 12px;
		bottom: 28px;
		min-width: 148px;
		padding: 13px;
	}
	.sun-orbit {
		right: -58px;
		width: 120px;
		height: 120px;
	}
	.sun-orbit span {
		left: 55px;
	}
	.intro-grid,
	.section-heading,
	.audience-intro,
	.process-top {
		display: block;
	}
	.intro-grid .section-label {
		margin-bottom: 45px;
	}
	.intro-aside {
		margin-top: 45px;
	}
	.section-heading .section-label {
		margin-bottom: 45px;
	}
	.heading-note {
		margin-top: 25px;
	}
	.solution-grid,
	.audience-grid {
		grid-template-columns: 1fr;
	}
	.solution-card {
		min-height: 440px;
	}
	.solution-card + .solution-card {
		margin-top: 14px;
	}
	.why-visual {
		width: 88%;
		min-height: 440px;
	}
	.why-image {
		height: 440px;
		border-radius: 115px 15px 15px 15px;
	}
	.why-image::after {
		border-radius: 115px 15px 15px 15px;
	}
	.why-stamp {
		right: -25px;
		width: 120px;
		height: 120px;
	}
	.why-stamp strong {
		font-size: 19px;
	}
	.why-copy .section-label {
		margin-bottom: 45px;
	}
	.audience-intro {
		margin-bottom: 45px;
	}
	.audience-intro .section-label {
		margin-bottom: 38px;
	}
	.audience-grid {
		border-bottom: 0;
	}
	.audience-item,
	.audience-item + .audience-item {
		min-height: 210px;
		padding: 25px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(8, 26, 33, 0.25);
	}
	.audience-item:last-child {
		border-bottom: 0;
	}
	.process-top .eyebrow {
		margin-top: 30px;
	}
	.process-top h2 {
		margin-top: 20px;
	}
	.process-line {
		display: none;
	}
	.process-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0;
		margin-top: 45px;
	}
	.process-step {
		min-height: 200px;
		padding: 20px 15px 20px 0;
		border-bottom: 1px solid var(--line);
	}
	.process-step:nth-child(2n) {
		padding-left: 15px;
		border-right: 0;
	}
	.process-step:nth-child(n + 3) {
		border-bottom: 0;
	}
	.process-step h3 {
		margin-top: 35px;
		font-size: 17px;
	}
	.process-step p {
		font-size: 12px;
	}
	.contact-grid {
		display: block;
	}
	.contact-copy {
		margin-bottom: 50px;
	}
	.quote-form {
		padding: 22px;
	}
	.faq-grid {
		gap: 45px;
	}
	.faq-intro h2 {
		margin-top: 42px;
	}
	.footer-top {
		grid-template-columns: 1fr auto;
		min-height: 130px;
	}
	.footer-top p {
		grid-column: 1 / -1;
		grid-row: 2;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		padding-bottom: 22px;
	}
}

/* Light visual refinement */
.site-header {
	color: var(--ink);
}
.site-header.scrolled {
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 30px rgba(22, 59, 67, 0.08);
}
.brand-name small {
	color: rgba(22, 59, 67, 0.62);
}
.primary-nav a:not(.nav-cta) {
	color: rgba(22, 59, 67, 0.74);
}
.primary-nav a:not(.nav-cta):hover {
	color: var(--ink);
}
.nav-cta {
	color: var(--ink);
	border-color: rgba(22, 59, 67, 0.34);
}
.menu-toggle {
	border-color: rgba(22, 59, 67, 0.28);
}
.menu-toggle span {
	background: var(--ink);
}
.hero {
	color: var(--ink);
	background:
		radial-gradient(
			circle at 75% 22%,
			rgba(143, 220, 213, 0.32),
			transparent 31%
		),
		linear-gradient(135deg, #e8f5f2 0%, #f8fbfa 100%);
}
.hero-grid-pattern {
	background-image:
		linear-gradient(rgba(22, 59, 67, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(22, 59, 67, 0.07) 1px, transparent 1px);
}
.hero-grid-pattern::after {
	background:
		radial-gradient(
			circle at 68% 42%,
			rgba(201, 235, 105, 0.18),
			transparent 27%
		),
		linear-gradient(180deg, transparent 60%, #e8f5f2 100%);
}
.hero-lede {
	color: rgba(22, 59, 67, 0.7);
}
.proof-item span {
	color: rgba(22, 59, 67, 0.58);
}
.proof-line {
	background: rgba(22, 59, 67, 0.18);
}
.hero-image-wrap {
	border-color: rgba(22, 59, 67, 0.18);
	background: #dcebe7;
	box-shadow: 0 35px 90px rgba(22, 59, 67, 0.18);
}
.hero-image-wrap img {
	mix-blend-mode: normal;
	opacity: 1;
	filter: saturate(1.08) contrast(1.04) brightness(1.04);
}
.image-shade {
	background: linear-gradient(
		145deg,
		rgba(22, 59, 67, 0.01),
		rgba(22, 59, 67, 0.1)
	);
}
.hero .light-link {
	color: var(--ink);
}
@media (max-width: 700px) {
	.site-header {
		background: rgba(255, 255, 255, 0.82);
		box-shadow: 0 8px 24px rgba(22, 59, 67, 0.08);
	}
	.primary-nav {
		border-color: rgba(22, 59, 67, 0.12);
		background: rgba(255, 255, 255, 0.97);
		box-shadow: 0 20px 35px rgba(22, 59, 67, 0.14);
	}
	.primary-nav a:not(.nav-cta) {
		color: rgba(22, 59, 67, 0.78);
	}
}

/* Two-tone page rhythm: white surfaces and the Why UniGlory teal */
.hero {
	background: var(--paper);
}
.hero-grid-pattern::after {
	background: linear-gradient(180deg, transparent 60%, #ffffff 100%);
}
.intro-section,
.solutions-section,
.audiences-section,
.process-section,
.faq-section {
	background: var(--paper);
}
.intro-section {
	color: var(--white);
	background: var(--ink);
}
.intro-section .section-label {
	color: rgba(255, 255, 255, 0.52);
}
.intro-section .section-label span:first-child {
	color: var(--lime);
}
.intro-section .dark-eyebrow {
	color: rgba(255, 255, 255, 0.62);
}
.intro-section h2 span {
	color: var(--lime);
}
.intro-copy > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.68);
}
.intro-section .dark-link {
	color: var(--lime);
}
.intro-aside span {
	color: rgba(255, 255, 255, 0.56);
}
.why-section,
.contact-section,
.site-footer {
	background: var(--ink);
}
.solution-card-lime {
	border: 1px solid var(--line);
	background: #f7faf7;
}
.solution-card-lime .card-topline {
	color: var(--muted);
}
.solution-card-lime p {
	color: var(--muted);
}
.solution-card-lime .card-link {
	border-color: var(--line);
}
