@font-face {
	font-family: "Uni Sans";
	src: url("fonts/UniSans-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Uni Sans";
	src: url("fonts/UniSans-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Uni Sans";
	src: url("fonts/UniSans-Heavy.otf") format("opentype");
	font-style: normal;
	font-weight: 900;
	font-display: swap;
}

:root {
	color-scheme: light;
	--satp-navy: #211e3e;
	--satp-berry: #30337c;
	--satp-lime: #acc915;
	--satp-stone: #4a93be;
	--satp-cloud: #b7babe;
	--satp-bg: #f7f8fa;
	--satp-surface: #ffffff;
	--satp-surface-soft: #eef0f3;
	--satp-text: #211e3e;
	--satp-muted: #666978;
	--satp-line: rgba(33, 30, 62, 0.14);
	--satp-strong: #211e3e;
	--satp-strong-text: #ffffff;
	--satp-strong-muted: #b7babe;
	--satp-shadow: 0 18px 52px rgba(33, 30, 62, 0.10);
	--satp-focus: rgba(74, 147, 190, 0.42);
}

html[data-theme="dark"] {
	color-scheme: dark;
	--satp-bg: #211e3e;
	--satp-surface: #29284b;
	--satp-surface-soft: #303056;
	--satp-text: #f7f8fa;
	--satp-muted: #b7babe;
	--satp-line: rgba(183, 186, 190, 0.22);
	--satp-strong: #17162d;
	--satp-strong-text: #f7f8fa;
	--satp-strong-muted: #b7babe;
	--satp-shadow: 0 20px 58px rgba(7, 7, 18, 0.28);
	--satp-focus: rgba(172, 201, 21, 0.34);
}

@media (prefers-color-scheme: dark) {
	html:not([data-theme]) {
		color-scheme: dark;
		--satp-bg: #211e3e;
		--satp-surface: #29284b;
		--satp-surface-soft: #303056;
		--satp-text: #f7f8fa;
		--satp-muted: #b7babe;
		--satp-line: rgba(183, 186, 190, 0.22);
		--satp-strong: #17162d;
		--satp-strong-text: #f7f8fa;
		--satp-strong-muted: #b7babe;
		--satp-shadow: 0 20px 58px rgba(7, 7, 18, 0.28);
		--satp-focus: rgba(172, 201, 21, 0.34);
	}
}

html {
	background: var(--satp-bg);
}

body.shamsah-app-testing-portal {
	min-width: 320px;
	margin: 0;
	background: var(--satp-bg);
	color: var(--satp-text);
	font-family: "Uni Sans", "Arial Narrow", Arial, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

html[lang="ar"] body.shamsah-app-testing-portal {
	font-family: Tahoma, Arial, sans-serif;
}

html[lang="ar"] .satp-kicker,
html[lang="ar"] .satp-hero h1,
html[lang="ar"] .satp-section-heading h2,
html[lang="ar"] .satp-platform-guides h3,
html[lang="ar"] .satp-app-top h3 {
	letter-spacing: 0;
}

.shamsah-app-testing-portal *,
.shamsah-app-testing-portal *::before,
.shamsah-app-testing-portal *::after {
	box-sizing: border-box;
}

.shamsah-app-testing-portal button,
.shamsah-app-testing-portal input {
	font: inherit;
}

.satp-shell {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: var(--satp-bg);
	transition: background-color 180ms ease, color 180ms ease;
}

.satp-shell::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--satp-lime);
	content: "";
}

.satp-shell::after {
	position: absolute;
	top: 120px;
	right: -180px;
	width: 360px;
	height: 360px;
	border: 82px solid var(--satp-stone);
	border-radius: 92px;
	content: "";
	opacity: 0.055;
	transform: rotate(45deg);
	pointer-events: none;
}

.satp-frame {
	position: relative;
	z-index: 1;
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
	padding: 34px 0 28px;
}

.satp-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 74px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--satp-line);
}

.satp-brand {
	display: inline-flex;
	align-items: center;
	width: clamp(220px, 25vw, 284px);
	min-height: 54px;
	text-decoration: none;
}

.satp-brand-logo {
	display: block;
	width: 100%;
	height: auto;
}

.satp-brand-logo--light {
	display: none;
}

.satp-header-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.satp-language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	border: 1px solid var(--satp-line);
	border-radius: 14px;
	background: var(--satp-surface);
	padding: 4px;
	box-shadow: 0 8px 22px rgba(33, 30, 62, 0.06);
}

.satp-language-switcher a {
	display: grid;
	min-height: 38px;
	place-items: center;
	border-radius: 9px;
	padding: 8px 11px;
	color: var(--satp-muted);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.satp-language-switcher a:hover {
	color: var(--satp-text);
}

.satp-language-switcher a[aria-current="page"] {
	background: var(--satp-strong);
	color: var(--satp-strong-text);
}

html[data-theme="dark"] .satp-brand-logo--dark {
	display: none;
}

html[data-theme="dark"] .satp-brand-logo--light {
	display: block;
}

@media (prefers-color-scheme: dark) {
	html:not([data-theme]) .satp-brand-logo--dark { display: none; }
	html:not([data-theme]) .satp-brand-logo--light { display: block; }
}

.satp-theme-switcher {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 1px solid var(--satp-line);
	border-radius: 14px;
	background: var(--satp-surface);
	padding: 4px;
	box-shadow: 0 8px 22px rgba(33, 30, 62, 0.06);
}

.satp-theme-switcher button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 38px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	padding: 8px 10px;
	color: var(--satp-muted);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 150ms ease, color 150ms ease;
}

.satp-theme-switcher button:hover {
	color: var(--satp-text);
}

.satp-theme-switcher button[aria-pressed="true"] {
	background: var(--satp-strong);
	color: var(--satp-strong-text);
}

.satp-theme-switcher svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.satp-hero,
.satp-access-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
	align-items: center;
	gap: clamp(48px, 8vw, 108px);
	min-height: 470px;
	padding: 72px 0 78px;
}

.satp-kicker {
	display: inline-block;
	color: var(--satp-stone);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.satp-hero h1,
.satp-access-intro h1 {
	max-width: 780px;
	margin: 18px 0 22px;
	color: var(--satp-text);
	font-size: clamp(48px, 7.4vw, 88px);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.93;
	text-transform: uppercase;
}

.satp-hero h1 span,
.satp-access-intro h1 span {
	color: var(--satp-stone);
}

.satp-hero-copy > p,
.satp-access-intro > p {
	max-width: 620px;
	margin: 0;
	color: var(--satp-muted);
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
}

.satp-hero {
	min-height: 360px;
	padding: 54px 0 58px;
}

.satp-hero h1 {
	font-size: clamp(46px, 6.4vw, 78px);
}

.satp-device-picker {
	border-inline-start: 4px solid var(--satp-lime);
	background: var(--satp-surface);
	padding: 24px;
	box-shadow: var(--satp-shadow);
}

.satp-device-picker > strong,
.satp-device-picker > span {
	display: block;
}

.satp-device-picker > strong {
	color: var(--satp-text);
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
}

.satp-device-picker > span {
	margin-top: 6px;
	color: var(--satp-muted);
	font-size: 14px;
	line-height: 1.45;
}

.satp-device-picker > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}

.satp-device-picker a {
	position: relative;
	display: flex;
	min-height: 78px;
	flex-direction: column;
	justify-content: center;
	background: var(--satp-strong);
	padding: 14px 34px 14px 15px;
	color: var(--satp-strong-text);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 150ms ease, transform 150ms ease;
}

.satp-device-picker a:hover {
	background: var(--satp-stone);
	color: #ffffff;
	transform: translateY(-2px);
}

.satp-device-picker small {
	display: block;
	margin-bottom: 5px;
	color: var(--satp-lime);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.satp-device-picker b {
	position: absolute;
	inset-inline-end: 15px;
	bottom: 15px;
	font-size: 18px;
}

.satp-trust-note {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	color: var(--satp-text);
	font-size: 13px;
	font-weight: 700;
}

.satp-trust-note > span {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--satp-lime);
	color: var(--satp-navy);
}

.satp-access-card,
.satp-empty {
	position: relative;
	border: 1px solid var(--satp-line);
	border-top: 5px solid var(--satp-lime);
	background: var(--satp-surface);
	padding: clamp(28px, 4vw, 44px);
	box-shadow: var(--satp-shadow);
}

.satp-access-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.satp-card-index,
.satp-section-number {
	color: var(--satp-cloud);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.satp-lock {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--satp-surface-soft);
	color: var(--satp-stone);
}

.satp-lock svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.satp-access-card h2,
.satp-empty h2 {
	margin: 30px 0 10px;
	color: var(--satp-text);
	font-size: clamp(27px, 3.2vw, 38px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1;
	text-transform: uppercase;
}

.satp-access-card > p,
.satp-empty p {
	margin: 0;
	color: var(--satp-muted);
	font-size: 15px;
	line-height: 1.55;
}

.satp-password-form {
	display: grid;
	gap: 10px;
	margin-top: 30px;
}

.satp-password-form label {
	color: var(--satp-text);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.satp-password-form input {
	width: 100%;
	height: 52px;
	border: 1px solid var(--satp-line);
	border-radius: 0;
	background: var(--satp-surface-soft);
	padding: 0 16px;
	color: var(--satp-text);
	font-size: 16px;
	outline: none;
}

.satp-password-form input::placeholder {
	color: var(--satp-muted);
	opacity: 0.72;
}

.satp-password-form button,
.satp-google-play,
.satp-testflight {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 0;
	background: var(--satp-lime);
	padding: 14px 17px;
	color: var(--satp-navy);
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 150ms ease, transform 150ms ease;
}

.satp-password-form button {
	margin-top: 4px;
}

.satp-password-form button:hover,
.satp-google-play:hover {
	background: #badb16;
	color: var(--satp-navy);
	transform: translateY(-2px);
}

.satp-theme-switcher button:focus-visible,
.satp-password-form input:focus-visible,
.satp-password-form button:focus-visible,
.satp-google-play:focus-visible,
.satp-testflight:focus-visible,
.satp-group-action:focus-visible,
.satp-testflight-download:focus-visible,
.satp-device-picker a:focus-visible,
.satp-language-switcher a:focus-visible,
.satp-brand:focus-visible {
	outline: 3px solid var(--satp-focus);
	outline-offset: 3px;
}

.satp-app-section {
	padding: 64px 0 72px;
	border-top: 1px solid var(--satp-line);
}

.satp-group-action {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 72px;
	background: var(--satp-strong);
	padding: 16px 18px;
	color: var(--satp-strong-text);
	text-decoration: none;
	transition: background-color 150ms ease, transform 150ms ease;
}

.satp-group-action:hover {
	background: var(--satp-stone);
	color: #ffffff;
	transform: translateY(-2px);
}

.satp-group-action svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.satp-group-action span {
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.025em;
	line-height: 1.2;
	text-transform: uppercase;
}

.satp-group-action small {
	display: block;
	margin-bottom: 4px;
	color: var(--satp-lime);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.satp-group-action > strong {
	font-size: 22px;
}

.satp-group-action--inline {
	margin-top: 15px;
	min-height: 64px;
	background: var(--satp-lime);
	color: var(--satp-navy);
}

.satp-group-action--inline:hover {
	background: #badb16;
	color: var(--satp-navy);
}

.satp-group-action--inline span {
	font-size: 13px;
}

.satp-group-action--inline small {
	color: var(--satp-navy);
	opacity: 0.72;
}

.satp-testflight-download {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 64px;
	margin-top: 15px;
	background: #ffffff;
	padding: 13px 16px;
	color: var(--satp-navy);
	text-decoration: none;
	transition: background-color 150ms ease, transform 150ms ease;
}

.satp-testflight-download:hover {
	background: #eef7fc;
	color: var(--satp-navy);
	transform: translateY(-2px);
}

.satp-testflight-download img {
	display: block;
	width: 38px;
	height: 38px;
	border-radius: 9px;
	object-fit: cover;
}

.satp-testflight-download span {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.025em;
	line-height: 1.2;
	text-transform: uppercase;
}

.satp-testflight-download small {
	display: block;
	margin-bottom: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	opacity: 0.68;
}

.satp-testflight-download > strong {
	color: var(--satp-navy);
	font-size: 22px;
}

.satp-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
}

.satp-section-heading > div {
	display: flex;
	align-items: center;
	gap: 16px;
}

.satp-section-heading h2 {
	margin: 0;
	color: var(--satp-text);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	text-align: end;
	text-transform: uppercase;
}

.satp-app-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.satp-app-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--satp-line);
	background: var(--satp-surface);
	padding: 25px;
	box-shadow: var(--satp-shadow);
}

.satp-app-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--satp-app-accent);
	content: "";
}

.satp-app-top {
	display: flex;
	align-items: center;
	gap: 17px;
}

.satp-app-top img {
	display: block;
	width: 84px;
	height: 84px;
	flex: 0 0 84px;
	border: 1px solid rgba(33, 30, 62, 0.10);
	border-radius: 19px;
	background: #ffffff;
	object-fit: cover;
}

.satp-app-top span {
	display: block;
	margin-bottom: 5px;
	color: var(--satp-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.satp-app-top h3 {
	margin: 0;
	color: var(--satp-text);
	font-size: 23px;
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.05;
	text-transform: uppercase;
}

.satp-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 26px 0;
	border-top: 1px solid var(--satp-line);
	border-inline-start: 1px solid var(--satp-line);
}

.satp-meta div {
	min-width: 0;
	border-inline-end: 1px solid var(--satp-line);
	border-bottom: 1px solid var(--satp-line);
	padding: 12px;
}

.satp-meta dt {
	color: var(--satp-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.satp-meta dd {
	margin: 5px 0 0;
	overflow: hidden;
	color: var(--satp-text);
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.satp-platform-actions {
	display: grid;
	gap: 10px;
}

.satp-google-play {
	border: 1px solid var(--satp-line);
	background: #000000;
	color: #ffffff;
}

.satp-google-play:hover {
	background: #171717;
	color: #ffffff;
}

.satp-testflight {
	border: 1px solid var(--satp-line);
	background: var(--satp-strong);
	color: var(--satp-strong-text);
}

.satp-testflight:hover {
	background: var(--satp-stone);
	color: #ffffff;
	transform: translateY(-2px);
}

.satp-testflight svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.satp-testflight .satp-testflight-icon {
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 6px;
	object-fit: cover;
}

.satp-google-play .satp-google-play-badge {
	display: block;
	width: 112px;
	height: auto;
	flex: 0 0 112px;
}

.satp-steps {
	position: relative;
	margin-top: 14px;
	background: var(--satp-strong);
	padding: clamp(34px, 5vw, 56px);
	color: var(--satp-strong-text);
}

.satp-onboarding {
	margin-top: 0;
}

.satp-steps::before {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 28%;
	height: 5px;
	background: var(--satp-stone);
	content: "";
}

.satp-section-heading--inverse .satp-section-number,
.satp-section-heading--inverse .satp-kicker {
	color: var(--satp-strong-muted);
}

.satp-section-heading--inverse h2 {
	color: var(--satp-strong-text);
}

.satp-section-intro {
	max-width: 800px;
	margin: -8px 0 0;
	color: var(--satp-strong-muted);
	font-size: 16px;
	line-height: 1.55;
}

.satp-steps ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.satp-platform-guides {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.satp-platform-guide {
	border: 1px solid rgba(183, 186, 190, 0.24);
	background: rgba(255, 255, 255, 0.045);
	padding: clamp(24px, 3vw, 32px);
	scroll-margin-top: 20px;
}

.satp-guide-heading {
	display: flex;
	align-items: center;
	gap: 16px;
}

.satp-guide-icon {
	display: block;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
}

.satp-guide-icon--google-play {
	width: 116px;
	height: auto;
	flex-basis: 116px;
}

.satp-guide-icon--google-play img {
	display: block;
	width: 116px;
	height: auto;
}

.satp-guide-icon--testflight {
	border-radius: 11px;
	object-fit: cover;
}

.satp-guide-label {
	color: var(--satp-lime);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.satp-platform-guides h3 {
	margin: 4px 0 0;
	color: var(--satp-strong-text);
	font-size: clamp(21px, 2.5vw, 28px);
	font-weight: 900;
	letter-spacing: -0.025em;
	text-transform: uppercase;
}

.satp-platform-guides .satp-steps ol,
.satp-platform-guides ol {
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 26px;
}

.satp-platform-guides .satp-steps li,
.satp-platform-guides li {
	border-top: 1px solid rgba(183, 186, 190, 0.24);
	border-inline-start: 0;
	padding: 20px 0 0;
}

.satp-platform-guides .satp-steps li:first-child,
.satp-platform-guides li:first-child {
	border-top: 0;
	padding-top: 0;
}

.satp-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	min-width: 0;
	border-inline-start: 1px solid rgba(183, 186, 190, 0.24);
	padding: 0 28px;
}

.satp-steps li:first-child {
	border-inline-start: 0;
	padding-inline-start: 0;
}

.satp-steps li:last-child {
	padding-inline-end: 0;
}

.satp-steps li > span {
	color: var(--satp-lime);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.satp-steps strong {
	display: block;
	color: var(--satp-strong-text);
	font-size: 17px;
	font-weight: 900;
	text-transform: uppercase;
}

.satp-steps p {
	margin: 7px 0 0;
	color: var(--satp-strong-muted);
	font-size: 14px;
	line-height: 1.5;
}

.satp-steps em {
	color: var(--satp-strong-text);
	font-style: normal;
	font-weight: 700;
}

.satp-guide-continue {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	min-height: 78px;
	margin-top: 26px;
	background: var(--satp-lime);
	padding: 17px 20px;
	color: var(--satp-navy);
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(7, 7, 18, 0.18);
	transition: background-color 150ms ease, transform 150ms ease;
}

.satp-guide-continue:hover,
.satp-guide-continue:focus-visible {
	background: #c3df2c;
	color: var(--satp-navy);
	transform: translateY(-2px);
}

.satp-guide-continue:focus-visible {
	outline: 3px solid var(--satp-focus);
	outline-offset: 3px;
}

.satp-guide-continue span,
.satp-guide-continue strong,
.satp-guide-continue small {
	display: block;
}

.satp-guide-continue strong {
	color: var(--satp-navy);
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1.25;
	text-transform: uppercase;
}

.satp-guide-continue small {
	margin-top: 5px;
	color: rgba(33, 30, 62, 0.78);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.satp-guide-continue b {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: var(--satp-navy);
	color: #ffffff;
	font-size: 21px;
}

#satp-apps-title {
	scroll-margin-top: 24px;
}

[dir="rtl"] .satp-group-action > strong,
[dir="rtl"] .satp-testflight-download > strong {
	transform: rotate(180deg);
}

.satp-empty {
	margin: 58px auto 76px;
}

.satp-footer {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 30px 2px 0;
	color: var(--satp-muted);
	font-size: 12px;
	letter-spacing: 0.02em;
}

.satp-footer p {
	margin: 0;
}

.satp-footer > div {
	max-width: 760px;
}

.satp-footer strong {
	color: var(--satp-text);
}

@media (max-width: 980px) {
	.satp-hero,
	.satp-access-layout {
		grid-template-columns: 1fr;
		gap: 40px;
		min-height: auto;
		padding: 60px 0 66px;
	}

	.satp-hero {
		padding: 46px 0 50px;
	}

	.satp-device-picker,
	.satp-access-card {
		width: min(560px, 100%);
	}

	.satp-app-grid {
		grid-template-columns: 1fr;
	}

	.satp-app-card {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
		align-items: center;
		column-gap: 28px;
	}

	.satp-app-top {
		grid-row: span 2;
	}

	.satp-meta {
		margin-top: 0;
	}
}

@media (max-width: 720px) {
	.satp-frame {
		width: min(100% - 32px, 1180px);
		padding-top: 24px;
	}

	.satp-header {
		align-items: flex-start;
		gap: 18px;
		padding-bottom: 22px;
	}

	.satp-brand {
		width: min(212px, 56vw);
		min-height: 45px;
	}

	.satp-theme-switcher button {
		width: 36px;
		min-height: 36px;
		padding: 7px;
	}

	.satp-theme-switcher button span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.satp-header-controls {
		align-items: flex-end;
		flex-direction: column;
		gap: 7px;
	}

	.satp-language-switcher a {
		min-height: 32px;
		padding: 6px 9px;
		font-size: 11px;
	}

	.satp-device-picker > div {
		grid-template-columns: 1fr;
	}

	.satp-hero,
	.satp-access-layout {
		padding: 50px 0 58px;
	}

	.satp-hero {
		padding: 38px 0 42px;
	}

	.satp-hero h1,
	.satp-access-intro h1 {
		font-size: clamp(45px, 15vw, 68px);
	}

	.satp-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.satp-section-heading h2 {
		text-align: start;
	}

	.satp-app-card {
		display: block;
		padding: 22px;
	}

	.satp-meta {
		margin-top: 25px;
	}

	.satp-steps ol {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.satp-platform-guides {
		grid-template-columns: 1fr;
	}

	.satp-platform-guides > section + section {
		border-inline-start: 1px solid rgba(183, 186, 190, 0.24);
	}

	.satp-steps li,
	.satp-steps li:first-child,
	.satp-steps li:last-child {
		border-top: 1px solid rgba(183, 186, 190, 0.24);
		border-inline-start: 0;
		padding: 24px 0 0;
	}

	.satp-steps li:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.satp-footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 440px) {
	.satp-frame {
		width: min(100% - 24px, 1180px);
	}

	.satp-header {
		align-items: center;
	}

	.satp-brand {
		width: min(184px, 50vw);
	}

	.satp-theme-switcher {
		gap: 2px;
		padding: 3px;
	}

	.satp-theme-switcher button {
		width: 31px;
		min-height: 31px;
	}

	.satp-hero h1,
	.satp-access-intro h1 {
		font-size: clamp(40px, 14vw, 57px);
	}

	.satp-app-top img {
		width: 74px;
		height: 74px;
		flex-basis: 74px;
		border-radius: 17px;
	}

	.satp-app-top h3 {
		font-size: 20px;
	}

	.satp-access-card,
	.satp-empty,
	.satp-steps {
		padding: 26px 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.satp-shell,
	.satp-theme-switcher button,
	.satp-password-form button,
	.satp-google-play,
	.satp-testflight,
	.satp-testflight-download,
	.satp-guide-continue,
	.satp-device-picker a {
		transition: none;
	}
}
