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

.help-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(66px, 10vw, 112px) 0;
	color: #fff;
	background:
		radial-gradient(circle at 14% 12%, rgba(20, 184, 200, .28), transparent 34%),
		radial-gradient(circle at 86% 82%, rgba(20, 104, 232, .32), transparent 38%),
		linear-gradient(135deg, #071d30, #0b3455);
}

.help-hero__inner {
	max-width: 880px;
	text-align: center;
}

.help-eyebrow {
	margin: 0 0 10px;
	color: var(--public-blue);
	font-size: .77rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.help-hero .help-eyebrow {
	color: #64d7e1;
}

.help-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(2.35rem, 6vw, 4.35rem);
	letter-spacing: -.045em;
	line-height: 1.06;
}

.help-hero__inner > p:not(.help-eyebrow) {
	margin: 18px auto 30px;
	color: #d7e5f0;
	font-size: clamp(1rem, 2vw, 1.18rem);
}

.help-search {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	width: min(100%, 760px);
	min-height: 64px;
	margin: 28px auto 0;
	padding: 7px 7px 7px 20px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.help-search:focus-within {
	outline: 4px solid rgba(20, 184, 200, .24);
}

.help-search__icon {
	color: #738493;
}

.help-search input {
	min-width: 0;
	min-height: 48px;
	padding: 8px 14px;
	border: 0;
	outline: 0;
	color: var(--public-text);
	background: transparent;
	font: inherit;
	font-size: 1rem;
}

.help-search button {
	min-height: 48px;
	padding: 10px 24px;
	border: 0;
	border-radius: 10px;
	color: #fff;
	background: var(--public-blue);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.help-search button:hover {
	background: var(--public-blue-dark);
}

.help-section {
	padding: clamp(54px, 7vw, 88px) 0;
}

.help-section--soft {
	background: var(--public-soft);
}

.help-section__heading,
.help-list-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.help-section__heading h2,
.help-list-heading h2 {
	margin: 0;
	color: var(--public-navy-strong);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	letter-spacing: -.03em;
	line-height: 1.18;
}

.help-list-heading span {
	color: var(--public-muted);
	font-size: .92rem;
	white-space: nowrap;
}

.help-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.help-category-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: start;
	gap: 16px;
	min-height: 178px;
	padding: 24px;
	border: 1px solid var(--public-line);
	border-radius: 16px;
	color: inherit;
	background: #fff;
	box-shadow: 0 8px 24px rgba(10, 41, 66, .055);
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.help-category-card:hover {
	transform: translateY(-3px);
	border-color: rgba(20, 104, 232, .42);
	box-shadow: 0 16px 34px rgba(10, 41, 66, .1);
}

.help-category-card__icon {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 12px;
	color: var(--public-blue-dark);
	background: #eaf3ff;
	font-size: 1rem;
	font-weight: 700;
}

.help-category-card__icon--large {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	font-size: 1.2rem;
}

.help-category-card__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 6px;
}

.help-category-card__content strong {
	color: var(--public-navy);
	font-size: 1.1rem;
	line-height: 1.3;
}

.help-category-card__content > span {
	display: -webkit-box;
	overflow: hidden;
	color: var(--public-muted);
	font-size: .91rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.help-category-card__content small {
	margin-top: auto;
	color: #71808d;
}

.help-category-card__arrow {
	color: var(--public-blue);
	font-size: 1.25rem;
}

.help-article-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.help-article-card {
	display: flex;
	min-height: 220px;
	padding: 24px;
	flex-direction: column;
	gap: 11px;
	border: 1px solid var(--public-line);
	border-radius: 16px;
	color: inherit;
	background: #fff;
	text-decoration: none;
}

.help-article-card:hover {
	border-color: rgba(20, 104, 232, .48);
}

.help-article-card__category {
	color: var(--public-blue-dark);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.help-article-card strong {
	color: var(--public-navy);
	font-size: 1.16rem;
	line-height: 1.32;
}

.help-article-card > span:not(.help-article-card__category) {
	display: -webkit-box;
	overflow: hidden;
	color: var(--public-muted);
	font-size: .92rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.help-article-card small {
	margin-top: auto;
	color: var(--public-blue-dark);
	font-weight: 700;
}

.help-page-head,
.help-article-head {
	padding: 28px 0 clamp(46px, 7vw, 72px);
	border-bottom: 1px solid var(--public-line);
	background: linear-gradient(145deg, #f4f9ff, #fff);
}

.help-page-head--search {
	padding-bottom: 54px;
}

.help-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 34px;
	color: var(--public-muted);
	font-size: .87rem;
}

.help-breadcrumb a {
	color: var(--public-blue-dark);
	text-decoration: none;
}

.help-breadcrumb a:hover {
	text-decoration: underline;
}

.help-breadcrumb [aria-current="page"] {
	max-width: 44ch;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.help-page-head__row {
	display: flex;
	align-items: center;
	gap: 20px;
}

.help-page-head h1,
.help-article-head h1 {
	margin: 0;
	color: var(--public-navy-strong);
	font-size: clamp(2rem, 5vw, 3.25rem);
	letter-spacing: -.04em;
	line-height: 1.08;
}

.help-page-head__row p,
.help-article-head__summary {
	max-width: 720px;
	margin: 10px 0 0;
	color: var(--public-muted);
	font-size: 1.05rem;
}

.help-page-head .help-search {
	margin: 28px 0 0;
	border-color: var(--public-line);
	box-shadow: 0 12px 34px rgba(10, 41, 66, .1);
}

.help-narrow {
	max-width: 920px;
}

.help-article-list {
	border: 1px solid var(--public-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(10, 41, 66, .045);
}

.help-article-list > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 21px 24px;
	color: inherit;
	text-decoration: none;
}

.help-article-list > a + a {
	border-top: 1px solid var(--public-line);
}

.help-article-list > a:hover {
	background: #f8fbfe;
}

.help-article-list strong {
	display: block;
	color: var(--public-navy);
	font-size: 1.04rem;
}

.help-article-list small {
	display: block;
	margin-top: 4px;
	color: var(--public-muted);
}

.help-article-list > a > span:last-child {
	color: var(--public-blue);
	font-size: 1.2rem;
}

.help-search-results {
	display: grid;
	gap: 14px;
}

.help-search-result {
	border: 1px solid var(--public-line);
	border-radius: 15px;
	background: #fff;
}

.help-search-result:hover {
	border-color: rgba(20, 104, 232, .45);
}

.help-search-result > a {
	display: block;
	padding: 22px 24px;
	text-decoration: none;
}

.help-search-result small,
.help-search-result > a > span {
	color: var(--public-blue-dark);
	font-size: .82rem;
	font-weight: 700;
}

.help-search-result h3 {
	margin: 6px 0 8px;
	color: var(--public-navy);
	font-size: 1.18rem;
}

.help-search-result p {
	margin: 0 0 10px;
	color: var(--public-muted);
}

.help-empty {
	padding: clamp(34px, 6vw, 60px);
	border: 1px dashed #b9c9d7;
	border-radius: 16px;
	background: #f9fbfd;
	text-align: center;
}

.help-empty--plain {
	border: 0;
	background: transparent;
}

.help-empty h2,
.help-empty h3 {
	margin: 0;
	color: var(--public-navy);
}

.help-empty p {
	margin: 10px auto 22px;
	color: var(--public-muted);
}

.help-article-width {
	max-width: 920px;
}

.help-article-head .help-breadcrumb {
	margin-bottom: 54px;
}

.help-article-head__summary {
	font-size: 1.12rem;
}

.help-article-head__meta {
	margin: 18px 0 0;
	color: #71808d;
	font-size: .88rem;
}

.help-article-section {
	padding: clamp(45px, 7vw, 80px) 0 90px;
}

.help-article-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 760px);
	justify-content: center;
	gap: clamp(34px, 6vw, 72px);
}

.help-toc {
	position: sticky;
	top: 104px;
	align-self: start;
	max-height: calc(100vh - 130px);
	overflow: auto;
	padding: 18px;
	border-left: 2px solid var(--public-line);
}

.help-toc strong {
	color: var(--public-navy);
	font-size: .9rem;
}

.help-toc ol {
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.help-toc li + li {
	margin-top: 8px;
}

.help-toc li.is-subtopic {
	padding-left: 12px;
}

.help-toc a {
	display: block;
	color: var(--public-muted);
	font-size: .84rem;
	line-height: 1.35;
	text-decoration: none;
}

.help-toc a:hover {
	color: var(--public-blue-dark);
}

.help-article-body {
	min-width: 0;
	color: #33495b;
	font-size: 1.04rem;
	line-height: 1.75;
}

.help-article-body > :first-child {
	margin-top: 0;
}

.help-article-body h2,
.help-article-body h3,
.help-article-body h4 {
	scroll-margin-top: 105px;
	color: var(--public-navy-strong);
	line-height: 1.25;
}

.help-article-body h2 {
	margin: 2.2em 0 .7em;
	font-size: clamp(1.55rem, 3vw, 2rem);
}

.help-article-body h3 {
	margin: 1.8em 0 .6em;
	font-size: 1.3rem;
}

.help-article-body a {
	color: var(--public-blue-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.help-article-body img {
	display: block;
	max-width: 100%;
	margin: 26px auto;
	border: 1px solid var(--public-line);
	border-radius: 12px;
}

.help-article-body blockquote {
	margin: 24px 0;
	padding: 16px 20px;
	border-left: 4px solid var(--public-blue);
	border-radius: 0 9px 9px 0;
	background: #f1f7ff;
}

.help-article-body table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.help-article-body th,
.help-article-body td {
	padding: 10px 12px;
	border: 1px solid var(--public-line);
	text-align: left;
}

.help-article-body pre,
.help-article-body code {
	border-radius: 6px;
	background: #eef3f7;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.help-article-body code {
	padding: 2px 5px;
}

.help-article-body pre {
	overflow-x: auto;
	padding: 16px;
}

.help-feedback {
	margin-top: 58px;
	padding-top: 28px;
	border-top: 1px solid var(--public-line);
	text-align: center;
}

.help-feedback h2 {
	margin: 0 0 16px;
	font-size: 1.15rem;
}

.help-feedback__actions {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.help-feedback button {
	min-width: 88px;
	padding: 9px 15px;
	border: 1px solid #bfcdd9;
	border-radius: 9px;
	color: var(--public-navy);
	background: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.help-feedback button:hover {
	border-color: var(--public-blue);
	color: var(--public-blue-dark);
	background: #f2f7ff;
}

.help-feedback button:disabled {
	opacity: .55;
	cursor: wait;
}

.help-feedback__status {
	min-height: 1.6em;
	margin: 10px 0 0;
	color: var(--public-success);
	font-size: .9rem;
}

.help-feedback__status.is-error {
	color: var(--public-danger);
}

.help-support-cta {
	padding: clamp(42px, 6vw, 65px) 0;
	color: #fff;
	background: linear-gradient(135deg, var(--public-navy-strong), #0d3c60);
}

.help-support-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.help-support-cta .help-eyebrow {
	color: #64d7e1;
}

.help-support-cta h2 {
	margin: 0;
	font-size: clamp(1.6rem, 4vw, 2.35rem);
	line-height: 1.2;
}

.help-support-cta p:not(.help-eyebrow) {
	margin: 8px 0 0;
	color: #d7e5f0;
}

@media (max-width: 900px) {
	.help-category-grid,
	.help-article-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.help-article-layout {
		grid-template-columns: 1fr;
		max-width: 790px;
	}

	.help-toc {
		position: static;
		max-height: none;
		padding: 16px 18px;
		border: 1px solid var(--public-line);
		border-radius: 12px;
		background: var(--public-soft);
	}
}

@media (max-width: 640px) {
	.help-hero {
		padding: 55px 0 65px;
	}

	.help-search {
		grid-template-columns: auto minmax(0, 1fr);
		padding: 6px 8px 6px 15px;
	}

	.help-search button {
		grid-column: 1 / -1;
		width: 100%;
	}

	.help-category-grid,
	.help-article-grid {
		grid-template-columns: 1fr;
	}

	.help-category-card {
		min-height: 0;
		padding: 20px;
	}

	.help-section__heading,
	.help-list-heading,
	.help-support-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.help-page-head__row {
		align-items: flex-start;
		flex-direction: column;
	}

	.help-breadcrumb [aria-current="page"] {
		max-width: 28ch;
	}

	.help-article-list > a {
		padding: 18px;
	}

	.help-support-cta .public-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.help-category-card {
		transition: none;
	}
}
