:root {
	color-scheme: light;
	--page: #D0E7E6;
	--surface: #FFFFFF;
	--text: #293681;
	--muted: #5f6077;
	--line: rgba(41, 54, 129, 0.14);
	--telegram: #4274D9;
	--telegram-hover: #293681;
	--ink-blue: #293681;
	--navy: #293681;
	--navy-2: #4274D9;
	--gold: #95CCDD;
	--cream: #D0E7E6;
	--aqua: #95CCDD;
	--shadow: 0 20px 54px rgba(41, 54, 129, 0.18);
	font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Arial, Tahoma, Verdana, sans-serif;
	background: var(--page);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	overflow-y: scroll;
	scrollbar-gutter: stable;
}

* {
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	background: var(--page);
}

a {
	color: inherit;
}

main {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	flex: 1 0 auto;
}

.site-header {
	width: 100%;
	background: rgba(208, 231, 230, 0.94);
	border-bottom: 1px solid rgba(149, 204, 221, 0.7);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	backdrop-filter: blur(18px);
	position: sticky;
	top: 0;
	z-index: 10;
}

.site-header-inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 72px;
}

.site-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
	min-width: 0;
}

.debug-badge { margin-right: auto; padding: 5px 8px; border-radius: 5px; background: #b42318; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.admin-mock-payments, .admin-subscription-resets { margin: 32px 0; padding: 20px; border: 2px solid #b42318; border-radius: 12px; background: #fff5f4; }
.admin-payment-toggle { display: inline-block; margin: 8px 8px 8px 0; }
.development-toggle { display: inline-flex; align-items: center; gap: 9px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--text); font: inherit; cursor: pointer; }
.development-toggle > span { position: relative; width: 34px; height: 20px; border-radius: 999px; background: #8c8d9a; transition: background 160ms ease; }
.development-toggle > span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: transform 160ms ease; }
.development-toggle[aria-checked="true"] > span { background: #16803c; }
.development-toggle[aria-checked="true"] > span::after { transform: translateX(14px); }
.development-toggle:focus-visible { outline: 3px solid rgba(149, 204, 221, .8); outline-offset: 2px; }
.admin-payment-requests { width: 100%; margin-top: 16px; border-collapse: collapse; font-size: 14px; }
.admin-payment-requests th, .admin-payment-requests td { padding: 10px; border: 1px solid var(--line); text-align: left; vertical-align: top; }

.site-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex: 0 0 auto;
	gap: 4px;
	width: 44px;
	height: 44px;
	min-height: 44px;
	padding: 0;
	border: 2px solid var(--text);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 26px rgba(18, 21, 25, 0.08);
}

.site-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 1px;
	background: var(--text);
	transition: transform 160ms ease, opacity 160ms ease;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: var(--text);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.brand-mark {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--gold);
	box-shadow: 0 8px 20px rgba(149, 204, 221, 0.32);
	position: relative;
	flex: 0 0 auto;
}

.brand-mark::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 9px;
	width: 16px;
	height: 14px;
	background: var(--navy);
	clip-path: polygon(0 42%, 100% 0, 72% 100%, 48% 64%, 31% 81%, 36% 59%);
}

h1 {
	margin: 0;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.12;
	letter-spacing: 0;
}

p {
	max-width: 620px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.55;
}

.tg-auth-button {
	width: fit-content;
	min-height: 44px;
	padding: 0 28px;
	border: none;
	border-radius: 22px;
	background: var(--telegram);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	user-select: none;
	white-space: nowrap;
	box-shadow: 0 10px 26px rgba(149, 204, 221, 0.28);
}

.tg-auth-button:hover {
	background: var(--telegram-hover);
}

.tg-auth-button::before {
	content: "";
	width: 22px;
	height: 22px;
	margin-right: 8px;
	display: inline-block;
	background-color: currentColor;
	clip-path: polygon(7% 48%, 95% 10%, 72% 90%, 48% 65%, 31% 82%, 36% 59%);
}

.tg-auth-button::after {
	content: "";
	position: absolute;
	top: -2px;
	bottom: -2px;
	left: -75%;
	width: 70px;
	max-width: 50%;
	background: linear-gradient(95deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0) 100%);
	animation: tg-shine 4s infinite;
	mix-blend-mode: soft-light;
}

.tg-auth-button-large {
	min-height: 52px;
	margin-top: 34px;
	padding: 0 32px;
	border-radius: 26px;
	font-size: 17px;
}

.account-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 18px;
	border: 2px solid var(--text);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 10px 26px rgba(18, 21, 25, 0.08);
}

.account-link:hover {
	background: #fff;
}

.header-logout-form {
	margin: 0;
}

.header-logout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 2px solid var(--text);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 10px 26px rgba(18, 21, 25, 0.08);
}

.header-logout-button:hover {
	background: #fff;
}

.session-control {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 10px 0 14px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 26px rgba(18, 21, 25, 0.08);
	white-space: nowrap;
}

.session-control p {
	margin: 0;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.session-control p span {
	color: var(--muted);
	font-weight: 700;
}

.session-control-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.session-control button {
	min-height: 32px;
	padding: 0 12px;
	border: 2px solid var(--text);
	border-radius: 16px;
	background: #fff;
	color: var(--text);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.session-control button:hover {
	background: #f1f6ff;
}

.site-footer {
	margin-top: 48px;
	border-top: 3px solid var(--text);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8) inset;
}

.site-footer-inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0 28px;
}

.site-footer-copy {
	margin: 0;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
}

.site-footer-nav {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.site-footer-nav a {
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.site-footer-nav a:hover {
	color: var(--text);
}

.landing-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	gap: 28px;
	align-items: center;
	padding: 72px 0 42px;
}

.landing-hero-copy {
	padding: 28px 0;
}

.landing-hero h1 {
	max-width: 760px;
	font-size: clamp(42px, 7vw, 82px);
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.hero-copy {
	max-width: 680px;
	color: rgba(41, 54, 129, 0.78);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 650;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero-button,
.bot-card-button {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0 20px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: none;
}

.hero-button-primary,
.bot-card-button-primary {
	border: 2px solid var(--gold);
	background: var(--gold);
	color: var(--navy);
	box-shadow: 0 12px 28px rgba(41, 54, 129, 0.24);
}

.hero-button-secondary,
.bot-card-button {
	border: 2px solid var(--navy);
	background: rgba(255, 250, 240, 0.8);
	color: var(--navy);
}

.hero-button:hover,
.bot-card-button:hover {
	transform: translateY(-1px);
}

.hero-panel {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(149, 204, 221, 0.55);
	border-radius: 34px;
	background: var(--navy);
	box-shadow: var(--shadow);
}

.hero-panel-card {
	padding: 20px;
	border: 1px solid rgba(149, 204, 221, 0.32);
	border-radius: 24px;
	background: var(--cream);
	color: var(--navy);
}

.hero-panel-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy);
	font-size: 14px;
	font-weight: 950;
}

.hero-panel-card strong {
	display: block;
	font-size: 22px;
	font-weight: 950;
}

.hero-panel-card p {
	margin-top: 8px;
	color: rgba(41, 54, 129, 0.74);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.45;
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2px;
	margin: 8px 0 58px;
	overflow: hidden;
	border: 1px solid rgba(149, 204, 221, 0.7);
	border-radius: 28px;
	background: rgba(149, 204, 221, 0.7);
	box-shadow: var(--shadow);
}

.trust-strip article {
	min-height: 132px;
	padding: 24px;
	background: var(--navy);
	color: #fff;
}

.trust-strip strong {
	display: block;
	color: var(--gold);
	font-size: 19px;
	font-weight: 950;
}

.trust-strip span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.45;
}

.bot-choice {
	margin: 0 calc(50% - 50vw);
	padding: 64px max(16px, calc((100vw - 1120px) / 2)) 76px;
	background: var(--navy);
	color: #fff;
}

.bot-choice-heading {
	max-width: 860px;
}

.bot-choice-heading h2,
.how-it-works h2 {
	margin: 0;
	font-size: clamp(32px, 5vw, 58px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.bot-choice-heading p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	font-weight: 650;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bot-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	margin-top: 34px;
}

#bot-template-list.htmx-request {
	min-height: 540px;
	opacity: 0.72;
}

.bot-card {
	background: var(--cream);
	border: 1px solid rgba(149, 204, 221, 0.68);
	border-radius: 30px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
	padding: 18px;
	display: flex;
	flex-direction: column;
	color: var(--navy);
	transition: transform 160ms ease, background 160ms ease;
}

.bot-card:hover {
	background: #FFFFFF;
	transform: translateY(-2px);
}

.bot-card-label {
	width: fit-content;
	margin-bottom: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--aqua);
	color: var(--navy);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bot-card h3 {
	min-height: 54px;
	margin: 0;
	color: var(--navy);
	font-size: 24px;
	font-weight: 950;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.bot-card > p {
	min-height: 70px;
	margin: 10px 0 16px;
	color: rgba(41, 54, 129, 0.76);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.42;
}

.bot-preview {
	width: min(100%, 230px);
	aspect-ratio: 9 / 16;
	margin: 0 auto 18px;
	border: 3px solid rgba(41, 54, 129, 0.14);
	border-radius: 22px;
	background: linear-gradient(135deg, #D0E7E6 0%, #95CCDD 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38), 0 12px 28px rgba(18, 21, 25, 0.16);
	overflow: hidden;
	position: relative;
}

.bot-preview iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.bot-card-actions {
	display: grid;
	gap: 8px;
	margin-top: auto;
}

.how-it-works {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
	gap: 28px;
	padding: 70px 0 24px;
	color: #fff;
}

.feature-grid {
	display: grid;
	gap: 14px;
}

.feature-grid article {
	padding: 24px;
	border: 1px solid rgba(149, 204, 221, 0.38);
	border-radius: 24px;
	background: #4274D9;
}

.feature-grid h3 {
	margin: 0;
	color: var(--gold);
	font-size: 22px;
	font-weight: 950;
}

.feature-grid p {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 650;
}

.sponsor-strip {
	margin: 0 calc(50% - 50vw);
	padding: 48px max(16px, calc((100vw - 1120px) / 2)) 28px;
	background: var(--navy);
	color: #fff;
	position: relative;
}

.sponsor-learn {
	display: block;
	margin: 0 0 18px auto;
	width: fit-content;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.sponsor-learn:hover {
	color: var(--gold);
}

.sponsor-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.sponsor-card {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px;
	border: 1px solid rgba(149, 204, 221, 0.6);
	border-radius: 26px;
	background: var(--cream);
	color: var(--navy);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.sponsor-image,
.identity-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--gold), var(--aqua));
	color: var(--navy);
	font-size: 34px;
	font-weight: 950;
}

.sponsor-card p {
	margin: 0;
	color: rgba(41, 54, 129, 0.9);
	font-size: 14px;
	font-weight: 850;
	line-height: 1.35;
	text-align: center;
}

.mini-button {
	width: fit-content;
	min-height: 32px;
	margin: auto auto 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--gold);
	color: var(--navy);
	font-size: 12px;
	font-weight: 950;
	text-decoration: none;
}

.collab-shell {
	margin: 0 calc(50% - 50vw);
	background: var(--navy);
	color: #fff;
}

.collab-nav {
	position: sticky;
	top: 72px;
	z-index: 8;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px max(16px, calc((100vw - 1120px) / 2));
	border-top: 1px solid rgba(149, 204, 221, 0.7);
	border-bottom: 1px solid rgba(149, 204, 221, 0.7);
	background: var(--cream);
	color: var(--navy);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.collab-logo {
	color: var(--navy);
	font-size: 22px;
	font-weight: 950;
	text-decoration: none;
}

.collab-nav nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.collab-nav nav a,
.collab-cta {
	color: var(--navy);
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.collab-cta {
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--gold);
	box-shadow: 0 8px 18px rgba(41, 54, 129, 0.18);
}

#collab-content.htmx-request {
	min-height: 520px;
	opacity: 0.7;
}

.collab-main {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 58px 0 72px;
}

.collab-hero {
	min-height: 440px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.collab-hero h1 {
	color: var(--gold);
	font-size: clamp(54px, 11vw, 128px);
	line-height: 0.9;
	letter-spacing: -0.07em;
}

.collab-hero p:not(.eyebrow) {
	max-width: 850px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(17px, 2vw, 22px);
	font-weight: 700;
}

.collab-section {
	display: grid;
	grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
	gap: 24px;
	align-items: stretch;
	padding: 42px 0;
}

.collab-section-heading h2,
.collab-token h2 {
	margin: 0;
	color: var(--gold);
	font-size: clamp(34px, 6vw, 72px);
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.collab-copy-card,
.collab-info-card,
.identity-card,
.collab-token {
	border: 1px solid rgba(149, 204, 221, 0.58);
	border-radius: 26px;
	background: var(--cream);
	color: var(--navy);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.collab-copy-card {
	display: flex;
	align-items: center;
	padding: 30px;
}

.collab-copy-card p,
.collab-info-card p,
.identity-card p,
.collab-token p {
	margin: 0;
	color: rgba(41, 54, 129, 0.78);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.collab-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 42px 0;
}

.collab-info-card {
	padding: 26px;
	transition: background 160ms ease, transform 160ms ease;
}

.collab-info-card:hover,
.identity-card:hover {
	background: var(--gold);
	transform: translateY(-2px);
}

.collab-info-card h2,
.identity-card h3 {
	margin: 0 0 14px;
	color: var(--navy);
	font-size: 25px;
	font-weight: 950;
	line-height: 1.05;
}

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

.identity-card {
	padding: 22px;
}

.identity-placeholder {
	min-height: 240px;
	margin-bottom: 16px;
	border: 2px solid rgba(149, 204, 221, 0.7);
}

.collab-token {
	max-width: 760px;
	margin: 42px auto 0;
	padding: 30px;
	text-align: center;
}

.collab-token h2 {
	margin-bottom: 14px;
	color: var(--navy);
}

/* Collab.Land screenshot simulation */
.collab-shell {
	margin: 0 calc(50% - 50vw);
	background: #293681;
	color: #D0E7E6;
	font-family: "Courier New", Courier, monospace;
}

.collab-shell .collab-nav {
	position: sticky;
	top: 72px;
	z-index: 8;
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 16px;
	border: 0;
	background: #D0E7E6;
	color: #293681;
	box-shadow: none;
}

.collab-logo {
	display: inline-flex;
	align-items: center;
}

.collab-logo img {
	width: 226px;
	max-width: 36vw;
	height: auto;
	display: block;
}

.collab-shell .collab-nav nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 3vw, 44px);
}

.collab-shell .collab-nav nav a {
	color: #293681;
	font-size: 15px;
	font-weight: 950;
	text-decoration: none;
}

.collab-shell .collab-nav nav span {
	display: inline-block;
	margin-left: 14px;
}

#collab-content.htmx-request {
	min-height: 640px;
	opacity: 0.7;
}

.collab-main {
	width: min(1160px, calc(100% - 64px));
	margin: 0 auto;
	padding: 42px 0 0;
}

.collab-main .sponsor-strip {
	position: relative;
	margin: 0;
	padding: 0 0 88px;
	background: transparent;
	color: #D0E7E6;
}

.sponsor-learn {
	margin: 0 16px 22px auto;
	color: #D0E7E6;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sponsor-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 4px;
	max-width: 1030px;
	margin: 0 auto;
}

.sponsor-card {
	min-height: 296px;
	padding: 14px 14px 18px;
	border: 2px solid #95CCDD;
	border-radius: 22px;
	background: #D0E7E6;
	color: #293681;
	box-shadow: none;
}

.sponsor-card .sponsor-image {
	width: 100%;
	height: 118px;
	min-height: 0;
	object-fit: contain;
	display: block;
	border-radius: 14px;
	background: #101318;
}

.sponsor-card p {
	min-height: 90px;
	margin: 14px 0 12px;
	color: #293681;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.3;
	text-align: center;
}

.mini-button {
	min-height: 32px;
	padding: 0 18px;
	border-radius: 999px;
	background: #95CCDD;
	color: #293681;
	box-shadow: 0 10px 18px rgba(41, 54, 129, 0.28);
	font-size: 12px;
	font-weight: 950;
}

.sponsor-arrow {
	position: absolute;
	top: 148px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #4274D9;
	border-radius: 50%;
	background: #4274D9;
	padding: 0;
}

.sponsor-arrow img {
	width: 24px;
	height: 24px;
}

.sponsor-arrow-left {
	left: -28px;
}

.sponsor-arrow-right {
	right: -28px;
}

.collab-overview {
	max-width: 870px;
	margin: 0 auto 42px;
	text-align: center;
}

.collab-overview h1,
.collab-section > h2,
.collab-token h2 {
	margin: 0 0 26px;
	color: #95CCDD;
	font-size: 32px;
	font-weight: 950;
	line-height: 1;
	letter-spacing: -0.04em;
}

.collab-overview p {
	max-width: none;
	margin: 0;
	color: rgba(208, 231, 230, 0.86);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
}

.collab-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	max-width: 860px;
	margin: 0 auto 24px;
	padding: 0;
}

.collab-info-card,
.identity-card,
.collab-token {
	border: 1px solid rgba(41, 54, 129, 0.18);
	border-radius: 8px;
	background: #D0E7E6;
	color: #293681;
	box-shadow: none;
}

.collab-info-card {
	min-height: 230px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 26px 28px;
	text-align: center;
}

.collab-info-card:hover,
.identity-card:hover {
	background: #D0E7E6;
	transform: none;
}

.collab-info-card h2,
.identity-card h3 {
	margin: 0 0 20px;
	color: #293681;
	font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Arial, sans-serif;
	font-size: 20px;
	font-weight: 950;
}

.collab-info-card p,
.identity-card p,
.collab-token p {
	margin: 0;
	color: #293681;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.collab-section {
	display: block;
	margin: 0 calc(50% - 50vw);
	padding: 24px max(32px, calc((100vw - 860px) / 2)) 34px;
	border-top: 1px solid #4274D9;
	text-align: center;
}

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

.identity-card {
	padding: 26px 22px;
}

.identity-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	margin: 0 0 18px;
	border: 3px solid #95CCDD;
	border-radius: 8px;
	background: #111;
}

.identity-card p strong {
	font-weight: 950;
}

.collab-token {
	max-width: 650px;
	margin: 48px auto 70px;
	padding: 30px 42px;
	text-align: center;
}

.collab-token h2 {
	color: #95CCDD;
}

.collab-token a {
	display: inline-block;
	margin-top: 14px;
	color: #293681;
	font-size: 15px;
	font-weight: 700;
}

.collab-shell::after {
	content: "Privacy Policy   Terms of Service                                      ⚛   🎮   X                                      🤖 Collab.Land® 2026";
	display: block;
	margin: 0 calc(50% - 50vw);
	padding: 18px 16px;
	background: #95CCDD;
	color: #293681;
	font-size: 14px;
	font-weight: 950;
	white-space: pre;
	overflow: hidden;
}

@media (max-width: 720px) {
	main {
		width: min(100% - 24px, 1120px);
	}

	.sponsor-grid,
	.collab-card-grid,
	.identity-grid {
		grid-template-columns: 1fr;
	}

	.sponsor-strip {
		padding-top: 28px;
	}

	.collab-nav {
		position: static;
		align-items: flex-start;
		flex-direction: column;
	}

	.collab-nav nav {
		justify-content: flex-start;
	}

	.collab-section {
		grid-template-columns: 1fr;
	}

	.collab-hero {
		min-height: 360px;
	}

	.landing-hero,
	.how-it-works {
		grid-template-columns: 1fr;
		padding-top: 44px;
	}

	.landing-hero h1 {
		font-size: clamp(40px, 14vw, 58px);
	}

	.hero-panel {
		border-radius: 24px;
	}

	.trust-strip,
	.bot-card-grid {
		grid-template-columns: 1fr;
	}

	.trust-strip {
		margin-bottom: 36px;
	}

	.bot-choice {
		padding-top: 44px;
		padding-bottom: 54px;
	}

	.bot-card > p {
		min-height: 0;
	}

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

	.account-link,
	.tg-auth-button,
	.session-control {
		max-width: 100%;
	}
}

/* Standalone Collab.Land overview replica. Keep every rule scoped to this page. */
body.collab-page {
	display: block;
	min-width: 320px;
	margin: 0;
	overflow-x: hidden;
	background: #293681;
	color: #D0E7E6;
	font-family: "Courier New", Courier, monospace;
}

.collab-page .collab-shell {
	width: 100%;
	min-height: 100vh;
	margin: 0;
	overflow: hidden;
	background: #293681;
}

.collab-page .collab-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	min-height: 55px;
	padding: 9px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border: 0;
	background: #D0E7E6;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.collab-page .collab-logo {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

.collab-page .collab-logo img {
	display: block;
	width: 180px;
	max-width: 100%;
	height: auto;
}

.collab-page .collab-nav nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(8px, 1.5vw, 24px);
}

.collab-page .collab-nav nav a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 2px 8px;
	color: #293681;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.collab-page .collab-nav nav a:hover {
	color: #ffb800;
	background: rgba(149, 204, 221, 0.1);
}

.collab-page .collab-nav nav small {
	margin-right: 7px;
	padding: 3px 6px;
	border-radius: 999px;
	background: #95CCDD;
	color: #293681;
	font: 700 10px/1 Arial, sans-serif;
}

.collab-page .collab-nav nav span {
	margin-left: 14px;
}

.collab-page #collab-content,
.collab-page .collab-main {
	width: 100%;
	max-width: none;
	margin: 0;
}

.collab-page .collab-main {
	padding: 0;
}

.collab-page .sponsor-strip {
	position: relative;
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: 45px 74px 105px;
	overflow: visible;
	background: #293681;
}

.collab-page .sponsor-learn {
	position: absolute;
	top: 15px;
	right: 74px;
	display: block;
	width: auto;
	margin: 0;
	color: #D0E7E6;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.collab-page .sponsor-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 2px;
	width: 100%;
	max-width: none;
	margin: 0;
}

.collab-page .sponsor-card {
	min-width: 0;
	min-height: 310px;
	margin: 0;
	padding: 14px 14px 17px;
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(149, 204, 221, 0.6);
	border-radius: 24px;
	background: #D0E7E6;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.collab-page .sponsor-media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	flex: 0 0 auto;
	overflow: hidden;
	border-radius: 16px;
	background: transparent;
}

.collab-page .sponsor-card .sponsor-image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	object-fit: contain;
	object-position: center;
	background: transparent;
}

.collab-page .sponsor-card p {
	width: 100%;
	max-width: none;
	min-height: 0;
	margin: 14px 0 12px;
	color: rgba(41, 54, 129, 0.9);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.collab-page .mini-button {
	min-height: 30px;
	margin: auto auto 0;
	padding: 0 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #95CCDD;
	color: #293681;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.collab-page .sponsor-arrow {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 36px;
	margin-top: -14px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #4274D9;
	border-radius: 50%;
	background: #4274D9;
}

.collab-page .sponsor-arrow-left { left: 31px; }
.collab-page .sponsor-arrow-right { right: 31px; }
.collab-page .sponsor-arrow img { width: 24px; height: 24px; }

.collab-page .collab-overview {
	width: min(100% - 32px, 900px);
	max-width: none;
	margin: 0 auto 42px;
	text-align: center;
}

.collab-page .collab-overview h1,
.collab-page .collab-section > h2,
.collab-page .collab-token > h2 {
	margin: 0 0 22px;
	color: #95CCDD;
	font-family: Arial, sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.collab-page .collab-overview p {
	max-width: none;
	margin: 0;
	color: rgba(208, 231, 230, 0.88);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
}

.collab-page .collab-card-grid {
	width: min(100% - 32px, 896px);
	max-width: none;
	margin: 0 auto 24px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.collab-page .collab-info-card {
	min-width: 0;
	min-height: 274px;
	padding: 24px 18px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow: hidden;
	border: 1px solid #4274D9;
	border-radius: 8px;
	background: #D0E7E6;
	box-shadow: none;
	text-align: center;
}

.collab-page .collab-info-card h2,
.collab-page .identity-card h3 {
	margin: 0 0 18px;
	color: #293681;
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
}

.collab-page .collab-info-card p,
.collab-page .identity-card p,
.collab-page .collab-token-card p {
	width: 100%;
	max-width: none;
	margin: 0;
	color: #293681;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	text-align: center;
}

.collab-page .collab-section {
	width: 100%;
	margin: 0;
	padding: 24px 16px 34px;
	display: block;
	border-top: 2px solid #4274D9;
	border-bottom: 2px solid #4274D9;
	text-align: center;
}

.collab-page .identity-grid {
	width: min(100%, 896px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.collab-page .identity-card {
	min-width: 0;
	padding: 24px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #4274D9;
	border-radius: 8px;
	background: #D0E7E6;
	box-shadow: none;
}

.collab-page .identity-media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 14px;
	overflow: hidden;
	border: 2px solid rgba(149, 204, 221, 0.7);
	border-radius: 8px;
	background: #111;
}

.collab-page .identity-image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	border-radius: 0;
	object-fit: cover;
	object-position: center;
}

.collab-page .collab-token {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 30px 16px 55px;
	border: 0;
	border-radius: 0;
	background: #293681;
	box-shadow: none;
	text-align: center;
}

.collab-page .collab-token-card {
	width: min(100%, 672px);
	margin: 0 auto;
	padding: 28px 24px;
	overflow: hidden;
	border: 1px solid #4274D9;
	border-radius: 8px;
	background: #D0E7E6;
}

.collab-page .collab-token a {
	display: inline-block;
	margin-top: 10px;
	color: #293681;
	font-size: 15px;
	font-weight: 400;
}

.collab-page .collab-shell::after {
	display: none;
	content: none;
}

.collab-page .collab-footer {
	width: 100%;
	min-height: 52px;
	padding: 10px 16px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 18px;
	background: #95CCDD;
	color: #293681;
}

.collab-page .collab-footer nav,
.collab-page .collab-socials {
	display: flex;
	align-items: center;
	gap: 16px;
}

.collab-page .collab-footer a,
.collab-page .collab-footer p {
	margin: 0;
	color: #293681;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.collab-page .collab-socials a,
.collab-page .collab-footer p {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.collab-page .collab-socials img { display: block; width: 20px; height: 20px; }
.collab-page .collab-footer > p { justify-self: end; }
.collab-page .collab-footer > p img { width: 18px; height: 18px; margin-right: 5px; }

@media (max-width: 900px) {
	.collab-page .collab-nav { padding: 11px 14px; }
	.collab-page .collab-logo img { width: 120px; }
	.collab-page .collab-nav nav { display: none; }

	.collab-page .sponsor-strip {
		width: 100%;
		padding: 52px 16px 76px;
		overflow: hidden;
	}

	.collab-page .sponsor-learn { right: 16px; }
	.collab-page .sponsor-grid {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.collab-page .sponsor-grid::-webkit-scrollbar { display: none; }
	.collab-page .sponsor-card {
		flex: 0 0 min(82vw, 300px);
		scroll-snap-align: center;
	}
	.collab-page .sponsor-arrow { display: none; }
}

@media (max-width: 640px) {
	.collab-page .collab-overview { margin-bottom: 32px; }
	.collab-page .collab-overview h1,
	.collab-page .collab-section > h2,
	.collab-page .collab-token > h2 { font-size: 24px; }
	.collab-page .collab-overview p,
	.collab-page .collab-info-card p,
	.collab-page .identity-card p,
	.collab-page .collab-token-card p { font-size: 14px; }
	.collab-page .collab-card-grid,
	.collab-page .identity-grid { grid-template-columns: 1fr; }
	.collab-page .collab-info-card { min-height: 0; }
	.collab-page .identity-card { padding: 18px; }
	.collab-page .collab-token-card { padding: 22px 18px; }
	.collab-page .collab-footer {
		grid-template-columns: 1fr;
		justify-items: center;
		padding: 18px 16px;
	}
	.collab-page .collab-footer > p { justify-self: center; }
}

.bot-link {
	width: min(1120px, calc(100% - 32px));
	margin: 16px auto;
	padding: 12px 16px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.session-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 12px;
}

form {
	margin: 0;
}

dl {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	gap: 8px 16px;
	max-width: 760px;
	margin: 18px 0 24px;
}

dt {
	color: var(--muted);
	font-weight: 700;
}

dd {
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
}

.account-details-form {
	display: grid;
	gap: 14px;
	max-width: 520px;
	margin: 18px 0 24px;
}

.account-details-form label {
	display: grid;
	gap: 6px;
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
}

.account-details-control {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	position: relative;
}

.account-details-form input {
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 2px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--text);
	font: inherit;
	font-size: 16px;
	font-weight: 500;
}

.account-details-form input[readonly] {
	border-style: dashed;
	background: #eef2f6;
	color: var(--muted);
	cursor: default;
	padding-right: 42px;
}

.account-details-control:has(input[readonly])::after {
	content: "Locked";
	position: absolute;
	right: 96px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	pointer-events: none;
}

.account-details-form input:focus {
	border-color: var(--telegram);
	outline: none;
	box-shadow: 0 0 0 3px rgba(66, 116, 217, 0.18);
}

.account-page-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px 24px;
	margin-bottom: 28px;
}

.account-page-header h1 {
	flex: 1 1 260px;
}

.account-subnav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 220px;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.account-subnav-link {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 16px;
	border: 2px solid var(--text);
	border-radius: 20px;
	background: var(--surface);
	color: var(--text);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.account-subnav-link:hover {
	background: #f1f6ff;
}

.account-subnav-link.is-active {
	background: var(--gold);
}

.payment-method-section-tabs {
	display: flex;
	align-items: center;
	gap: 24px;
	max-width: 100%;
	overflow-x: auto;
	scrollbar-width: thin;
}

.payment-method-section-tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0 0 5px;
	color: var(--text);
	font-size: clamp(17px, 2vw, 22px);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.payment-method-section-tab:hover,
.payment-method-section-tab.is-active {
	color: var(--telegram);
}

.payment-method-section-tab.is-active::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	border-radius: 3px;
	background: var(--gold);
}

.payment-method-section-tab.is-disabled {
	color: var(--muted);
	cursor: not-allowed;
	opacity: .58;
}

.telegram-stars-guide-intro {
	max-width: 820px;
	margin: 28px 0 30px;
}

.telegram-stars-guide-intro h1 {
	margin: 4px 0 10px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.08;
}

.telegram-stars-guide-intro > p:last-child {
	margin: 0;
	color: var(--muted);
}

.telegram-stars-tutorials {
	display: grid;
	gap: 24px;
}

.telegram-stars-tutorial-step {
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(112px, 30vw, 300px);
	grid-template-areas:
		"heading video"
		"copy video";
	column-gap: clamp(14px, 4vw, 48px);
	row-gap: 0;
	align-items: start;
	padding: clamp(14px, 3vw, 30px);
	border: 2px solid var(--line);
	border-radius: 18px;
	background: var(--surface);
	box-shadow: 0 10px 30px rgba(41, 54, 129, .08);
}

.telegram-stars-tutorial-heading {
	grid-area: heading;
}

.telegram-stars-tutorial-heading h2 {
	margin: 4px 0 18px;
	font-size: clamp(21px, 3vw, 30px);
	line-height: 1.15;
}

.telegram-stars-tutorial-heading > p:last-child:not(.wizard-eyebrow) {
	margin: -8px 0 20px;
	color: var(--muted);
}

.telegram-stars-tutorial-copy {
	grid-area: copy;
}

.telegram-stars-tutorial-copy p:not(.wizard-eyebrow) {
	margin: 0 0 13px;
}

.telegram-stars-wallet-hint {
	margin: 0 0 20px;
	padding: 13px 15px;
	border: 2px solid var(--aqua);
	border-radius: 14px;
	background: rgba(208, 231, 230, .38);
}

.telegram-stars-wallet-hint summary {
	color: var(--navy);
	font-weight: 900;
	cursor: pointer;
}

.telegram-stars-wallet-hint[open] summary {
	margin-bottom: 10px;
}

.telegram-stars-wallet-hint p {
	color: var(--muted);
}

.telegram-stars-wallet-hint a {
	display: block;
	width: min(100%, 260px);
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
}

.telegram-stars-wallet-hint img {
	display: block;
	width: 100%;
	height: auto;
}

.telegram-stars-success {
	color: #196c4a;
}

.telegram-stars-privacy-note {
	margin: 18px 0;
	padding: 13px 15px;
	border: 2px solid var(--gold);
	border-radius: 12px;
	background: rgba(255, 236, 219, .45);
}

.telegram-stars-privacy-note > strong {
	display: block;
	margin-bottom: 6px;
}

.telegram-stars-privacy-note p:last-child {
	margin-bottom: 0;
}

.telegram-stars-written-steps {
	display: grid;
	gap: 14px;
	margin: 20px 0;
	padding-left: 24px;
}

.telegram-stars-written-steps li {
	padding-left: 5px;
}

.telegram-stars-written-steps h3 {
	margin: 0 0 6px;
	font-size: 17px;
}

.telegram-stars-written-steps p:last-child {
	margin-bottom: 0;
}

.telegram-stars-video-frame {
	position: relative;
	grid-area: video;
	width: 100%;
	aspect-ratio: 9 / 16;
	border: 3px solid rgba(41, 54, 129, .18);
	border-radius: 22px;
	background: #101425;
	box-shadow: 0 14px 32px rgba(18, 21, 25, .18);
	overflow: hidden;
}

.telegram-stars-video-frame video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.telegram-stars-narrow-video-frame {
	aspect-ratio: 97 / 192;
}

.telegram-stars-usdt-note {
	margin-top: 20px;
	padding: 15px;
	border-left: 4px solid var(--telegram);
	border-radius: 0 12px 12px 0;
	background: rgba(149, 204, 221, .18);
}

.telegram-stars-usdt-note h3 {
	margin: 0 0 7px;
	font-size: 18px;
}

.telegram-stars-usdt-note p:last-child {
	margin-bottom: 0;
}

.telegram-stars-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	justify-items: center;
	gap: 8px;
	min-width: 112px;
	padding: 14px 16px;
	border: 2px solid rgba(255, 255, 255, .75);
	border-radius: 16px;
	background: rgba(18, 21, 37, .86);
	box-shadow: 0 8px 28px rgba(0, 0, 0, .32);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.telegram-stars-video-play:hover,
.telegram-stars-video-play:focus-visible {
	background: var(--telegram);
}

.telegram-stars-video-play[hidden] {
	display: none;
}

.telegram-stars-video-play-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding-left: 3px;
	border-radius: 50%;
	background: #fff;
	color: var(--navy);
	font-size: 20px;
}

.telegram-stars-video-error {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 28px);
	margin: 0;
	padding: 14px;
	border-radius: 12px;
	background: #fff;
	color: #9f1f2f;
	font-size: 14px;
	font-weight: 800;
	text-align: center;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.telegram-stars-video-error[hidden] {
	display: none;
}

.telegram-stars-video-placeholder {
	display: grid;
	place-items: center;
	padding: 18px;
	background: linear-gradient(145deg, var(--aqua), #fff);
	color: var(--navy);
	font-weight: 900;
	text-align: center;
}

@media (max-width: 760px) {
	.telegram-stars-tutorial-step {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"heading"
			"video"
			"copy";
		row-gap: 18px;
	}

	.telegram-stars-video-frame {
		width: min(100%, 340px);
		justify-self: center;
	}

	.telegram-stars-tutorial-heading h2,
	.telegram-stars-tutorial-heading > p:last-child:not(.wizard-eyebrow) {
		margin-bottom: 0;
	}
}

.account-subpage {
	margin-top: 30px;
	min-height: 360px;
	font-size: 16px;
	line-height: 1.5;
}

.account-subpage-content {
	display: flow-root;
}

.account-subpage-content > h2,
.account-section-header h2 {
	margin: 0;
}

.account-profile > h2 {
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--text);
}

.account-profile-section + .account-profile-section {
	margin-top: 30px;
}

.account-profile-section h3 {
	margin: 0;
	font-size: 20px;
}

.account-profile-section dl,
.account-profile-section .account-details-form {
	margin-bottom: 0;
}

.account-telegram-manager > p {
	max-width: 720px;
	margin: 10px 0 16px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.55;
}

.account-telegram-manager-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 2px solid var(--text);
	border-radius: 999px;
	background: #95CCDD;
	color: var(--text);
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.account-telegram-manager-link:hover {
	background: #D0E7E6;
}

.account-email-warning {
	max-width: 620px;
	margin: 12px 0 0;
	padding: 12px 14px;
	border: 1px solid rgba(180, 35, 24, 0.35);
	border-radius: 8px;
	background: #fff1f0;
	color: #8d1d15;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.account-email-warning a {
	color: inherit;
	font-weight: 900;
}

.account-credential-list {
	display: grid;
	gap: 12px;
	max-width: 760px;
	margin-top: 16px;
}

.account-credential-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px 18px;
	padding: 15px 16px;
	border: 2px solid var(--line);
	border-radius: 10px;
	background: #fff;
}

.account-credential-copy {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.account-credential-copy strong {
	overflow-wrap: anywhere;
	font-size: 16px;
}

.account-credential-label {
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.account-credential-password {
	letter-spacing: 0.12em;
}

.account-credential-inline-recovery {
	width: fit-content;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: normal;
}

.account-credential-inline-recovery:hover {
	color: var(--text);
}

.account-credential-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #18794e;
	font-size: 14px;
	font-weight: 900;
	white-space: nowrap;
}

.account-credential-status > span {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #18794e;
	color: #fff;
	font-size: 14px;
}

.account-credential-update-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border: 2px solid var(--text);
	border-radius: 999px;
	background: #95CCDD;
	color: var(--text);
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.account-credential-update-button:hover {
	background: #D0E7E6;
}

@media (max-width: 620px) {
	.account-credential-row {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.account-credential-status {
		grid-column: 1;
		grid-row: 2;
	}

	.account-credential-update-button {
		grid-column: 2;
		grid-row: 1 / span 2;
	}
}

.account-email-connect-form {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.account-email-connect-form label {
	display: grid;
	gap: 6px;
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
}

.account-email-connect-form input {
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 2px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--text);
	font: inherit;
}

.account-email-connect-form input:focus {
	border-color: var(--telegram);
	outline: none;
	box-shadow: 0 0 0 3px rgba(149, 204, 221, 0.2);
}

.account-email-connect-form input:invalid:not(:placeholder-shown) {
	border-color: #b42318;
}

.account-credential-recovery {
	margin: -2px 0 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.account-credential-recovery a {
	color: var(--text);
	font-weight: 900;
}

.account-email-modal-intro {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
}

.account-email-modal[hidden] {
	display: none;
}

.account-email-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: 16px;
	overflow-y: auto;
}

.account-email-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.58);
}

.account-email-modal-panel {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	border-radius: 10px;
	background: #FFFFFF;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
}

.account-email-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.email-auth-page {
	width: min(100%, 560px);
	margin: 0 auto;
	padding-bottom: 48px;
}

.email-auth-page > p {
	max-width: none;
}

.email-auth-form {
	display: grid;
	gap: 16px;
	margin-top: 24px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.email-auth-form label {
	display: grid;
	gap: 6px;
	font-size: 15px;
	font-weight: 700;
}

.email-auth-form input {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 2px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--text);
	font: inherit;
}

.email-auth-form input:focus {
	border-color: var(--telegram);
	outline: none;
	box-shadow: 0 0 0 3px rgba(149, 204, 221, 0.2);
}

.email-auth-links {
	font-size: 15px;
	font-weight: 700;
}

.account-section-header {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--text);
}

.account-refresh-indicator {
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.account-bots-browser {
	margin-top: 18px;
}

.account-bots-table-wrap {
	overflow-x: auto;
	border: 2px solid var(--text);
	border-radius: 6px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.account-bots-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.4;
}

.account-bots-table th,
.account-bots-table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: middle;
}

.account-bots-table th {
	background: #f1f6ff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.account-bots-table tbody tr:last-child td {
	border-bottom: 0;
}

.account-bot-select-button {
	display: grid;
	gap: 3px;
	justify-content: flex-start;
	width: 100%;
	min-height: 52px;
	padding: 8px 12px;
	border: 2px solid transparent;
	border-radius: 18px;
	background: transparent;
	color: var(--telegram);
	font-size: 15px;
	text-align: left;
	box-shadow: none;
}

.account-bot-select-name {
	color: inherit;
	font-weight: 800;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.account-bot-select-meta {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.account-bot-select-button:hover,
.account-bot-select-button.is-active {
	border-color: var(--telegram);
	background: #eef7ff;
	color: var(--text);
}

.account-bots-pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 12px;
}

.account-bots-page-button {
	min-height: 38px;
	padding: 0 14px;
	border: 2px solid var(--text);
	border-radius: 19px;
	font-size: 14px;
}

.account-bots-page-button:disabled {
	cursor: default;
	opacity: 0.45;
}

.account-bots-page-status {
	color: var(--muted);
	font-size: 15px;
	font-weight: 700;
}

.account-bot-detail {
	margin-top: 18px;
}

.account-bot-card {
	display: grid;
	gap: 16px;
	padding: 20px;
	border: 1px solid #d6d0c3;
	border-radius: 14px;
	background: var(--surface);
	box-shadow: 0 8px 24px rgba(41, 54, 129, .08);
}

.account-bot-card[hidden] {
	display: none;
}

.account-bot-card h3 {
	margin: 0;
	font-size: 19px;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.account-bot-card dl {
	display: block;
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}

.account-bot-card dt {
	margin-top: 12px;
}

.account-bot-card dt:first-child {
	margin-top: 0;
}

.account-bot-card dd {
	margin-top: 3px;
}

.account-bot-card .account-bot-overview {
	display: grid;
	grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr);
	gap: 9px 14px;
	margin: 0;
	font-size: 16px;
}

.account-bot-card .account-bot-overview dt {
	margin: 0;
	color: var(--muted);
	font-weight: 700;
}

.account-bot-card .account-bot-overview dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.account-bot-subscription {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.account-bot-payment {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.account-bot-overview-section h4,
.account-bot-subscription h4,
.account-bot-payment h4 {
	margin: 0;
	font-size: 17px;
	line-height: 1.2;
}

/* Make each My Bots detail region visually distinct without adding heavy cards. */
.account-bot-card {
	gap: 10px;
	padding: 0;
	background: #D0E7E6;
}

.account-bot-card > .account-bot-overview-section,
.account-bot-card > .account-bot-payment,
.account-bot-card > .account-bot-subscription {
	margin: 0;
	padding: 16px;
	border: 0;
	border-radius: 0;
	background: #E7F1F0;
	overflow: hidden;
}

.account-bot-card > .account-bot-payment,
.account-bot-card > .account-bot-subscription {
	margin-top: 0;
	padding-top: 16px;
}

.account-bot-card > .account-bot-overview-section > h4,
.account-bot-card > .account-bot-payment > h4 {
	margin: -16px -16px 14px;
	padding: 11px 16px;
	border: 0;
	background: #95CCDD;
	color: #293681;
}

.account-bot-card > .account-bot-subscription .account-subscription-card-header {
	margin: -16px -16px 14px;
	padding: 11px 16px;
	border: 0;
	background: #95CCDD;
}

.account-action-message {
	max-width: none;
	margin: 10px 0 18px;
	padding: 10px 12px;
	border: 2px solid rgba(66, 116, 217, 0.28);
	border-radius: 6px;
	background: #eef7ff;
	color: var(--text);
	font-size: 15px;
	font-weight: 700;
}

.account-action-message.is-declined {
	border-color: rgba(180, 35, 24, 0.7);
	background: #fff1f0;
	color: #8d1d15;
}

.account-section-intro {
	max-width: 780px;
	color: var(--muted);
	font-size: 16px;
}

.account-gift-card-credentials .account-section-header {
	align-items: center;
	justify-content: space-between;
}

.gift-card-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
	margin-left: auto;
}

.gift-card-intro-actions-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px 24px;
	margin-bottom: 18px;
}

.gift-card-intro-actions-row .account-section-intro {
	flex: 1 1 620px;
	margin: 0;
}

.gift-card-empty-state {
	margin-top: 22px;
	padding: 28px;
	border: 1px dashed #a8b0bb;
	border-radius: 14px;
	background: rgba(255, 255, 255, .45);
	text-align: center;
}

.gift-card-empty-state strong {
	font-size: 18px;
}

.gift-card-empty-state p {
	max-width: none;
	margin: 6px 0 0;
}

.gift-card-credentials-workspace {
	display: grid;
	grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
	align-items: start;
	gap: 18px;
	margin-top: 22px;
}

.gift-card-credentials-browser {
	padding: 14px;
	border: 1px solid #d6d0c3;
	border-radius: 14px;
	background: rgba(255, 255, 255, .45);
}

.gift-card-credentials-browser > h3 {
	margin: 2px 4px 12px;
	font-size: 16px;
}

.gift-card-credential-list {
	display: grid;
	gap: 8px;
}

.gift-card-list-item {
	display: grid;
	width: 100%;
	min-height: 66px;
	padding: 11px 12px;
	border: 1px solid transparent;
	border-radius: 10px;
	background: #fff;
	color: var(--text);
	text-align: left;
	gap: 4px;
	box-shadow: none;
}

.gift-card-list-item:hover {
	border-color: #b8b0a1;
	background: #fffdf7;
}

.gift-card-list-item.is-active {
	border-color: #4274D9;
	background: #D0E7E6;
}

.gift-card-list-item strong {
	overflow-wrap: anywhere;
}

.gift-card-list-item span {
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.gift-card-credential-detail {
	min-width: 0;
}

.gift-card-credential-card,
.gift-card-bot-row {
	padding: 20px;
	border: 1px solid #d6d0c3;
	border-radius: 14px;
	background: var(--surface);
	box-shadow: 0 8px 24px rgba(41, 54, 129, .08);
}

.gift-card-credential-card {
	display: grid;
	gap: 16px;
}

.gift-card-credential-card[hidden] {
	display: none;
}

.gift-card-credential-card.is-draft {
	border-color: #d4a900;
	background: #fff9df;
}

.gift-card-card-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.gift-card-credential-card h3,
.gift-card-bot-assignments h3 {
	margin: 0;
	font-size: 19px;
	overflow-wrap: anywhere;
}

.gift-card-status-badge {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 5px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #e7f6ed;
	color: #146c43;
	font-size: 14px;
	font-weight: 900;
}

.gift-card-status-badge.is-progress {
	background: #fff0b8;
	color: #705800;
}

.gift-card-status-badge.is-disabled {
	background: #eceff3;
	color: #59636e;
}

.account-bots-workspace .account-bot-detail {
	align-self: start;
	margin-top: 0;
}

.account-bots-workspace > .gift-card-credentials-browser,
.account-bots-workspace > .account-bot-detail,
.account-bots-workspace .account-bot-card {
	margin-top: 0;
}

.gift-card-credential-card dl {
	display: grid;
	grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr);
	gap: 9px 14px;
	margin: 0;
	font-size: 16px;
}

.gift-card-credential-card dt {
	color: var(--muted);
	font-weight: 700;
}

.gift-card-credential-card dd { margin: 0; overflow-wrap: anywhere; }
.account-verified-icon { color: #14804a; font-weight: 900; }
.gift-card-card-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; padding-top: 16px; border-top: 1px solid var(--line); }
.gift-card-card-actions button,
.gift-card-card-actions a { min-height: 40px; }
.gift-card-card-actions .gift-card-action-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: #fff;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}
.gift-card-card-actions .gift-card-action-link:hover { background: #f8f6ef; }
.gift-card-card-actions form { display: grid; gap: 5px; flex: 1 1 180px; }
.gift-card-card-actions label { color: var(--muted); font-size: 14px; font-weight: 700; }
.gift-card-card-actions input,
.gift-card-credential-form input,
.gift-card-credential-form select,
.gift-card-bot-row input,
.gift-card-bot-row select {
	width: 100%; min-height: 42px; padding: 8px 10px; border: 2px solid var(--line); border-radius: 6px; background: #fff; color: var(--text); font: inherit;
}
.gift-card-credential-form { display: grid; gap: 14px; }
.gift-card-credential-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 800; }
.gift-card-credentials-pagination {
	justify-content: center;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
}

@media (max-width: 560px) {
	.gift-card-header-actions {
		width: 100%;
	}

	.gift-card-header-actions .wizard-primary-link {
		width: 100%;
	}

	.payment-method-section-tabs {
		gap: 10px;
		justify-content: flex-start;
		width: 100%;
	}

	.payment-method-section-tab {
		font-size: clamp(13px, 3.6vw, 15px);
	}

	.gift-card-credential-card dl {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.gift-card-credential-card dd + dt {
		margin-top: 8px;
	}

	.gift-card-card-actions > button,
	.gift-card-card-actions > a {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 760px) {
	.gift-card-credentials-workspace {
		grid-template-columns: 1fr;
	}

	.payment-method-section-tabs {
		gap: 18px;
	}
}

.gift-card-bot-assignments { margin-top: 32px; }
.gift-card-bot-row { display: grid; grid-template-columns: minmax(160px, .7fr) minmax(280px, 1.3fr); gap: 16px; margin-top: 12px; }
.gift-card-bot-row > div { display: grid; align-content: start; gap: 4px; }
.gift-card-bot-row span,
.gift-card-bot-row small { color: var(--muted); }
.gift-card-bot-row form { display: grid; grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr) auto; align-items: end; gap: 8px; }

.account-bot-gift-card-manager {
	display: grid;
	gap: 14px;
	margin-top: 14px;
}

.account-bot-gift-card-manager > .account-action-message {
	margin: 0;
}

.account-bot-credential-summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 16px;
	border: 1px solid #d6d0c3;
	border-radius: 12px;
	background: #fff;
}

.account-bot-credential-summary.is-connected {
	border-color: rgba(20, 108, 67, .35);
	background: #f3fbf6;
}

.account-bot-credential-copy {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.account-bot-credential-copy strong {
	font-size: 18px;
	overflow-wrap: anywhere;
}

.account-bot-credential-copy > span:last-child {
	color: var(--muted);
	font-size: 15px;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.account-bot-credential-eyebrow {
	color: var(--muted);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.account-bot-credential-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
}

.account-bot-credential-primary,
.account-bot-credential-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--text);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 850;
	text-decoration: none;
}

.account-bot-credential-primary {
	background: var(--gold);
}

.account-bot-credential-link {
	background: #fff;
}

.account-bot-credential-primary:hover,
.account-bot-credential-link:hover {
	background: #D0E7E6;
}

.account-bot-credential-empty {
	max-width: none;
	margin: 0;
	padding: 13px 15px;
	border: 1px dashed #a8b0bb;
	border-radius: 10px;
	background: rgba(255, 255, 255, .45);
	font-size: 15px;
}

@media (max-width: 720px) {
	.gift-card-bot-row { grid-template-columns: 1fr; }
	.gift-card-bot-row form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.account-bot-credential-summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.account-bot-credential-actions > button,
	.account-bot-credential-actions > a {
		width: 100%;
	}

	.account-bot-card .account-bot-overview {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.account-bot-card .account-bot-overview dd + dt {
		margin-top: 8px;
	}
}

/* Binance Gift Card setup wizard */
.gift-card-wizard {
	width: 100%;
	padding: 14px 0 56px;
}

.gift-card-wizard-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr) 230px;
	gap: 24px;
	align-items: start;
}

.gift-card-wizard-sidebar,
.gift-card-wizard-help {
	position: sticky;
	top: 108px;
}

.wizard-back-link {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}

.gift-card-wizard-sidebar h2,
.gift-card-wizard-help h2 {
	margin: 0 0 14px;
	font-size: 18px;
}

.gift-card-wizard-sidebar ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gift-card-wizard-sidebar li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 42px;
	padding: 6px 8px;
	border-radius: 7px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
}

.gift-card-wizard-sidebar li > span {
	position: relative;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 2px solid var(--line);
	border-radius: 50%;
	background: #fff;
}

.gift-card-wizard-sidebar li small {
	grid-column: 2;
	color: #18794e;
	font-size: 14px;
}

.gift-card-wizard-sidebar li.is-current {
	background: #D0E7E6;
	color: var(--text);
}

.gift-card-wizard-sidebar li.is-current > span {
	border-color: var(--text);
	background: var(--gold);
}

.gift-card-wizard-sidebar li.is-complete {
	color: var(--text);
}

.gift-card-wizard-sidebar li.is-complete > span {
	border-color: #18794e;
	background: #18794e;
	color: transparent;
}

.gift-card-wizard-sidebar li.is-complete > span::after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 17px;
	font-weight: 950;
	line-height: 1;
	transform: translate(-50%, -53%);
}

.gift-card-wizard-main {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	min-height: 640px;
	padding: 28px;
	border: 2px solid var(--text);
	border-radius: 8px;
	background: #FFFFFF;
	box-shadow: var(--shadow);
}

.gift-card-wizard-form > h1 {
	max-width: 680px;
	font-size: clamp(29px, 4vw, 42px);
}

.wizard-eyebrow {
	margin: 0 0 8px;
	color: #8a6900;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.wizard-lead {
	max-width: 720px;
	margin: 14px 0 22px;
	font-size: 17px;
}

.wizard-card {
	margin: 20px 0 0;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 7px;
	background: #fff;
}

.wizard-card h2 {
	margin: 0 0 12px;
	font-size: 19px;
}

.wizard-card p,
.wizard-info-row p,
.wizard-found-result p {
	max-width: none;
	margin: 6px 0 0;
	font-size: 16px;
}

.wizard-check-list,
.wizard-instructions {
	display: grid;
	gap: 10px;
	margin: 14px 0 0;
	padding-left: 22px;
	color: var(--text);
	font-size: 15px;
	line-height: 1.45;
}

.wizard-check-list {
	padding: 0;
	list-style: none;
}

.wizard-check-list li {
	position: relative;
	padding-left: 27px;
}

.wizard-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #18794e;
	font-weight: 950;
}

.wizard-info-row,
.wizard-example-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.wizard-info-row > div {
	padding: 15px;
	border-left: 4px solid var(--gold);
	background: #fff8d7;
}

.wizard-warning,
.wizard-danger,
.wizard-third-party-note {
	max-width: none;
	margin: 18px 0 0;
	padding: 13px 15px;
	border-left: 4px solid #b7791f;
	background: #fff7dd;
	color: #664d03;
	font-size: 16px;
}

.wizard-danger {
	border-color: #b42318;
	background: #fff1f0;
	color: #8d1d15;
}

.wizard-third-party-note {
	margin-top: 12px;
}

.wizard-checkbox,
.wizard-radio-list label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 12px;
	color: var(--text);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.4;
}

.wizard-checkbox input {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	accent-color: #18794e;
}

.wizard-radio-list input {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: #18794e;
}

.wizard-permission-check {
	margin-top: 28px;
	margin-left: 12px;
	padding: 10px 12px;
}

.wizard-radio-list {
	display: grid;
	gap: 6px;
}

.wizard-radio-list legend {
	padding: 0 5px;
	font-weight: 900;
}

.wizard-external-button,
.wizard-primary-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 2px solid var(--text);
	border-radius: 999px;
	background: var(--gold);
	color: var(--text);
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: none;
}

.wizard-help-details {
	margin-top: 16px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
}

.wizard-help-details summary {
	cursor: pointer;
	font-weight: 850;
}

.wizard-help-details li {
	margin-top: 6px;
}

.wizard-copy-value {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.wizard-copy-value code {
	min-width: 0;
	flex: 1;
	padding: 10px;
	border-radius: 5px;
	background: #f1f6ff;
	overflow-wrap: anywhere;
}

.wizard-fields {
	display: grid;
	gap: 16px;
	margin-top: 20px;
}

.wizard-fields > label,
.wizard-inline-form > label {
	display: grid;
	gap: 6px;
	color: var(--text);
	font-size: 16px;
	font-weight: 850;
}

.wizard-fields input,
.wizard-fields select,
.wizard-inline-form input {
	width: 100%;
	min-height: 46px;
	padding: 8px 12px;
	border: 2px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--text);
	font: inherit;
}

.wizard-fields small {
	color: var(--muted);
	font-size: 14px;
	font-weight: 650;
}

.wizard-fields > .wizard-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.wizard-fields > .wizard-checkbox input {
	width: 16px;
	height: 16px;
	min-height: 16px;
	margin: 2px 0 0;
	padding: 0;
	border-radius: 3px;
	box-shadow: none;
}

.wizard-fields > .wizard-name-field {
	max-width: 560px;
	gap: 8px;
	font-size: 16px;
}

.wizard-fields > .wizard-name-field input {
	min-height: 54px;
	padding: 10px 15px;
	border-color: var(--text);
	border-radius: 8px;
	background: #fff;
	font-size: 17px;
	font-weight: 750;
	box-shadow: 0 3px 0 rgba(41, 54, 129, 0.12);
}

.wizard-fields > .wizard-name-field input:hover {
	border-color: var(--telegram);
}

.wizard-fields > .wizard-name-field input:focus {
	border-color: var(--telegram);
	outline: 3px solid rgba(0, 136, 204, 0.2);
	outline-offset: 2px;
}

.wizard-password-field {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.wizard-connection-result,
.wizard-found-result {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 20px;
	padding: 18px;
	border: 2px solid #18794e;
	border-radius: 7px;
	background: #effaf4;
}

.wizard-connection-result h2 {
	margin: 0;
	font-size: 21px;
}

.wizard-connection-result p {
	max-width: none;
	margin: 5px 0 0;
	font-size: 15px;
}

.wizard-result-icon,
.wizard-found-result > span {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #18794e;
	color: #fff;
	font-weight: 950;
}

.wizard-seller-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 14px;
}

.wizard-seller-grid article {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 5px;
}

.wizard-seller-grid a {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 850;
}

.wizard-inline-form {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.wizard-inline-form > div,
.gift-card-wizard-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.gift-card-wizard-actions {
	margin-top: 24px;
}

.gift-card-wizard-actions .wizard-start-button,
.gift-card-wizard-actions .wizard-primary-button {
	border-color: var(--text);
	background: var(--gold);
	color: var(--text);
	font-weight: 900;
}

.gift-card-wizard-actions .wizard-success-button {
	border-color: #146c43;
	background: #18794e;
	color: #fff;
	font-weight: 900;
}

.gift-card-wizard-actions .wizard-success-button:hover {
	background: #146c43;
}

.wizard-text-button {
	border: 0;
	background: transparent;
	color: var(--muted);
	box-shadow: none;
	text-decoration: underline;
}

.wizard-link-button {
	text-decoration: none;
}

.wizard-cancel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px;
	border: 2px solid var(--text);
	border-radius: 999px;
	background: #fff;
	color: var(--text);
	font-size: 15px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
}

.wizard-cancel-button:hover {
	background: #f1f6ff;
}

.wizard-completion-links {
	display: grid;
	justify-items: start;
	gap: 10px;
	margin: 18px 0 0 12px;
}

.wizard-danger-button {
	border-color: #8d1d15;
	background: #b42318;
	color: #fff;
}

.wizard-danger-button:hover {
	background: #8d1d15;
}

.wizard-danger-button:disabled {
	cursor: not-allowed;
	opacity: .45;
}

.wizard-toast-stack {
	position: fixed;
	z-index: 1200;
	top: 96px;
	right: 24px;
	display: grid;
	width: min(390px, calc(100vw - 32px));
	gap: 10px;
	pointer-events: none;
}

.wizard-toast {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 14px;
	padding: 14px 14px 14px 16px;
	border: 2px solid #18794e;
	border-radius: 8px;
	background: #effaf4;
	color: #11603e;
	font-size: 15px;
	font-weight: 800;
	box-shadow: 0 14px 36px rgba(41, 54, 129, .22);
	pointer-events: auto;
	animation: wizard-toast-enter .24s ease-out both;
}

.wizard-toast.is-error {
	border-color: #b42318;
	background: #fff1f0;
	color: #8d1d15;
}

.wizard-toast p {
	max-width: none;
	margin: 1px 0 0;
	overflow-wrap: anywhere;
}

.wizard-toast button {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	min-height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: currentColor;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	box-shadow: none;
}

.wizard-toast button:hover {
	background: rgba(41, 54, 129, .09);
}

.wizard-toast.is-leaving {
	animation: wizard-toast-leave .18s ease-in both;
}

@keyframes wizard-toast-enter {
	from { opacity: 0; transform: translateX(28px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes wizard-toast-leave {
	from { opacity: 1; transform: translateX(0); }
	to { opacity: 0; transform: translateX(28px); }
}

.gift-card-wizard-help {
	display: grid;
	gap: 12px;
}

.wizard-image-placeholder {
	display: grid;
	gap: 8px;
	min-height: 126px;
	align-content: center;
	padding: 15px;
	border: 2px dashed rgba(41, 54, 129, .3);
	border-radius: 7px;
	background: #fff;
	text-align: center;
}

.wizard-image-placeholder span {
	color: #8a6900;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.wizard-image-placeholder small {
	color: var(--muted);
	font-size: 14px;
}

.gift-card-wizard-mobile-progress {
	display: none;
	margin-bottom: 16px;
}

.gift-card-wizard-progress-track {
	height: 8px;
	margin-top: 8px;
	overflow: hidden;
	border-radius: 4px;
	background: var(--line);
}

.gift-card-wizard-progress-track span {
	display: block;
	height: 100%;
	background: #18794e;
}

.gift-card-wizard-mobile-progress > div:first-child {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	font-size: 14px;
}

.gift-card-wizard-mobile-progress > div:first-child strong,
.gift-card-wizard-mobile-progress > div:first-child span {
	display: block;
	white-space: nowrap;
}

.gift-card-wizard-form > button[type="submit"],
.gift-card-wizard-form > .gift-card-wizard-actions + button[type="submit"] {
	min-height: 46px;
	margin-top: 14px;
	padding: 0 22px;
	border: 2px solid var(--text);
	border-radius: 999px;
	background: var(--gold);
	color: var(--text);
	font-size: 15px;
	font-weight: 900;
}

.gift-card-wizard-actions button,
.gift-card-wizard-actions a {
	min-height: 42px;
	cursor: pointer;
	transition: background-color 120ms ease, box-shadow 120ms ease, transform 80ms ease;
}

.gift-card-wizard-actions button:active,
.gift-card-wizard-actions a:active {
	box-shadow: none;
	transform: translateY(2px) scale(.98);
}

.gift-card-wizard .htmx-request button[type="submit"] {
	cursor: wait;
	opacity: .72;
}

.wizard-summary dl {
	display: grid;
	grid-template-columns: minmax(150px, .7fr) minmax(0, 1fr);
	gap: 10px 18px;
	margin: 0;
}

.wizard-summary dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.wizard-status-success {
	color: #18794e;
	font-weight: 900;
}

@media (max-width: 980px) {
	.gift-card-wizard-layout {
		grid-template-columns: 220px minmax(0, 1fr);
	}
	.gift-card-wizard-help {
		position: static;
		grid-column: 2;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.gift-card-wizard-help h2 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.gift-card-wizard {
		padding-top: 0;
	}
	.gift-card-wizard-layout {
		display: block;
	}
	.gift-card-wizard-sidebar {
		display: none;
	}
	.gift-card-wizard-mobile-progress {
		display: block;
	}
	.gift-card-wizard-main {
		min-height: 0;
		padding: 20px 16px;
	}
	.wizard-toast-stack {
		top: 76px;
		right: 12px;
		left: 12px;
		width: auto;
	}
	.gift-card-wizard-help {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 18px;
	}
	.wizard-info-row,
	.wizard-example-grid,
	.wizard-seller-grid {
		grid-template-columns: 1fr;
	}
	.wizard-summary dl {
		grid-template-columns: 1fr;
	}
	.wizard-summary dt {
		margin-top: 8px;
	}
	.wizard-password-field {
		grid-template-columns: 1fr;
	}
	.wizard-permission-check {
		margin-left: 0;
	}
}

.account-subscription-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 12px;
}

.account-bot-subscription h4 {
	margin: 0;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.account-subscription-card-header p,
.account-subscription-note {
	max-width: none;
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.4;
}

.account-subscription-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 8px 0 14px;
}

.account-subscription-actions form {
	margin: 0;
}

.account-subscription-info {
	margin: 12px 0 16px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #f8fafc;
}

.account-subscription-info summary {
	min-height: 40px;
	padding: 10px 12px;
	cursor: pointer;
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
}

.account-subscription-info-text {
	display: grid;
	gap: 6px;
	padding: 0 12px 12px;
}

.account-subscription-info-text p {
	max-width: none;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.account-subscription-options {
	padding: 0;
	margin: 0 0 12px;
}

.account-payment-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.account-payment-grid > div {
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #f8fafc;
}

.account-payment-grid p {
	max-width: none;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.account-payment-grid p:first-child {
	color: var(--text);
	font-weight: 800;
}

.account-payment-grid p + p {
	margin-top: 6px;
}

.account-subscription-plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
}

.account-plan-button {
	display: grid;
	width: 100%;
	min-height: 64px;
	padding: 10px 12px;
	border: 2px solid var(--telegram);
	border-radius: 6px;
	color: var(--text);
	text-align: left;
	box-shadow: none;
}

.account-plan-button span:first-child {
	font-size: 15px;
	font-weight: 800;
}

.account-plan-button span:last-child {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.account-payment-modal {
	width: min(100% - 32px, 520px);
	padding: 0;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
}

.account-payment-modal::backdrop {
	background: rgba(15, 23, 42, 0.58);
}

.account-payment-modal-content {
	padding: 24px;
}

.account-payment-modal h3,
.account-payment-modal p {
	max-width: none;
}

.account-payment-modal h3 {
	margin: 0 30px 8px 0;
}

.account-payment-modal-amount {
	margin: 8px 0 18px;
	font-weight: 800;
}

.account-payment-modal-close-form {
	float: right;
	margin: 10px 10px 0 0;
}

.account-payment-modal-close {
	min-width: 32px;
	min-height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 26px;
	line-height: 1;
	box-shadow: none;
}

.account-payment-provider-options {
	display: grid;
	gap: 10px;
	margin: 18px 0;
}

.account-payment-provider {
	display: grid;
	gap: 3px;
	width: 100%;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #f8fafc;
	color: var(--text);
	text-align: left;
	box-shadow: none;
}

.account-payment-provider span,
.account-payment-modal-note {
	color: var(--muted);
	font-size: 14px;
}

.account-payment-provider.is-selected {
	border: 2px solid var(--telegram);
	background: #eef7ff;
}

.account-payment-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
}

.account-secondary-button {
	border-color: var(--line);
	background: #fff;
	color: var(--text);
}

.account-payment-modal-renewal {
	max-width: none;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.account-renewal-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	font-weight: 700;
	cursor: pointer;
}

.account-renewal-toggle input {
	position: absolute;
	inline-size: 1px;
	block-size: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.account-renewal-toggle-track {
	position: relative;
	width: 42px;
	height: 24px;
	border-radius: 999px;
	background: #94a3b8;
}

.account-renewal-toggle-track::after {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	content: "";
	transition: transform 160ms ease;
}

.account-renewal-toggle input:checked + .account-renewal-toggle-track {
	background: var(--telegram);
}

.account-renewal-toggle input:checked + .account-renewal-toggle-track::after {
	transform: translateX(18px);
}

.account-renewal-toggle input:focus-visible + .account-renewal-toggle-track {
	outline: 3px solid rgba(66, 116, 217, 0.35);
	outline-offset: 2px;
}

.account-renewal-status {
	max-width: none;
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.legal-page-content {
	width: min(100% - 32px, 920px);
	padding-top: 112px;
	padding-bottom: 72px;
}

.legal-document {
	overflow: hidden;
	border: 1px solid rgba(66, 116, 217, 0.35);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
}

.legal-document-header {
	padding: 34px clamp(22px, 5vw, 52px);
	background: #293681;
	color: #fff;
}

.legal-document-header p {
	margin: 0 0 8px;
	color: #95CCDD;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.legal-document-header h1 {
	font-size: clamp(32px, 5vw, 48px);
}

.legal-document-header time {
	display: block;
	margin-top: 14px;
	color: #D0E7E6;
	font-size: 14px;
}

.legal-document-body {
	display: grid;
	gap: 30px;
	padding: 38px clamp(22px, 5vw, 52px) 48px;
}

.legal-document-body section {
	display: grid;
	gap: 10px;
}

.legal-document-body h2 {
	margin: 0;
	color: #293681;
	font-size: 22px;
}

.legal-document-body p {
	max-width: none;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.65;
}

.legal-document-body a {
	color: #4274D9;
	font-weight: 750;
}

@media (max-width: 640px) {
	.legal-page-content {
		width: min(100% - 20px, 920px);
		padding-top: 88px;
		padding-bottom: 40px;
	}

	.legal-document {
		border-radius: 14px;
	}

	.legal-document-body {
		gap: 26px;
	}
}

.account-plan-button:hover {
	background: #eef7ff;
}

.account-danger-button {
	border-color: #b42318;
	border-radius: 6px;
	color: #b42318;
	box-shadow: none;
}

.account-danger-button:hover {
	background: #fff1f0;
}

button {
	min-height: 44px;
	padding: 0 20px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: var(--surface);
	color: var(--text);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
}

@keyframes tg-shine {
	0% {
		left: -75%;
	}
	100% {
		left: 125%;
	}
}

@media (max-width: 720px) {
	main {
		width: min(100% - 24px, 1120px);
	}

	.site-header-inner {
		width: 100%;
		min-height: 64px;
		padding: 10px 68px 10px 12px;
		position: relative;
		flex-wrap: wrap;
	}

	.brand {
		max-width: 100%;
	}

	.brand span:last-child {
		display: none;
	}

	.site-menu-toggle {
		display: inline-flex;
		position: absolute;
		top: 10px;
		right: 12px;
		z-index: 2;
	}

	.site-header-actions {
		display: none;
		flex: 0 0 100%;
		align-items: stretch;
		justify-content: flex-start;
		gap: 10px;
		padding: 2px 0 8px;
	}

	.site-menu-toggle[aria-expanded="true"] + .site-header-actions,
	.site-header-actions.is-open {
		display: flex;
	}

	.site-header-actions .session-control,
	.site-header-actions .account-link,
	.site-header-actions .header-logout-form,
	.site-header-actions .header-logout-button,
	.site-header-actions .tg-auth-button {
		width: 100%;
	}

	.site-header-actions .account-link,
	.site-header-actions .header-logout-button,
	.site-header-actions .tg-auth-button {
		justify-content: center;
	}

	h1 {
		font-size: 30px;
	}

	p {
		font-size: 17px;
	}

	.bot-choice {
		padding: 38px 0 76px;
	}

	.bot-card-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.bot-card {
		max-width: 330px;
		margin: 0 auto;
	}

	.bot-preview {
		width: min(100%, 230px);
	}

	.account-details-control {
		grid-template-columns: 1fr;
	}

	.account-details-control:has(input[readonly])::after {
		right: 14px;
		top: 22px;
	}

	.account-subnav {
		justify-content: flex-start;
	}
}

@media (max-width: 240px) {
	.site-header-inner {
		padding-right: 52px;
		padding-left: 8px;
	}

	.site-menu-toggle {
		right: 8px;
		width: 36px;
		height: 36px;
		min-height: 36px;
		border-radius: 18px;
	}

	.site-menu-toggle span {
		width: 16px;
	}

	.brand-mark {
		width: 28px;
		height: 28px;
		border-radius: 8px;
	}
}

/* Exact visual simulation of the supplied Collab.Land Nest Hub Max capture. */
body.collab-reference-page {
	display: block;
	width: 100vw;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: #293681;
}

.collab-reference-page .collab-reference {
	display: block;
	position: relative;
	left: 50%;
	width: 100vw;
	min-width: 100vw;
	max-width: none;
	margin: 0 0 0 -50vw;
	padding: 0;
	line-height: 0;
}

.collab-reference-page .collab-reference-image {
	display: block;
	width: 100vw;
	min-width: 100vw;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	object-fit: contain;
}
