/* ============================================================
   BATHROOM CLEANING — page-specific styles
   ============================================================
   Overrides the base tokens declared in theme /style.css with this
   page's palette ("aqua") and editorial typography. Edit freely:
   this file is loaded after the base stylesheet, so anything here
   wins.
   ============================================================ */

:root{
	/* Aqua palette */
	--bg:        #F4F7F6;
	--bg-warm:   #EDF3F2;
	--bg-sub:    #E2ECEB;
	--card:      #FFFFFF;
	--ink:       #0F2225;
	--ink-2:     #3A4F52;
	--ink-3:     #6B7D80;
	--rule:      #D6DEDE;
	--accent:    #1F6F7A;
	--accent-2:  #6FB4BA;
	--accent-soft:#CDE2E3;
	--highlight: #FFE9A3;

	/* Editorial typography */
	--serif: 'Newsreader', 'Times New Roman', serif;
	--sans:  'DM Sans', system-ui, sans-serif;
	--mono:  'IBM Plex Mono', ui-monospace, monospace;
}

/* ============================================================
   BASE TYPOGRAPHY for this page
   ============================================================ */
h1,h2,h3{
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--ink);
}
h1{ font-size: clamp(54px, 8vw, 112px); }
h2{ font-size: clamp(36px, 4.5vw, 60px); font-weight: 500; }
h3{ font-size: clamp(24px, 2.6vw, 34px); }

.accent{ color: var(--accent); }
.serif-italic{ font-style: italic; }

.eyebrow{
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-2);
}

/* ============================================================
   SUBNAV (breadcrumbs strip — sits right under the site header)
   ============================================================ */
.subnav{
	border-bottom: 1px solid var(--rule);
	background: var(--bg-warm);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.subnav-inner{
	display: flex; align-items: center; gap: 28px;
	height: 38px;
	overflow-x: auto;
	scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar{ display:none; }
.subnav-inner .crumb{ color: var(--ink-3); white-space: nowrap; }
.subnav-inner .crumb.is-active{ color: var(--ink); }
.subnav-inner .sep{ color: var(--ink-3); opacity:.5; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
	padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px);
	position: relative;
	overflow: hidden;
}
.hero-grid{
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.hero-copy .eyebrow{ margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
.hero-copy .eyebrow .dot-pulse{
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
	animation: pulse 2s infinite;
}
@keyframes pulse{
	0%{ box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent); }
	70%{ box-shadow: 0 0 0 10px transparent; }
	100%{ box-shadow: 0 0 0 0 transparent; }
}
.hero h1{
	font-size: clamp(56px, 9vw, 132px);
	margin-bottom: 28px;
}
.hero h1 .ital{ font-style: italic; color: var(--accent); }
.hero-sub{
	font-size: clamp(17px, 1.4vw, 20px);
	color: var(--ink-2);
	max-width: 50ch;
	line-height: 1.5;
	margin-bottom: 36px;
}
.hero-ctas{ display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
	display: inline-flex; align-items: center; gap: 10px;
	padding: 14px 22px;
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--ink); color: var(--bg); }
.btn-primary:hover{ background: var(--accent); color: #fff; }
.btn-ghost{ border-color: var(--rule); color: var(--ink); background: transparent; }
.btn-ghost:hover{ border-color: var(--ink); }
.btn .arrow{ transition: transform .2s ease; }
.btn:hover .arrow{ transform: translateX(3px); }

.hero-disclosure{ margin-top: 20px; font-size: 12px; color: var(--ink-3); }

/* editor's pick card */
.pick-card{
	background: var(--card);
	border-radius: var(--r-lg);
	padding: 22px;
	position: relative;
	border: 1px solid var(--rule);
	box-shadow:
		0 1px 0 rgba(255,255,255,.6) inset,
		0 18px 50px -20px rgba(15, 34, 37, 0.18);
}
.pick-tag{
	position: absolute;
	top: -14px; left: 22px;
	background: var(--accent);
	color: #fff;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 7px 12px;
	border-radius: var(--r-pill);
}
.pick-img{
	aspect-ratio: 1/1;
	background:
		radial-gradient(circle at 35% 25%, color-mix(in oklab, var(--accent-soft) 70%, white) 0%, transparent 55%),
		radial-gradient(circle at 70% 80%, color-mix(in oklab, var(--accent-2) 50%, white) 0%, transparent 55%),
		var(--bg-warm);
	border-radius: var(--r-md);
	display: flex; align-items: center; justify-content: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 18px;
}
.pick-img::after{
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent 0 8px,
		color-mix(in oklab, var(--ink) 4%, transparent) 8px 9px
	);
	opacity: .5;
}
.pick-img .placeholder{
	position: relative; z-index: 1;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink-2);
	background: color-mix(in oklab, var(--bg) 80%, transparent);
	padding: 6px 10px;
	border-radius: var(--r-pill);
	letter-spacing: 0.08em;
}
.pick-header{ display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 10px; }
.pick-title{ font-family: var(--serif); font-size: 26px; line-height: 1.1; color: var(--ink); }
.pick-price{
	font-family: var(--mono);
	font-size: 13px;
	color: var(--ink);
	white-space: nowrap;
	background: var(--bg-sub);
	padding: 6px 10px;
	border-radius: var(--r-sm);
}
.pick-desc{ color: var(--ink-2); font-size: 14px; margin-bottom: 16px; }
.pick-row{ display: flex; gap: 8px; align-items: center; }
.pick-row .btn{ padding: 12px 18px; font-size: 13px; flex: 1; justify-content: center; }
.stars{ display: inline-flex; gap: 1px; color: var(--accent); font-size: 12px; }
.pick-meta{
	display: flex; gap: 12px; align-items: center;
	font-size: 12px; color: var(--ink-3);
	margin-bottom: 14px;
}

/* ============================================================
   PRESS STRIP
   ============================================================ */
.press{
	margin-top: clamp(48px, 6vw, 88px);
	padding: 18px 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
}
.press-inner{
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; flex-wrap: wrap;
}
.press-label{
	font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
	text-transform: uppercase; color: var(--ink-3);
}
.press-list{
	display: flex; gap: 36px; flex-wrap: wrap;
	font-family: var(--serif); font-style: italic;
	color: var(--ink-2); font-size: 22px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head{
	display: flex; align-items: end; justify-content: space-between;
	gap: 24px; flex-wrap: wrap;
	margin-bottom: clamp(28px, 4vw, 48px);
}
.sec-head .eyebrow{ display: block; margin-bottom: 12px; }
.sec-head h2{ max-width: 16ch; }
.sec-head .lede{
	max-width: 44ch;
	color: var(--ink-2);
	font-size: 17px;
}

/* ============================================================
   TIKTOK RAIL
   ============================================================ */
.tiktok-sec{ background: var(--bg-warm); padding: var(--section-y) 0; }
.tiktok-rail{
	display: flex; gap: 18px;
	overflow-x: auto; overflow-y: hidden;
	scroll-snap-type: x mandatory;
	padding: 8px 0 24px;
	padding-left: max(var(--pad-x), calc((100vw - var(--w-bleed))/2 + var(--pad-x)));
	padding-right: var(--pad-x);
	scrollbar-width: none;
}
.tiktok-rail::-webkit-scrollbar{ display:none; }
.tt-card{
	flex: 0 0 320px;
	scroll-snap-align: start;
	border-radius: var(--r-md);
	overflow: hidden;
	background: #000;
	position: relative;
	border: 1px solid var(--rule);
}
.tt-card iframe{
	width: 100%;
	aspect-ratio: 9/16;
	border: 0;
	display: block;
}
/* Poster facade — shown until the card is tapped and swaps to its embed */
.tt-poster{
	display: block;
	width: 100%;
	aspect-ratio: 9/16;
	padding: 0; border: 0;
	background: #000;
	cursor: pointer;
	position: relative;
}
.tt-poster{ overflow: hidden; }
.tt-poster img{
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}
.tt-poster:hover img{ transform: scale(1.04); }
/* scrim: legibility for the play button and the TikTok pill */
.tt-poster::after{
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 35%),
		rgba(0, 0, 0, 0.18);
	transition: background .2s ease;
	pointer-events: none;
	z-index: 1;
}
.tt-poster:hover::after{
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 35%),
		rgba(0, 0, 0, 0.05);
}
.tt-play{
	position: absolute;
	inset: 0;
	margin: auto;
	width: 64px; height: 64px;
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
	transition: transform .2s ease;
	pointer-events: none;
	z-index: 2;
}
.tt-play .material-symbols-outlined{
	font-size: 64px;
	font-variation-settings: 'FILL' 1;
}
.tt-poster:hover .tt-play{ transform: scale(1.1); }
.tt-ext{
	position: absolute;
	bottom: 12px; left: 12px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	padding: 7px 11px;
	border-radius: var(--r-pill);
	backdrop-filter: blur(6px);
	transition: background .15s ease;
}
.tt-ext:hover{ background: rgba(0, 0, 0, 0.85); }
.rail-controls{
	display: flex; justify-content: space-between; align-items: center;
	margin-bottom: 24px;
}
.rail-arrows{ display: flex; gap: 6px; }
.rail-arrows button{
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid var(--rule);
	background: var(--card);
	color: var(--ink);
	cursor: pointer;
	font-size: 16px;
	transition: background .15s ease, border-color .15s ease;
}
.rail-arrows button:hover{ background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ============================================================
   RANKED TOP PICKS
   ============================================================ */
.picks-list{ display: flex; flex-direction: column; gap: clamp(36px, 5vw, 64px); }
.pick-row-large{
	display: grid;
	grid-template-columns: 80px 1.1fr 1fr;
	gap: clamp(20px, 3vw, 48px);
	align-items: start;
	padding-bottom: clamp(36px, 5vw, 64px);
	border-bottom: 1px solid var(--rule);
}
.pick-row-large:last-child{ border-bottom: none; padding-bottom: 0; }
.rank{
	font-family: var(--serif);
	font-size: clamp(56px, 6vw, 96px);
	color: var(--accent);
	line-height: 0.85;
	font-weight: 400;
}
.pick-body .award{
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 10px;
	display: inline-block;
	border: 1px solid var(--accent-soft);
	background: color-mix(in oklab, var(--accent-soft) 40%, transparent);
	padding: 5px 10px;
	border-radius: var(--r-pill);
}
.pick-body h3{ margin-bottom: 14px; max-width: 18ch; }
.pick-body .why{ color: var(--ink-2); margin-bottom: 18px; }
.spec-list{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
	font-size: 13px;
	margin-bottom: 22px;
}
.spec-list .k{ color: var(--ink-3); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.spec-list .v{ color: var(--ink); font-weight: 500; }
.spec-list > div{ display: flex; flex-direction: column; gap: 2px; padding-top: 8px; border-top: 1px solid var(--rule); }

.pros-cons{
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 22px;
}
.pros-cons .col{ font-size: 13px; color: var(--ink-2); }
.pros-cons .col h4{
	font-family: var(--mono);
	font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--ink); margin: 0 0 8px;
}
.pros-cons ul{ margin: 0; padding: 0; }
.pros-cons li{ list-style: none; padding-left: 18px; position: relative; margin-bottom: 4px; }
.pros-cons .pro li::before{
	content: ""; position: absolute; left: 0; top: 8px;
	width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.pros-cons .con li::before{
	content: ""; position: absolute; left: 0; top: 9px;
	width: 8px; height: 1.5px; background: var(--ink-3);
}

.pick-actions{ display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.price-tag{
	font-family: var(--mono);
	font-size: 13px;
	color: var(--ink);
	background: var(--bg-sub);
	padding: 8px 12px;
	border-radius: var(--r-sm);
}
/* Desktop: price lives inside the buy button; the standalone tag is mobile-only */
.pick-actions .price-tag{ display: none; }
.btn .btn-price{ opacity: .75; font-weight: 500; }

.pick-media{
	aspect-ratio: 1/1;
	border-radius: var(--r-md);
	background:
		radial-gradient(circle at 30% 20%, color-mix(in oklab, var(--accent-soft) 80%, white) 0%, transparent 50%),
		radial-gradient(circle at 75% 75%, color-mix(in oklab, var(--accent-2) 60%, white) 0%, transparent 55%),
		var(--bg-warm);
	position: relative;
	overflow: hidden;
	border: 1px solid var(--rule);
}
.pick-media .ph{
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--ink-2);
	letter-spacing: 0.08em;
}
.pick-media .ph span{
	background: color-mix(in oklab, var(--bg) 85%, transparent);
	padding: 6px 12px; border-radius: var(--r-pill);
}
.pick-media::after{
	content: "";
	position: absolute; inset: 0;
	background: repeating-linear-gradient(
		-45deg,
		transparent 0 10px,
		color-mix(in oklab, var(--ink) 3%, transparent) 10px 11px
	);
}
.pick-media .floating-tag{
	position: absolute;
	bottom: 14px; left: 14px;
	z-index: 2;
	background: var(--card);
	border: 1px solid var(--rule);
	padding: 8px 12px;
	border-radius: var(--r-pill);
	font-family: var(--mono); font-size: 11px;
	color: var(--ink-2);
	display: flex; align-items: center; gap: 8px;
}
.pick-media .floating-tag .star{ color: var(--accent); }

/* ============================================================
   FEATURED PICKS — card grid w/ local compact toggle
   ============================================================ */
.featured-sec{ padding: var(--section-y) 0; }
.featured-head{
	display: flex; justify-content: space-between; align-items: end;
	gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 44px);
}
.featured-head .lede{ color: var(--ink-2); max-width: 50ch; font-size: 16px; margin-top: 14px; }
.view-toggle{
	display: inline-flex;
	background: var(--card);
	border: 1px solid var(--rule);
	border-radius: var(--r-pill);
	padding: 4px;
	flex-shrink: 0;
}
.view-toggle button{
	background: transparent; border: 0; cursor: pointer;
	padding: 8px 16px;
	border-radius: var(--r-pill);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-3);
	transition: background .15s ease, color .15s ease;
}
.view-toggle button.is-active{ background: var(--ink); color: var(--bg); }

.featured-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.fcard{
	display: flex;
	flex-direction: column;
	background: var(--card);
	border: 1px solid var(--rule);
	border-radius: var(--r-md);
	overflow: hidden;
	text-decoration: none; color: inherit;
	position: relative;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.fcard:hover{
	transform: translateY(-3px);
	border-color: var(--accent);
	box-shadow: 0 10px 30px -10px color-mix(in oklab, var(--accent) 30%, transparent);
}
.fcard .img{
	aspect-ratio: 1/1;
	background:
		radial-gradient(circle at 35% 30%, color-mix(in oklab, var(--accent-soft) 80%, white) 0%, transparent 55%),
		radial-gradient(circle at 70% 80%, color-mix(in oklab, var(--accent-2) 55%, white) 0%, transparent 60%),
		var(--bg-warm);
	position: relative;
	display: flex; align-items: center; justify-content: center;
	border-bottom: 1px solid var(--rule);
	overflow: hidden;
}
.fcard .img::after{
	content: ""; position: absolute; inset: 0;
	background: repeating-linear-gradient(45deg, transparent 0 8px, color-mix(in oklab, var(--ink) 4%, transparent) 8px 9px);
	opacity: .5;
}
.fcard .img .ph{
	position: relative; z-index: 1;
	font-family: var(--mono); font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--ink-2);
	background: color-mix(in oklab, var(--bg) 85%, transparent);
	padding: 5px 9px; border-radius: var(--r-pill);
	text-align: center;
}
.fcard .body{
	padding: 16px;
	display: flex; flex-direction: column;
	gap: 6px; flex: 1;
}
.fcard .cat{
	font-family: var(--mono);
	font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--accent);
}
.fcard .title{
	font-family: var(--serif);
	font-size: 21px;
	line-height: 1.15;
	color: var(--ink);
	font-weight: 400;
}
.fcard .foot{
	margin-top: auto;
	padding-top: 14px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px;
}
.fcard .price{ font-family: var(--mono); font-size: 13px; color: var(--ink); }
.fcard .cta{
	background: var(--ink); color: var(--bg);
	padding: 8px 14px; border-radius: var(--r-pill);
	font-size: 12px; font-weight: 600;
	display: inline-flex; align-items: center; gap: 6px;
	transition: background .15s ease, color .15s ease;
}
.fcard:hover .cta{ background: var(--accent); color: #fff; }

/* compact view */
.featured-sec[data-view="compact"] .featured-grid{
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.featured-sec[data-view="compact"] .fcard{
	flex-direction: row;
	align-items: stretch;
}
.featured-sec[data-view="compact"] .fcard .img{
	flex: 0 0 96px;
	aspect-ratio: 1;
	border-bottom: none;
	border-right: 1px solid var(--rule);
}
.featured-sec[data-view="compact"] .fcard .img .ph{ display: none; }
.featured-sec[data-view="compact"] .fcard .body{ padding: 12px 14px; gap: 3px; }
.featured-sec[data-view="compact"] .fcard .title{ font-size: 15px; }
.featured-sec[data-view="compact"] .fcard .foot{ padding-top: 6px; }
.featured-sec[data-view="compact"] .fcard .cta{ padding: 5px 11px; font-size: 11px; }

@media (max-width: 980px){
	.featured-grid{ grid-template-columns: repeat(2, 1fr); }
	.featured-sec[data-view="compact"] .featured-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
	.featured-grid{ grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-sec{ background: var(--bg-warm); }
.compare{
	background: var(--card);
	border: 1px solid var(--rule);
	border-radius: var(--r-lg);
	overflow: hidden;
	font-size: 14px;
}
.compare table{ width: 100%; border-collapse: collapse; }
.compare th, .compare td{
	padding: 18px 18px;
	text-align: left;
	border-bottom: 1px solid var(--rule);
	vertical-align: middle;
}
.compare thead th{
	background: var(--bg-warm);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-2);
	font-weight: 500;
}
.compare tbody tr:last-child td{ border-bottom: none; }
.compare tbody tr:hover{ background: color-mix(in oklab, var(--accent-soft) 25%, transparent); }
.compare .name{
	font-family: var(--serif);
	font-size: 19px;
	color: var(--ink);
}
.compare .name small{
	display: block;
	font-family: var(--sans);
	font-size: 12px;
	color: var(--ink-3);
	margin-top: 2px;
}
.compare .pill-rank{
	display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
}
.compare .check{ color: var(--accent); font-weight: 700; }
.compare .dash{ color: var(--ink-3); }
.compare .buy{
	background: var(--ink);
	color: var(--bg);
	padding: 8px 14px;
	border-radius: var(--r-pill);
	font-size: 12px;
	font-weight: 600;
	display: inline-flex; align-items: center; gap: 6px;
	white-space: nowrap;
}
.compare .buy:hover{ background: var(--accent); color: #fff; }

/* ============================================================
   EDITORIAL ARTICLE + KEY TAKEAWAYS
   ============================================================ */
.editorial{ font-size: 19px; line-height: 1.7; }
.editorial p{ margin: 0 0 22px; color: var(--ink-2); }
.editorial p > a, .editorial a.inline{
	color: var(--accent);
	border-bottom: 1px solid color-mix(in oklab, var(--accent) 35%, transparent);
	font-weight: 500;
}
.editorial a.inline:hover{ border-bottom-color: var(--accent); background: color-mix(in oklab, var(--accent-soft) 50%, transparent); }
.editorial h2{ margin: 40px 0 18px; font-size: clamp(30px, 3.4vw, 44px); }
.editorial blockquote{
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(24px, 2.4vw, 32px);
	color: var(--ink);
	line-height: 1.25;
	margin: 36px 0;
	padding-left: 24px;
	border-left: 2px solid var(--accent);
}
.editorial blockquote cite{
	display: block;
	margin-top: 14px;
	font-family: var(--mono);
	font-style: normal;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.takeaways{
	background: var(--card);
	border: 1px solid var(--rule);
	border-radius: var(--r-lg);
	padding: clamp(24px, 3vw, 36px);
	margin: 40px 0;
	position: relative;
}
.takeaways .tag{
	position: absolute;
	top: -14px; left: 22px;
	background: var(--ink);
	color: var(--bg);
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 7px 12px;
	border-radius: var(--r-pill);
}
.takeaways h3{
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: 14px;
	font-weight: 600;
}
.takeaways ul{ margin: 0; padding: 0; list-style: none; }
.takeaways li{
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 10px;
	padding: 14px 0;
	border-top: 1px solid var(--rule);
	font-size: 16px;
	line-height: 1.45;
	color: var(--ink);
}
.takeaways li:first-child{ border-top: none; padding-top: 4px; }
.takeaways li .n{
	font-family: var(--mono);
	font-size: 11px;
	color: var(--accent);
	padding-top: 3px;
}

.author-block{
	display: flex; align-items: center; gap: 16px;
	padding: 24px 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	margin: 32px 0;
}
.author-block .avatar{
	width: 56px; height: 56px; border-radius: 50%;
	background:
		radial-gradient(circle at 35% 30%, color-mix(in oklab, var(--accent-soft) 80%, white) 0%, transparent 60%),
		var(--accent-2);
	border: 1px solid var(--rule);
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}
.author-block .avatar img{
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.author-block .avatar .monogram{
	font-family: var(--serif);
	font-style: italic;
	font-size: 20px;
	color: var(--ink);
}
.author-block .meta{ font-size: 13px; color: var(--ink-3); line-height: 1.4; }
.author-block .meta b{ color: var(--ink); font-weight: 600; font-size: 14px; display: block; margin-bottom: 2px; }

/* AI-friendly card grid */
.ai-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 24px;
}
.ai-card{
	background: var(--card);
	border: 1px solid var(--rule);
	border-radius: var(--r-md);
	padding: 20px;
}
.ai-card .icon{
	width: 44px; height: 44px;
	border-radius: 10px;
	background: var(--accent-soft);
	margin-bottom: 14px;
	display: flex; align-items: center; justify-content: center;
	color: var(--accent);
}
.ai-card .icon .material-symbols-outlined{
	font-size: 24px;
	line-height: 1;
}
.ai-card h4{ font-family: var(--serif); font-size: 22px; font-weight: 400; margin: 0 0 6px; }
.ai-card p{ color: var(--ink-2); font-size: 14px; margin: 0; line-height: 1.5; }

/* ============================================================
   TRANSCRIPT SECTION
   ============================================================ */
.transcript-sec{
	background: var(--bg-sub);
	padding: var(--section-y) 0;
}
.transcript-card{
	display: grid;
	grid-template-columns: 1fr clamp(340px, 34vw, 450px);
	gap: clamp(32px, 4vw, 56px);
	align-items: center;
	background: var(--card);
	border-radius: var(--r-lg);
	padding: clamp(24px, 3vw, 40px);
	border: 1px solid var(--rule);
}
.transcript-body .quote{
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(26px, 2.8vw, 40px);
	color: var(--ink);
	line-height: 1.3;
	margin: 0;
}
.transcript-products{
	display: flex; flex-direction: column; gap: 10px;
}
.transcript-products .mini-product{
	display: flex; align-items: center; gap: 12px;
	padding: 10px;
	border: 1px solid var(--rule);
	border-radius: var(--r-md);
	text-decoration: none;
	color: inherit;
	transition: border-color .15s ease, background .15s ease;
}
.transcript-products .mini-product:hover{
	border-color: var(--accent);
	background: color-mix(in oklab, var(--accent-soft) 30%, transparent);
}
.mini-product .thumb{
	width: 72px; height: 72px;
	border-radius: var(--r-sm);
	background:
		radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--accent-soft) 80%, white) 0%, transparent 60%),
		var(--bg-warm);
	flex-shrink: 0;
	border: 1px solid var(--rule);
	overflow: hidden;
}
.mini-product .thumb:has(img){ background: #fff; }
.mini-product .thumb img{
	width: 100%; height: 100%;
	object-fit: contain;
	display: block;
}
.mini-product .info{ flex: 1; min-width: 0; }
.mini-product .info b{ display: block; font-weight: 600; font-size: 13px; color: var(--ink); }
.mini-product .info .price{ font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.mini-product .arrow{ color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid{
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}
.faq-grid h2{ position: sticky; top: 100px; }
.faq-list details{
	border-top: 1px solid var(--rule);
	padding: 0;
}
.faq-list summary{
	list-style: none;
	padding: 22px 0;
	cursor: pointer;
	font-family: var(--serif);
	font-size: clamp(20px, 2vw, 26px);
	color: var(--ink);
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	transition: color .15s ease;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list summary:hover{ color: var(--accent); }
.faq-list summary .plus{
	font-family: var(--sans);
	font-weight: 300;
	font-size: 28px;
	line-height: 1;
	color: var(--ink-2);
	transition: transform .25s ease;
	width: 24px; text-align: center;
	flex-shrink: 0;
}
.faq-list details[open] summary .plus{ transform: rotate(45deg); color: var(--accent); }
.faq-list .a{
	padding: 0 0 24px;
	font-size: 16px;
	color: var(--ink-2);
	line-height: 1.6;
	max-width: 60ch;
}
.faq-list .a a{ color: var(--accent); border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{
	background: var(--ink);
	color: var(--bg);
	padding: clamp(60px, 8vw, 100px) 0;
	position: relative;
	overflow: hidden;
}
.final-cta::before{
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 30%, color-mix(in oklab, var(--accent) 70%, transparent) 0%, transparent 50%),
		radial-gradient(circle at 20% 80%, color-mix(in oklab, var(--accent-2) 60%, transparent) 0%, transparent 50%);
	opacity: .55;
}
.final-cta-inner{ position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.final-cta h2{ color: var(--bg); font-size: clamp(40px, 5vw, 72px); max-width: 14ch; }
.final-cta h2 .accent{ color: var(--accent-2); }
.final-cta p{ color: color-mix(in oklab, var(--bg) 70%, transparent); margin: 20px 0 28px; max-width: 40ch; font-size: 17px; }
.final-cta .btn-primary{ background: var(--bg); color: var(--ink); }
.final-cta .btn-primary:hover{ background: var(--accent-2); color: var(--ink); }
.final-cta .btn-ghost{ color: var(--bg); border-color: rgba(255,255,255,0.3); }
.final-cta .btn-ghost:hover{ border-color: var(--bg); }
.final-stats{
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.stat{
	padding: 24px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: var(--r-md);
	background: rgba(255,255,255,0.04);
	backdrop-filter: blur(8px);
}
.stat .big{
	font-family: var(--serif);
	font-size: clamp(40px, 5vw, 60px);
	line-height: 1;
	margin-bottom: 6px;
}
.stat .big .accent{ color: var(--accent-2); }
.stat small{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in oklab, var(--bg) 65%, transparent); }

/* ============================================================
   STICKY BUY (mobile bottom bar)
   ============================================================ */
.sticky-buy{
	position: fixed;
	bottom: 16px; left: 50%;
	transform: translateX(-50%) translateY(140%);
	z-index: 40;
	background: var(--ink);
	color: var(--bg);
	padding: 10px 12px 10px 18px;
	border-radius: var(--r-pill);
	display: flex; align-items: center; gap: 14px;
	font-size: 13px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.25);
	transition: transform .35s cubic-bezier(.2,.7,.2,1);
	max-width: calc(100vw - 32px);
}
.sticky-buy.is-visible{ transform: translateX(-50%) translateY(0); }
.sticky-buy b{ font-weight: 600; }
.sticky-buy .sb-btn{
	background: var(--accent-2);
	color: var(--ink);
	padding: 8px 14px;
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: 12px;
}
.sticky-buy .sb-btn:hover{ background: var(--bg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
	.hero{ padding-bottom: 0; }
	.hero-grid{ grid-template-columns: 1fr; gap: 40px; }
	.pick-row-large{ grid-template-columns: 1fr; }
	.pick-row-large .rank{ font-size: 80px; }
	.transcript-card{ grid-template-columns: 1fr; }
	.ai-grid{ grid-template-columns: 1fr; }
	.final-cta-inner{ grid-template-columns: 1fr; }
	.faq-grid{ grid-template-columns: 1fr; }
	.faq-grid h2{ position: static; }
	.compare{ overflow-x: auto; }
	.compare table{ min-width: 720px; }
	/* price moves out of the buy button, back to the standalone tag */
	.pick-actions .price-tag{ display: inline-block; }
	.btn .btn-price{ display: none; }
}

/* Compare table collapses to stacked cards — no sideways scroll */
@media (max-width: 700px){
	.compare{ overflow: visible; }
	.compare table{ min-width: 0; }
	.compare thead{ display: none; }
	.compare tbody tr{
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		gap: 10px 16px;
		padding: 16px;
		border-bottom: 1px solid var(--rule);
	}
	.compare tbody tr:last-child{ border-bottom: none; }
	.compare td{ display: block; padding: 0; border-bottom: none; }
	.compare td:first-child{ display: none; }           /* rank # */
	.compare .name small{ display: none; }              /* note line */
	.compare .name{ font-size: 17px; }
	.compare td:nth-child(3){ font-size: 12px; color: var(--ink-3); text-align: right; }
	.compare td:nth-child(4){ font-family: var(--mono); font-size: 13px; }
	.compare td:nth-child(5){ justify-self: end; }
}

@media (max-width: 560px){
	.pros-cons{ grid-template-columns: 1fr; }
	/* hero eyebrow: date + read time only */
	.hero-copy .eyebrow .dot-pulse,
	.hero-copy .eyebrow .updated-label{ display: none; }
	/* sticky buy pill: one line, truncate the label, keep the button */
	.sticky-buy{
		width: calc(100vw - 24px);
		max-width: none;
		bottom: 12px;
		justify-content: space-between;
		gap: 10px;
		padding: 8px 8px 8px 14px;
		font-size: 12px;
	}
	.sticky-buy > span{
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.sticky-buy .sb-btn{ flex-shrink: 0; }
}

/* ============================================================
   PRODUCT IMAGES (catalog-rendered)
   All product image slots are square. Real photos sit on a clean
   card fill with object-fit: contain (mixed-ratio manufacturer
   shots never crop); the decorative gradient + hatching applies
   to placeholders only.
   ============================================================ */
.pick-img img,
.pick-media img,
.fcard .img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6%;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.pick-img:has(img),
.pick-media:has(img),
.fcard .img:has(img){
	background: var(--card);
}
.pick-img:has(img)::after,
.pick-media:has(img)::after,
.fcard .img:has(img)::after{
	content: none;
}

/* ============================================================
   Page note (post-FAQ disclaimer)
   ============================================================ */
.page-note{
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: 28px;
	border-top: 1px solid var(--rule);
	max-width: 100%;
}
.page-note p{
	color: var(--ink-3);
	font-size: 14px;
	line-height: 1.7;
	margin-top: 12px;
}
