*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--ink: #150735;
	--ink-soft: #3f385d;
	--muted: #69627d;
	--pink: #f42f82;
	--pink-deep: #cf1680;
	--purple: #7b28d9;
	--purple-deep: #4c118f;
	--violet: #9638ef;
	--lavender: #fbf4ff;
	--line: #ece6f3;
	--white: #fff;
	--shadow: 0 20px 48px rgba(34, 16, 70, 0.12);
	--soft-shadow: 0 12px 30px rgba(34, 16, 70, 0.09);
	--font: "Poppins", Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: #f8f8fb;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.page-shell {
	width: min(1420px, calc(100% - 20px));
	margin: 10px auto 14px;
	overflow: hidden;
	background: var(--white);
	border: 1px solid rgba(226, 220, 232, 0.9);
	border-radius: 10px;
	box-shadow: 0 14px 46px rgba(23, 14, 54, 0.08);
}

.container {
	width: min(1120px, calc(100% - 36px));
	margin-inline: auto;
}

.site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.logo img {
	width: 148px;
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	position: relative;
	display: none;
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 8px;
	cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label::before,
.nav-toggle-label::after {
	position: absolute;
	left: 9px;
	right: 9px;
	height: 2px;
	content: "";
	background: var(--ink);
	border-radius: 99px;
}

.nav-toggle-label span {
	top: 18px;
}

.nav-toggle-label::before {
	top: 12px;
}

.nav-toggle-label::after {
	top: 24px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	font-size: 0.88rem;
	font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
	color: var(--pink);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 42px 0 0;
	background:
		radial-gradient(circle at 93% 22%, rgba(244, 47, 130, 0.16), transparent 8%),
		radial-gradient(circle at 5.5% 72%, rgba(255, 255, 255, 0.94) 0 18px, transparent 19px),
		linear-gradient(108deg, #fff 0%, #fff8fd 45%, #f8ebff 100%);
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 460px);
	align-items: center;
	gap: 34px;
}

.hero-copy {
	position: relative;
	z-index: 5;
	padding-bottom: 54px;
}

.hero-copy::before {
	position: absolute;
	left: -112px;
	top: 96px;
	width: 88px;
	height: 66px;
	content: "";
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(223, 48, 188, 0.18) 0 2px, transparent 2.4px);
	background-size: 12px 12px;
}

.edition-pill {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin-bottom: 22px;
	padding: 0 22px;
	color: #b61dcf;
	font-size: 0.88rem;
	font-weight: 800;
	text-transform: uppercase;
	border: 1px solid rgba(207, 22, 128, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
}

.hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(2.7rem, 4.45vw, 4.05rem);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: 0;
}

.hero h1 span {
	color: transparent;
	background: linear-gradient(100deg, var(--purple) 0%, var(--pink-deep) 80%);
	-webkit-background-clip: text;
	background-clip: text;
}

.hero-copy p {
	max-width: 580px;
	margin: 26px 0 0;
	color: var(--muted);
	font-size: 1.03rem;
	line-height: 1.75;
}

.hero-art {
	position: relative;
	z-index: 1;
	min-height: 392px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-panel {
	position: relative;
	z-index: 2;
	width: min(430px, 100%);
	margin: 0 auto;
	padding: 34px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(226, 220, 232, 0.9);
	border-radius: 10px;
	box-shadow: var(--shadow);
	text-align: center;
	transform: translate(46px, -28px);
}

.review-panel img {
	width: min(230px, 76%);
	height: 118px;
	margin: 0 auto 18px;
	object-fit: contain;
	filter: none;
}

.stars {
	margin-bottom: 8px;
	color: #ffc400;
	font-size: 1.55rem;
	line-height: 1;
	letter-spacing: 2px;
}

.stars .muted {
	color: #d8d4dd;
}

.review-score,
.score {
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 800;
}

.review-score {
	font-size: 1.15rem;
}

.btn {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 34px;
	border-radius: 999px;
	font-size: 0.93rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary,
.btn-primary:visited {
	color: var(--white);
	background: linear-gradient(90deg, var(--pink) 0%, var(--pink-deep) 58%, var(--violet) 100%);
	box-shadow: 0 16px 30px rgba(207, 22, 128, 0.22);
}

.btn-secondary,
.btn-secondary:visited {
	color: var(--purple-deep);
	border: 2px solid var(--purple);
	background: var(--white);
}

.btn:hover {
	transform: translateY(-2px);
}

.review-panel .btn {
	width: 100%;
	margin-top: 24px;
}

.review-band {
	position: relative;
	z-index: 6;
	padding: 28px 20px 26px;
	color: var(--white);
	text-align: center;
	background: linear-gradient(90deg, #671bb2, #8d38ef);
	border-radius: 10px 10px 0 0;
}

.review-band::before {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: -29px;
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	content: "\2605";
	font-size: 1.7rem;
	background: linear-gradient(135deg, var(--purple), var(--violet));
	border-radius: 50%;
	box-shadow: 0 14px 24px rgba(84, 31, 151, 0.32);
	transform: translateX(-50%);
}

.review-band h2 {
	position: relative;
	z-index: 4;
	margin: 0;
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	line-height: 1.18;
	font-weight: 800;
}

.review-overview {
	padding: 42px 0 34px;
	background: linear-gradient(180deg, #fff 0%, #fbf9fd 100%);
}

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

.trust-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 92px;
	padding: 22px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
	font-weight: 800;
	text-transform: uppercase;
}

.trust-card::before {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	content: "\2713";
	color: var(--white);
	background: linear-gradient(135deg, var(--pink), var(--purple));
	border-radius: 50%;
}

.review-content-section {
	padding: 10px 0 62px;
	background: var(--white);
}

.review-content {
	width: min(980px, calc(100% - 36px));
	margin: 0 auto;
	color: var(--ink-soft);
	font-size: 1rem;
	line-height: 1.82;
}

.review-content h2,
.review-content h3,
.review-content h4 {
	color: var(--ink);
	line-height: 1.2;
}

.review-content h2 {
	margin: 34px 0 16px;
	font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.review-content h3 {
	margin: 28px 0 12px;
	font-size: 1.32rem;
}

.review-content p {
	margin: 0 0 18px;
}

.review-content a:not(.btn) {
	color: var(--pink-deep);
	font-weight: 700;
}

.author-box {
	margin: 28px 0;
	padding: 18px 22px;
	color: var(--ink);
	background: #fbf2ff;
	border: 1px solid rgba(154, 74, 216, 0.16);
	border-radius: 10px;
	box-shadow: 0 10px 28px rgba(34, 16, 70, 0.06);
}

.review-content ul,
.review-content ol {
	margin: 0 0 22px;
	padding-left: 22px;
}

.review-image {
	width: 100%;
	margin: 28px 0;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.article-cta {
	margin: 32px 0;
	text-align: center;
}

.review-verdict-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 265px;
	gap: 22px;
	align-items: stretch;
	margin: 30px 0;
	padding: 28px;
	background: linear-gradient(135deg, #fff 0%, #fff6fb 48%, #f7edff 100%);
	border: 1px solid rgba(226, 220, 232, 0.9);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.review-verdict-box h2 {
	margin-top: 8px;
}

.review-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 14px;
	color: var(--pink-deep);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(207, 22, 128, 0.18);
	border-radius: 999px;
}

.score-card {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 8px;
	padding: 22px;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.score-card strong {
	color: var(--ink);
	font-size: 2.65rem;
	line-height: 1;
}

.score-card span {
	color: var(--muted);
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
}

.score-card .stars {
	margin: 6px 0 10px;
}

.score-card .btn {
	width: 100%;
	min-height: 46px;
	padding-inline: 16px;
	font-size: 0.8rem;
}

.toc-box {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 28px 0;
	padding: 18px;
	background: #fbf9fd;
	border: 1px solid var(--line);
	border-radius: 10px;
}

.toc-box strong {
	color: var(--ink);
	margin-right: 4px;
}

.toc-box a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	color: var(--purple-deep);
	font-size: 0.82rem;
	font-weight: 800;
	background: var(--white);
	border: 1px solid rgba(123, 40, 217, 0.18);
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(34, 16, 70, 0.05);
}

.review-highlight-grid,
.feature-review-grid,
.interface-tour {
	display: grid;
	gap: 18px;
	margin: 26px 0 34px;
}

.review-highlight-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-highlight-grid div,
.feature-review-card,
.interface-tour div,
.editor-note {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.review-highlight-grid div {
	display: grid;
	gap: 8px;
	padding: 20px;
}

.review-highlight-grid strong,
.interface-tour span {
	color: var(--pink-deep);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.review-highlight-grid span {
	color: var(--ink-soft);
	font-size: 0.9rem;
	line-height: 1.55;
}

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

.feature-review-card {
	padding: 24px;
}

.feature-review-card h3,
.interface-tour h3 {
	margin-top: 0;
}

.interface-tour {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interface-tour div {
	padding: 24px;
}

.interface-tour p,
.feature-review-card p {
	margin-bottom: 0;
}

.legacy-article .bee-row {
	margin: 28px 0;
}

.legacy-article .bee-row-content {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.legacy-article .bee-col {
	min-width: 0;
}

.legacy-article .bee-col-w12 {
	grid-column: span 12;
}

.legacy-article .bee-col-w9 {
	grid-column: span 12;
}

.legacy-article .bee-col-w8 {
	grid-column: span 12;
}

.legacy-article .bee-col-w6 {
	grid-column: span 6;
}

.legacy-article .bee-col-w4 {
	grid-column: span 4;
}

.legacy-article .bee-col-w3 {
	grid-column: span 3;
}

.legacy-article .bee-col-w2 {
	grid-column: span 2;
}

.legacy-article .bee-col-w4,
.legacy-article .bee-col-w3,
.legacy-article .bee-col-w2 {
	display: grid;
	align-content: center;
	gap: 12px;
	padding: 22px;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.legacy-article .bee-block {
	min-width: 0;
}

.legacy-article .bee-heading h2,
.legacy-article .bee-heading h3,
.legacy-article .bee-heading h4 {
	margin-top: 0;
	text-align: center;
}

.legacy-article .bodytext {
	width: 100%;
}

.legacy-article .bodytext p {
	text-align: left;
}

.legacy-article .bee-image img {
	width: auto;
	max-width: 220px;
	max-height: 130px;
	margin: 0 auto;
	object-fit: contain;
	border-radius: 0;
	box-shadow: none;
}

.legacy-article .img-container {
	margin: 28px auto;
	text-align: center;
}

.legacy-article .img-container img,
.legacy-article > a > img,
.legacy-article .bodytext > img {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.legacy-article .bee-button {
	text-align: center;
}

.legacy-article .bee-button .btn,
.legacy-article .article-cta .btn {
	min-height: 46px;
	padding-inline: 24px;
	font-size: 0.82rem;
}

.legacy-article .center,
.legacy-article .bee-center {
	margin-left: auto;
	margin-right: auto;
}

.legacy-article .bee-separator {
	height: 1px;
	background: var(--line);
}

.about-authors-title {
	margin-top: 48px;
	text-align: center;
}

.legacy-article .about-author-card {
	display: grid;
	align-content: center;
	justify-items: center;
	min-height: 300px;
	padding: 34px 28px;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.legacy-article .about-author-card .bee-image {
	display: grid;
	gap: 18px;
	justify-items: center;
	overflow: visible;
}

.legacy-article .about-author-card .bee-image > img {
	width: 150px;
	height: 150px;
	max-width: 150px;
	max-height: 150px;
	object-fit: cover;
	border-radius: 50%;
	filter: grayscale(1);
	box-shadow: 0 14px 34px rgba(34, 16, 70, 0.12);
}

.legacy-article .about-author-card p {
	margin: 0;
	color: var(--ink);
	font-size: 1.22rem;
	font-weight: 600;
	line-height: 1.25;
}

.legacy-article .about-author-card a {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 50%;
	box-shadow: 0 10px 24px rgba(34, 16, 70, 0.08);
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.legacy-article .about-author-card a:hover {
	border-color: rgba(207, 22, 128, 0.45);
	transform: translateY(-2px);
}

.legacy-article .about-author-card a img {
	width: 24px;
	height: 24px;
	max-width: 24px;
	max-height: 24px;
	object-fit: contain;
	filter: grayscale(1);
	box-shadow: none;
}

.rank-card {
	position: relative;
	display: grid;
	grid-template-columns: 255px minmax(240px, 1fr) 190px 210px;
	align-items: center;
	width: min(1180px, calc(100vw - 56px));
	margin: 30px 0 30px 50%;
	min-height: 142px;
	padding: 20px 34px 20px 52px;
	background: var(--white);
	border: 1px solid rgba(229, 223, 235, 0.9);
	border-radius: 12px;
	box-shadow: var(--soft-shadow);
	line-height: normal;
	transform: translateX(-50%);
}

.rank-number {
	position: absolute;
	top: 0;
	left: 16px;
	width: 34px;
	height: 40px;
	display: grid;
	place-items: center;
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #c679d8, #8533c7);
	border-radius: 0 0 5px 5px;
}

.brand {
	display: grid;
	justify-items: center;
	gap: 12px;
}

.brand img {
	max-width: 249px;
	max-height: 90px;
	object-fit: contain;
}

.features {
	padding: 0 28px;
	border-left: 1px solid var(--line);
}

.features h3 {
	margin: 0 0 12px;
	color: var(--purple);
	font-size: 1.02rem;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: 0.07em;
}

.features ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--ink-soft);
	font-size: 0.86rem;
}

.features li {
	position: relative;
	padding-left: 22px;
}

.features li::before {
	position: absolute;
	left: 0;
	top: 2px;
	width: 14px;
	height: 14px;
	display: grid;
	place-items: center;
	content: "\2713";
	color: var(--white);
	font-size: 0.62rem;
	font-weight: 800;
	background: var(--purple);
	border-radius: 50%;
}

.online {
	display: grid;
	justify-items: center;
	gap: 5px;
	padding: 0 22px;
	text-align: center;
	border-left: 1px solid var(--line);
	border-right: 1px solid var(--line);
}

.online-icon {
	position: relative;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: #eafaf1;
	border-radius: 50%;
}

.online-icon::before,
.online-icon::after {
	position: absolute;
	left: 50%;
	content: "";
	background: #18b85f;
	transform: translateX(-50%);
}

.online-icon::before {
	top: 12px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.online-icon::after {
	bottom: 11px;
	width: 24px;
	height: 15px;
	border-radius: 15px 15px 8px 8px;
}

.online strong {
	color: var(--ink);
	font-size: 1.65rem;
	line-height: 1;
}

.online span {
	position: relative;
	color: var(--ink-soft);
	font-size: 0.82rem;
	text-transform: uppercase;
}

.online span::before {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 8px;
	content: "";
	background: #12b95e;
	border-radius: 50%;
	vertical-align: 1px;
}

.actions {
	display: grid;
	gap: 14px;
	justify-items: stretch;
	padding-left: 34px;
}

.actions .btn {
	min-height: 44px;
	padding: 0 16px;
	font-size: 0.82rem;
	white-space: nowrap;
}

.actions .btn-primary::after {
	content: "\2197";
	font-size: 1rem;
}

.alternatives-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 26px 0 36px;
}

.alt-card {
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 24px;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.alt-card img {
	width: 180px;
	height: 82px;
	object-fit: contain;
	margin: 0 auto;
}

.alt-card .btn {
	width: 100%;
	min-height: 46px;
	padding-inline: 18px;
	font-size: 0.82rem;
}

.comparison-table,
.pricing-table {
	width: 100%;
	margin: 24px 0 26px;
	border-collapse: collapse;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.comparison-table th,
.comparison-table td,
.pricing-table th,
.pricing-table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid var(--line);
}

.comparison-table th,
.pricing-table th {
	color: var(--white);
	background: linear-gradient(90deg, var(--purple-deep), var(--purple));
}

.comparison-table tr:last-child td,
.pricing-table tr:last-child td {
	border-bottom: 0;
}

.pros-cons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 34px 0;
}

.pros-cons-card {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.pros-cons-card.pros {
	background: #effaf4;
}

.pros-cons-card.cons {
	background: #fff1f5;
}

.site-footer {
	padding: 48px 0 28px;
	text-align: center;
	background: #fff;
	border-top: 1px solid var(--line);
}

.footer-link-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 28px;
}

.footer-group h3 {
	margin: 0 0 14px;
	color: var(--purple-deep);
	font-size: 0.92rem;
	text-transform: uppercase;
}

.footer-group ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-group a {
	color: var(--pink-deep);
	font-size: 0.82rem;
}

.footer-languages,
.footer-social,
.footer-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.footer-languages {
	padding-top: 18px;
	border-top: 1px solid var(--line);
	font-size: 0.82rem;
}

.footer-languages a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-languages img {
	width: 22px;
	height: 14px;
	object-fit: cover;
}

.footer-social {
	margin-top: 22px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	color: var(--ink);
	font-weight: 700;
	border: 1px solid #d8d1e4;
	border-radius: 50%;
}

.footer-social img {
	width: 17px;
	height: 17px;
	object-fit: contain;
}

.footer-meta {
	margin-top: 22px;
	gap: 0;
	color: var(--ink-soft);
	font-size: 0.82rem;
}

.footer-meta a {
	padding: 0 24px;
	border-right: 1px solid #d8d1e4;
}

.footer-meta a:last-child {
	border-right: 0;
}

.contact {
	margin-top: 14px;
	color: var(--pink-deep);
	font-size: 0.82rem;
}

.contact strong {
	display: block;
	color: var(--purple-deep);
	text-transform: uppercase;
}

.copyright {
	margin: 12px 0 0;
	color: #716d80;
	font-size: 0.78rem;
}

@media (max-width: 1050px) {
	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		padding-bottom: 0;
		text-align: center;
	}

	.hero-copy p,
	.hero h1 {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-art {
		min-height: auto;
	}

	.review-panel {
		margin-bottom: 18px;
		transform: none;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}

	.review-verdict-box,
	.feature-review-grid,
	.interface-tour {
		grid-template-columns: 1fr;
	}

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

	.rank-card {
		grid-template-columns: 242px 1fr;
		gap: 22px;
		width: auto;
		margin-left: 0;
		transform: none;
	}

	.features,
	.online,
	.actions {
		padding-left: 0;
		border-left: 0;
	}

	.online {
		border-right: 0;
		justify-items: start;
		text-align: left;
	}

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

	.alternatives-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.page-shell {
		width: min(100% - 8px, 1420px);
		margin-top: 4px;
	}

	.header-inner {
		min-height: 66px;
	}

	.logo img {
		width: 130px;
	}

	.nav-toggle-label {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: 72px;
		right: 22px;
		z-index: 20;
		width: min(260px, calc(100vw - 42px));
		display: grid;
		gap: 8px;
		padding: 14px;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 10px;
		box-shadow: var(--shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.nav-toggle:checked ~ .main-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.main-nav a {
		padding: 9px 10px;
		border-radius: 6px;
	}

	.hero {
		padding-top: 36px;
		padding-bottom: 24px;
	}

	.hero h1 {
		font-size: clamp(2.2rem, 11vw, 3.25rem);
	}

	.review-band {
		border-radius: 0;
	}

	.review-band::before {
		top: -34px;
		width: 64px;
		height: 64px;
	}

	.pros-cons {
		grid-template-columns: 1fr;
	}

	.review-highlight-grid {
		grid-template-columns: 1fr;
	}

	.review-verdict-box {
		padding: 22px;
	}

	.rank-card {
		grid-template-columns: 1fr;
		padding: 52px 22px 22px;
		text-align: center;
	}

	.features {
		display: grid;
		justify-items: center;
		padding: 0;
		text-align: center;
	}

	.features ul {
		justify-items: center;
	}

	.features li {
		width: fit-content;
		text-align: center;
	}

	.online {
		justify-items: center;
		text-align: center;
	}

	.actions {
		grid-template-columns: 1fr;
	}

	.comparison-table,
	.pricing-table {
		display: block;
		border: 0;
		border-collapse: separate;
		background: transparent;
		box-shadow: none;
	}

	.comparison-table thead,
	.pricing-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}

	.comparison-table tbody,
	.pricing-table tbody {
		display: grid;
		gap: 12px;
	}

	.comparison-table tr,
	.pricing-table tr {
		display: grid;
		padding: 14px 16px;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 10px;
		box-shadow: var(--soft-shadow);
	}

	.comparison-table td,
	.pricing-table td {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 18px;
		padding: 10px 0;
		text-align: right;
		border-bottom: 1px solid var(--line);
	}

	.comparison-table td::before,
	.pricing-table td::before {
		flex: 0 0 44%;
		content: attr(data-label);
		color: var(--purple-deep);
		font-weight: 800;
		text-align: left;
	}

	.comparison-table tr:last-child td,
	.pricing-table tr:last-child td,
	.comparison-table td:last-child,
	.pricing-table td:last-child {
		border-bottom: 0;
	}

	.legacy-article .bee-row-content {
		grid-template-columns: 1fr;
	}

	.legacy-article .bee-col-w12,
	.legacy-article .bee-col-w9,
	.legacy-article .bee-col-w8,
	.legacy-article .bee-col-w6,
	.legacy-article .bee-col-w4,
	.legacy-article .bee-col-w3,
	.legacy-article .bee-col-w2 {
		grid-column: auto;
	}

	.footer-link-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.container {
		width: min(100% - 28px, 1120px);
	}

	.btn {
		width: 100%;
	}

	.review-panel {
		width: 100%;
		max-width: min(100%, 336px);
		margin-left: auto;
		margin-right: auto;
		padding: 28px 22px;
	}

	.hero-inner,
	.hero-art {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.trust-card {
		align-items: flex-start;
	}

	.rank-card {
		padding: 52px 22px 22px;
	}

	.alt-card,
	.pros-cons-card {
		padding: 20px;
	}

	.footer-link-grid {
		grid-template-columns: 1fr;
	}

	.footer-meta {
		display: grid;
		gap: 8px;
	}

	.footer-meta a {
		border-right: 0;
	}
}


.review-content .centered-title,
.review-content .centered-text {
	text-align: center;
}

.review-content .article-cta .btn {
	width: auto;
	min-width: min(280px, 100%);
}

.review-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.review-hero h1 {
	font-size: clamp(2.2rem, 3.8vw, 3.72rem);
}

@media (max-width: 560px) {
	.edition-pill {
		width: 100%;
		max-width: 100%;
		min-height: auto;
		justify-content: center;
		padding: 8px 14px;
		text-align: center;
		font-size: 0.72rem;
		line-height: 1.25;
		white-space: normal;
	}

	.hero h1 {
		max-width: 100%;
		font-size: 1.62rem;
		line-height: 1.1;
		overflow-wrap: break-word;
	}

	.hero h1 span {
		display: block;
	}

	.hero-copy p {
		max-width: 320px;
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.hero .btn,
	.review-panel .btn,
	.article-cta .btn,
	.alt-card .btn {
		max-width: 100%;
		padding: 10px 18px;
		text-align: center;
		line-height: 1.2;
		white-space: normal;
	}

	.review-band h2 {
		max-width: 330px;
		margin-inline: auto;
		font-size: 1.08rem;
		line-height: 1.25;
	}
}


.quick-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 26px 0 30px;
	padding: 18px;
	background: #fbf9fd;
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.quick-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	color: var(--purple-deep);
	font-size: 0.88rem;
	font-weight: 800;
	background: #fff;
	border: 1px solid rgba(154, 74, 216, 0.18);
	border-radius: 999px;
	overflow-wrap: anywhere;
}

.performer-section {
	margin: 38px 0 44px;
	padding-top: 8px;
	border-top: 1px solid var(--line);
	scroll-margin-top: 88px;
}

.profile-facts {
	display: grid;
	gap: 11px;
	margin: 18px 0 24px;
	padding: 22px;
	list-style: none;
	background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
	border: 1px solid rgba(154, 74, 216, 0.18);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.profile-facts li {
	display: grid;
	grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(226, 220, 232, 0.82);
	overflow-wrap: anywhere;
}

.profile-facts li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.profile-facts strong {
	color: var(--ink);
	font-weight: 800;
}

.profile-links {
	display: grid;
	gap: 8px;
	justify-items: start;
}

.editor-note {
	padding: 18px 20px;
	color: var(--ink);
	background: #fff7fb;
	border-left: 4px solid var(--pink);
	border-radius: 8px;
}

.camgirl-guide .guide-lead {
	color: var(--ink);
	font-size: 1.12rem;
	line-height: 1.82;
}

.camgirl-guide .summary-grid,
.camgirl-guide .timeline-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 24px 0 32px;
}

.camgirl-guide .summary-card,
.camgirl-guide .timeline-card,
.camgirl-guide .income-box,
.camgirl-guide .source-note {
	padding: 22px;
	background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
	border: 1px solid rgba(154, 74, 216, 0.18);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.camgirl-guide .summary-card,
.camgirl-guide .timeline-card {
	display: grid;
	gap: 8px;
}

.camgirl-guide .summary-card strong,
.camgirl-guide .timeline-card strong {
	color: var(--ink);
	font-size: 1.02rem;
}

.camgirl-guide .summary-card span,
.camgirl-guide .timeline-card span {
	color: var(--ink-soft);
	line-height: 1.68;
}

.camgirl-guide .step-list {
	display: grid;
	gap: 14px;
	padding-left: 0;
	list-style: none;
	counter-reset: guide-step;
}

.camgirl-guide .step-list li {
	position: relative;
	padding: 20px 22px 20px 72px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
	counter-increment: guide-step;
}

.camgirl-guide .step-list li::before {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	content: counter(guide-step);
	color: #fff;
	font-weight: 800;
	background: linear-gradient(135deg, var(--pink), var(--purple));
	border-radius: 50%;
}

.camgirl-guide .check-list {
	display: grid;
	gap: 11px;
	padding-left: 0;
	list-style: none;
}

.camgirl-guide .check-list li {
	position: relative;
	padding-left: 28px;
}

.camgirl-guide .check-list li::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 10px;
	height: 10px;
	content: "";
	background: var(--pink);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(244, 47, 130, 0.12);
}

.camgirl-guide .income-box {
	margin: 24px 0 28px;
	background: #f8fbff;
}

.camgirl-guide .income-box h3,
.camgirl-guide .source-note h3 {
	margin-top: 0;
}

.camgirl-guide .source-note {
	margin: 24px 0 30px;
	background: #fffaf3;
}

.camgirl-guide .source-list {
	padding: 20px 24px 20px 42px;
	background: #fbf9fd;
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--soft-shadow);
}

.performer-table td:first-child {
	font-weight: 800;
}

.performer-table td {
	overflow-wrap: anywhere;
}

@media (max-width: 640px) {
	.quick-nav {
		display: grid;
		grid-template-columns: 1fr 1fr;
		padding: 14px;
	}

	.quick-nav a {
		justify-content: center;
		text-align: center;
	}

	.profile-facts {
		padding: 18px;
	}

	.profile-facts li {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.camgirl-guide .summary-grid,
	.camgirl-guide .timeline-grid {
		grid-template-columns: 1fr;
	}

	.camgirl-guide .step-list li {
		padding: 18px 18px 18px 64px;
	}
}
