/*
 * Semaglutide Supplier Homepage
 * All selectors are scoped to .sgls-home or .sgls-contact so the active theme
 * is never changed globally.
 */

.sgls-home {
	--sgls-ink: #0d1f3c;
	--sgls-ink-soft: #42516a;
	--sgls-blue: #0758c7;
	--sgls-blue-strong: #0344a2;
	--sgls-blue-deep: #06275f;
	--sgls-cyan: #16b9d4;
	--sgls-sky: #eaf4ff;
	--sgls-sky-light: #f6faff;
	--sgls-line: #dce8f5;
	--sgls-white: #fff;
	--sgls-shadow: 0 22px 60px rgba(8, 48, 105, 0.12);
	--sgls-radius-sm: 14px;
	--sgls-radius: 24px;
	--sgls-radius-lg: 36px;
	position: relative;
	z-index: 0;
	width: 100%;
	max-width: none;
	color: var(--sgls-ink);
	background: var(--sgls-white);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-align: left;
	overflow: clip;
	-webkit-font-smoothing: antialiased;
}

.sgls-home--full-width {
	max-width: none;
}

.sgls-home,
.sgls-home *,
.sgls-home *::before,
.sgls-home *::after {
	box-sizing: border-box;
}

.sgls-home :where(h1, h2, h3, p, figure, ul, ol) {
	margin-block: 0;
}

.sgls-home :where(h1, h2, h3) {
	color: inherit;
	font-family: inherit;
	font-style: normal;
	text-transform: none;
	letter-spacing: -0.035em;
}

.sgls-home :where(a) {
	color: inherit;
	text-decoration: none;
}

.sgls-home :where(img, svg) {
	display: block;
}

.sgls-home :where(img) {
	max-width: 100%;
	height: auto;
}

.sgls-home :where(section[id]) {
	scroll-margin-top: 92px;
}

.sgls-home__container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.sgls-home__skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 16px;
	border-radius: 8px;
	color: var(--sgls-white);
	background: var(--sgls-blue-deep);
	font-weight: 700;
	transform: translateY(-180%);
}

.sgls-home__skip-link:focus {
	transform: translateY(0);
}

.sgls-home :where(a, summary):focus-visible {
	outline: 3px solid #06275f;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px #fff;
}

/* Masthead */
.sgls-home__masthead {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid rgba(13, 67, 135, 0.1);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 24px rgba(6, 39, 95, 0.04);
}

.sgls-home__masthead-inner {
	display: flex;
	align-items: center;
	min-height: 76px;
	gap: 34px;
}

.sgls-home__brand {
	display: inline-flex;
	align-items: center;
	min-width: 220px;
	gap: 11px;
}

.sgls-home__brand-mark {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 13px;
	color: var(--sgls-white);
	background: linear-gradient(145deg, var(--sgls-blue), #1b84dd);
	box-shadow: 0 8px 18px rgba(7, 88, 199, 0.24);
}

.sgls-home__brand-mark svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sgls-home__brand strong,
.sgls-home__brand small {
	display: block;
}

.sgls-home__brand strong {
	max-width: 250px;
	overflow: hidden;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sgls-home__brand small {
	margin-top: 2px;
	color: #596a82;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.25;
	text-transform: uppercase;
}

.sgls-home__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	gap: 28px;
}

.sgls-home__nav a {
	position: relative;
	padding-block: 9px;
	color: #384963;
	font-size: 14px;
	font-weight: 650;
}

.sgls-home__nav a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 2px;
	border-radius: 99px;
	background: var(--sgls-blue);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.sgls-home__nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.sgls-home__masthead-cta {
	padding: 11px 19px;
	border: 1px solid rgba(7, 88, 199, 0.22);
	border-radius: 999px;
	color: var(--sgls-blue);
	background: #f5faff;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
	transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sgls-home__masthead-cta:hover {
	color: var(--sgls-white);
	background: var(--sgls-blue);
	transform: translateY(-1px);
}

/* Hero */
.sgls-home__hero {
	position: relative;
	min-height: 640px;
	background: #f4f9fe;
}

.sgls-home__hero-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.sgls-home__hero-image {
	width: 200%;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	object-position: left center;
}

.sgls-home__hero-wash {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.66) 47%, rgba(255, 255, 255, 0.08) 69%, transparent 100%);
}

.sgls-home__hero-layout {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 640px;
	padding-block: 74px 88px;
}

.sgls-home__hero-copy {
	width: min(650px, 58%);
}

.sgls-home__eyebrow,
.sgls-home__kicker,
.sgls-home__mini-label {
	color: var(--sgls-blue);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.145em;
	line-height: 1.5;
	text-transform: uppercase;
}

.sgls-home__eyebrow {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	gap: 10px;
}

.sgls-home__eyebrow span {
	display: block;
	width: 28px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--sgls-blue), var(--sgls-cyan));
}

.sgls-home__hero :is(h1, h2) {
	max-width: 660px;
	font-size: clamp(42px, 4.5vw, 68px);
	font-weight: 800;
	line-height: 1.01;
}

.sgls-home__hero-lead {
	max-width: 590px;
	margin-top: 26px;
	color: var(--sgls-ink-soft);
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.72;
}

.sgls-home__hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 34px;
	gap: 12px;
}

.sgls-home__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 23px;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	transition: box-shadow 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sgls-home__button:hover {
	transform: translateY(-2px);
}

.sgls-home__button--primary {
	color: var(--sgls-white);
	background: linear-gradient(135deg, var(--sgls-blue), #0a73db);
	box-shadow: 0 13px 28px rgba(7, 88, 199, 0.24);
}

.sgls-home__button--primary:hover {
	box-shadow: 0 17px 34px rgba(7, 88, 199, 0.32);
}

.sgls-home__button--secondary {
	border-color: #c7d8eb;
	color: var(--sgls-ink);
	background: rgba(255, 255, 255, 0.82);
}

.sgls-home__button--secondary:hover {
	border-color: var(--sgls-blue);
	color: var(--sgls-blue);
	background: var(--sgls-white);
}

.sgls-home__hero-note {
	display: flex;
	align-items: center;
	max-width: 570px;
	margin-top: 24px;
	gap: 9px;
	color: #607087;
	font-size: 12px;
	font-weight: 650;
}

.sgls-home__hero-note svg {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	fill: none;
	stroke: var(--sgls-blue);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Proof bar */
.sgls-home__proof {
	position: relative;
	z-index: 4;
	margin-top: -34px;
}

.sgls-home__proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid rgba(7, 88, 199, 0.1);
	border-radius: var(--sgls-radius);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--sgls-shadow);
	overflow: hidden;
}

.sgls-home__proof-item {
	display: flex;
	align-items: center;
	min-height: 104px;
	padding: 22px 28px;
	gap: 15px;
}

.sgls-home__proof-item + .sgls-home__proof-item {
	border-left: 1px solid var(--sgls-line);
}

.sgls-home__proof-icon {
	display: grid;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	place-items: center;
	border-radius: 15px;
	color: var(--sgls-blue);
	background: var(--sgls-sky);
}

.sgls-home__proof-icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sgls-home__proof-item strong,
.sgls-home__proof-item small {
	display: block;
}

.sgls-home__proof-item strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.sgls-home__proof-item small {
	margin-top: 4px;
	color: #66758b;
	font-size: 12px;
	line-height: 1.45;
}

/* Shared sections */
.sgls-home__section {
	position: relative;
	padding-block: 112px;
}

.sgls-home__section-heading {
	max-width: 650px;
}

.sgls-home__section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.sgls-home__section-heading h2,
.sgls-home__feature-copy h2,
.sgls-home__quality-copy h2,
.sgls-home__selection-copy h2,
.sgls-home__faq-intro h2,
.sgls-home__cta h2 {
	margin-top: 12px;
	font-size: clamp(34px, 3.5vw, 52px);
	font-weight: 790;
	line-height: 1.08;
}

.sgls-home__section-heading > p:last-child,
.sgls-home__feature-copy > p,
.sgls-home__quality-copy > p,
.sgls-home__selection-copy > p,
.sgls-home__faq-intro > p,
.sgls-home__cta p {
	margin-top: 20px;
	color: var(--sgls-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.sgls-home__section--solutions {
	padding-top: 126px;
	background:
		radial-gradient(circle at 8% 12%, rgba(51, 161, 225, 0.08), transparent 22%),
		linear-gradient(180deg, var(--sgls-white), var(--sgls-sky-light));
}

.sgls-home__card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 52px;
	gap: 20px;
}

.sgls-home__supply-card {
	position: relative;
	display: flex;
	min-height: 360px;
	padding: 34px;
	flex-direction: column;
	border: 1px solid var(--sgls-line);
	border-radius: var(--sgls-radius);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 14px 34px rgba(15, 70, 130, 0.06);
	overflow: hidden;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.sgls-home__supply-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sgls-blue), var(--sgls-cyan));
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 200ms ease;
}

.sgls-home__supply-card:hover {
	border-color: rgba(7, 88, 199, 0.26);
	box-shadow: 0 22px 48px rgba(15, 70, 130, 0.11);
	transform: translateY(-5px);
}

.sgls-home__supply-card:hover::before {
	transform: scaleX(1);
}

.sgls-home__supply-card--featured {
	border-color: rgba(7, 88, 199, 0.22);
	background: linear-gradient(160deg, #fff, #edf6ff);
}

.sgls-home__card-number {
	position: absolute;
	top: 25px;
	right: 27px;
	color: #667f9b;
	font-size: 29px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.sgls-home__card-icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 18px;
	color: var(--sgls-blue);
	background: var(--sgls-sky);
}

.sgls-home__card-icon svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sgls-home__supply-card h3 {
	margin-top: 27px;
	font-size: 23px;
	font-weight: 780;
	line-height: 1.2;
}

.sgls-home__supply-card p {
	margin-top: 15px;
	color: var(--sgls-ink-soft);
	font-size: 14px;
	line-height: 1.75;
}

.sgls-home__supply-card > a {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-top: auto;
	padding-top: 24px;
	gap: 7px;
	color: var(--sgls-blue);
	font-size: 13px;
	font-weight: 800;
}

.sgls-home__supply-card > a span {
	font-size: 17px;
	transition: transform 160ms ease;
}

.sgls-home__supply-card > a:hover span {
	transform: translate(2px, -2px);
}

.sgls-home__feature {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	margin-top: 92px;
	gap: 66px;
}

.sgls-home__feature-copy h2 {
	font-size: clamp(32px, 3.2vw, 48px);
}

.sgls-home__check-list {
	display: grid;
	margin-top: 28px;
	padding: 0;
	gap: 12px;
	list-style: none;
}

.sgls-home__check-list li {
	position: relative;
	padding-left: 31px;
	color: #30435e;
	font-size: 14px;
	font-weight: 680;
}

.sgls-home__check-list li::before {
	position: absolute;
	top: 2px;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	color: var(--sgls-white);
	background: var(--sgls-blue);
	content: "✓";
	font-size: 11px;
	font-weight: 900;
}

.sgls-home__product-visual,
.sgls-home__quality-visual,
.sgls-home__research-card {
	position: relative;
	border-radius: var(--sgls-radius-lg);
	background: #e7f2fd;
	box-shadow: var(--sgls-shadow);
	overflow: hidden;
}

.sgls-home__product-visual {
	min-height: 490px;
	border: 1px solid #d6e8fa;
	background:
		linear-gradient(rgba(12, 95, 188, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(12, 95, 188, 0.055) 1px, transparent 1px),
		radial-gradient(circle at 72% 18%, rgba(56, 193, 230, 0.3), transparent 26%),
		linear-gradient(145deg, #f8fcff, #dcefff);
	background-size: 34px 34px, 34px 34px, auto, auto;
}

.sgls-home__product-visual::after {
	position: absolute;
	right: -90px;
	bottom: -110px;
	width: 330px;
	height: 330px;
	border: 1px solid rgba(7, 88, 199, 0.13);
	border-radius: 50%;
	box-shadow: 0 0 0 35px rgba(7, 88, 199, 0.035), 0 0 0 72px rgba(7, 88, 199, 0.025);
	content: "";
}

.sgls-home__molecule {
	position: absolute;
	top: 58px;
	left: 54px;
	width: 190px;
	height: 150px;
	opacity: 0.72;
}

.sgls-home__molecule::before,
.sgls-home__molecule::after {
	position: absolute;
	top: 67px;
	left: 30px;
	width: 135px;
	height: 2px;
	background: #75b7df;
	content: "";
	transform: rotate(-24deg);
}

.sgls-home__molecule::after {
	transform: rotate(32deg);
}

.sgls-home__molecule span {
	position: absolute;
	z-index: 1;
	width: 18px;
	height: 18px;
	border: 4px solid #cfeafa;
	border-radius: 50%;
	background: #1675cf;
	box-shadow: 0 5px 12px rgba(7, 88, 199, 0.2);
}

.sgls-home__molecule span:nth-child(1) { top: 8px; left: 20px; }
.sgls-home__molecule span:nth-child(2) { top: 50px; left: 82px; }
.sgls-home__molecule span:nth-child(3) { top: 18px; right: 10px; }
.sgls-home__molecule span:nth-child(4) { bottom: 7px; left: 36px; }
.sgls-home__molecule span:nth-child(5) { right: 25px; bottom: 18px; }
.sgls-home__molecule span:nth-child(6) { top: 67px; left: 15px; width: 12px; height: 12px; border-width: 3px; }

.sgls-home__vials {
	position: absolute;
	right: 36px;
	bottom: 58px;
	left: 36px;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 18px;
}

.sgls-home__vial {
	position: relative;
	display: block;
	width: 112px;
	height: 225px;
	border: 2px solid rgba(90, 136, 171, 0.28);
	border-radius: 16px 16px 27px 27px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(195, 226, 246, 0.5) 45%, rgba(255, 255, 255, 0.86));
	box-shadow: inset 11px 0 16px rgba(255, 255, 255, 0.58), 0 23px 33px rgba(24, 82, 136, 0.17);
}

.sgls-home__vial::before {
	position: absolute;
	top: -22px;
	left: 10px;
	width: calc(100% - 20px);
	height: 27px;
	border: 3px solid #b5cce1;
	border-radius: 9px 9px 5px 5px;
	background: linear-gradient(#f5f9fc, #a5bfd8);
	box-shadow: 0 -6px 0 #1464ba;
	content: "";
}

.sgls-home__vial::after {
	position: absolute;
	right: 6px;
	bottom: 6px;
	left: 6px;
	height: 32%;
	border-radius: 7px 7px 20px 20px;
	background: linear-gradient(180deg, rgba(128, 203, 235, 0.22), rgba(53, 150, 208, 0.38));
	content: "";
}

.sgls-home__vial i {
	position: absolute;
	top: 57px;
	right: -5px;
	left: -5px;
	z-index: 2;
	height: 72px;
	border-block: 1px solid #d9e7f3;
	background:
		linear-gradient(90deg, #0b64bd 0 8%, transparent 8% 92%, #0b64bd 92%),
		linear-gradient(#fff, #eef7fd);
}

.sgls-home__vial i::before,
.sgls-home__vial i::after {
	position: absolute;
	left: 23px;
	height: 4px;
	border-radius: 99px;
	background: #aac4dc;
	content: "";
}

.sgls-home__vial i::before { top: 22px; width: 58px; background: #1969bb; }
.sgls-home__vial i::after { top: 36px; width: 40px; }

.sgls-home__vial--small {
	width: 90px;
	height: 180px;
}

.sgls-home__vial--small i { top: 43px; }
.sgls-home__vial--large { height: 265px; }

.sgls-home__visual-note {
	position: absolute;
	right: 22px;
	bottom: 18px;
	left: 22px;
	z-index: 3;
	color: #506680;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

/* Quality */
.sgls-home__section--quality {
	color: var(--sgls-white);
	background:
		radial-gradient(circle at 85% 15%, rgba(22, 185, 212, 0.18), transparent 28%),
		linear-gradient(145deg, #041c48, #073b83 62%, #0758a8);
}

.sgls-home__quality-grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 74px;
}

.sgls-home__quality-visual {
	display: grid;
	min-height: 500px;
	padding: 46px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background:
		radial-gradient(circle at 88% 10%, rgba(85, 220, 245, 0.28), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
	box-shadow: 0 25px 70px rgba(0, 10, 40, 0.34);
}

.sgls-home__dossier {
	width: min(100%, 490px);
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 22px;
	color: var(--sgls-ink);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 24px 50px rgba(0, 18, 55, 0.25);
	transform: rotate(-1.2deg);
}

.sgls-home__dossier-head {
	display: flex;
	align-items: center;
	padding-bottom: 21px;
	gap: 14px;
	border-bottom: 1px solid #dce8f5;
}

.sgls-home__dossier-head > span {
	display: grid;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	place-items: center;
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(145deg, var(--sgls-blue), var(--sgls-cyan));
}

.sgls-home__dossier-head svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.sgls-home__dossier-head small,
.sgls-home__dossier-head strong {
	display: block;
}

.sgls-home__dossier-head small {
	color: #62748c;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sgls-home__dossier-head strong {
	margin-top: 3px;
	font-size: 18px;
	line-height: 1.25;
}

.sgls-home__dossier-row {
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr auto;
	padding-block: 17px;
	gap: 14px;
	border-bottom: 1px solid #e5edf6;
	font-size: 12px;
	font-weight: 750;
}

.sgls-home__dossier-row i {
	height: 4px;
	border-radius: 99px;
	background: linear-gradient(90deg, #61c9e2 70%, #dce8f3 70%);
}

.sgls-home__dossier-row b {
	padding: 5px 8px;
	border-radius: 999px;
	color: #07549f;
	background: #e8f5ff;
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sgls-home__dossier-tags {
	display: flex;
	flex-wrap: wrap;
	margin-top: 21px;
	gap: 7px;
}

.sgls-home__dossier-tags span {
	padding: 6px 9px;
	border: 1px solid #d4e5f4;
	border-radius: 999px;
	color: #40536d;
	background: #f5faff;
	font-size: 9px;
	font-weight: 750;
}

.sgls-home__kicker--light {
	color: #70daf0;
}

.sgls-home__quality-copy > p {
	color: #c6d6eb;
}

.sgls-home__document-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 32px;
	gap: 12px;
}

.sgls-home__document-grid > div {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.07);
}

.sgls-home__document-grid span {
	display: block;
	color: #6ddcf3;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
}

.sgls-home__document-grid p {
	margin-top: 7px;
	color: #f1f6ff;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.5;
}

.sgls-home__text-link {
	display: inline-flex;
	align-items: center;
	margin-top: 30px;
	gap: 8px;
	color: var(--sgls-blue);
	font-size: 14px;
	font-weight: 800;
}

.sgls-home__text-link--light {
	color: #85e4f6;
}

/* Research */
.sgls-home__section--research {
	background: var(--sgls-white);
}

.sgls-home__research-lead {
	display: grid;
	align-items: end;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
	gap: 80px;
}

.sgls-home__research-intro p {
	color: var(--sgls-ink-soft);
	font-size: 16px;
	line-height: 1.8;
}

.sgls-home__source-link {
	display: inline-flex;
	align-items: center;
	margin-top: 22px;
	gap: 7px;
	color: var(--sgls-blue);
	font-size: 13px;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(7, 88, 199, 0.25);
	text-underline-offset: 4px;
}

.sgls-home__research-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 54px;
	gap: 24px;
}

.sgls-home__research-card {
	display: flex;
	min-height: 0;
	flex-direction: column;
	border: 1px solid var(--sgls-line);
	border-radius: var(--sgls-radius);
	background: var(--sgls-sky-light);
}

.sgls-home__research-art,
.sgls-home__boundary-art {
	position: relative;
	display: grid;
	min-height: 310px;
	place-items: center;
	overflow: hidden;
}

.sgls-home__research-art img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.sgls-home__research-art > span {
	position: absolute;
	inset: 0 auto 0 0;
	width: 58%;
	background: linear-gradient(90deg, #f5faff 0%, #f5faff 82%, rgba(245, 250, 255, 0.92) 91%, rgba(245, 250, 255, 0) 100%);
}

.sgls-home__research-body {
	padding: 27px;
}

.sgls-home__boundary-art {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 22%, transparent 22%),
		radial-gradient(circle at 50% 42%, #d3f2fb, #e8f4ff 48%, #dbeaff 100%);
}

.sgls-home__boundary-art::before,
.sgls-home__boundary-art::after {
	position: absolute;
	width: 230px;
	height: 230px;
	border: 1px solid rgba(7, 88, 199, 0.12);
	border-radius: 50%;
	content: "";
}

.sgls-home__boundary-art::after {
	width: 285px;
	height: 285px;
	border-style: dashed;
}

.sgls-home__boundary-art svg {
	position: relative;
	z-index: 2;
	width: 105px;
	height: 105px;
	fill: rgba(255, 255, 255, 0.75);
	stroke: var(--sgls-blue);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 4;
}

.sgls-home__boundary-ring {
	position: absolute;
	width: 155px;
	height: 155px;
	border: 12px solid rgba(22, 185, 212, 0.11);
	border-radius: 50%;
}

.sgls-home__boundary-art small {
	position: absolute;
	bottom: 26px;
	z-index: 2;
	color: #315574;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sgls-home__mini-label {
	font-size: 10px;
}

.sgls-home__research-card h3 {
	margin-top: 9px;
	font-size: 22px;
	font-weight: 780;
	line-height: 1.2;
}

.sgls-home__research-body > p:last-child {
	margin-top: 13px;
	color: var(--sgls-ink-soft);
	font-size: 13px;
	line-height: 1.7;
}

/* Selection */
.sgls-home__section--selection {
	background:
		linear-gradient(90deg, rgba(232, 245, 255, 0.92), rgba(248, 252, 255, 0.94)),
		radial-gradient(circle at 10% 15%, #cfeeff, transparent 32%);
}

.sgls-home__selection-grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: 90px;
}

.sgls-home__selection-copy {
	position: sticky;
	top: 110px;
}

.sgls-home__selection-copy .sgls-home__button {
	margin-top: 31px;
}

.sgls-home__selection-list {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 12px;
	list-style: none;
}

.sgls-home__selection-list li {
	display: grid;
	align-items: start;
	grid-template-columns: 54px 1fr;
	padding: 24px 27px;
	gap: 18px;
	border: 1px solid rgba(18, 82, 157, 0.11);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 9px 26px rgba(8, 48, 105, 0.05);
}

.sgls-home__selection-list li > span {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 14px;
	color: var(--sgls-blue);
	background: var(--sgls-sky);
	font-size: 12px;
	font-weight: 850;
}

.sgls-home__selection-list h3 {
	font-size: 17px;
	font-weight: 780;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.sgls-home__selection-list p {
	margin-top: 6px;
	color: var(--sgls-ink-soft);
	font-size: 13px;
	line-height: 1.65;
}

/* Process */
.sgls-home__section--process {
	background: var(--sgls-white);
}

.sgls-home__process-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 58px;
	gap: 18px;
}

.sgls-home__process-grid::before {
	position: absolute;
	top: 27px;
	right: 12%;
	left: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, #bdd7ef 14%, #bdd7ef 86%, transparent);
	content: "";
}

.sgls-home__process-step {
	position: relative;
	z-index: 2;
	padding: 0 20px;
	text-align: center;
}

.sgls-home__process-step > span {
	display: grid;
	width: 56px;
	height: 56px;
	margin-inline: auto;
	place-items: center;
	border: 7px solid var(--sgls-white);
	border-radius: 50%;
	color: var(--sgls-white);
	background: linear-gradient(145deg, var(--sgls-blue), #16a2d5);
	box-shadow: 0 8px 20px rgba(7, 88, 199, 0.24);
	font-size: 13px;
	font-weight: 850;
}

.sgls-home__process-step h3 {
	margin-top: 18px;
	font-size: 19px;
	font-weight: 780;
}

.sgls-home__process-step p {
	margin-top: 8px;
	color: var(--sgls-ink-soft);
	font-size: 13px;
	line-height: 1.65;
}

/* FAQ */
.sgls-home__section--faq {
	border-top: 1px solid var(--sgls-line);
	background: var(--sgls-sky-light);
}

.sgls-home__faq-layout {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
	gap: 84px;
}

.sgls-home__faq-intro {
	position: sticky;
	top: 110px;
}

.sgls-home__accordion {
	display: grid;
	gap: 12px;
}

.sgls-home__faq-item {
	border: 1px solid var(--sgls-line);
	border-radius: 17px;
	background: var(--sgls-white);
	box-shadow: 0 7px 22px rgba(9, 51, 105, 0.04);
	overflow: hidden;
}

.sgls-home__faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding: 20px 23px;
	gap: 22px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 780;
	line-height: 1.45;
	list-style: none;
}

.sgls-home__faq-item summary::-webkit-details-marker {
	display: none;
}

.sgls-home__faq-item summary i {
	position: relative;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 50%;
	background: var(--sgls-sky);
}

.sgls-home__faq-item summary i::before,
.sgls-home__faq-item summary i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 2px;
	border-radius: 99px;
	background: var(--sgls-blue);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 160ms ease;
}

.sgls-home__faq-item:focus-within {
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px #06275f;
}

.sgls-home__faq-item summary:focus-visible {
	outline: 0;
	box-shadow: inset 0 0 0 3px #06275f;
}

.sgls-home__faq-item summary i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.sgls-home__faq-item[open] {
	border-color: rgba(7, 88, 199, 0.24);
}

.sgls-home__faq-item[open] summary i::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.sgls-home__faq-item > div {
	padding: 0 23px 22px;
}

.sgls-home__faq-item > div p {
	padding-top: 17px;
	border-top: 1px solid var(--sgls-line);
	color: var(--sgls-ink-soft);
	font-size: 14px;
	line-height: 1.75;
}

/* CTA and disclaimer */
.sgls-home__cta {
	position: relative;
	padding-block: 88px;
	color: var(--sgls-white);
	background:
		radial-gradient(circle at 80% 20%, rgba(31, 201, 226, 0.22), transparent 25%),
		linear-gradient(125deg, #063175, #075fc2 67%, #0b75c8);
	overflow: hidden;
}

.sgls-home__cta::before,
.sgls-home__cta::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	content: "";
}

.sgls-home__cta::before {
	top: -180px;
	right: -100px;
	width: 420px;
	height: 420px;
}

.sgls-home__cta::after {
	right: 120px;
	bottom: -230px;
	width: 360px;
	height: 360px;
}

.sgls-home__cta-inner {
	position: relative;
	z-index: 2;
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
	gap: 90px;
}

.sgls-home__cta h2 {
	max-width: 760px;
}

.sgls-home__cta p {
	max-width: 750px;
	color: #d5e6f9;
}

.sgls-home__cta-actions {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 13px;
}

.sgls-home__button--white {
	color: var(--sgls-blue-deep);
	background: var(--sgls-white);
	box-shadow: 0 14px 34px rgba(0, 20, 60, 0.2);
}

.sgls-home__contact-link {
	color: #e3f3ff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.35);
	text-underline-offset: 4px;
}

.sgls-home__disclaimer {
	padding-block: 27px;
	color: #65748a;
	background: #f6f9fc;
	font-size: 11px;
	line-height: 1.7;
}

.sgls-home__disclaimer strong {
	color: #3b4a60;
}

/* Responsive */
@media (max-width: 1080px) {
	.sgls-home__nav {
		gap: 18px;
	}

	.sgls-home__hero-wash {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 36%, rgba(255, 255, 255, 0.45) 58%, transparent 78%);
	}

	.sgls-home__hero-copy {
		width: 60%;
	}

	.sgls-home__feature,
	.sgls-home__quality-grid {
		gap: 46px;
	}

	.sgls-home__research-cards {
		grid-template-columns: 1fr;
	}

	.sgls-home__selection-grid,
	.sgls-home__faq-layout {
		gap: 55px;
	}
}

@media (max-width: 860px) {
	.sgls-home__container {
		width: min(100% - 36px, 760px);
	}

	.sgls-home__nav {
		display: none;
	}

	.sgls-home__masthead-cta {
		margin-left: auto;
	}

	.sgls-home__hero {
		display: flex;
		min-height: 0;
		flex-direction: column;
	}

	.sgls-home__hero-media {
		position: relative;
		order: 2;
		width: 100%;
		height: 260px;
		min-height: 260px;
	}

	.sgls-home__hero-image {
		width: 200%;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover;
		object-position: left center;
	}

	.sgls-home__hero-wash {
		display: none;
	}

	.sgls-home__hero-layout {
		min-height: 0;
		order: 1;
		padding-block: 68px 54px;
	}

	.sgls-home__hero-copy {
		width: 100%;
		max-width: 700px;
	}

	.sgls-home__hero :is(h1, h2) {
		max-width: 720px;
	}

	.sgls-home__proof {
		margin-top: 0;
		padding-top: 18px;
		background: #f4f9fe;
	}

	.sgls-home__proof-grid {
		grid-template-columns: 1fr;
	}

	.sgls-home__proof-item {
		min-height: 86px;
	}

	.sgls-home__proof-item + .sgls-home__proof-item {
		border-top: 1px solid var(--sgls-line);
		border-left: 0;
	}

	.sgls-home__section {
		padding-block: 88px;
	}

	.sgls-home__section--solutions {
		padding-top: 92px;
	}

	.sgls-home__card-grid {
		grid-template-columns: 1fr;
	}

	.sgls-home__supply-card {
		min-height: 300px;
	}

	.sgls-home__feature,
	.sgls-home__quality-grid,
	.sgls-home__research-lead,
	.sgls-home__selection-grid,
	.sgls-home__faq-layout,
	.sgls-home__cta-inner {
		grid-template-columns: 1fr;
	}

	.sgls-home__feature,
	.sgls-home__quality-grid,
	.sgls-home__research-lead,
	.sgls-home__selection-grid,
	.sgls-home__faq-layout {
		gap: 45px;
	}

	.sgls-home__feature-copy {
		order: 1;
	}

	.sgls-home__product-visual {
		order: 2;
	}

	.sgls-home__quality-visual {
		order: 2;
	}

	.sgls-home__quality-copy {
		order: 1;
	}

	.sgls-home__selection-copy,
	.sgls-home__faq-intro {
		position: static;
	}

	.sgls-home__process-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 18px;
	}

	.sgls-home__process-grid::before {
		display: none;
	}

	.sgls-home__cta-inner {
		gap: 36px;
	}
}

@media (max-width: 600px) {
	.sgls-home__container {
		width: calc(100% - 28px);
	}

	.sgls-home__masthead-inner {
		min-height: 68px;
	}

	.sgls-home__brand {
		min-width: 0;
	}

	.sgls-home__brand-mark {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

	.sgls-home__brand strong {
		max-width: 135px;
		font-size: 13px;
	}

	.sgls-home__brand small {
		display: none;
	}

	.sgls-home__masthead-cta {
		padding: 9px 13px;
		font-size: 11px;
	}

	.sgls-home__hero-layout {
		padding-block: 50px 42px;
	}

	.sgls-home__eyebrow {
		align-items: flex-start;
		font-size: 10px;
	}

	.sgls-home__eyebrow span {
		margin-top: 7px;
	}

	.sgls-home__hero :is(h1, h2) {
		font-size: clamp(38px, 12vw, 52px);
		line-height: 1.03;
	}

	.sgls-home__hero-media {
		height: 180px;
		min-height: 180px;
	}

	.sgls-home__hero-lead {
		margin-top: 21px;
		font-size: 16px;
	}

	.sgls-home__hero-actions {
		align-items: stretch;
		margin-top: 27px;
		flex-direction: column;
	}

	.sgls-home__button {
		width: 100%;
	}

	.sgls-home__hero-note {
		align-items: flex-start;
		font-size: 11px;
	}

	.sgls-home__proof-item {
		padding: 19px;
	}

	.sgls-home__section {
		padding-block: 72px;
	}

	.sgls-home__section-heading h2,
	.sgls-home__feature-copy h2,
	.sgls-home__quality-copy h2,
	.sgls-home__selection-copy h2,
	.sgls-home__faq-intro h2,
	.sgls-home__cta h2 {
		font-size: 34px;
	}

	.sgls-home__section-heading > p:last-child,
	.sgls-home__feature-copy > p,
	.sgls-home__quality-copy > p,
	.sgls-home__selection-copy > p,
	.sgls-home__faq-intro > p,
	.sgls-home__cta p {
		font-size: 15px;
	}

	.sgls-home__card-grid {
		margin-top: 38px;
	}

	.sgls-home__supply-card {
		min-height: 0;
		padding: 28px 25px;
	}

	.sgls-home__feature {
		margin-top: 70px;
	}

	.sgls-home__product-visual {
		min-height: 420px;
	}

	.sgls-home__molecule {
		top: 35px;
		left: 26px;
		transform: scale(0.78);
		transform-origin: top left;
	}

	.sgls-home__vials {
		right: -28px;
		bottom: 54px;
		left: -28px;
		gap: 12px;
		transform: scale(0.78);
		transform-origin: bottom center;
	}

	.sgls-home__quality-visual {
		min-height: 420px;
		padding: 22px;
	}

	.sgls-home__dossier {
		padding: 21px;
		transform: none;
	}

	.sgls-home__dossier-row {
		gap: 9px;
	}

	.sgls-home__document-grid {
		grid-template-columns: 1fr;
	}

	.sgls-home__research-lead {
		gap: 28px;
	}

	.sgls-home__research-cards {
		margin-top: 38px;
	}

	.sgls-home__research-art,
	.sgls-home__boundary-art {
		min-height: 245px;
	}

	.sgls-home__selection-list li {
		grid-template-columns: 42px 1fr;
		padding: 20px 17px;
		gap: 13px;
	}

	.sgls-home__selection-list li > span {
		width: 40px;
		height: 40px;
	}

	.sgls-home__process-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.sgls-home__faq-item summary {
		padding: 18px;
		font-size: 14px;
	}

	.sgls-home__faq-item > div {
		padding: 0 18px 19px;
	}

	.sgls-home__cta {
		padding-block: 70px;
	}

	.sgls-home__cta-actions {
		align-items: stretch;
	}

	.sgls-home__contact-link {
		align-self: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sgls-home,
	.sgls-home *,
	.sgls-home *::before,
	.sgls-home *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.sgls-home :where(.sgls-home__button, .sgls-home__supply-card, .sgls-home__masthead-cta):hover {
		transform: none;
	}
}

@media print {
	.sgls-home {
		color: #000;
		background: #fff;
		overflow: visible;
	}

	.sgls-home--full-width {
		width: 100%;
		margin-inline: 0;
	}

	.sgls-home__masthead,
	.sgls-home__hero-media,
	.sgls-home__hero-actions,
	.sgls-home__cta-actions {
		display: none;
	}

	.sgls-home__section {
		padding-block: 40px;
	}

	.sgls-home__hero {
		min-height: 0;
	}

	.sgls-home__hero-layout {
		min-height: 0;
		padding-block: 40px;
	}

	.sgls-home__section--quality,
	.sgls-home__cta {
		color: #000;
		background: #fff;
	}

	.sgls-home__quality-copy > p,
	.sgls-home__cta p,
	.sgls-home__document-grid p,
	.sgls-home__text-link--light,
	.sgls-home__kicker--light,
	.sgls-home__contact-link {
		color: #000;
	}

	.sgls-home__selection-copy,
	.sgls-home__faq-intro {
		position: static;
	}

	.sgls-home__faq-item > div {
		display: block !important;
	}

	.sgls-home :where(.sgls-home__supply-card, .sgls-home__product-visual, .sgls-home__quality-visual, .sgls-home__research-card, .sgls-home__faq-item) {
		break-inside: avoid;
	}
}

/* Contact page */
.sgls-contact {
	--sgls-contact-ink: #0d1f3c;
	--sgls-contact-muted: #50617a;
	--sgls-contact-blue: #0758c7;
	--sgls-contact-blue-deep: #06275f;
	--sgls-contact-cyan: #16b9d4;
	--sgls-contact-sky: #eaf4ff;
	--sgls-contact-surface: #f6faff;
	--sgls-contact-line: #dce8f5;
	--sgls-contact-white: #fff;
	--sgls-contact-radius: 22px;
	--sgls-contact-shadow: 0 24px 64px rgba(8, 48, 105, 0.13);
	position: relative;
	z-index: 0;
	width: 100%;
	max-width: none;
	margin-block: 0;
	color: var(--sgls-contact-ink);
	background: var(--sgls-contact-white);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-align: left;
	overflow: clip;
	-webkit-font-smoothing: antialiased;
}

.sgls-contact,
.sgls-contact *,
.sgls-contact *::before,
.sgls-contact *::after {
	box-sizing: border-box;
}

.sgls-contact :where(h1, h2, h3, p, ul, ol) {
	margin-block: 0;
}

.sgls-contact :where(h1, h2, h3) {
	color: inherit;
	font-family: inherit;
	font-style: normal;
	font-weight: 780;
	letter-spacing: -0.035em;
	line-height: 1.08;
	text-transform: none;
}

.sgls-contact :where(a) {
	color: inherit;
	text-decoration: none;
}

.sgls-contact :where(svg) {
	display: block;
}

.sgls-contact :where(a):focus-visible {
	border-radius: 6px;
	outline: 3px solid #06275f;
	outline-offset: 4px;
}

.sgls-contact__container {
	width: min(1160px, calc(100% - 48px));
	margin-inline: auto;
}

.sgls-contact__skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 99999;
	padding: 11px 16px;
	border-radius: 9px;
	color: var(--sgls-contact-white);
	background: var(--sgls-contact-blue-deep);
	font-size: 13px;
	font-weight: 800;
	transform: translateY(-180%);
	transition: transform 160ms ease;
}

.sgls-contact__skip-link:focus {
	transform: translateY(0);
}

.sgls-contact__main:focus {
	outline: 0;
}

.sgls-contact__header {
	position: relative;
	z-index: 5;
	border-bottom: 1px solid var(--sgls-contact-line);
	background: rgba(255, 255, 255, 0.97);
}

.sgls-contact__header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 32px;
}

.sgls-contact__brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	gap: 12px;
}

.sgls-contact__brand-mark {
	display: grid;
	width: 43px;
	height: 43px;
	flex: 0 0 43px;
	place-items: center;
	border-radius: 13px;
	color: var(--sgls-contact-white);
	background: linear-gradient(145deg, var(--sgls-contact-blue), var(--sgls-contact-cyan));
	box-shadow: 0 10px 24px rgba(7, 88, 199, 0.22);
}

.sgls-contact__brand-mark svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.sgls-contact__brand strong,
.sgls-contact__brand small {
	display: block;
}

.sgls-contact__brand strong {
	max-width: 280px;
	overflow: hidden;
	font-size: 14px;
	font-weight: 820;
	letter-spacing: -0.015em;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sgls-contact__brand small {
	margin-top: 2px;
	color: var(--sgls-contact-muted);
	font-size: 9px;
	font-weight: 760;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.sgls-contact__back-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	gap: 8px;
	color: var(--sgls-contact-blue-deep);
	font-size: 13px;
	font-weight: 780;
}

.sgls-contact__back-link span {
	color: var(--sgls-contact-blue);
	font-size: 18px;
	transition: transform 160ms ease;
}

.sgls-contact__back-link:hover span {
	transform: translateX(-3px);
}

.sgls-contact__hero {
	position: relative;
	padding-block: 104px 112px;
	background:
		radial-gradient(circle at 88% 18%, rgba(22, 185, 212, 0.18), transparent 28%),
		linear-gradient(125deg, #f8fbff 0%, #edf6ff 60%, #e7f4ff 100%);
	overflow: hidden;
}

.sgls-contact__hero::before,
.sgls-contact__hero::after {
	position: absolute;
	border: 1px solid rgba(7, 88, 199, 0.1);
	border-radius: 50%;
	content: "";
}

.sgls-contact__hero::before {
	top: -230px;
	right: -165px;
	width: 520px;
	height: 520px;
}

.sgls-contact__hero::after {
	right: 22%;
	bottom: -250px;
	width: 380px;
	height: 380px;
}

.sgls-contact__hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.72fr);
	gap: 88px;
}

.sgls-contact__hero-copy {
	max-width: 710px;
}

.sgls-contact__eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--sgls-contact-blue);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sgls-contact__eyebrow span {
	width: 26px;
	height: 2px;
	border-radius: 99px;
	background: var(--sgls-contact-cyan);
}

.sgls-contact__hero :is(h1, h2) {
	max-width: 720px;
	margin-top: 20px;
	font-size: clamp(50px, 5.2vw, 72px);
	line-height: 1.01;
}

.sgls-contact__lead {
	max-width: 670px;
	margin-top: 28px;
	color: var(--sgls-contact-muted);
	font-size: 17px;
	line-height: 1.75;
}

.sgls-contact__hero-actions {
	display: flex;
	align-items: center;
	margin-top: 34px;
	gap: 12px;
}

.sgls-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 20px;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 820;
	line-height: 1.2;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sgls-contact__button:hover {
	transform: translateY(-2px);
}

.sgls-contact__button--primary {
	color: var(--sgls-contact-white);
	background: linear-gradient(135deg, var(--sgls-contact-blue), #0879c7);
	box-shadow: 0 13px 28px rgba(7, 88, 199, 0.22);
}

.sgls-contact__button--primary:hover {
	box-shadow: 0 16px 36px rgba(7, 88, 199, 0.28);
}

.sgls-contact__button--secondary {
	border-color: #bcd3ea;
	color: var(--sgls-contact-blue-deep);
	background: rgba(255, 255, 255, 0.72);
}

.sgls-contact__button--secondary:hover {
	border-color: #84add4;
	background: var(--sgls-contact-white);
}

.sgls-contact__boundary {
	display: flex;
	align-items: flex-start;
	margin-top: 23px;
	gap: 8px;
	color: #536880;
	font-size: 11px;
	font-weight: 680;
	line-height: 1.55;
}

.sgls-contact__boundary span {
	display: grid;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	place-items: center;
	border-radius: 50%;
	color: var(--sgls-contact-blue);
	background: #dcedff;
	font-size: 10px;
}

.sgls-contact__brief-card {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(7, 88, 199, 0.14);
	border-radius: var(--sgls-contact-radius);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--sgls-contact-shadow);
}

.sgls-contact__brief-card::before {
	position: absolute;
	top: 0;
	right: 30px;
	left: 30px;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, var(--sgls-contact-blue), var(--sgls-contact-cyan));
	content: "";
}

.sgls-contact__brief-head {
	display: flex;
	align-items: center;
	padding-bottom: 23px;
	gap: 14px;
	border-bottom: 1px solid var(--sgls-contact-line);
}

.sgls-contact__brief-head > span {
	display: grid;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	place-items: center;
	border-radius: 14px;
	color: var(--sgls-contact-blue);
	background: var(--sgls-contact-sky);
}

.sgls-contact__brief-head svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.sgls-contact__brief-head small,
.sgls-contact__brief-head strong {
	display: block;
}

.sgls-contact__brief-head small {
	color: var(--sgls-contact-blue);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sgls-contact__brief-head strong {
	margin-top: 2px;
	font-size: 17px;
	line-height: 1.25;
}

.sgls-contact__brief-card ul {
	display: grid;
	margin: 0;
	padding: 8px 0 0;
	list-style: none;
}

.sgls-contact__brief-card li {
	display: grid;
	align-items: center;
	grid-template-columns: 33px 1fr;
	min-height: 58px;
	gap: 10px;
	border-bottom: 1px solid #e7eef7;
	color: #31445f;
	font-size: 12px;
	font-weight: 720;
	line-height: 1.45;
}

.sgls-contact__brief-card li:last-child {
	border-bottom: 0;
}

.sgls-contact__brief-card li span {
	color: var(--sgls-contact-blue);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.sgls-contact__section {
	padding-block: 104px;
}

.sgls-contact__section--requirements {
	background: var(--sgls-contact-white);
}

.sgls-contact__section-heading {
	max-width: 690px;
}

.sgls-contact__section-heading > p:first-child,
.sgls-contact__contact-label {
	color: var(--sgls-contact-blue);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.sgls-contact__section-heading h2 {
	margin-top: 13px;
	font-size: clamp(37px, 4vw, 52px);
}

.sgls-contact__requirement-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 56px;
	gap: 20px;
}

.sgls-contact__requirement-grid article {
	min-height: 255px;
	padding: 31px;
	border: 1px solid var(--sgls-contact-line);
	border-radius: 18px;
	background: var(--sgls-contact-surface);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.sgls-contact__requirement-grid article:hover {
	border-color: rgba(7, 88, 199, 0.28);
	box-shadow: 0 18px 40px rgba(8, 48, 105, 0.08);
	transform: translateY(-3px);
}

.sgls-contact__requirement-grid article > span {
	display: grid;
	width: 43px;
	height: 43px;
	place-items: center;
	border-radius: 12px;
	color: var(--sgls-contact-blue);
	background: var(--sgls-contact-sky);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.sgls-contact__requirement-grid h3 {
	margin-top: 27px;
	font-size: 20px;
}

.sgls-contact__requirement-grid p {
	margin-top: 12px;
	color: var(--sgls-contact-muted);
	font-size: 13px;
	line-height: 1.72;
}

.sgls-contact__section--process {
	color: var(--sgls-contact-white);
	background:
		radial-gradient(circle at 84% 16%, rgba(22, 185, 212, 0.2), transparent 25%),
		linear-gradient(140deg, #041d49, #073a80 65%, #075bab);
}

.sgls-contact__process-grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
	gap: 100px;
}

.sgls-contact__section--process .sgls-contact__section-heading > p:first-child {
	color: #70daf0;
}

.sgls-contact__steps {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 15px;
	list-style: none;
	counter-reset: none;
}

.sgls-contact__steps li {
	display: grid;
	align-items: start;
	grid-template-columns: 48px 1fr;
	padding: 22px 24px;
	gap: 17px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.075);
}

.sgls-contact__steps li > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 12px;
	color: var(--sgls-contact-blue-deep);
	background: #8be0ef;
	font-size: 12px;
	font-weight: 900;
}

.sgls-contact__steps h3 {
	font-size: 17px;
	letter-spacing: -0.02em;
}

.sgls-contact__steps p {
	margin-top: 7px;
	color: #c9d9ed;
	font-size: 13px;
	line-height: 1.6;
}

.sgls-contact__contact-band {
	position: relative;
	padding-block: 96px;
	background:
		radial-gradient(circle at 12% 20%, rgba(22, 185, 212, 0.14), transparent 24%),
		linear-gradient(120deg, #eef7ff, #f8fbff 58%, #edf7fd);
}

.sgls-contact__contact-grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
	gap: 86px;
}

.sgls-contact__contact-grid h2 {
	max-width: 700px;
	margin-top: 13px;
	font-size: clamp(38px, 4.2vw, 54px);
}

.sgls-contact__contact-grid > div:first-child > p:last-child {
	max-width: 690px;
	margin-top: 22px;
	color: var(--sgls-contact-muted);
	font-size: 15px;
	line-height: 1.75;
}

.sgls-contact__channels {
	display: grid;
	gap: 12px;
}

.sgls-contact__channels > a,
.sgls-contact__channel-placeholder {
	position: relative;
	display: flex;
	min-height: 88px;
	justify-content: center;
	flex-direction: column;
	padding: 18px 22px;
	border: 1px solid #cfe1f2;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 28px rgba(8, 48, 105, 0.06);
}

.sgls-contact__channels > a {
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sgls-contact__channels > a::after {
	position: absolute;
	top: 50%;
	right: 22px;
	color: var(--sgls-contact-blue);
	content: "↗";
	font-size: 18px;
	transform: translateY(-50%);
}

.sgls-contact__channels > a:hover {
	border-color: rgba(7, 88, 199, 0.36);
	box-shadow: 0 15px 34px rgba(8, 48, 105, 0.1);
	transform: translateY(-2px);
}

.sgls-contact__channels small,
.sgls-contact__channels strong {
	display: block;
}

.sgls-contact__channels small {
	color: var(--sgls-contact-muted);
	font-size: 9px;
	font-weight: 820;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sgls-contact__channels strong {
	max-width: calc(100% - 36px);
	margin-top: 4px;
	font-size: 14px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.sgls-contact__channel-placeholder {
	padding-left: 76px;
}

.sgls-contact__channel-placeholder > span {
	position: absolute;
	top: 50%;
	left: 22px;
	display: grid;
	width: 39px;
	height: 39px;
	place-items: center;
	border-radius: 12px;
	color: var(--sgls-contact-white);
	background: var(--sgls-contact-blue);
	font-size: 17px;
	transform: translateY(-50%);
}

.sgls-contact__channel-placeholder small,
.sgls-contact__channel-placeholder strong {
	max-width: 100%;
}

.sgls-contact__footer {
	padding-block: 28px;
	color: #65748a;
	background: #f5f8fb;
	font-size: 11px;
	line-height: 1.7;
}

.sgls-contact__footer strong {
	color: #3b4a60;
}

@media (max-width: 900px) {
	.sgls-contact__container {
		width: min(760px, calc(100% - 36px));
	}

	.sgls-contact__hero {
		padding-block: 80px 86px;
	}

	.sgls-contact__hero-grid,
	.sgls-contact__process-grid,
	.sgls-contact__contact-grid {
		grid-template-columns: 1fr;
	}

	.sgls-contact__hero-grid {
		gap: 52px;
	}

	.sgls-contact__brief-card {
		max-width: 620px;
	}

	.sgls-contact__section {
		padding-block: 84px;
	}

	.sgls-contact__requirement-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sgls-contact__requirement-grid article {
		min-height: 0;
	}

	.sgls-contact__process-grid,
	.sgls-contact__contact-grid {
		gap: 48px;
	}
}

@media (max-width: 600px) {
	.sgls-contact__container {
		width: calc(100% - 28px);
	}

	.sgls-contact__header-inner {
		min-height: 70px;
		gap: 14px;
	}

	.sgls-contact__brand-mark {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

	.sgls-contact__brand strong {
		max-width: 135px;
		font-size: 13px;
	}

	.sgls-contact__brand small {
		display: none;
	}

	.sgls-contact__back-link {
		font-size: 11px;
	}

	.sgls-contact__hero {
		padding-block: 60px 68px;
	}

	.sgls-contact__hero-grid {
		gap: 40px;
	}

	.sgls-contact__hero :is(h1, h2) {
		font-size: clamp(39px, 12vw, 52px);
	}

	.sgls-contact__lead {
		margin-top: 22px;
		font-size: 15px;
	}

	.sgls-contact__hero-actions {
		align-items: stretch;
		margin-top: 28px;
		flex-direction: column;
	}

	.sgls-contact__button {
		width: 100%;
	}

	.sgls-contact__brief-card {
		padding: 23px;
	}

	.sgls-contact__brief-card::before {
		right: 23px;
		left: 23px;
	}

	.sgls-contact__section {
		padding-block: 70px;
	}

	.sgls-contact__section-heading h2,
	.sgls-contact__contact-grid h2 {
		font-size: 35px;
	}

	.sgls-contact__requirement-grid {
		margin-top: 38px;
	}

	.sgls-contact__requirement-grid article {
		padding: 25px;
	}

	.sgls-contact__steps li {
		grid-template-columns: 40px 1fr;
		padding: 19px 17px;
		gap: 13px;
	}

	.sgls-contact__steps li > span {
		width: 38px;
		height: 38px;
	}

	.sgls-contact__contact-band {
		padding-block: 72px;
	}

	.sgls-contact__contact-grid {
		gap: 38px;
	}

	.sgls-contact__channels > a,
	.sgls-contact__channel-placeholder {
		padding-right: 18px;
	}

	.sgls-contact__channel-placeholder {
		padding-left: 70px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sgls-contact,
	.sgls-contact *,
	.sgls-contact *::before,
	.sgls-contact *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.sgls-contact :where(.sgls-contact__button, .sgls-contact__back-link span, .sgls-contact__requirement-grid article, .sgls-contact__channels > a):hover {
		transform: none;
	}
}

@media print {
	.sgls-contact {
		color: #000;
		background: #fff;
		overflow: visible;
	}

	.sgls-contact__header,
	.sgls-contact__hero-actions {
		display: none;
	}

	.sgls-contact__hero,
	.sgls-contact__section,
	.sgls-contact__contact-band {
		padding-block: 38px;
		color: #000;
		background: #fff;
	}

	.sgls-contact__hero-grid,
	.sgls-contact__process-grid,
	.sgls-contact__contact-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.sgls-contact__brief-card,
	.sgls-contact__requirement-grid article,
	.sgls-contact__steps li,
	.sgls-contact__channels > a,
	.sgls-contact__channel-placeholder {
		break-inside: avoid;
		color: #000;
		background: #fff;
		box-shadow: none;
	}

	.sgls-contact__steps p,
	.sgls-contact__contact-grid > div:first-child > p:last-child {
		color: #000;
	}
}
