.tm-home-body {
	--tm-bg: #050607;
	--tm-text: rgba(255, 255, 255, 0.92);
	--tm-muted: rgba(255, 255, 255, 0.62);
	--tm-border: rgba(255, 255, 255, 0.1);
	--tm-surface: rgba(18, 18, 18, 0.74);
	--tm-surface-2: rgba(255, 255, 255, 0.06);
	--tm-accent: #0ABAB5;
	--tm-radius: 22px;

	margin: 0;
	min-height: 100vh;
	color: var(--tm-text);
	background: radial-gradient(900px 540px at 18% 10%, rgba(10, 186, 181, 0.18), transparent 60%),
		radial-gradient(800px 520px at 84% 28%, rgba(255, 255, 255, 0.06), transparent 62%),
		var(--tm-bg);
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	overflow-x: hidden;
}

.tm-home-body * {
	box-sizing: border-box;
}

.tm-home-body img {
	max-width: 100%;
	height: auto;
}

.tm-home-body svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	display: block;
}

.tm-home-body a {
	color: inherit;
	text-decoration: none;
}

.tm-home-body a:hover {
	color: rgba(255, 255, 255, 0.96);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

.tm-home-container {
	max-width: 1160px;
	padding: 0 24px;
	margin: 0 auto;
}

.tm-home-header {
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(5, 6, 7, 0.7);
	backdrop-filter: blur(18px);
}

.tm-home-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 72px;
}

.tm-home-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--tm-accent);
}

.tm-home-brand img {
	height: 44px;
	width: auto;
	display: block;
}

.tm-home-brand__text {
	font-weight: 800;
	letter-spacing: 0.3px;
}

.tm-home-nav {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.tm-home-nav-toggle {
	position: fixed;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.tm-home-burger {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.tm-home-burger:hover {
	border-color: rgba(10, 186, 181, 0.4);
	box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
}

.tm-home-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 90;
}

.tm-home-drawer {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 100;
	overflow: hidden;
}

.tm-home-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(360px, 92vw);
	padding: 18px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(18, 18, 18, 0.86);
	backdrop-filter: blur(18px);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
	transform: translate3d(100%, 0, 0);
	transition: transform 0.25s ease;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	will-change: transform;
}

.tm-home-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tm-home-drawer__close {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.92);
}

.tm-home-drawer__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 14px 0;
}

.tm-home-drawer__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 46px;
	padding: 0 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.9);
}

.tm-home-drawer__link:hover {
	border-color: rgba(10, 186, 181, 0.35);
	box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
}

.tm-home-drawer__actions {
	display: grid;
	gap: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tm-home-btn--block {
	width: 100%;
}

.tm-home-nav-toggle:checked ~ .tm-home-nav-overlay {
	opacity: 1;
	pointer-events: auto;
}

.tm-home-nav-toggle:checked ~ .tm-home-drawer {
	pointer-events: auto;
}

.tm-home-nav-toggle:checked ~ .tm-home-drawer .tm-home-drawer__panel {
	transform: translate3d(0, 0, 0);
}

html.tm-home-menu-open,
body.tm-home-menu-open {
	overflow: hidden;
}

.tm-home-link {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.tm-home-link:hover {
	color: var(--tm-text);
}

.tm-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	height: 46px;
	padding: 0 18px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
}

.tm-home-btn--primary {
	background: var(--tm-accent);
	color: #061111;
	box-shadow: 0 18px 50px rgba(10, 186, 181, 0.26);
}

.tm-home-btn--primary:hover {
	filter: brightness(1.02);
}

.tm-home-btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.92);
}

.tm-home-btn--ghost:hover {
	border-color: rgba(10, 186, 181, 0.4);
	box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
}

.tm-home-btn--xl {
	height: 58px;
	padding: 0 24px;
	font-size: 15px;
}

.tm-hero {
	position: relative;
	padding: 72px 0 44px;
}

.tm-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--tm-home-hero-bg, none);
	background-size: cover;
	background-position: center;
	opacity: 0.28;
	filter: saturate(1.05) contrast(1.05);
	pointer-events: none;
}

.tm-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(800px 480px at 18% 30%, rgba(10, 186, 181, 0.16), transparent 62%),
		linear-gradient(180deg, rgba(5, 6, 7, 0.35), rgba(5, 6, 7, 0.9));
	pointer-events: none;
}

.tm-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 34px;
	align-items: center;
	min-height: 68vh;
}

.tm-home-services .tm-hero {
	padding: 48px 0 26px;
}

.tm-home-services .tm-hero__inner {
	min-height: auto;
}

.tm-home-service .tm-hero {
	padding: 48px 0 26px;
}

.tm-home-service .tm-hero__inner {
	min-height: auto;
}

.tm-home-feature .tm-hero {
	padding: 48px 0 26px;
}

.tm-home-feature .tm-hero__inner {
	min-height: auto;
}

.tm-hero__logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--tm-accent);
	margin-bottom: 18px;
}

.tm-hero__logo img {
	height: 66px;
	width: auto;
	display: block;
}

.tm-hero__headline {
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.02em;
	margin: 0 0 14px 0;
	font-weight: 850;
}

.tm-hero__sub {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	max-width: 44ch;
	font-size: 16px;
}

.tm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.tm-hero__card {
	border-radius: var(--tm-radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(18, 18, 18, 0.74);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
	padding: 22px;
}

.tm-hero__card-title {
	margin: 0 0 10px 0;
	font-weight: 800;
	letter-spacing: -0.01em;
	font-size: 18px;
}

.tm-hero__card-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.55;
}

.tm-section {
	padding: 54px 0;
}

.tm-section__title {
	margin: 0 0 18px 0;
	font-size: 24px;
	font-weight: 850;
	letter-spacing: -0.01em;
}

.tm-section__hint {
	margin: 0 0 26px 0;
	color: rgba(255, 255, 255, 0.64);
	max-width: 70ch;
}

/* Artists (home) */
.tm-artists {
	padding: 80px 0;
}

.tm-artists__title {
	margin: 0 0 44px;
	font-size: clamp(64px, 7.5vw, 112px);
	line-height: 0.95;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: rgba(255, 255, 255, 0.92);
}

.tm-artists__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	align-items: stretch;
	position: relative;
}

/* Prevent "flash" of stale server-rendered artist cards before JS replaces them */
.tm-artists__grid:not([data-tm-artists-loaded]) > *,
.tm-artists__grid[data-tm-artists-loaded="0"] > * {
	visibility: hidden;
}

.tm-artists__grid:not([data-tm-artists-loaded])::before,
.tm-artists__grid[data-tm-artists-loaded="0"]::before {
	content: "Загрузка…";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tm-artist-card {
	--tm-artist-radius: 28px;
	--tm-artist-green: #0ABAB5;
	position: relative;
	border-radius: var(--tm-artist-radius);
	outline: none;
	perspective: 1200px;
	min-height: 360px;
}

.tm-artist-card:focus-visible {
	box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.35);
}

.tm-artist-card__inner {
	position: absolute;
	inset: 0;
	border-radius: var(--tm-artist-radius);
	transform-style: preserve-3d;
	transition: transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tm-artist-card:hover .tm-artist-card__inner,
.tm-artist-card:focus .tm-artist-card__inner,
.tm-artist-card:focus-within .tm-artist-card__inner {
	transform: rotateY(180deg);
}

.tm-artist-card__face {
	position: absolute;
	inset: 0;
	border-radius: var(--tm-artist-radius);
	backface-visibility: hidden;
	display: flex;
	flex-direction: column;
	padding: 26px 26px;
	overflow: hidden;
}

.tm-artist-card__front {
	background: var(--tm-artist-green);
	color: #08110c;
}

.tm-artist-card__back {
	background:
		radial-gradient(900px 420px at 18% 10%, rgba(10, 186, 181, 0.22), transparent 60%),
		linear-gradient(180deg, rgba(6, 7, 8, 0.96), rgba(5, 6, 7, 0.96));
	color: rgba(255, 255, 255, 0.92);
	transform: rotateY(180deg);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.tm-artist-card__name {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.tm-artist-card__avatar {
	margin: 24px auto 0;
	width: min(220px, 72%);
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 4px solid rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tm-artist-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tm-artist-card__initial {
	font-size: 56px;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: rgba(0, 0, 0, 0.75);
}

.tm-artist-card__desc {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.84);
	max-width: 42ch;
}

.tm-artist-card__listen {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	letter-spacing: 0.06em;
	color: var(--tm-artist-green);
	text-transform: uppercase;
	text-decoration: none;
}

.tm-artist-card__listen[aria-disabled="true"] {
	opacity: 0.6;
}

.tm-artist-card__corner {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: rgba(0, 0, 0, 0.8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.tm-artist-card__back .tm-artist-card__corner {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
	.tm-artists__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.tm-artists {
		padding: 64px 0;
	}
	.tm-artists__grid {
		grid-template-columns: 1fr;
	}
	.tm-artist-card {
		min-height: 320px;
	}
}

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

.tm-feature {
	display: block;
	border-radius: 18px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	min-height: 112px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.tm-feature--link:hover {
	border-color: rgba(10, 186, 181, 0.35);
	box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
	transform: translateY(-1px);
}

.tm-feature--link:focus-visible {
	outline: none;
	border-color: rgba(10, 186, 181, 0.45);
	box-shadow: 0 0 0 4px rgba(10, 186, 181, 0.16);
}

.tm-feature__icon {
	width: 40px;
	height: 40px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(10, 186, 181, 0.12);
	border: 1px solid rgba(10, 186, 181, 0.28);
	color: var(--tm-accent);
	margin-bottom: 12px;
}

.tm-feature__icon svg {
	width: 18px;
	height: 18px;
}

.tm-feature__title {
	margin: 0;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.1px;
}

.tm-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.tm-service {
	border-radius: 18px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
}

.tm-service__link {
	display: block;
	height: 100%;
}

.tm-service--link:hover,
.tm-plan--link:hover {
	border-color: rgba(10, 186, 181, 0.35);
	box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
}

.tm-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	color: var(--tm-accent);
	font-weight: 850;
	font-size: 13px;
}

.tm-card-cta::after {
	content: "→";
}

.tm-service--wide {
	grid-column: span 3;
}

.tm-service__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.tm-service__title {
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.01em;
	font-size: 16px;
}

.tm-price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 850;
	color: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(10, 186, 181, 0.28);
	background: rgba(10, 186, 181, 0.12);
	white-space: nowrap;
}

.tm-price--muted {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.74);
}

.tm-service__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	line-height: 1.55;
}

.tm-service__list {
	margin: 0;
	padding-left: 16px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.55;
}

.tm-service__list--big {
	font-size: 15px;
	line-height: 1.65;
}

.tm-service-layout {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 16px;
	margin-top: 18px;
	align-items: start;
}

.tm-service-details {
	border-radius: 18px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(18, 18, 18, 0.78);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);

	--tm-article-text: rgba(255, 255, 255, 0.74);
	--tm-article-heading: rgba(255, 255, 255, 0.94);
	--tm-article-divider: rgba(255, 255, 255, 0.14);
}

.tm-service-content {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.65;
}

.tm-service-content a {
	color: var(--tm-accent);
	text-decoration: underline;
}

.tm-article {
	margin-top: 0;
	padding-top: 18px;
	max-width: 860px;
	position: relative;
}

.tm-service-details > :not(.tm-article) + .tm-article {
	margin-top: 18px;
}

.tm-article::before {
	content: "";
	display: block;
	width: 120px;
	height: 1px;
	border-radius: 1px;
	background: var(--tm-article-divider, rgba(255, 255, 255, 0.14));
	margin-bottom: 18px;
}

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

.tm-article p {
	margin: 0 0 18px 0;
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.8;
	color: var(--tm-article-text, rgba(255, 255, 255, 0.74));
}

.tm-article h1,
.tm-article h2,
.tm-article h3 {
	margin: 26px 0 12px 0;
	letter-spacing: -0.02em;
	color: var(--tm-article-heading, rgba(255, 255, 255, 0.94));
	font-weight: 900;
}

.tm-article h1 {
	font-size: clamp(30px, 3.6vw, 44px);
	line-height: 1.1;
}

.tm-article h2 {
	font-size: clamp(26px, 3vw, 40px);
	line-height: 1.14;
}

.tm-article h3 {
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.18;
}

.tm-article ul,
.tm-article ol {
	margin: 0 0 18px 0;
	padding-left: 22px;
	color: var(--tm-article-text, rgba(255, 255, 255, 0.74));
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.8;
}

.tm-article li {
	margin: 6px 0;
}

.tm-article hr {
	border: none;
	border-top: 1px solid var(--tm-article-divider, rgba(255, 255, 255, 0.14));
	width: 120px;
	max-width: 45%;
	margin: 24px 0;
}

.tm-article a:hover {
	filter: brightness(0.95);
}

.tm-form-card {
	border-radius: 18px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(18, 18, 18, 0.6);
}

.tm-form-card__title {
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.01em;
	font-size: 16px;
}

.tm-form-card__hint {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
}

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

.tm-field {
	display: grid;
	gap: 8px;
}

.tm-field--hp {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.tm-label {
	font-size: 13px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.74);
}

.tm-input {
	height: 46px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
	outline: none;
}

.tm-input:focus {
	border-color: rgba(10, 186, 181, 0.4);
	box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
}

.tm-help {
	margin: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
}

.tm-form__note {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
}

.tm-alert {
	margin: 0 0 14px;
	border-radius: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.92);
}

.tm-alert--success {
	border-color: rgba(10, 186, 181, 0.32);
	background: rgba(10, 186, 181, 0.1);
}

.tm-alert--error {
	border-color: rgba(239, 68, 68, 0.35);
	background: rgba(239, 68, 68, 0.12);
}

.tm-plans {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.tm-plan {
	border-radius: 18px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(18, 18, 18, 0.6);
}

.tm-plan--accent {
	border-color: rgba(10, 186, 181, 0.32);
	box-shadow: 0 18px 60px rgba(10, 186, 181, 0.14);
}

.tm-plan__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.tm-plan__title {
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.01em;
	font-size: 16px;
}

.tm-plan__list {
	margin: 0;
	padding-left: 16px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.55;
}

.tm-manifest {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.02);
}

.tm-manifest__text {
	margin: 0;
	font-size: clamp(22px, 2.6vw, 34px);
	line-height: 1.18;
	letter-spacing: -0.02em;
	font-weight: 850;
}

.tm-manifest__text span {
	display: block;
}

.tm-cta {
	padding: 64px 0 74px;
}

.tm-cta__card {
	border-radius: calc(var(--tm-radius) + 4px);
	border: 1px solid rgba(10, 186, 181, 0.32);
	background: radial-gradient(600px 320px at 24% 20%, rgba(10, 186, 181, 0.14), transparent 65%),
		rgba(18, 18, 18, 0.82);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.7);
	padding: 34px 28px;
	text-align: center;
}

.tm-cta__title {
	margin: 0 0 16px 0;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.tm-cta__note {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
}

.tm-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(0, 0, 0, 0.22);
}

.tm-footer__inner {
	padding: 46px 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.tm-footer__title {
	font-weight: 900;
	letter-spacing: -0.01em;
	margin: 0 0 12px 0;
	font-size: 14px;
}

.tm-footer__text {
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

.tm-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tm-footer__links a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.tm-footer__links a:hover {
	color: var(--tm-text);
}

.tm-footer__legal {
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
}

.tm-admin-hint {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	padding: 14px;
}

@media (max-width: 980px) {
	.tm-hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.tm-artists__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-services,
	.tm-plans {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tm-service--wide {
		grid-column: span 2;
	}

	.tm-service-layout {
		grid-template-columns: 1fr;
	}

	.tm-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.tm-home-nav {
		display: none;
	}

	.tm-home-burger {
		display: inline-flex;
	}
}

@media (max-width: 520px) {
	.tm-home-container {
		padding: 0 18px;
	}

	.tm-home-header__inner {
		height: 66px;
	}

	.tm-home-brand img {
		height: 36px;
	}

	.tm-home-nav {
		gap: 8px;
	}

	.tm-hero {
		padding-top: 48px;
	}

	.tm-hero__logo img {
		height: 54px;
		max-width: 100%;
	}

	.tm-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.tm-hero__actions .tm-home-btn {
		width: 100%;
	}

	.tm-section {
		padding: 44px 0;
	}

	.tm-section__title {
		font-size: 22px;
	}

	.tm-section__hint {
		margin-bottom: 20px;
		font-size: 14px;
	}

	.tm-artists__grid {
		grid-template-columns: 1fr;
	}

	.tm-features {
		grid-template-columns: 1fr;
	}

	.tm-cta__card {
		padding: 28px 18px;
	}

	.tm-home-btn--xl {
		width: 100%;
	}

	.tm-services,
	.tm-plans {
		grid-template-columns: 1fr;
	}

	.tm-service--wide {
		grid-column: auto;
	}
}

/* Touch devices: disable hover flip (no hover on mobile; prevents stuck states) */
@media (hover: none) {
	/* No hover on touch: prevent accidental flips, but allow tap (focus) to show back */
	.tm-artist-card:hover .tm-artist-card__inner {
		transform: none;
	}

	.tm-artist-card:focus .tm-artist-card__inner,
	.tm-artist-card:focus-within .tm-artist-card__inner {
		transform: rotateY(180deg);
	}
}
