:root {
	--sat-navy: #0f2744;
	--sat-navy2: #14365a;
	--sat-green: #1b7f5a;
	--sat-green-soft: #e7f4ee;
	--sat-paper: #f7f8fa;
	--sat-card: #ffffff;
	--sat-ink: #1a2230;
	--sat-muted: #5a6678;
	--sat-line: #d7dde6;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}

.sat-root {
	background: var(--sat-paper);
	color: var(--sat-ink);
}

.sat-body {
	margin: 0;
	min-height: 100vh;
	font-family: "Figtree", system-ui, -apple-system, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.sat-wrap {
	width: min(1080px, 92vw);
	margin-inline: auto;
}

.sat-skip {
	position: absolute;
	left: -999px;
	padding: 8px 12px;
	background: #fff;
	color: #000;
}
.sat-skip:focus {
	left: 12px;
	top: 12px;
	z-index: 9999;
}

.sat-muted {
	color: var(--sat-muted);
}

.sat-head {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--sat-line);
}
.sat-head--elevated {
	position: sticky;
	top: 0;
	z-index: 40;
	box-shadow: 0 12px 30px rgba(15, 39, 68, 0.06);
}

.sat-head__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 18px;
	padding: 14px 0;
}
.sat-tagline {
	margin: 0;
	flex: 1 1 220px;
	text-align: center;
	font-size: 0.86rem;
	color: var(--sat-muted);
}
@media (max-width: 720px) {
	.sat-tagline { display: none; }
}

.sat-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--sat-navy);
	font-weight: 700;
	font-size: 1.08rem;
	letter-spacing: -0.02em;
}

.sat-brand__mark {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--sat-green), #26a06f);
	box-shadow: 0 8px 20px rgba(27, 127, 90, 0.22);
	position: relative;
}
.sat-brand__mark::after {
	content: "";
	position: absolute;
	inset: 8px 10px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	border-radius: 2px;
	opacity: 0.9;
}

.sat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	cursor: pointer;
	border: none;
}
.sat-btn--primary {
	background: var(--sat-navy);
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(15, 39, 68, 0.18);
}
.sat-btn--primary:hover {
	transform: translateY(-2px);
	background: var(--sat-navy2);
}
.sat-btn--compact {
	padding: 8px 16px;
	font-size: 0.82rem;
}

/* Colour ribbon */
.sat-ribbon {
	height: 12px;
	background: linear-gradient(90deg, var(--sat-green), var(--sat-navy));
}

/* Overlap hero */
.sat-hero-overlap {
	margin-top: -32px;
	margin-bottom: 48px;
}
.sat-hero-overlap__card {
	background: var(--sat-card);
	border-radius: 22px;
	padding: clamp(26px, 5vw, 38px);
	border: 1px solid var(--sat-line);
	box-shadow: 0 28px 60px rgba(15, 39, 68, 0.12);
}
.sat-eyebrow {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sat-green);
	margin: 0 0 10px;
}

.sat-hero-overlap h1 {
	font-family: "Source Serif 4", Georgia, serif;
	font-size: clamp(2rem, 4.5vw, 2.95rem);
	line-height: 1.06;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--sat-navy);
	max-width: 18ch;
}
.sat-introcopy {
	margin: 0;
	color: var(--sat-muted);
	font-size: 1.06rem;
	max-width: 60ch;
}
.sat-inline-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}
.sat-inline-list li {
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid var(--sat-line);
	background: var(--sat-paper);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--sat-navy);
}
.sat-kicker-mini {
	margin: 16px 0 0;
}
.sat-kicker-mini a {
	color: var(--sat-green);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px dashed rgba(27, 127, 90, 0.45);
}

/* Accordion panel */
.sat-panel {
	padding: 32px 0 48px;
}
.sat-panel__heading h2 {
	margin: 0 0 10px;
	font-family: "Source Serif 4", Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	color: var(--sat-navy);
}
.sat-panel__heading p {
	margin: 0 0 20px;
	color: var(--sat-muted);
	max-width: 58ch;
}
.sat-accordion details {
	border: 1px solid var(--sat-line);
	border-radius: 14px;
	margin-bottom: 10px;
	background: #fff;
	overflow: hidden;
}
.sat-accordion summary {
	cursor: pointer;
	font-weight: 700;
	padding: 16px 18px;
	font-size: 1rem;
	list-style: none;
}
.sat-accordion summary::-webkit-details-marker { display: none; }
.sat-accordion details div {
	padding: 0 18px 18px;
	color: var(--sat-muted);
	font-size: 0.93rem;
}

/* Trio safety */
.sat-stripes {
	background: repeating-linear-gradient(
		-55deg,
		rgba(15, 39, 68, 0.04),
		rgba(15, 39, 68, 0.04) 12px,
		transparent 12px,
		transparent 24px
	);
	padding: 56px 0;
	border-block: 1px solid rgba(215, 221, 230, 0.9);
}
.sat-stripes h2 {
	margin: 0 0 24px;
	font-family: "Source Serif 4", Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.05rem);
	color: var(--sat-navy);
	text-align: center;
}
.sat-trio {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 22px;
}
@media (max-width: 800px) { .sat-trio { grid-template-columns: 1fr; } }
.sat-trio__item {
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--sat-line);
	padding: 22px;
	text-align: center;
	box-shadow: 0 14px 30px rgba(15, 39, 68, 0.06);
}
.sat-glyph {
	display: block;
	font-size: 1.4rem;
	color: var(--sat-green);
	margin-bottom: 8px;
}
.sat-trio__item h3 {
	margin: 0 0 8px;
	font-size: 1.06rem;
}
.sat-trio__item p {
	margin: 0;
	color: var(--sat-muted);
	font-size: 0.92rem;
}
.sat-notebox {
	max-width: 820px;
	margin-inline: auto;
	padding: 16px 18px;
	border-left: 4px solid var(--sat-green);
	background: rgba(231, 244, 238, 0.55);
	border-radius: 12px;
	font-size: 0.93rem;
	color: var(--sat-ink);
}

/* Coverage */
.sat-mapcard {
	padding: 48px 0 52px;
}
.sat-mapcard__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
	gap: 28px;
	padding: clamp(26px, 4vw, 36px);
	border-radius: 20px;
	background: radial-gradient(circle at 10% -10%, rgba(27, 127, 90, 0.12), transparent 45%), #fff;
	border: 1px solid var(--sat-line);
	box-shadow: 0 26px 50px rgba(15, 39, 68, 0.08);
}
@media (max-width: 760px) { .sat-mapcard__inner { grid-template-columns: 1fr; } }
.sat-mapcard__titles h2 {
	margin: 0 0 12px;
	font-family: "Source Serif 4", Georgia, serif;
	font-size: 1.8rem;
	color: var(--sat-navy);
}
.sat-mapcard__titles p {
	margin: 0;
	color: var(--sat-muted);
}
.sat-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.sat-checklist li {
	position: relative;
	padding-left: 26px;
	color: var(--sat-navy);
	font-weight: 600;
	font-size: 0.93rem;
}
.sat-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.42em;
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--sat-green), #26a06f);
}

/* Channels */
.sat-channels {
	padding: 52px 0 72px;
}
.sat-channels h2 {
	margin: 0 0 8px;
	font-family: "Source Serif 4", Georgia, serif;
	font-size: 2rem;
	color: var(--sat-navy);
}
.sat-channel-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(240px, 1fr));
	gap: 14px;
	margin-top: 20px;
}
@media (max-width: 620px) { .sat-channel-grid { grid-template-columns: 1fr; } }
.sat-channel-card {
	display: block;
	padding: 18px;
	border-radius: 16px;
	border: 1px solid var(--sat-line);
	background: #fff;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 12px 24px rgba(15, 39, 68, 0.05);
	transition: border-color 0.14s ease, transform 0.14s ease;
	min-height: 110px;
}
.sat-channel-card:hover {
	transform: translateY(-2px);
	border-color: rgba(27, 127, 90, 0.35);
}
.sat-channel-card span {
	display: block;
	text-transform: uppercase;
	font-size: 0.72rem;
	letter-spacing: 0.13em;
	color: var(--sat-green);
	margin-bottom: 8px;
}
.sat-channel-card strong {
	font-size: 0.96rem;
	color: var(--sat-navy2);
	word-break: break-word;
	line-height: 1.33;
	font-weight: 700;
}
.sat-channel-card--static {
	cursor: default;
	box-shadow: none;
}
.sat-channel-card--static:hover {
	transform: none;
}

/* Footer */
.sat-foot {
	padding: 32px 0 44px;
	background: var(--sat-navy);
	color: rgba(247, 248, 250, 0.86);
	border-top: 8px solid var(--sat-green);
}
.sat-foot__bar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
	gap: 20px;
	align-items: start;
}
@media (max-width: 780px) { .sat-foot__bar { grid-template-columns: 1fr; } }
.sat-foot strong { color: #fff; font-size: 1.05rem; }
.sat-foot__pipe {
	display: block;
	font-size: 0.82rem;
	color: rgba(247, 248, 250, 0.7);
	margin-top: 8px;
}
.sat-foot__legal {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(247, 248, 250, 0.7);
	line-height: 1.5;
}

.sat-copy {
	margin: 18px auto 0;
	padding-top: 14px;
	border-top: 1px solid rgba(247, 248, 250, 0.2);
	text-align: center;
	font-size: 0.71rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(247, 248, 250, 0.55);
}
