/* ============================================================
   SalaryWatch — page de présentation
   Design system indépendant du reste du site (pas d'héritage de main.css)
   ============================================================ */

@font-face {
	font-family: "SW-System";
	src: local("-apple-system");
}

:root {
	--sw-bg: #030f0a;
	--sw-bg2: #020705;
	--sw-surface: rgba(255, 255, 255, 0.045);
	--sw-surface-strong: rgba(6, 22, 15, 0.82);
	--sw-border: rgba(255, 255, 255, 0.09);
	--sw-border-strong: rgba(255, 255, 255, 0.18);
	--sw-fg: #eafff3;
	--sw-fg-muted: rgba(234, 255, 243, 0.64);
	--sw-fg-faint: rgba(234, 255, 243, 0.4);
	--sw-green: #34d399;
	--sw-green-strong: #22c55e;
	--sw-lime: #a3e635;
	--sw-cyan: #22d3ee;
	--sw-gold: #fbbf24;
	--sw-blue: #60a5fa;
	--sw-radius-lg: 32px;
	--sw-radius: 22px;
	--sw-radius-sm: 14px;
	--sw-maxw: 1180px;
	--sw-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--sw-mono: ui-monospace, SFMono-Regular, "SF Mono", "Cascadia Code", monospace;
}

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

.sw-page {
	background: var(--sw-bg);
	color: var(--sw-fg);
	font-family: var(--sw-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	position: relative;
}

.sw-page a { color: inherit; text-decoration: none; }
.sw-page img, .sw-page svg { max-width: 100%; display: block; }
.sw-page ::selection { background: var(--sw-green); color: #03150d; }

.sw-wrap {
	max-width: var(--sw-maxw);
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2.5rem);
	position: relative;
	z-index: 2;
}

/* ===== Ambient background ===== */

.sw-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at 15% 8%, rgba(52, 211, 153, 0.16), transparent 45%),
		radial-gradient(circle at 85% 18%, rgba(34, 211, 238, 0.12), transparent 42%),
		radial-gradient(circle at 50% 75%, rgba(163, 230, 53, 0.08), transparent 50%),
		linear-gradient(180deg, var(--sw-bg2) 0%, var(--sw-bg) 18%, var(--sw-bg) 100%);
}

.sw-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 75%);
}

.sw-orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(70px);
	z-index: 0;
	opacity: 0.55;
	pointer-events: none;
}

.sw-orb-1 { width: 30rem; height: 30rem; top: -8rem; right: -6rem; background: radial-gradient(circle, rgba(52,211,153,0.35), transparent 70%); }
.sw-orb-2 { width: 24rem; height: 24rem; bottom: 5rem; left: -8rem; background: radial-gradient(circle, rgba(34,211,238,0.25), transparent 70%); }

/* ===== Nav ===== */

.sw-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	background: rgba(3, 15, 10, 0.55);
	border-bottom: 1px solid var(--sw-border);
}

.sw-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.25rem;
}

.sw-brand {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
}

.sw-brand-mark {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: linear-gradient(135deg, var(--sw-green) 0%, var(--sw-cyan) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	box-shadow: 0 4px 14px rgba(52, 211, 153, 0.35);
}

.sw-nav-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	font-size: 0.9rem;
	color: var(--sw-fg-muted);
}

.sw-nav-links a { transition: color 0.2s ease; }
.sw-nav-links a:hover { color: var(--sw-fg); }

.sw-nav-links .sw-back {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--sw-border-strong);
	border-radius: 100px;
	color: var(--sw-fg);
}

@media (max-width: 720px) {
	.sw-nav-links a:not(.sw-back) { display: none; }
}

/* ===== Buttons ===== */

.sw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.6rem;
	border-radius: 100px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.25s ease;
	white-space: nowrap;
}

.sw-btn-primary {
	background: linear-gradient(135deg, var(--sw-green) 0%, var(--sw-green-strong) 55%, var(--sw-lime) 120%);
	color: #04170d;
	box-shadow: 0 10px 30px -8px rgba(52, 211, 153, 0.55);
}

.sw-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(52, 211, 153, 0.65); }

.sw-btn-ghost {
	background: var(--sw-surface);
	border-color: var(--sw-border-strong);
	color: var(--sw-fg);
	backdrop-filter: blur(8px);
}

.sw-btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

/* ===== Hero ===== */

.sw-hero {
	padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2rem, 6vw, 4rem);
	text-align: center;
}

.sw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.9rem 0.4rem 0.6rem;
	border-radius: 100px;
	background: var(--sw-surface);
	border: 1px solid var(--sw-border-strong);
	font-size: 0.8rem;
	color: var(--sw-fg-muted);
	margin-bottom: 1.75rem;
}

.sw-eyebrow .sw-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sw-green);
	box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
	animation: sw-pulse 2s infinite;
}

@keyframes sw-pulse {
	0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.55); }
	70% { box-shadow: 0 0 0 9px rgba(52,211,153,0); }
	100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.sw-hero h1 {
	font-size: clamp(2.4rem, 6.4vw, 4.6rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.04;
	margin: 0 0 1.4rem;
	max-width: 18ch;
	margin-inline: auto;
}

.sw-gradient-text {
	background: linear-gradient(100deg, var(--sw-lime) 0%, var(--sw-green) 35%, var(--sw-cyan) 75%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sw-hero-sub {
	max-width: 40rem;
	margin: 0 auto 2.4rem;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--sw-fg-muted);
}

.sw-hero-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

.sw-hero-note {
	font-size: 0.8rem;
	color: var(--sw-fg-faint);
	margin-top: -2.7rem;
	margin-bottom: 3.2rem;
}

/* ===== Live counter demo ===== */

.sw-counter-card {
	max-width: 30rem;
	margin: 0 auto;
	border-radius: var(--sw-radius-lg);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	border: 1px solid var(--sw-border-strong);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	backdrop-filter: blur(20px);
	box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}

.sw-counter-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	color: var(--sw-fg-muted);
	margin-bottom: 0.75rem;
}

.sw-counter-value {
	font-family: var(--sw-mono);
	font-size: clamp(2.4rem, 8vw, 3.4rem);
	font-weight: 700;
	color: var(--sw-green);
	letter-spacing: -0.02em;
	text-shadow: 0 0 40px rgba(52,211,153,0.35);
	font-variant-numeric: tabular-nums;
}

.sw-counter-sub {
	font-size: 0.85rem;
	color: var(--sw-fg-faint);
	margin-top: 0.5rem;
}

.sw-counter-bar-track {
	height: 8px;
	border-radius: 100px;
	background: rgba(255,255,255,0.08);
	margin-top: 1.5rem;
	overflow: hidden;
}

.sw-counter-bar-fill {
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, var(--sw-green), var(--sw-lime));
	width: 0%;
	transition: width 0.6s ease;
}

.sw-counter-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.78rem;
	color: var(--sw-fg-faint);
	margin-top: 0.6rem;
}

/* ===== Section shell ===== */

.sw-section {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
	position: relative;
}

.sw-section-head {
	max-width: 40rem;
	margin: 0 0 3rem;
}

.sw-section-head.sw-center { margin-inline: auto; text-align: center; }

.sw-kicker {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sw-green);
	margin-bottom: 0.9rem;
}

.sw-section h2 {
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 0.9rem;
}

.sw-section-desc {
	color: var(--sw-fg-muted);
	font-size: 1.05rem;
}

/* ===== Reveal on scroll ===== */

.sw-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.sw-reveal.sw-visible {
	opacity: 1;
	transform: translateY(0);
}

.sw-reveal-delay-1 { transition-delay: 0.08s; }
.sw-reveal-delay-2 { transition-delay: 0.16s; }
.sw-reveal-delay-3 { transition-delay: 0.24s; }
.sw-reveal-delay-4 { transition-delay: 0.32s; }
.sw-reveal-delay-5 { transition-delay: 0.4s; }

/* ===== Bento feature grid ===== */

.sw-bento {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.1rem;
}

.sw-card {
	border-radius: var(--sw-radius);
	background: var(--sw-surface);
	border: 1px solid var(--sw-border);
	padding: 1.75rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, background 0.35s ease;
}

.sw-card:hover {
	transform: translateY(-4px);
	border-color: var(--sw-border-strong);
	background: rgba(255,255,255,0.065);
}

.sw-card-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 1.1rem;
	background: linear-gradient(135deg, rgba(52,211,153,0.22), rgba(34,211,238,0.14));
	border: 1px solid rgba(255,255,255,0.08);
}

.sw-card h3 {
	font-size: 1.08rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
}

.sw-card p {
	color: var(--sw-fg-muted);
	font-size: 0.92rem;
	margin: 0;
}

.sw-span-2 { grid-column: span 2; }
.sw-span-3 { grid-column: span 3; }
.sw-span-4 { grid-column: span 4; }
.sw-span-6 { grid-column: span 6; }

@media (max-width: 900px) {
	.sw-bento { grid-template-columns: repeat(2, 1fr); }
	.sw-span-2, .sw-span-3, .sw-span-4, .sw-span-6 { grid-column: span 2; }
}

/* ===== Device showcase ===== */

.sw-showcase {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.sw-showcase.sw-reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.sw-showcase.sw-reverse .sw-showcase-device { order: 2; }
.sw-showcase.sw-reverse .sw-showcase-copy { order: 1; }

@media (max-width: 900px) {
	.sw-showcase, .sw-showcase.sw-reverse { grid-template-columns: 1fr; }
	.sw-showcase.sw-reverse .sw-showcase-device,
	.sw-showcase.sw-reverse .sw-showcase-copy { order: initial; }
}

.sw-showcase-device {
	display: flex;
	justify-content: center;
	perspective: 1400px;
}

.sw-tabs {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
	flex-wrap: wrap;
}

.sw-tab {
	padding: 0.55rem 1.05rem;
	border-radius: 100px;
	border: 1px solid var(--sw-border);
	background: transparent;
	color: var(--sw-fg-muted);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
	font-family: inherit;
}

.sw-tab.sw-active {
	background: var(--sw-surface-strong);
	border-color: var(--sw-border-strong);
	color: var(--sw-fg);
	box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.sw-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.sw-feature-list li {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
}

.sw-feature-list .sw-check {
	flex: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(52,211,153,0.15);
	color: var(--sw-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	margin-top: 0.1rem;
}

.sw-feature-list strong { display: block; margin-bottom: 0.15rem; }
.sw-feature-list span { color: var(--sw-fg-muted); font-size: 0.92rem; }

/* ===== iPhone mockup ===== */

.sw-iphone {
	width: 290px;
	height: 596px;
	border-radius: 52px;
	background: linear-gradient(160deg, #1c1f22, #0b0d0f 60%);
	padding: 12px;
	box-shadow:
		0 0 0 2px rgba(255,255,255,0.06) inset,
		0 40px 80px -20px rgba(0,0,0,0.75),
		0 10px 30px -10px rgba(52,211,153,0.15);
	position: relative;
	transform: rotate(-1.5deg);
	transition: transform 0.5s ease;
	flex: none;
}

.sw-showcase-device:hover .sw-iphone { transform: rotate(0deg) scale(1.01); }

.sw-iphone::before {
	content: "";
	position: absolute;
	top: 24px;
	left: 50%;
	translate: -50% 0;
	width: 92px;
	height: 26px;
	background: #000;
	border-radius: 20px;
	z-index: 5;
}

.sw-iphone-screen {
	width: 100%;
	height: 100%;
	border-radius: 40px;
	overflow: hidden;
	background: linear-gradient(180deg, #0b1410, #060a08);
	position: relative;
	display: flex;
	flex-direction: column;
}

.sw-statusbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px 6px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
}

.sw-screen-body {
	flex: 1;
	overflow: hidden;
	padding: 10px 16px 16px;
	position: relative;
}

.sw-screen {
	position: absolute;
	inset: 0;
	padding: 10px 16px 16px;
	opacity: 0;
	transform: translateX(16px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
	overflow-y: auto;
}

.sw-screen.sw-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.sw-screen-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}

.sw-mini-card {
	background: rgba(255,255,255,0.055);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 16px;
	padding: 14px;
	margin-bottom: 10px;
}

.sw-mini-card-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	color: rgba(255,255,255,0.55);
	margin-bottom: 6px;
}

.sw-mini-value {
	font-family: var(--sw-mono);
	font-size: 1.55rem;
	font-weight: 700;
	color: var(--sw-green);
	font-variant-numeric: tabular-nums;
}

.sw-mini-value.sw-blue { color: var(--sw-blue); }

.sw-mini-sub {
	display: flex;
	justify-content: space-between;
	font-size: 10.5px;
	color: rgba(255,255,255,0.5);
	margin-top: 6px;
}

.sw-mini-bar {
	height: 5px;
	border-radius: 100px;
	background: rgba(255,255,255,0.09);
	margin-top: 8px;
	overflow: hidden;
}

.sw-mini-bar span {
	display: block;
	height: 100%;
	border-radius: 100px;
	background: linear-gradient(90deg, var(--sw-green), var(--sw-lime));
}

.sw-mini-bar.sw-blue span { background: linear-gradient(90deg, var(--sw-blue), var(--sw-cyan)); }

.sw-mini-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255,255,255,0.045);
	border-radius: 12px;
	padding: 9px 11px;
	margin-bottom: 7px;
	font-size: 11.5px;
	color: rgba(255,255,255,0.85);
}

.sw-mini-row span:last-child { font-weight: 700; }

.sw-tabbar {
	display: flex;
	justify-content: space-around;
	padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(255,255,255,0.06);
	background: rgba(0,0,0,0.25);
}

.sw-tabbar-item {
	font-size: 8.5px;
	color: rgba(255,255,255,0.35);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.sw-tabbar-item.sw-on { color: var(--sw-green); }
.sw-tabbar-item .sw-tb-ico { font-size: 15px; }

.sw-chart-wrap {
	background: rgba(255,255,255,0.045);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 16px;
	padding: 12px;
	margin-bottom: 10px;
}

.sw-chart-wrap svg { width: 100%; height: auto; display: block; }

.sw-stat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.sw-stat-tile {
	background: rgba(255,255,255,0.045);
	border-radius: 12px;
	padding: 10px;
}

.sw-stat-tile .sw-t { font-size: 9.5px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.sw-stat-tile .sw-v { font-size: 14px; font-weight: 700; color: var(--sw-cyan); }

.sw-compare-row {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.045);
	border-radius: 12px;
	padding: 8px 10px;
	margin-bottom: 7px;
}

.sw-compare-emoji { font-size: 15px; flex: none; }

.sw-compare-info { flex: 1; min-width: 0; }
.sw-compare-name { font-size: 10.5px; color: rgba(255,255,255,0.85); font-weight: 700; }
.sw-compare-bar { height: 4px; border-radius: 100px; background: rgba(255,255,255,0.09); margin-top: 4px; overflow: hidden; }
.sw-compare-bar span { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--sw-gold), #f59e0b); }
.sw-compare-bar.sw-you span { background: linear-gradient(90deg, var(--sw-green), var(--sw-lime)); }
.sw-compare-value { font-size: 9.5px; color: rgba(255,255,255,0.5); flex: none; }

/* ===== Apple Watch mockup ===== */

.sw-watch {
	width: 210px;
	height: 256px;
	position: relative;
	transform: rotate(2deg);
	transition: transform 0.5s ease;
	flex: none;
}

.sw-showcase-device:hover .sw-watch { transform: rotate(0deg) scale(1.02); }

.sw-watch-case {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #23262a, #0a0c0e 65%);
	border-radius: 46px;
	padding: 9px;
	box-shadow:
		0 0 0 2px rgba(255,255,255,0.06) inset,
		0 30px 60px -15px rgba(0,0,0,0.75);
}

.sw-watch-crown {
	position: absolute;
	right: -6px;
	top: 78px;
	width: 14px;
	height: 26px;
	background: linear-gradient(160deg, #2c2f33, #0a0c0e);
	border-radius: 4px;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.sw-watch-btn {
	position: absolute;
	right: -4px;
	top: 116px;
	width: 10px;
	height: 34px;
	background: linear-gradient(160deg, #2c2f33, #0a0c0e);
	border-radius: 4px;
}

.sw-watch-screen {
	width: 100%;
	height: 100%;
	border-radius: 38px;
	background: radial-gradient(circle at 50% 0%, #0d1a13, #05100b 70%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 12px;
	gap: 4px;
}

.sw-watch-box {
	border: 1.5px solid var(--sw-green);
	border-radius: 10px;
	padding: 6px 10px;
	margin-bottom: 4px;
}

.sw-watch-box .sw-w-line {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	font-family: var(--sw-mono);
}

.sw-watch-sub {
	font-size: 8.5px;
	color: rgba(255,255,255,0.55);
}

.sw-watch-days {
	font-size: 8px;
	color: var(--sw-green);
	letter-spacing: 0.1em;
	margin-top: 2px;
}

.sw-watch-hint {
	font-size: 7px;
	color: rgba(255,255,255,0.35);
	margin-top: 4px;
}

/* ===== Comparison section ===== */

.sw-compare-showcase {
	border-radius: var(--sw-radius-lg);
	background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
	border: 1px solid var(--sw-border);
	padding: clamp(1.5rem, 4vw, 3rem);
}

.sw-compare-list {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	margin-top: 2rem;
}

.sw-compare-item {
	display: grid;
	grid-template-columns: 2.6rem 11rem 1fr auto;
	align-items: center;
	gap: 1rem;
}

@media (max-width: 640px) {
	.sw-compare-item { grid-template-columns: 2.2rem 1fr; grid-template-rows: auto auto; row-gap: 0.4rem; }
	.sw-compare-item .sw-compare-value { grid-column: 2; }
}

.sw-compare-avatar {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background: var(--sw-surface);
	border: 1px solid var(--sw-border-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.sw-compare-item-name { font-weight: 700; font-size: 0.95rem; }
.sw-compare-item-desc { font-size: 0.78rem; color: var(--sw-fg-faint); }

.sw-compare-track {
	height: 10px;
	border-radius: 100px;
	background: rgba(255,255,255,0.06);
	overflow: hidden;
}

.sw-compare-fill {
	height: 100%;
	border-radius: 100px;
	width: 0%;
	background: linear-gradient(90deg, var(--sw-gold), #f59e0b);
	transition: width 1.1s cubic-bezier(.2,.8,.2,1);
}

.sw-compare-fill.sw-you { background: linear-gradient(90deg, var(--sw-green), var(--sw-lime)); }

.sw-compare-amount {
	font-family: var(--sw-mono);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--sw-fg-muted);
	white-space: nowrap;
}

.sw-callouts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

@media (max-width: 640px) { .sw-callouts { grid-template-columns: 1fr; } }

.sw-callout {
	border-radius: var(--sw-radius-sm);
	background: rgba(251, 191, 36, 0.08);
	border: 1px solid rgba(251, 191, 36, 0.25);
	padding: 1.1rem 1.3rem;
	font-size: 0.92rem;
}

.sw-callout strong { color: var(--sw-gold); }

/* ===== Pricing ===== */

.sw-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 900px) { .sw-pricing-grid { grid-template-columns: 1fr; } }

.sw-price-card {
	border-radius: var(--sw-radius);
	border: 1px solid var(--sw-border);
	background: var(--sw-surface);
	padding: 1.9rem;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.sw-price-card:hover { transform: translateY(-4px); border-color: var(--sw-border-strong); }

.sw-price-card.sw-highlight {
	border-color: rgba(52,211,153,0.45);
	background: linear-gradient(160deg, rgba(52,211,153,0.1), rgba(255,255,255,0.03));
	position: relative;
}

.sw-price-badge {
	position: absolute;
	top: -0.7rem;
	left: 1.9rem;
	background: linear-gradient(135deg, var(--sw-green), var(--sw-lime));
	color: #04170d;
	font-size: 0.72rem;
	font-weight: 800;
	padding: 0.25rem 0.7rem;
	border-radius: 100px;
}

.sw-price-name { font-size: 0.85rem; color: var(--sw-fg-muted); font-weight: 600; margin-bottom: 0.5rem; }
.sw-price-amount { font-size: 2.2rem; font-weight: 800; margin-bottom: 1.3rem; letter-spacing: -0.02em; }
.sw-price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--sw-fg-faint); }

.sw-price-features { list-style: none; margin: 0 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.sw-price-features li { font-size: 0.88rem; color: var(--sw-fg-muted); display: flex; gap: 0.55rem; }
.sw-price-features li::before { content: "✓"; color: var(--sw-green); font-weight: 700; flex: none; }

/* ===== Privacy ===== */

.sw-privacy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1rem;
}

@media (max-width: 800px) { .sw-privacy-grid { grid-template-columns: 1fr; } }

/* ===== Final CTA ===== */

.sw-final {
	text-align: center;
	border-radius: var(--sw-radius-lg);
	background: linear-gradient(160deg, rgba(52,211,153,0.14), rgba(34,211,238,0.06));
	border: 1px solid var(--sw-border-strong);
	padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
	position: relative;
	overflow: hidden;
}

.sw-final h2 { max-width: 24ch; margin-inline: auto; }

/* ===== Footer ===== */

.sw-footer {
	padding: 2.5rem 0 3.5rem;
	text-align: center;
	color: var(--sw-fg-faint);
	font-size: 0.85rem;
}

.sw-footer a { color: var(--sw-fg-muted); }
.sw-footer a:hover { color: var(--sw-green); }

.sw-footer-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}
