/*
 * Support Chat Web — stylesheet.
 *
 * Tokens mirror the Android theme so the two surfaces look like one product:
 * SkyLight #51C9FD, SkyShadow/BrandDeep #2F6F92, InkBlack #07090A.
 */

:root {
	--sky-light: #51c9fd;
	--sky-deep: #4aa7f7;
	--brand-deep: #2f6f92;
	--ink: #07090a;

	--bg: #f2f4f5;
	--surface: #ffffff;
	--surface-low: #f7f8f8;
	--surface-high: #edeff0;
	--on-surface: #14181b;
	--on-muted: #4a4e51;
	--outline: #dcdfe1;
	--outline-soft: #e8eaec;
	--danger: #c2372f;
	--ok: #1e9e52;

	--bubble-in: #ffffff;
	--bubble-out: #d6f2ff;
	--wallpaper: #e9eef0;

	--radius-lg: 18px;
	--radius-md: 14px;
	--radius-sm: 10px;
	--shadow: 0 1px 2px rgba(7, 9, 10, 0.06), 0 8px 24px rgba(7, 9, 10, 0.06);
	--shadow-lift: 0 8px 32px rgba(7, 9, 10, 0.14);
	--nav-width: 292px;
	--motion: 320ms cubic-bezier(0.22, 0.9, 0.3, 1);
}

[data-theme='dark'] {
	--bg: #0b0e10;
	--surface: #14181b;
	--surface-low: #14181b;
	--surface-high: #22282c;
	--on-surface: #eef1f2;
	--on-muted: #c4cace;
	--outline: #454d52;
	--outline-soft: #2b3236;
	--bubble-in: #1a1f22;
	--bubble-out: #204458;
	--wallpaper: #0e1214;
	--shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4);
	--shadow-lift: 0 8px 32px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html, body {
	height: 100%;
	margin: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: var(--bg);
	color: var(--on-surface);
	-webkit-font-smoothing: antialiased;
	font-size: 15px;
	line-height: 1.45;
}

button, input, textarea, select {
	font: inherit;
	color: inherit;
}

/* Scrollbars stay out of the way; the app has none either. */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
	background: var(--outline-soft);
	border-radius: 8px;
	border: 3px solid transparent;
	background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--outline); background-clip: content-box; }

.hidden { display: none !important; }

/* ------------------------------------------------------------- pairing */
#pairing {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	background: var(--bg);
	z-index: 50;
}

.pair-card {
	width: min(880px, 100%);
	background: var(--surface);
	border-radius: 24px;
	box-shadow: var(--shadow);
	padding: 44px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
}

@media (max-width: 760px) {
	.pair-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
}

.pair-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	color: var(--brand-deep);
	margin-bottom: 26px;
}

[data-theme='dark'] .pair-brand { color: var(--sky-light); }

.pair-dot {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: linear-gradient(145deg, var(--sky-light), var(--brand-deep));
}

.pair-card h1 {
	font-size: 27px;
	line-height: 1.2;
	margin: 0 0 10px;
	letter-spacing: -0.02em;
}

.pair-card p.lede {
	margin: 0 0 24px;
	color: var(--on-muted);
	max-width: 42ch;
}

.pair-steps { margin: 0; padding-left: 20px; color: var(--on-muted); }
.pair-steps li { margin-bottom: 9px; }
.pair-steps b { color: var(--on-surface); font-weight: 600; }

.qr-frame {
	background: #fff;
	padding: 16px;
	border-radius: 20px;
	border: 1px solid var(--outline-soft);
	position: relative;
	display: grid;
	place-items: center;
	min-width: 296px;
	min-height: 296px;
}

.qr-frame canvas { display: block; border-radius: 6px; }

.qr-veil {
	position: absolute;
	inset: 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.94);
	display: grid;
	place-items: center;
	text-align: center;
	padding: 20px;
	color: #14181b;
	font-weight: 600;
}

.pair-status {
	margin-top: 14px;
	text-align: center;
	font-size: 13px;
	color: var(--on-muted);
	min-height: 20px;
}

.pair-status.err { color: var(--danger); }
.pair-status.ok { color: var(--ok); }

/* --------------------------------------------------------------- shell */
#shell { display: flex; flex-direction: column; height: 100%; }

.topbar {
	height: 60px;
	flex: 0 0 60px;
	background: var(--surface);
	border-bottom: 1px solid var(--outline-soft);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 14px 0 20px;
	z-index: 20;
}

.topbar h2 {
	font-size: 17px;
	margin: 0;
	font-weight: 650;
	letter-spacing: -0.01em;
}

.spacer { flex: 1; }

.icon-btn {
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	border-radius: 12px;
	display: grid;
	place-items: center;
	cursor: pointer;
	color: var(--on-surface);
	transition: background 160ms ease, transform 160ms ease;
}

.icon-btn:hover { background: var(--surface-high); }
.icon-btn:active { transform: scale(0.94); }
.icon-btn svg { width: 21px; height: 21px; }

.conn-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: var(--on-muted);
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--surface-high);
}

.conn-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ok);
}

.conn-pill.off .conn-dot { background: var(--danger); }

/* ----------------------------------------------------------- nav drawer */
.scrim {
	position: fixed;
	inset: 0;
	background: rgba(7, 9, 10, 0.32);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--motion);
	z-index: 30;
}

.scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: var(--nav-width);
	max-width: 86vw;
	background: var(--surface);
	border-left: 1px solid var(--outline-soft);
	z-index: 31;
	transform: translateX(100%);
	transition: transform var(--motion);
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-lift);
}

.drawer.open { transform: translateX(0); }

.drawer-head {
	padding: 20px 20px 16px;
	border-bottom: 1px solid var(--outline-soft);
	display: flex;
	align-items: center;
	gap: 12px;
}

.avatar-chip {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: linear-gradient(145deg, var(--sky-light), var(--brand-deep));
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 16px;
	flex: 0 0 auto;
}

.drawer-head .who { min-width: 0; }
.drawer-head .who b { display: block; font-size: 14px; font-weight: 650; }
.drawer-head .who span {
	display: block;
	font-size: 12px;
	color: var(--on-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nav-list { flex: 1; overflow-y: auto; padding: 10px 10px 16px; }

.nav-section {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--on-muted);
	padding: 14px 12px 6px;
}

.nav-item {
	width: 100%;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 10px 12px;
	border-radius: 12px;
	cursor: pointer;
	text-align: left;
	font-size: 14.5px;
	font-weight: 500;
	transition: background 140ms ease;
}

.nav-item:hover { background: var(--surface-high); }

.nav-item.active {
	background: var(--brand-deep);
	color: #fff;
}

[data-theme='dark'] .nav-item.active { background: var(--brand-deep); color: #fff; }

.nav-tile {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	color: #fff;
}

.nav-tile svg { width: 17px; height: 17px; }

.nav-badge {
	margin-left: auto;
	background: var(--danger);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 1px 7px;
	border-radius: 999px;
}

.nav-item.active .nav-badge { background: rgba(255, 255, 255, 0.28); }

.drawer-foot {
	padding: 12px 14px 18px;
	border-top: 1px solid var(--outline-soft);
	font-size: 11.5px;
	color: var(--on-muted);
}

/* ---------------------------------------------------------------- pages */
.pages { flex: 1; position: relative; overflow: hidden; }

.page {
	position: absolute;
	inset: 0;
	overflow-y: auto;
	display: none;
}

.page.active { display: block; animation: page-in 300ms cubic-bezier(0.22, 0.9, 0.3, 1) both; }
.page.chatpage.active { display: flex; }

/* Matches the app: the incoming page slides in from the right. */
@keyframes page-in {
	from { opacity: 0; transform: translateX(26px); }
	to { opacity: 1; transform: translateX(0); }
}

.wrap { max-width: 820px; margin: 0 auto; padding: 26px 22px 60px; }

.card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	margin-bottom: 18px;
	overflow: hidden;
}

.card-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--on-muted);
	padding: 20px 20px 8px;
}

.row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
	border-top: 1px solid var(--outline-soft);
}

.card .row:first-of-type { border-top: 0; }

.row-tile {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	color: #fff;
	flex: 0 0 auto;
}

.row-tile svg { width: 18px; height: 18px; }
.row-main { min-width: 0; flex: 1; }
.row-main b { display: block; font-weight: 550; font-size: 14.5px; }
.row-main span { display: block; font-size: 12.5px; color: var(--on-muted); }
.row-val { font-size: 13.5px; color: var(--on-muted); text-align: right; }

.btn {
	border: 0;
	border-radius: 999px;
	padding: 11px 22px;
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	background: var(--brand-deep);
	color: #fff;
	transition: transform 140ms ease, filter 140ms ease;
}

.btn:hover { filter: brightness(1.07); }
.btn:active { transform: scale(0.975); }
.btn:disabled { opacity: 0.5; cursor: default; transform: none; }

.btn.ghost {
	background: var(--surface-high);
	color: var(--on-surface);
}

.btn.danger { background: var(--danger); color: #fff; }
.btn.sm { padding: 8px 16px; font-size: 13px; }

.field {
	width: 100%;
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid var(--outline);
	background: var(--surface-low);
	outline: none;
	transition: border-color 140ms ease;
}

.field:focus { border-color: var(--sky-deep); }
textarea.field { border-radius: var(--radius-md); resize: vertical; min-height: 96px; }

.empty {
	text-align: center;
	padding: 60px 32px;
	color: var(--on-muted);
}

.empty .chip {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: var(--surface-high);
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
}

.empty .chip svg { width: 26px; height: 26px; color: var(--on-muted); }
.empty b { display: block; font-size: 16px; color: var(--on-surface); margin-bottom: 5px; }

.note {
	font-size: 12.5px;
	color: var(--on-muted);
	padding: 14px 20px 18px;
}

/* ----------------------------------------------------------- chat page */
.chatpage { display: flex; }

.inbox {
	width: 372px;
	flex: 0 0 372px;
	border-right: 1px solid var(--outline-soft);
	background: var(--surface);
	display: flex;
	flex-direction: column;
}

@media (max-width: 900px) {
	.inbox { flex: 1 1 auto; width: auto; }
	.chatpage.viewing .inbox { display: none; }
	.chatpage:not(.viewing) .thread { display: none; }
}

.inbox-head { padding: 14px 16px 10px; }

.search-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--surface-high);
	border-radius: 999px;
	padding: 10px 16px;
}

.search-pill svg { width: 17px; height: 17px; color: var(--on-muted); flex: 0 0 auto; }

.search-pill input {
	border: 0;
	background: transparent;
	outline: none;
	width: 100%;
	font-size: 14.5px;
}

.chips {
	display: flex;
	gap: 8px;
	padding: 12px 16px 12px;
	overflow-x: auto;
	scrollbar-width: none;
}

.chips::-webkit-scrollbar { display: none; }

.chip-btn {
	border: 1px solid var(--outline);
	background: var(--surface);
	border-radius: 999px;
	padding: 6px 15px;
	font-size: 13.5px;
	font-weight: 550;
	cursor: pointer;
	white-space: nowrap;
	transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

/* Selected chip: white label in BOTH themes, which is the fix carried over from the app. */
.chip-btn.on {
	background: var(--brand-deep);
	border-color: var(--brand-deep);
	color: #fff;
}

.conv-list { flex: 1; overflow-y: auto; padding-bottom: 16px; }

.conv {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 11px 16px;
	cursor: pointer;
	border: 0;
	background: transparent;
	width: 100%;
	text-align: left;
	transition: background 140ms ease;
}

.conv:hover { background: var(--surface-high); }
.conv.on { background: var(--surface-high); }

.conv-av {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 650;
	font-size: 16px;
}

.conv-body { flex: 1; min-width: 0; }

.conv-line1 {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.conv-line1 b {
	font-size: 15px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.conv-time { margin-left: auto; font-size: 11.5px; color: var(--on-muted); flex: 0 0 auto; }

.conv-line2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 1px;
}

.conv-prev {
	font-size: 13.5px;
	color: var(--on-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
}

.unread {
	background: var(--ok);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.tag {
	font-size: 10.5px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	flex: 0 0 auto;
}

.tag.pending { background: #fdefd8; color: #8a5a06; }
.tag.closed { background: var(--surface-high); color: var(--on-muted); }
[data-theme='dark'] .tag.pending { background: #4a3410; color: #f4c66a; }

/* ------------------------------------------------------------- thread */
.thread {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--wallpaper);
	position: relative;
}

/* One wallpaper layer for the whole thread, composer included. Nothing is painted on top of
 * it further down: two copies of one image can never line up. */
.thread::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(47, 111, 146, 0.12) 1px, transparent 0);
	background-size: 22px 22px;
	pointer-events: none;
}

[data-theme='dark'] .thread::before {
	background-image: radial-gradient(circle at 1px 1px, rgba(81, 201, 253, 0.09) 1px, transparent 0);
}

.thread-head {
	flex: 0 0 60px;
	height: 60px;
	background: var(--surface);
	border-bottom: 1px solid var(--outline-soft);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 12px 0 8px;
	position: relative;
	z-index: 2;
}

.thread-who {
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
	border: 0;
	background: transparent;
	padding: 4px 8px;
	border-radius: 12px;
	flex: 1;
	min-width: 0;
	text-align: left;
}

.thread-who:hover { background: var(--surface-high); }
.thread-who .conv-av { width: 38px; height: 38px; font-size: 14px; }
.thread-who b { font-size: 15.5px; font-weight: 620; display: block; }
.thread-who span { font-size: 12px; color: var(--on-muted); display: block; }

.msgs {
	flex: 1;
	overflow-y: auto;
	padding: 18px 8px 10px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.msg-wrap { display: flex; padding: 0 10px; }
.msg-wrap.out { justify-content: flex-end; }

.bubble {
	max-width: min(66%, 560px);
	padding: 7px 11px 6px;
	border-radius: 14px;
	background: var(--bubble-in);
	box-shadow: 0 1px 1px rgba(7, 9, 10, 0.09);
	font-size: 14.5px;
	word-wrap: break-word;
	white-space: pre-wrap;
	animation: bubble-rise 190ms ease-out both;
}

@keyframes bubble-rise {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

.msg-wrap.out .bubble { background: var(--bubble-out); }

.meta {
	font-size: 10.5px;
	color: var(--on-muted);
	float: right;
	margin: 6px 0 -2px 10px;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.ticks { width: 15px; height: 15px; }
.ticks.seen { color: var(--sky-deep); }

.sysline {
	text-align: center;
	margin: 8px auto;
	font-size: 12px;
	color: var(--on-muted);
	background: var(--surface);
	padding: 5px 14px;
	border-radius: 999px;
	box-shadow: 0 1px 1px rgba(7, 9, 10, 0.07);
	max-width: 78%;
}

.daystamp {
	text-align: center;
	margin: 12px auto 6px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--on-muted);
	background: var(--surface);
	padding: 4px 13px;
	border-radius: 999px;
}

/* Composer: transparent strip, so the single wallpaper layer above shows straight through. */
.composer {
	flex: 0 0 auto;
	padding: 9px 12px 13px;
	display: flex;
	align-items: flex-end;
	gap: 9px;
	position: relative;
	z-index: 2;
	background: transparent;
}

.composer textarea {
	flex: 1;
	resize: none;
	border: 0;
	outline: none;
	background: var(--surface);
	border-radius: 22px;
	padding: 12px 18px;
	max-height: 132px;
	font-size: 14.5px;
	line-height: 1.4;
	box-shadow: 0 1px 2px rgba(7, 9, 10, 0.1);
	scrollbar-width: none;
}

.composer textarea::-webkit-scrollbar { display: none; }

.send-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 0;
	background: var(--brand-deep);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	flex: 0 0 auto;
	transition: transform 140ms ease, filter 140ms ease;
	box-shadow: 0 2px 8px rgba(47, 111, 146, 0.35);
}

.send-btn:hover { filter: brightness(1.08); }
.send-btn:active { transform: scale(0.93); }
.send-btn:disabled { opacity: 0.45; box-shadow: none; }
.send-btn svg { width: 20px; height: 20px; }

.startbar {
	flex: 0 0 auto;
	padding: 12px;
	display: flex;
	justify-content: center;
	z-index: 2;
}

/* --------------------------------------------------------------- typing */
.dots { display: inline-flex; gap: 3px; align-items: center; padding: 3px 2px; }

.dots i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.4;
	animation: dot 1.1s infinite ease-in-out;
}

.dots i:nth-child(2) { animation-delay: 0.13s; }
.dots i:nth-child(3) { animation-delay: 0.26s; }

@keyframes dot {
	0%, 62%, 100% { transform: translateY(0); opacity: 0.4; }
	26% { transform: translateY(-3px); opacity: 1; }
}

/* ---------------------------------------------------------------- toast */
#toasts {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 60;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}

.toast {
	background: var(--surface);
	color: var(--on-surface);
	padding: 13px 18px;
	border-radius: 14px;
	box-shadow: var(--shadow-lift);
	font-size: 14px;
	max-width: 340px;
	border: 1px solid var(--outline-soft);
	animation: toast-in 320ms cubic-bezier(0.22, 0.9, 0.3, 1) both;
}

.toast.out { animation: toast-out 260ms ease-in both; }

@keyframes toast-in {
	from { opacity: 0; transform: translateY(18px) scale(0.97); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toast-out {
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 0; transform: translateY(12px); }
}

/* ---------------------------------------------------------------- misc */
.skel {
	background: linear-gradient(90deg, var(--surface-high) 25%, var(--outline-soft) 37%, var(--surface-high) 63%);
	background-size: 400% 100%;
	animation: shimmer 1.4s ease infinite;
	border-radius: 8px;
}

@keyframes shimmer {
	from { background-position: 100% 0; }
	to { background-position: -100% 0; }
}

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .grid2 { grid-template-columns: 1fr; } }

.stat {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 18px 20px;
	box-shadow: var(--shadow);
}

.stat b { display: block; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.stat span { font-size: 12.5px; color: var(--on-muted); }

.switch {
	position: relative;
	width: 50px;
	height: 30px;
	flex: 0 0 auto;
	border-radius: 999px;
	border: 0;
	background: var(--outline);
	cursor: pointer;
	transition: background 200ms ease;
}

.switch.on { background: var(--ok); }

.switch::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	transition: transform 200ms cubic-bezier(0.22, 0.9, 0.3, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.switch.on::after { transform: translateX(20px); }

.plan {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 22px;
	box-shadow: var(--shadow);
	border: 2px solid transparent;
}

.plan.current { border-color: var(--brand-deep); }
.plan h3 { margin: 0 0 2px; font-size: 18px; }
.plan .price { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.plan .price small { font-size: 13px; font-weight: 500; color: var(--on-muted); }
.plan ul { list-style: none; padding: 0; margin: 14px 0 18px; }
.plan li { padding: 5px 0; font-size: 14px; display: flex; gap: 9px; align-items: center; }
.plan li svg { width: 16px; height: 16px; color: var(--ok); flex: 0 0 auto; }
