.amh-app,
.amh-app * {
	box-sizing: border-box;
}

.amh-app {
	--amh-accent: #0866ff;
	--amh-text: #111318;
	--amh-muted: #656b76;
	--amh-line: #dfe1e5;
	--amh-soft: #eef6ff;
	width: 100%;
	min-height: 100svh;
	background: #fff;
	color: var(--amh-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
}

.amh-app button,
.amh-app input {
	font: inherit;
}

.amh-app button,
.amh-app a {
	-webkit-tap-highlight-color: transparent;
}

.amh-app svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.amh-shell {
	position: relative;
	width: min(100%, 720px);
	min-height: 100svh;
	margin: 0 auto;
	padding: 82px 34px 54px;
}

.amh-page-close,
.amh-sheet-close,
.amh-back-button {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 10px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #0d0f12;
	cursor: pointer;
	transition: background-color .18s ease, transform .18s ease;
}

.amh-page-close:hover,
.amh-page-close:focus-visible,
.amh-sheet-close:hover,
.amh-sheet-close:focus-visible,
.amh-back-button:hover,
.amh-back-button:focus-visible {
	background: #f0f2f5;
	outline: none;
}

.amh-page-close:active,
.amh-sheet-close:active,
.amh-back-button:active {
	transform: scale(.94);
}

.amh-page-close {
	position: absolute;
	top: 22px;
	right: 24px;
	z-index: 2;
}

.amh-notice {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 38px;
	gap: 14px;
	align-items: start;
	padding: 18px 15px 18px 18px;
	border-radius: 24px;
	background: #edf5ff;
	transition: opacity .22s ease, transform .22s ease, margin .22s ease, padding .22s ease, max-height .22s ease;
}

.amh-notice.amh-is-dismissed {
	max-height: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-8px);
}

.amh-notice-art {
	position: relative;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 15px 20px 18px 22px;
	background:
		radial-gradient(circle at 68% 24%, #ff4068 0 18%, transparent 19%),
		radial-gradient(circle at 38% 30%, #22263f 0 19%, transparent 20%),
		radial-gradient(circle at 63% 60%, #1176ff 0 25%, transparent 26%),
		linear-gradient(145deg, #c6e7ff, #83c9ff);
	color: transparent;
	transform: rotate(-9deg);
}

.amh-notice-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.amh-notice-copy strong {
	font-size: 19px;
	font-weight: 650;
	letter-spacing: -.2px;
}

.amh-notice-copy span {
	color: var(--amh-muted);
	font-size: 17px;
	line-height: 1.35;
}

.amh-notice > button {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 8px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #1c1f24;
	cursor: pointer;
}

.amh-notice > button:hover,
.amh-notice > button:focus-visible {
	background: rgba(0, 0, 0, .06);
	outline: none;
}

.amh-heading {
	margin: 40px 0 24px;
}

.amh-brand {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 13px;
	font-size: 20px;
	font-weight: 650;
}

.amh-brand .amh-platforms-mark {
	width: 46px;
	height: 26px;
}

.amh-brand .amh-custom-logo {
	display: block;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	border-radius: 7px;
	object-fit: contain;
}

.amh-summary-logo .amh-platforms-mark {
	width: 48px;
	height: 28px;
}

.amh-summary-logo .amh-custom-logo {
	display: block;
	width: 46px;
	height: 46px;
	border-radius: 9px;
	object-fit: contain;
}

.amh-heading h1 {
	margin: 0 0 12px;
	font-size: clamp(34px, 7vw, 43px);
	font-weight: 650;
	letter-spacing: -1.35px;
	line-height: 1.1;
}

.amh-heading p {
	max-width: 620px;
	margin: 0;
	font-size: 19px;
	line-height: 1.42;
}

.amh-heading a,
.amh-pages-note a,
.amh-edit-contact,
.amh-add-row a,
.amh-add-row button {
	color: var(--amh-accent);
	font-weight: 650;
	text-decoration: none;
}

.amh-heading a:hover,
.amh-edit-contact:hover,
.amh-add-row a:hover,
.amh-add-row button:hover {
	text-decoration: underline;
}

.amh-account-summary {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto 26px;
	gap: 10px;
	align-items: center;
	width: 100%;
	min-height: 100px;
	margin: 0;
	padding: 14px 20px;
	border: 1px solid var(--amh-line);
	border-radius: 24px;
	background: #fff;
	color: var(--amh-text);
	text-align: left;
	cursor: pointer;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .02);
	transition: border-color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.amh-account-summary:hover,
.amh-account-summary:focus-visible {
	border-color: #c9cdd4;
	background: #fbfcfe;
	outline: none;
	box-shadow: 0 7px 24px rgba(32, 38, 48, .08);
}

.amh-account-summary:active {
	transform: scale(.993);
}

.amh-summary-logo {
	display: grid;
	place-items: center;
}

.amh-summary-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.amh-summary-copy strong {
	overflow: hidden;
	font-size: 19px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amh-summary-copy small {
	color: var(--amh-muted);
	font-size: 17px;
}

.amh-avatar-stack {
	display: flex;
	align-items: center;
	padding-left: 16px;
}

.amh-avatar-stack .amh-avatar {
	margin-left: -16px;
}

.amh-avatar-stack .amh-avatar:first-child {
	margin-left: 0;
}

.amh-avatar {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #e4e7eb;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.amh-avatar img,
.amh-avatar-fallback {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	border-radius: 50%;
	object-fit: cover;
}

.amh-avatar-fallback {
	background: linear-gradient(145deg, #e8ebef, #cbd1d8);
	color: #747b84;
}

.amh-avatar-fallback svg {
	width: 66%;
	height: 66%;
	fill: currentColor;
	stroke: none;
}

.amh-platform-badge {
	position: absolute;
	right: -4px;
	bottom: -3px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	overflow: hidden;
}

.amh-platform-badge.amh-facebook {
	background: #1877f2;
}

.amh-platform-badge.amh-instagram {
	background: radial-gradient(circle at 68% 70%, #ffd66b 0 10%, #fa5b35 30%, #c52b91 60%, #5b51d8 100%);
}

.amh-platform-badge svg {
	width: 19px;
	height: 19px;
	stroke-width: 2;
}

.amh-platform-badge .amh-custom-platform-icon {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.amh-chevron {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	color: #687078;
}

.amh-menu {
	overflow: hidden;
	margin-top: 40px;
	border: 1px solid var(--amh-line);
	border-radius: 24px;
	background: #fff;
}

.amh-menu-row {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 26px;
	gap: 13px;
	align-items: center;
	width: 100%;
	min-height: 82px;
	margin: 0;
	padding: 14px 19px;
	border: 0;
	border-bottom: 1px solid var(--amh-line);
	background: #fff;
	color: var(--amh-text);
	font-size: 19px;
	text-align: left;
	cursor: pointer;
	transition: background-color .16s ease;
}

.amh-menu-row:last-child {
	border-bottom: 0;
}

.amh-menu-row:hover,
.amh-menu-row:focus-visible {
	background: #f7f8fa;
	outline: none;
}

.amh-menu-icon {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	color: #111317;
}

.amh-menu-icon svg {
	stroke-width: 1.95;
}

.amh-disclaimer {
	max-width: 560px;
	margin: 30px auto 0;
	color: #777d86;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

.amh-modal[hidden],
.amh-toast[hidden] {
	display: none !important;
}

.amh-modal {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
}

.amh-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(16, 17, 19, .64);
	cursor: default;
	animation: amh-fade-in .2s ease both;
}

.amh-sheet {
	position: relative;
	z-index: 1;
	width: min(100%, 660px);
	max-height: calc(100svh - 40px);
	overflow: auto;
	padding: 64px 40px 42px;
	border-radius: 34px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
	scrollbar-width: thin;
	animation: amh-sheet-in .25s cubic-bezier(.2, .75, .25, 1) both;
}

.amh-sheet-close {
	position: absolute;
	top: 22px;
	right: 22px;
}

.amh-sheet h2 {
	margin: 0 0 20px;
	font-size: 39px;
	font-weight: 650;
	letter-spacing: -1.2px;
	line-height: 1.1;
}

.amh-section-heading h3 {
	margin: 0 0 5px;
	font-size: 27px;
	font-weight: 650;
	letter-spacing: -.5px;
}

.amh-section-heading p,
.amh-sheet-intro {
	margin: 0;
	color: #31353b;
	font-size: 18px;
	line-height: 1.45;
}

.amh-section-spaced {
	margin-top: 28px;
}

.amh-section-large {
	margin-top: 74px;
}

.amh-contact-card {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 22px;
	gap: 15px;
	align-items: center;
	width: 100%;
	min-height: 86px;
	margin-top: 22px;
	padding: 16px 22px;
	border: 1px solid var(--amh-line);
	border-radius: 22px;
	background: #fff;
	color: var(--amh-text);
	text-align: left;
	cursor: pointer;
}

.amh-contact-card > span:first-child {
	width: 32px;
	height: 32px;
}

.amh-contact-card strong {
	overflow: hidden;
	font-size: 18px;
	font-weight: 550;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amh-record-list,
.amh-contact-options {
	overflow: hidden;
	margin-top: 18px;
	border: 1px solid var(--amh-line);
	border-radius: 24px;
	background: #fff;
}

.amh-record-row {
	display: grid;
	grid-template-columns: 66px minmax(0, 1fr) auto 22px;
	gap: 14px;
	align-items: center;
	min-height: 105px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--amh-line);
	color: var(--amh-text);
	text-decoration: none;
}

.amh-record-row:last-child {
	border-bottom: 0;
}

a.amh-record-row:hover,
a.amh-record-row:focus-visible {
	background: #f8f9fa;
	outline: none;
}

.amh-record-row .amh-avatar {
	width: 62px;
	height: 62px;
}

.amh-record-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 1px;
}

.amh-record-copy strong,
.amh-record-copy small,
.amh-record-copy em {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amh-record-copy strong {
	font-size: 19px;
	font-weight: 550;
}

.amh-record-copy small {
	color: var(--amh-muted);
	font-size: 17px;
}

.amh-record-copy em {
	color: var(--amh-muted);
	font-size: 15px;
	font-style: normal;
}

.amh-page-platform {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #1877f2;
	color: #fff;
}

.amh-platform-slot {
	display: grid;
	place-items: center;
}

.amh-page-platform.amh-instagram {
	background: radial-gradient(circle at 68% 70%, #ffd66b 0 10%, #fa5b35 30%, #c52b91 60%, #5b51d8 100%);
}

.amh-page-platform svg {
	width: 25px;
	height: 25px;
}

.amh-page-platform .amh-custom-platform-icon {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.amh-add-row {
	display: flex;
	align-items: center;
	min-height: 74px;
	padding: 16px 22px;
}

.amh-add-row button {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.amh-empty {
	margin: 0;
	padding: 22px;
	color: var(--amh-muted);
}

.amh-pages-note {
	margin: 24px 0 0;
	font-size: 17px;
	line-height: 1.45;
}

.amh-sheet-top-actions {
	display: flex;
	justify-content: space-between;
	height: 45px;
	margin: -42px -17px 48px;
}

.amh-sheet-top-actions .amh-sheet-close {
	position: static;
}

.amh-contact-sheet {
	min-height: min(780px, calc(100svh - 40px));
}

.amh-contact-sheet h2 {
	margin-bottom: 18px;
}

.amh-contact-sheet .amh-section-heading {
	margin-top: 28px;
}

.amh-contact-preview {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 62px;
	gap: 13px;
	align-items: center;
	min-height: 118px;
	margin-top: 18px;
	padding: 18px 22px;
	border: 1px solid var(--amh-line);
	border-radius: 24px;
}

.amh-contact-preview > span:nth-child(2) {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.amh-contact-preview strong {
	font-size: 20px;
	font-weight: 600;
}

.amh-contact-preview small {
	overflow-wrap: anywhere;
	color: var(--amh-muted);
	font-size: 17px;
	line-height: 1.35;
}

.amh-contact-preview .amh-avatar {
	width: 60px;
	height: 60px;
}

.amh-contact-options label {
	position: relative;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 34px;
	gap: 14px;
	align-items: center;
	min-height: 78px;
	padding: 16px 22px;
	border-bottom: 1px solid var(--amh-line);
	cursor: pointer;
}

.amh-contact-options label:last-child {
	border-bottom: 0;
}

.amh-contact-options label:hover {
	background: #f8f9fb;
}

.amh-contact-options label > span:first-child {
	width: 31px;
	height: 31px;
}

.amh-contact-options strong {
	overflow: hidden;
	font-size: 18px;
	font-weight: 550;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.amh-contact-options input {
	position: absolute;
	op: 50%;
	right: 24px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.amh-radio-ui {
	display: block;
	width: 29px;
	height: 29px;
	border: 3px solid #697078;
	border-radius: 50%;
	background: #fff;
}

.amh-contact-options input:checked + .amh-radio-ui {
	border-color: var(--amh-accent);
	box-shadow: inset 0 0 0 6px #fff;
	background: var(--amh-accent);
}

.amh-contact-options input:focus-visible + .amh-radio-ui {
	outline: 3px solid color-mix(in srgb, var(--amh-accent) 32%, transparent);
	outline-offset: 3px;
}

.amh-edit-contact {
	display: inline-block;
	margin-top: 22px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 17px;
	cursor: pointer;
}

.amh-generic-sheet {
	padding-top: 78px;
	text-align: center;
}

.amh-generic-icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	padding: 17px;
	border-radius: 50%;
	background: #edf4ff;
	background: color-mix(in srgb, var(--amh-accent) 12%, white);
	color: var(--amh-accent);
}

.amh-generic-sheet h2 {
	font-size: 32px;
}

.amh-generic-sheet > p {
	max-width: 480px;
	margin: 0 auto;
	color: var(--amh-muted);
	font-size: 18px;
	line-height: 1.55;
}

.amh-primary-button {
	width: 100%;
	min-height: 52px;
	margin: 34px 0 0;
	padding: 13px 20px;
	border: 0;
	border-radius: 14px;
	background: var(--amh-accent);
	color: #fff;
	font-weight: 650;
	cursor: pointer;
}

.amh-primary-button:hover,
.amh-primary-button:focus-visible {
	filter: brightness(.94);
	outline: 3px solid color-mix(in srgb, var(--amh-accent) 30%, transparent);
	outline-offset: 2px;
}

.amh-toast {
	position: fixed;
	z-index: 1000001;
	right: 20px;
	bottom: 20px;
	max-width: min(420px, calc(100vw - 40px));
	padding: 13px 17px;
	border-radius: 12px;
	background: #1d2025;
	color: #fff;
	font-size: 14px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
	animation: amh-toast-in .2s ease both;
}

body.amh-modal-open {
	overflow: hidden;
}

@keyframes amh-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes amh-sheet-in {
	from { opacity: 0; transform: translateY(24px) scale(.985); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes amh-toast-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
	.amh-shell {
		padding: 76px 18px 42px;
	}

	.amh-page-close {
		top: 18px;
		right: 16px;
	}

	.amh-notice {
		grid-template-columns: 42px minmax(0, 1fr) 32px;
		gap: 10px;
		padding: 16px 12px 16px 14px;
		border-radius: 20px;
	}

	.amh-notice-art {
		width: 39px;
		height: 42px;
	}

	.amh-notice-copy strong {
		font-size: 17px;
	}

	.amh-notice-copy span {
		font-size: 15px;
	}

	.amh-heading {
		margin-top: 33px;
	}

	.amh-heading h1 {
		font-size: 36px;
	}

	.amh-heading p {
		font-size: 17px;
	}

	.amh-account-summary {
		grid-template-columns: 45px minmax(0, 1fr) auto 20px;
		min-height: 92px;
		padding: 13px 15px;
		border-radius: 21px;
	}

	.amh-summary-copy strong {
		font-size: 17px;
	}

	.amh-summary-copy small {
		font-size: 15px;
	}

	.amh-avatar-stack .amh-avatar:nth-child(n+3) {
		display: none;
	}

	.amh-avatar {
		width: 49px;
		height: 49px;
	}

	.amh-menu {
		margin-top: 32px;
		border-radius: 21px;
	}

	.amh-menu-row {
		grid-template-columns: 36px minmax(0, 1fr) 22px;
		gap: 10px;
		min-height: 75px;
		padding: 13px 15px;
		font-size: 17px;
	}

	.amh-menu-icon {
		width: 29px;
		height: 29px;
	}

	.amh-modal {
		align-items: end;
		padding: 0;
	}

	.amh-sheet {
		width: 100%;
		max-height: calc(100svh - 18px);
		padding: 62px 24px 34px;
		border-radius: 30px 30px 0 0;
	}

	.amh-sheet h2 {
		font-size: 34px;
	}

	.amh-section-heading h3 {
		font-size: 24px;
	}

	.amh-section-heading p,
	.amh-sheet-intro {
		font-size: 16px;
	}

	.amh-contact-card {
		padding: 14px 17px;
	}

	.amh-record-row {
		grid-template-columns: 59px minmax(0, 1fr) auto 20px;
		gap: 11px;
		padding: 14px 16px;
	}

	.amh-record-row .amh-avatar {
		width: 56px;
		height: 56px;
	}

	.amh-section-large {
		margin-top: 58px;
	}

	.amh-sheet-top-actions {
		margin: -44px -12px 44px;
	}

	.amh-contact-sheet {
		min-height: calc(100svh - 18px);
	}

	.amh-contact-preview {
		grid-template-columns: 43px minmax(0, 1fr) 54px;
		padding: 16px;
	}

	.amh-contact-preview .amh-avatar {
		width: 52px;
		height: 52px;
	}

	.amh-contact-options label {
		grid-template-columns: 34px minmax(0, 1fr) 32px;
		gap: 11px;
		padding: 14px 17px;
	}
}

@media (max-width: 400px) {
	.amh-shell {
		padding-right: 14px;
		padding-left: 14px;
	}

	.amh-avatar-stack {
		display: flex;
		padding-left: 10px;
	}

	.amh-account-summary {
		grid-template-columns: 42px minmax(0, 1fr) auto 18px;
		gap: 7px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.amh-summary-logo .amh-platforms-mark {
		width: 40px;
		height: 24px;
	}

	.amh-summary-logo .amh-custom-logo {
		width: 40px;
		height: 40px;
	}

	.amh-avatar-stack .amh-avatar {
		width: 42px;
		height: 42px;
		margin-left: -12px;
	}

	.amh-avatar-stack .amh-avatar:first-child {
		margin-left: 0;
	}

	.amh-avatar-stack .amh-platform-badge {
		right: -3px;
		bottom: -2px;
		width: 20px;
		height: 20px;
	}

	.amh-avatar-stack .amh-platform-badge svg {
		width: 16px;
		height: 16px;
	}

	.amh-sheet {
		padding-right: 18px;
		padding-left: 18px;
	}

	.amh-record-row {
		grid-template-columns: 53px minmax(0, 1fr) auto 20px;
		gap: 8px;
	}

	.amh-record-row .amh-avatar {
		width: 50px;
		height: 50px;
	}

}

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