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

:root {
	--sat-ink: #183038;
	--sat-ink-soft: #52666b;
	--sat-teal: #126d61;
	--sat-teal-dark: #0b504a;
	--sat-seafoam: #d9e9df;
	--sat-cream: #f5f1e8;
	--sat-paper: #fffdf8;
	--sat-line: #d7d2c7;
	--sat-coral: #e96c4e;
	--sat-coral-light: #fff0e9;
	--sat-lime: #dce576;
	--sat-yellow: #f4d77c;
	--sat-shadow: 0 24px 70px rgba(31, 52, 52, 0.12);
	--sat-serif: Georgia, "Times New Roman", serif;
	--sat-ui: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.sat-tool-page {
	margin: 0;
	background: var(--sat-cream);
	color: var(--sat-ink);
}

body.sat-tool-page * {
	box-sizing: border-box;
}

body.sat-tool-page #wpadminbar {
	position: fixed;
}

.sat-page {
	min-width: 320px;
	min-height: 100vh;
	overflow: hidden;
	background:
		radial-gradient(circle at 92% 11%, rgba(220, 229, 118, 0.25), transparent 20rem),
		var(--sat-cream);
	color: var(--sat-ink);
	font-family: var(--sat-ui);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.sat-page button,
.sat-page input,
.sat-page select,
.sat-page textarea {
	font: inherit;
}

.sat-page button,
.sat-page a {
	-webkit-tap-highlight-color: transparent;
}

.sat-page button:focus-visible,
.sat-page a:focus-visible,
.sat-page select:focus-visible,
.sat-page textarea:focus-visible {
	outline: 3px solid rgba(233, 108, 78, 0.45);
	outline-offset: 3px;
}

.sat-page a {
	color: inherit;
}

.sat-page h1,
.sat-page h2,
.sat-page h3,
.sat-page p {
	margin-top: 0;
}

.sat-page svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
}

.sat-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	padding: 10px 14px;
	transform: translateY(-150%);
	border-radius: 6px;
	background: var(--sat-ink);
	color: #fff;
	font: 700 14px/1 var(--sat-ui);
	opacity: 0;
	pointer-events: none;
}

.sat-skip-link:focus-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.sat-header {
	display: grid;
	grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
	align-items: center;
	width: min(1440px, calc(100% - 64px));
	min-height: 84px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(24, 48, 56, 0.18);
}

.sat-brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 12px;
	text-decoration: none;
}

.sat-brand__mark {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	background: var(--sat-ink);
	color: var(--sat-lime);
	font: 24px/1 "SAT Shavian", "Segoe UI Historic", sans-serif;
}

.sat-brand__name {
	font-family: var(--sat-serif);
	font-size: 20px;
	letter-spacing: -0.03em;
}

.sat-brand__name strong {
	font-style: italic;
	font-weight: 400;
}

.sat-nav {
	display: flex;
	align-items: center;
	gap: 34px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.025em;
}

.sat-nav a {
	position: relative;
	padding: 30px 0 28px;
	text-decoration: none;
}

.sat-nav a::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	background: var(--sat-coral);
	content: "";
	transition: transform 180ms ease;
}

.sat-nav a:hover::after,
.sat-nav a.is-current::after {
	transform: scaleX(1);
}

.sat-header__cta {
	display: inline-flex;
	align-items: center;
	justify-self: end;
	gap: 9px;
	padding: 11px 17px;
	border: 1px solid var(--sat-ink);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease;
}

.sat-header__cta:hover {
	background: var(--sat-ink);
	color: #fff;
}

.sat-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.66fr);
	gap: 42px 64px;
	width: min(1240px, calc(100% - 64px));
	margin: 0 auto;
	padding: 98px 0 92px;
}

.sat-hero::before {
	position: absolute;
	top: 58px;
	right: 28%;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sat-coral);
	box-shadow: 18px 20px 0 -2px var(--sat-yellow), -13px 29px 0 -3px var(--sat-teal);
	content: "";
}

.sat-eyebrow,
.sat-kicker {
	margin-bottom: 17px;
	color: var(--sat-teal);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.sat-eyebrow span {
	display: inline-block;
	margin-right: 11px;
	padding: 5px 8px 4px;
	border-radius: 3px;
	background: var(--sat-coral);
	color: #fff;
	font-size: 9px;
	letter-spacing: 0.12em;
}

.sat-hero h1 {
	max-width: 800px;
	margin-bottom: 25px;
	color: var(--sat-ink);
	font-family: var(--sat-serif);
	font-size: clamp(58px, 7.1vw, 104px);
	font-weight: 400;
	letter-spacing: -0.065em;
	line-height: 0.89;
}

.sat-hero h1 em,
.sat-method h2 em {
	color: var(--sat-coral);
	font-weight: 400;
}

.sat-hero__lede {
	max-width: 650px;
	margin-bottom: 0;
	color: var(--sat-ink-soft);
	font-family: var(--sat-serif);
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.48;
}

.sat-hero__glyph {
	align-self: center;
	padding-top: 20px;
	color: var(--sat-teal);
	font: clamp(48px, 7.4vw, 104px)/1.05 "SAT Shavian", "Segoe UI Historic", sans-serif;
	letter-spacing: 0.02em;
	text-align: right;
	word-break: break-all;
}

.sat-definition-note {
	display: flex;
	grid-column: 1 / -1;
	align-items: flex-start;
	max-width: 860px;
	gap: 13px;
	padding: 17px 20px;
	border: 1px solid rgba(18, 109, 97, 0.22);
	border-radius: 7px;
	background: rgba(217, 233, 223, 0.48);
}

.sat-definition-note svg {
	flex: 0 0 19px;
	width: 19px;
	margin-top: 2px;
	color: var(--sat-teal);
}

.sat-definition-note p {
	margin-bottom: 0;
	color: #3d5559;
	font-size: 13px;
	line-height: 1.6;
}

.sat-definition-note strong {
	color: var(--sat-ink);
}

.sat-definition-note b {
	font-weight: 750;
}

.sat-workspace-wrap {
	position: relative;
	z-index: 2;
	width: min(1320px, calc(100% - 48px));
	margin: 0 auto;
	padding: 44px 44px 36px;
	border: 1px solid rgba(24, 48, 56, 0.14);
	border-radius: 12px;
	background: var(--sat-paper);
	box-shadow: var(--sat-shadow);
}

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

.sat-workspace-heading .sat-kicker {
	margin-bottom: 7px;
}

.sat-workspace-heading h2 {
	margin-bottom: 0;
	font-family: var(--sat-serif);
	font-size: clamp(27px, 3vw, 41px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.sat-engine-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 5px;
	color: var(--sat-ink-soft);
	font-size: 11px;
	font-weight: 700;
}

.sat-engine-badge span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4f9d69;
	box-shadow: 0 0 0 4px rgba(79, 157, 105, 0.12);
}

.sat-toolbar {
	display: flex;
	align-items: flex-end;
	gap: 18px;
	margin-bottom: 17px;
	padding: 15px 17px;
	border: 1px solid var(--sat-line);
	border-radius: 8px;
	background: #f9f7f1;
}

.sat-field {
	display: grid;
	gap: 5px;
}

.sat-field > span {
	color: var(--sat-ink-soft);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.sat-field select {
	min-width: 210px;
	height: 36px;
	padding: 0 34px 0 11px;
	border: 1px solid #c9c5bb;
	border-radius: 5px;
	background: #fff;
	color: var(--sat-ink);
	font-size: 12px;
	font-weight: 700;
}

.sat-toolbar__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.sat-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 29px;
	padding: 0 10px;
	border: 1px solid #dad6cc;
	border-radius: 999px;
	background: #fff;
	color: var(--sat-ink-soft);
	font-size: 10px;
	font-weight: 700;
}

.sat-status-pill i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sat-teal);
}

.sat-status-pill--warning {
	border-color: #f1baa9;
	background: var(--sat-coral-light);
	color: #9a4834;
}

.sat-status-pill--warning i {
	background: var(--sat-coral);
}

.sat-icon-button,
.sat-text-button,
.sat-sample-button,
.sat-action-button {
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.sat-icon-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	padding: 0 11px;
	border: 1px solid #c9c5bb;
	border-radius: 5px;
	background: #fff;
	font-size: 10px;
	font-weight: 800;
}

.sat-icon-button svg {
	width: 15px;
	height: 15px;
}

.sat-workspace {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 15px;
}

.sat-workspace.is-stacked {
	grid-template-columns: 1fr;
}

.sat-panel {
	position: relative;
	display: grid;
	grid-template-rows: auto minmax(265px, 1fr) auto auto;
	min-width: 0;
	min-height: 430px;
	border: 1px solid var(--sat-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.sat-panel--output {
	border-color: #a8c8bd;
	background: #eef5f0;
}

.sat-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	gap: 16px;
	padding: 13px 20px;
	border-bottom: 1px solid var(--sat-line);
}

.sat-panel--output .sat-panel__head {
	border-color: #bfd4cc;
}

.sat-panel__head > div {
	display: flex;
	align-items: center;
	gap: 11px;
}

.sat-language-number {
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 50%;
	background: var(--sat-ink);
	color: #fff;
	font-size: 8px;
	font-weight: 900;
}

.sat-panel--output .sat-language-number {
	background: var(--sat-teal);
}

.sat-panel__head h3 {
	margin-bottom: 0;
	font-family: var(--sat-serif);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.sat-text-button {
	padding: 7px;
	color: var(--sat-ink-soft);
	font-size: 10px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sat-unicode-label {
	color: var(--sat-teal);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sat-panel textarea {
	width: 100%;
	min-height: 265px;
	padding: 25px;
	resize: vertical;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--sat-ink);
	font-family: var(--sat-serif);
	font-size: 21px;
	line-height: 1.68;
}

.sat-output {
	min-height: 265px;
	padding: 25px;
	color: var(--sat-teal-dark);
	font: 28px/1.68 "SAT Shavian", "Segoe UI Historic", sans-serif;
	white-space: pre-wrap;
	word-break: break-word;
}

.sat-output .is-unknown {
	padding: 2px 3px;
	border-bottom: 2px dotted var(--sat-coral);
	border-radius: 3px;
	background: rgba(233, 108, 78, 0.12);
	color: #9a4834;
	font: 600 17px/1.6 var(--sat-ui);
}

.sat-empty-state {
	position: absolute;
	top: 100px;
	left: 25px;
	color: #81928d;
	font-family: var(--sat-serif);
	font-size: 17px;
}

.sat-source-review {
	min-height: 45px;
	padding: 10px 24px 11px;
	border-top: 1px dashed #e4dfd4;
	background: #fcfaf5;
	color: #6b7778;
	font-size: 10px;
	line-height: 1.8;
}

.sat-source-review::before {
	display: inline;
	margin-right: 9px;
	color: #879396;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	content: "Source review";
}

.sat-source-review mark {
	padding: 1px 3px;
	border-radius: 3px;
	background: #ffd8ca;
	color: #913e2d;
	font-weight: 800;
}

.sat-panel__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 55px;
	gap: 14px;
	padding: 10px 19px;
	border-top: 1px solid var(--sat-line);
	color: var(--sat-ink-soft);
	font-size: 9px;
	font-weight: 700;
}

.sat-panel--output .sat-panel__foot {
	border-color: #bfd4cc;
}

.sat-sample-button {
	padding: 7px 10px;
	border-radius: 4px;
	background: var(--sat-cream);
	font-size: 9px;
	font-weight: 800;
}

.sat-panel__foot--actions {
	justify-content: flex-start;
}

.sat-action-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	gap: 7px;
	padding: 0 12px;
	border: 1px solid #a9bdb7;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.66);
	color: var(--sat-teal-dark);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.02em;
	transition: transform 150ms ease, box-shadow 150ms ease;
}

.sat-action-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 12px rgba(21, 77, 70, 0.1);
}

.sat-action-button:disabled {
	cursor: not-allowed;
	opacity: 0.48;
	transform: none;
}

.sat-action-button svg {
	width: 14px;
	height: 14px;
}

.sat-action-button--primary {
	border-color: var(--sat-teal);
	background: var(--sat-teal);
	color: #fff;
}

.sat-flow-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: grid;
	width: 33px;
	height: 33px;
	transform: translate(-50%, -50%);
	place-items: center;
	border: 4px solid var(--sat-paper);
	border-radius: 50%;
	background: var(--sat-coral);
	color: #fff;
	font: 17px/1 var(--sat-ui);
}

.sat-workspace.is-stacked .sat-flow-mark {
	display: none;
}

.sat-alert {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-top: 14px;
	padding: 13px 15px;
	border: 1px solid #edd28c;
	border-radius: 7px;
	background: #fff9df;
}

.sat-alert[hidden] {
	display: none;
}

.sat-alert__icon {
	display: grid;
	flex: 0 0 27px;
	width: 27px;
	height: 27px;
	place-items: center;
	border-radius: 50%;
	background: var(--sat-yellow);
	font: 900 12px/1 var(--sat-ui);
}

.sat-alert strong {
	display: block;
	font-family: var(--sat-serif);
	font-size: 14px;
	font-weight: 700;
}

.sat-alert p {
	margin-bottom: 0;
	color: #746541;
	font-size: 10px;
}

.sat-alert > a {
	margin-left: auto;
	font-size: 9px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.sat-alert--unknown {
	border-color: #efbead;
	background: var(--sat-coral-light);
}

.sat-alert--unknown .sat-alert__icon {
	background: #ffd3c5;
	color: #9a4834;
}

.sat-alert--unknown p {
	color: #885748;
}

.sat-analysis {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.82fr);
	gap: 26px;
	width: min(1240px, calc(100% - 64px));
	margin: 100px auto;
}

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

.sat-section-heading .sat-kicker {
	margin-bottom: 7px;
}

.sat-section-heading h2,
.sat-pronunciation-card h2 {
	margin-bottom: 0;
	font-family: var(--sat-serif);
	font-size: clamp(27px, 3vw, 39px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.sat-section-heading > p {
	max-width: 260px;
	margin-bottom: 3px;
	color: var(--sat-ink-soft);
	font-size: 11px;
}

.sat-word-table {
	border-top: 2px solid var(--sat-ink);
	border-bottom: 1px solid var(--sat-line);
}

.sat-word-table__head,
.sat-word-row {
	display: grid;
	grid-template-columns: minmax(120px, 0.72fr) minmax(140px, 0.9fr) minmax(200px, 1.5fr);
	gap: 18px;
	align-items: center;
}

.sat-word-table__head {
	padding: 11px 15px;
	border-bottom: 1px solid var(--sat-ink);
	color: var(--sat-ink-soft);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.sat-word-row {
	min-height: 69px;
	padding: 12px 15px;
	border-bottom: 1px solid var(--sat-line);
}

.sat-word-row:last-child {
	border-bottom: 0;
}

.sat-word-row.is-unknown {
	background: var(--sat-coral-light);
}

.sat-word-row__english {
	font-family: var(--sat-serif);
	font-size: 16px;
}

.sat-word-row__shaw {
	color: var(--sat-teal-dark);
	font: 21px/1.2 "SAT Shavian", "Segoe UI Historic", sans-serif;
}

.sat-word-row__shaw.is-latin {
	color: #a14c37;
	font: 700 13px/1.2 var(--sat-ui);
}

.sat-word-row__why {
	display: grid;
	gap: 3px;
	color: var(--sat-ink-soft);
	font-size: 10px;
}

.sat-word-row__why strong {
	color: var(--sat-ink);
	font-size: 10px;
}

.sat-tag {
	display: inline-flex;
	width: max-content;
	margin-left: 6px;
	padding: 2px 5px;
	border-radius: 999px;
	background: var(--sat-seafoam);
	color: var(--sat-teal-dark);
	font: 800 7px/1.4 var(--sat-ui);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	vertical-align: middle;
}

.sat-tag--warning {
	background: #ffd8ca;
	color: #98452f;
}

.sat-table-note {
	margin-top: 12px;
	color: var(--sat-ink-soft);
	font-size: 10px;
}

.sat-pronunciation-card {
	align-self: start;
	padding: 28px;
	border-radius: 10px;
	background: var(--sat-ink);
	color: #fff;
	box-shadow: 0 18px 45px rgba(24, 48, 56, 0.14);
}

.sat-pronunciation-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 23px;
	padding-bottom: 21px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sat-pronunciation-card .sat-kicker {
	margin-bottom: 5px;
	color: var(--sat-lime);
}

.sat-pronunciation-card h2 {
	font-size: 26px;
}

.sat-card-icon {
	display: grid;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 50%;
	background: var(--sat-coral);
	font-size: 9px;
	font-weight: 900;
}

.sat-pronunciation-group + .sat-pronunciation-group {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sat-pronunciation-group h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	font-family: var(--sat-serif);
	font-size: 16px;
	font-weight: 400;
}

.sat-pronunciation-group h3 span {
	color: #aac1bd;
	font-family: var(--sat-ui);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sat-pronunciation-options {
	display: grid;
	gap: 7px;
}

.sat-pronunciation-option {
	display: grid;
	grid-template-columns: 15px 1fr auto;
	align-items: center;
	gap: 9px;
	width: 100%;
	padding: 9px 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.045);
	color: #fff;
	cursor: pointer;
	text-align: left;
}

.sat-pronunciation-option:hover,
.sat-pronunciation-option.is-selected {
	border-color: var(--sat-lime);
	background: rgba(220, 229, 118, 0.1);
}

.sat-pronunciation-option i {
	display: grid;
	width: 14px;
	height: 14px;
	place-items: center;
	border: 1px solid #8ca19d;
	border-radius: 50%;
}

.sat-pronunciation-option.is-selected i::after {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sat-lime);
	content: "";
}

.sat-pronunciation-option b {
	display: block;
	font-size: 10px;
	font-weight: 750;
}

.sat-pronunciation-option small {
	display: block;
	margin-top: 1px;
	color: #adc0bd;
	font-size: 8px;
}

.sat-pronunciation-option__shaw {
	color: var(--sat-lime);
	font: 17px/1 "SAT Shavian", "Segoe UI Historic", sans-serif;
}

.sat-pronunciation-empty {
	margin-bottom: 0;
	color: #b8c7c5;
	font-size: 11px;
	line-height: 1.65;
}

.sat-pronunciation-empty button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--sat-lime);
	cursor: pointer;
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sat-method {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.4fr);
	gap: 80px;
	width: min(1240px, calc(100% - 64px));
	margin: 0 auto 105px;
	padding: 70px 0 0;
	border-top: 1px solid rgba(24, 48, 56, 0.18);
}

.sat-method h2 {
	margin-bottom: 0;
	font-family: var(--sat-serif);
	font-size: clamp(44px, 5vw, 70px);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.sat-method__steps {
	display: grid;
}

.sat-method__steps article {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 20px;
	padding: 23px 0;
	border-bottom: 1px solid var(--sat-line);
}

.sat-method__steps article:first-child {
	padding-top: 4px;
}

.sat-method__steps article > span {
	display: grid;
	width: 35px;
	height: 35px;
	place-items: center;
	border: 1px solid var(--sat-line);
	border-radius: 50%;
	color: var(--sat-teal);
	font-size: 8px;
	font-weight: 900;
}

.sat-method__steps h3 {
	margin-bottom: 5px;
	font-family: var(--sat-serif);
	font-size: 19px;
	font-weight: 400;
}

.sat-method__steps p {
	max-width: 580px;
	margin-bottom: 0;
	color: var(--sat-ink-soft);
	font-size: 11px;
}

.sat-footer {
	display: grid;
	grid-template-columns: 1fr 1.3fr auto;
	align-items: center;
	gap: 45px;
	padding: 41px max(32px, calc((100% - 1240px) / 2));
	background: var(--sat-ink);
	color: #fff;
}

.sat-footer__brand {
	display: flex;
	align-items: center;
	gap: 13px;
}

.sat-footer__brand > span {
	display: grid;
	width: 41px;
	height: 41px;
	place-items: center;
	border-radius: 50%;
	background: var(--sat-lime);
	color: var(--sat-ink);
	font: 23px/1 "SAT Shavian", "Segoe UI Historic", sans-serif;
}

.sat-footer__brand p,
.sat-footer__note {
	margin-bottom: 0;
}

.sat-footer__brand p {
	color: #acc0bd;
	font-size: 9px;
}

.sat-footer__brand strong {
	color: #fff;
	font-family: var(--sat-serif);
	font-size: 16px;
}

.sat-footer__note {
	color: #9db0ae;
	font-size: 9px;
	line-height: 1.65;
}

.sat-footer__note a {
	color: #dce8e5;
}

.sat-footer > a {
	color: var(--sat-lime);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.sat-toast {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1000;
	max-width: 320px;
	padding: 12px 16px;
	transform: translateY(20px);
	border-radius: 6px;
	background: var(--sat-ink);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms ease, transform 160ms ease;
}

.sat-toast.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.sat-noscript {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	padding: 13px 17px;
	border-radius: 6px;
	background: #8e3c2c;
	color: #fff;
	font: 700 12px/1.4 var(--sat-ui);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

@media (max-width: 980px) {
	.sat-header {
		grid-template-columns: 1fr auto;
	}

	.sat-nav {
		display: none;
	}

	.sat-hero {
		grid-template-columns: 1fr;
		padding-top: 75px;
	}

	.sat-hero__glyph {
		position: absolute;
		top: 58px;
		right: 0;
		z-index: -1;
		max-width: 44%;
		opacity: 0.12;
	}

	.sat-definition-note {
		grid-column: auto;
	}

	.sat-workspace {
		grid-template-columns: 1fr;
	}

	.sat-flow-mark {
		display: none;
	}

	.sat-analysis,
	.sat-method {
		grid-template-columns: 1fr;
	}

	.sat-pronunciation-card {
		width: 100%;
	}

	.sat-method {
		gap: 45px;
	}

	.sat-footer {
		grid-template-columns: 1fr 1fr;
	}

	.sat-footer > a {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.sat-header,
	.sat-hero,
	.sat-analysis,
	.sat-method {
		width: min(100% - 32px, 1240px);
	}

	.sat-header {
		min-height: 70px;
	}

	.sat-header__cta {
		padding: 9px 12px;
		font-size: 10px;
	}

	.sat-brand__name {
		display: none;
	}

	.sat-brand__mark {
		width: 36px;
		height: 36px;
	}

	.sat-hero {
		gap: 28px;
		padding: 64px 0 58px;
	}

	.sat-hero h1 {
		font-size: clamp(54px, 18vw, 76px);
	}

	.sat-hero__lede {
		font-size: 18px;
	}

	.sat-workspace-wrap {
		width: calc(100% - 20px);
		padding: 25px 12px 18px;
	}

	.sat-workspace-heading {
		align-items: flex-start;
		margin-right: 5px;
		margin-left: 5px;
	}

	.sat-engine-badge {
		display: none;
	}

	.sat-toolbar {
		align-items: stretch;
		flex-wrap: wrap;
	}

	.sat-field--accent {
		width: 100%;
	}

	.sat-field select {
		width: 100%;
	}

	.sat-toolbar__meta {
		margin-left: 0;
	}

	.sat-icon-button {
		margin-left: auto;
	}

	.sat-panel {
		min-height: 385px;
	}

	.sat-panel textarea,
	.sat-output {
		min-height: 230px;
		padding: 21px;
	}

	.sat-output {
		font-size: 25px;
	}

	.sat-panel__foot--actions {
		flex-wrap: wrap;
	}

	.sat-alert {
		align-items: flex-start;
	}

	.sat-alert > a {
		display: none;
	}

	.sat-analysis {
		margin: 70px auto;
	}

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

	.sat-word-table__head {
		display: none;
	}

	.sat-word-row {
		grid-template-columns: minmax(90px, 0.7fr) 1fr;
		gap: 8px 12px;
	}

	.sat-word-row__why {
		grid-column: 1 / -1;
		padding-top: 7px;
		border-top: 1px dashed var(--sat-line);
	}

	.sat-pronunciation-card {
		padding: 23px 18px;
	}

	.sat-method {
		margin-bottom: 72px;
		padding-top: 54px;
	}

	.sat-footer {
		grid-template-columns: 1fr;
		gap: 25px;
		padding: 36px 22px;
	}

	.sat-footer > a {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sat-page *,
	.sat-page *::before,
	.sat-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
