/* NXTL comparisons — editorial Satka marketing system */
.nxtl-cmp {
	--pink: #ff5e70;
	--pink-light: #ff8b98;
	--ink: #050505;
	--panel: #121212;
	--line: rgba(255,255,255,.09);
	--text: #f6f4f4;
	--muted: rgba(255,255,255,.66);
	--muted-2: rgba(255,255,255,.44);
	--x: clamp(20px,5vw,64px);
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
	overflow: hidden;
	color: var(--text);
	background:
		radial-gradient(900px 540px at 8% 7%, rgba(255,94,112,.11), transparent 62%),
		radial-gradient(760px 500px at 94% 36%, rgba(99,72,255,.06), transparent 65%),
		#050505;
	font-family: inherit;
}
.nxtl-cmp * { box-sizing: border-box; }
.nxtl-cmp a { color: inherit; text-decoration: none; }
.nxtl-cmp-wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: var(--x); }
.nxtl-cmp-overline,
.nxtl-cmp-head-eyebrow {
	margin: 0 0 12px;
	color: var(--pink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
}

/* Hero: intentionally wide and asymmetric */
.nxtl-cmp-hero {
	position: relative;
	padding: clamp(96px,12vw,142px) 0 clamp(70px,9vw,108px);
	border-bottom: 1px solid var(--line);
}
.nxtl-cmp-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	pointer-events: none;
	background: linear-gradient(180deg, transparent, rgba(255,255,255,.018));
}
.nxtl-cmp-hero-orb {
	position: absolute;
	width: 620px;
	height: 620px;
	top: -270px;
	right: -120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,94,112,.16), rgba(255,94,112,.025) 45%, transparent 70%);
	filter: blur(8px);
	pointer-events: none;
}
.nxtl-cmp-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0,1.25fr) minmax(310px,.75fr);
	gap: clamp(44px,7vw,96px);
	align-items: center;
}
.nxtl-cmp-hero-copy { max-width: 680px; }
.nxtl-cmp-hero-title {
	margin: 0 0 22px;
	color: #fff;
	font-size: clamp(2.55rem,6vw,5rem);
	font-weight: 800;
	letter-spacing: -.055em;
	line-height: .98;
}
[data-nxtl-cmp="vs"] .nxtl-cmp-hero-title { font-size: clamp(2.7rem,6vw,4.8rem); }
.nxtl-cmp-hero-lead {
	max-width: 650px;
	margin: 0 0 30px;
	color: rgba(255,255,255,.74);
	font-size: clamp(1.04rem,1.55vw,1.2rem);
	line-height: 1.67;
}
.nxtl-cmp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.nxtl-cmp-hero-meta { margin: 0; color: var(--muted-2); font-size: 13px; }
.nxtl-cmp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 12px;
	background: rgba(255,255,255,.045);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.nxtl-cmp-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); color: #fff; }
.nxtl-cmp-btn--primary { border-color: var(--pink); background: var(--pink); color: #fff; box-shadow: 0 12px 30px -18px rgba(255,94,112,.8); }
.nxtl-cmp-btn--primary:hover { border-color: var(--pink-light); background: var(--pink-light); box-shadow: 0 16px 34px -18px rgba(255,94,112,.9); }
.nxtl-cmp a.nxtl-cmp-btn--primary {
	border-color: var(--pink) !important;
	background: var(--pink) !important;
	color: #fff !important;
}
.nxtl-cmp a.nxtl-cmp-btn--primary:hover {
	border-color: var(--pink-light) !important;
	background: var(--pink-light) !important;
}
.nxtl-cmp-btn--lg { min-height: 50px; padding-inline: 24px; }

/* Human scorecard / rate receipt */
.nxtl-cmp-scorecard,
.nxtl-cmp-rate-receipt {
	position: relative;
	padding: 22px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 22px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018) 55%),
		rgba(10,10,10,.82);
	box-shadow: 0 30px 80px -42px #000, inset 0 1px rgba(255,255,255,.07);
	backdrop-filter: blur(16px);
}
.nxtl-cmp-scorecard::before,
.nxtl-cmp-rate-receipt::before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255,94,112,.26), transparent 42%, rgba(255,255,255,.08));
}
.nxtl-cmp-scorecard-head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	color: var(--muted-2);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.nxtl-cmp-scorecard-brand {
	display: grid;
	grid-template-columns: 42px minmax(0,1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.nxtl-cmp-scorecard-brand--nxtl { color: #fff; }
.nxtl-cmp-brand-dot,
.nxtl-cmp-mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--pink);
	color: #111;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .02em;
}
.nxtl-cmp-brand-dot--them,
.nxtl-cmp-mark {
	background: color-mix(in srgb, var(--mark-accent, var(--competitor-accent)) 78%, #181818);
	color: #fff;
}
.nxtl-cmp-scorecard-brand strong,
.nxtl-cmp-scorecard-brand small { display: block; }
.nxtl-cmp-scorecard-brand strong { margin-bottom: 3px; font-size: 14px; }
.nxtl-cmp-scorecard-brand small { overflow: hidden; color: var(--muted-2); font-size: 11px; line-height: 1.3; text-overflow: ellipsis; }
.nxtl-cmp-scorecard-brand b { color: var(--muted); font-size: 11px; font-weight: 600; }
.nxtl-cmp-scorecard-verdict { margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.nxtl-cmp-rate-receipt__eyebrow { margin: 0 0 18px; color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nxtl-cmp-rate-receipt__row { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.nxtl-cmp-rate-receipt__row span,
.nxtl-cmp-rate-receipt__total span { color: var(--muted); font-size: 13px; }
.nxtl-cmp-rate-receipt__row strong { color: #fff; font-size: 14px; text-align: right; }
.nxtl-cmp-rate-receipt__row--nxtl strong { color: var(--pink-light); }
.nxtl-cmp-rate-receipt__total { padding: 18px 0 8px; }
.nxtl-cmp-rate-receipt__total span,
.nxtl-cmp-rate-receipt__total strong { display: block; }
.nxtl-cmp-rate-receipt__total strong { margin-top: 4px; color: #fff; font-size: 1.45rem; }
.nxtl-cmp-rate-receipt > p:last-child { margin: 14px 0 0; color: var(--muted-2); font-size: 11px; }

/* Editorial story */
.nxtl-cmp-story { padding: clamp(64px,8vw,100px) 0; border-bottom: 1px solid var(--line); background: linear-gradient(115deg, rgba(255,94,112,.045), transparent 44%); }
.nxtl-cmp-story-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); gap: clamp(40px,7vw,90px); align-items: center; }
.nxtl-cmp-story-copy h2,
.nxtl-cmp-manifesto h2,
.nxtl-cmp-honest-lead h2 {
	margin: 0 0 20px;
	max-width: 720px;
	color: #fff;
	font-size: clamp(1.85rem,3.7vw,3rem);
	line-height: 1.12;
	letter-spacing: -.035em;
}
.nxtl-cmp-story-copy > p:last-child,
.nxtl-cmp-honest-lead > p:last-child { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.nxtl-cmp-choice { border-left: 1px solid var(--line); }
.nxtl-cmp-choice > div { padding: 4px 0 20px 24px; }
.nxtl-cmp-choice > div + div { padding-top: 20px; border-top: 1px solid var(--line); }
.nxtl-cmp-choice span { display: block; margin-bottom: 8px; color: var(--muted-2); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nxtl-cmp-choice p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.nxtl-cmp-choice--nxtl span { color: var(--pink); }
.nxtl-cmp-manifesto { max-width: 980px; }
.nxtl-cmp-manifesto-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.nxtl-cmp-manifesto-points span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.025); font-size: 13px; }

/* Section architecture */
.nxtl-cmp-band { position: relative; padding: clamp(64px,8vw,104px) 0; border-bottom: 1px solid var(--line); }
.nxtl-cmp-band--trips { background: radial-gradient(700px 400px at 90% 0%, rgba(255,94,112,.055), transparent 65%), #080808; }
.nxtl-cmp-band--comparison { background: linear-gradient(180deg, #060606, #0a0a0a); }
.nxtl-cmp-band--honest { background: radial-gradient(700px 500px at 0% 50%, rgba(255,94,112,.07), transparent 70%), #080808; }
.nxtl-cmp-band--ownership { background: linear-gradient(145deg, rgba(255,255,255,.022), transparent 50%); }
.nxtl-cmp-band--faq { background: #080808; }
.nxtl-cmp-band--cta { background: radial-gradient(600px 320px at 70% 50%, rgba(255,94,112,.08), transparent 70%); }
.nxtl-cmp-band--directory { background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.nxtl-cmp-head { max-width: 720px; margin: 0 auto clamp(34px,5vw,54px); text-align: center; }
.nxtl-cmp-head--left { max-width: 720px; margin-left: 0; text-align: left; }
.nxtl-cmp-head h2 { margin: 0 0 12px; color: #fff; font-size: clamp(1.75rem,3.6vw,2.8rem); line-height: 1.14; letter-spacing: -.035em; }
.nxtl-cmp-head-lead { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.nxtl-cmp-text-link { color: var(--pink-light); font-weight: 600; }
.nxtl-cmp-text-link:hover { color: #fff; }

/* Trip cards: one story leads, two support */
.nxtl-cmp-cases--editorial { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: 16px; align-items: stretch; }
.nxtl-cmp-case {
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
	box-shadow: 0 24px 60px -50px #000;
}
.nxtl-cmp-case--featured { grid-row: span 2; padding: clamp(26px,4vw,38px); background: linear-gradient(145deg, rgba(255,94,112,.095), rgba(255,255,255,.018) 55%); border-color: rgba(255,94,112,.25); }
.nxtl-cmp-case-need { margin: 0 0 8px; color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nxtl-cmp-case h3 { margin: 0 0 20px; color: #fff; font-size: 1.2rem; }
.nxtl-cmp-case--featured h3 { font-size: clamp(1.5rem,2.5vw,2rem); }
.nxtl-cmp-case-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.nxtl-cmp-case-price { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.22); }
.nxtl-cmp-case-price--nxtl { border-color: rgba(255,94,112,.32); background: rgba(255,94,112,.075); }
.nxtl-cmp-case-price-label { display: block; margin-bottom: 7px; color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.nxtl-cmp-case-price--nxtl .nxtl-cmp-case-price-label { color: var(--pink); }
.nxtl-cmp-case-price strong { color: #fff; font-size: clamp(1rem, 1.85vw, 1.45rem); font-variant-numeric: tabular-nums; line-height: 1.25; word-break: break-word; }
.nxtl-cmp-case-price--nxtl strong { font-size: clamp(1.05rem, 1.9vw, 1.5rem); }
.nxtl-cmp-case-detail { display: grid; gap: 12px; margin-bottom: 18px; }
.nxtl-cmp-case-detail > div { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.065); }
.nxtl-cmp-case-detail span { display: block; margin-bottom: 4px; color: var(--muted-2); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.nxtl-cmp-case-detail p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.nxtl-cmp-case-win { margin: auto 0 0; padding-top: 14px; border-top: 1px solid rgba(255,94,112,.18); color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.5; }
.nxtl-cmp-case-win::before { content: "Why it matters  "; color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.nxtl-cmp-note { max-width: 760px; margin: 20px auto 0; color: var(--muted-2); font-size: 12px; line-height: 1.55; text-align: center; }

/* Table */
.nxtl-cmp-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: #111; box-shadow: 0 28px 70px -54px #000; }
.nxtl-cmp-table { width: 100%; min-width: 650px; border-collapse: collapse; font-size: 14px; }
.nxtl-cmp-table th,
.nxtl-cmp-table td { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.065); text-align: left; vertical-align: top; }
.nxtl-cmp-table thead th { color: var(--muted-2); background: rgba(255,255,255,.025); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.nxtl-cmp-table tbody th { width: 26%; color: #fff; font-weight: 600; }
.nxtl-cmp-table td { color: var(--muted); line-height: 1.45; }
.nxtl-cmp-table td:nth-child(2) { background: rgba(255,94,112,.035); }
.nxtl-cmp-table td.is-nxtl { color: #fff; }
.nxtl-cmp-table tr:last-child > * { border-bottom: 0; }

/* Honest editorial composition */
.nxtl-cmp-honest-grid { display: grid; grid-template-columns: minmax(270px,.72fr) minmax(340px,1fr); gap: 16px; }
.nxtl-cmp-honest-lead { grid-row: span 2; padding: clamp(18px,3vw,34px) clamp(10px,4vw,44px) 20px 0; }
.nxtl-cmp-panel { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); }
.nxtl-cmp-panel--accent { border-color: rgba(255,94,112,.25); background: linear-gradient(145deg, rgba(255,94,112,.075), rgba(255,255,255,.015)); }
.nxtl-cmp-panel h3 { margin: 0 0 15px; color: #fff; font-size: 1rem; }
.nxtl-cmp-panel p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.nxtl-cmp-honest-fair { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.nxtl-cmp-honest-fair h3 { grid-column: 1 / -1; }
.nxtl-cmp-pros-gap { margin-top: 0 !important; padding-top: 0 !important; border: 0 !important; }
.nxtl-cmp-list { margin: 0; padding: 0; list-style: none; }
.nxtl-cmp-list li { position: relative; padding: 7px 0 7px 17px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.nxtl-cmp-list li::before { content: ""; position: absolute; top: 13px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--muted-2); }
.nxtl-cmp-list--check li::before { background: var(--pink); }
.nxtl-cmp-list--minus li::before { width: 7px; height: 2px; border-radius: 0; background: #e56f7d; }

/* Ownership rail replaces another card grid */
.nxtl-cmp-ownership-rail { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nxtl-cmp-ownership-rail article { padding: 26px 22px; border-right: 1px solid var(--line); }
.nxtl-cmp-ownership-rail article:last-child { border-right: 0; }
.nxtl-cmp-ownership-rail article > span { display: block; margin-bottom: 30px; color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.nxtl-cmp-ownership-rail h3 { margin: 0 0 10px; color: #fff; font-size: 1rem; }
.nxtl-cmp-ownership-rail p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* FAQ */
.nxtl-cmp-faq { max-width: 820px; margin: 0 auto; }
.nxtl-cmp-faq-item { border-top: 1px solid var(--line); }
.nxtl-cmp-faq-item:last-child { border-bottom: 1px solid var(--line); }
.nxtl-cmp-faq-item summary { padding: 19px 4px; cursor: pointer; color: #fff; font-size: 15px; font-weight: 600; list-style: none; }
.nxtl-cmp-faq-item summary::-webkit-details-marker { display: none; }
.nxtl-cmp-faq-item summary::after { content: "+"; float: right; color: var(--pink); font-size: 20px; font-weight: 400; }
.nxtl-cmp-faq-item[open] summary::after { content: "−"; }
.nxtl-cmp-faq-answer { max-width: 680px; padding: 0 4px 20px; }
.nxtl-cmp-faq-answer p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* CTA and links */
.nxtl-cmp-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(28px,5vw,52px); border: 1px solid rgba(255,94,112,.3); border-radius: 24px; background: linear-gradient(120deg, rgba(255,94,112,.13), rgba(255,255,255,.02) 65%); }
.nxtl-cmp-cta h2 { margin: 0 0 8px; color: #fff; font-size: clamp(1.45rem,3vw,2.15rem); letter-spacing: -.025em; }
.nxtl-cmp-cta p { margin: 0; color: var(--muted); font-size: 14px; }
.nxtl-cmp-navlinks { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.nxtl-cmp-navlinks a {
	position: relative;
	padding: 15px 40px 15px 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	color: var(--muted);
	background: rgba(255,255,255,.025);
	font-size: 13px;
	font-weight: 600;
}
.nxtl-cmp-navlinks a::after { content: "→"; position: absolute; top: 50%; right: 16px; color: var(--pink); transform: translateY(-50%); }
.nxtl-cmp-navlinks a:hover { border-color: rgba(255,94,112,.4); color: #fff; background: rgba(255,94,112,.06); }

/* Hub directory */
.nxtl-cmp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.nxtl-cmp-card { display: flex; min-height: 250px; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.01)); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.nxtl-cmp-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--card-accent) 42%, var(--line)); background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.012)); color: inherit; }
.nxtl-cmp-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.nxtl-cmp-card-top > span:last-child { color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nxtl-cmp-card h3 { margin: 0 0 10px; color: #fff; font-size: 1.25rem; }
.nxtl-cmp-card p { flex: 1; margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.nxtl-cmp-card-link { color: var(--pink-light); font-size: 13px; font-weight: 700; }
.nxtl-cmp-card-link b { margin-left: 4px; }
.nxtl-cmp-callout { display: flex; align-items: center; gap: 18px; padding: 24px; border: 1px solid rgba(255,94,112,.28); border-radius: 18px; background: linear-gradient(120deg, rgba(255,94,112,.1), rgba(255,255,255,.018)); }
.nxtl-cmp-callout-mark { padding: 5px 9px; border-radius: 999px; background: var(--pink); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nxtl-cmp-callout-body { flex: 1; }
.nxtl-cmp-callout-body h2 { margin: 0 0 5px; color: #fff; font-size: 1.15rem; }
.nxtl-cmp-callout-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Motion is subtle and never hides content without JS */
@media (prefers-reduced-motion: no-preference) {
	.nxtl-cmp-card,
	.nxtl-cmp-case,
	.nxtl-cmp-panel { transition: opacity .45s ease, transform .45s ease, border-color .18s ease, background .18s ease; }
}

@media (max-width: 900px) {
	.nxtl-cmp-hero-grid,
	.nxtl-cmp-story-grid,
	.nxtl-cmp-honest-grid { grid-template-columns: 1fr; }
	.nxtl-cmp-scorecard,
	.nxtl-cmp-rate-receipt { max-width: 560px; }
	.nxtl-cmp-cases--editorial { grid-template-columns: 1fr 1fr; }
	.nxtl-cmp-case--featured { grid-column: 1 / -1; grid-row: auto; }
	.nxtl-cmp-honest-lead { grid-row: auto; padding-right: 0; }
	.nxtl-cmp-grid { grid-template-columns: repeat(2,1fr); }
	.nxtl-cmp-navlinks { grid-template-columns: repeat(2,1fr); }
	.nxtl-cmp-ownership-rail { grid-template-columns: 1fr 1fr; }
	.nxtl-cmp-ownership-rail article:nth-child(2) { border-right: 0; }
	.nxtl-cmp-ownership-rail article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
	.nxtl-cmp-hero { padding-top: 88px; }
	.nxtl-cmp-hero-title { font-size: clamp(2.35rem,13vw,3.5rem); }
	.nxtl-cmp-hero-actions,
	.nxtl-cmp-cta { flex-direction: column; align-items: stretch; }
	.nxtl-cmp-btn { width: 100%; }
	.nxtl-cmp-cases--editorial,
	.nxtl-cmp-grid,
	.nxtl-cmp-navlinks { grid-template-columns: 1fr; }
	.nxtl-cmp-case--featured { grid-column: auto; }
	.nxtl-cmp-case-prices,
	.nxtl-cmp-honest-fair { grid-template-columns: 1fr; }
	.nxtl-cmp-ownership-rail { grid-template-columns: 1fr; }
	.nxtl-cmp-ownership-rail article,
	.nxtl-cmp-ownership-rail article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
	.nxtl-cmp-choice { border-left: 0; }
	.nxtl-cmp-choice > div { padding-left: 0; }
	.nxtl-cmp-callout { align-items: flex-start; flex-direction: column; }
}
