/* ============================================================
* Tự Chối Bỏ Cuộc — Main stylesheet
* Compiled from 4 page mockups
* ============================================================ */

/* === HOMEPAGE STYLES === */
:root {
	--c-primary: #14b8a6;
	--c-primary-dark: #0d9488;
	--c-text: #0f172a;
	--c-subtext: #64748b;
	--c-bg-light: #f7f9fc;
	--c-bg-soft: #f1f5f9;
	--c-border: #e2e8f0;
	--c-white: #ffffff;
	--c-accent: #facc15;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-sm: 0 1px 2px rgba(15,23,42,.04);
	--shadow-md: 0 4px 12px rgba(15,23,42,.06);
	--shadow-lg: 0 16px 40px rgba(15,23,42,.10);
	--container: 1080px;
	--container-narrow: 720px;
	--fz-base: 15px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
	color: var(--c-text);
	background: var(--c-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

/* HEADER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid rgba(226,232,240,.6);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	gap: 32px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -.01em;
	color: var(--c-text);
}
.brand-mark {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
	display: grid;
	place-items: center;
	color: white;
	font-weight: 800;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(20,184,166,.25);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 16px; font-weight: 500; color: var(--c-subtext); transition: color .15s; }
.nav-links a:hover { color: var(--c-text); }

/* ===== BUTTON SYSTEM — premium polish ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 10px;
	font-family: inherit;
	font-weight: 600;
	font-size: var(--fz-base);
	letter-spacing: -.005em;
	line-height: 1.2;
	cursor: pointer;
	border: 1px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	transition:
		background .15s ease,
		color .15s ease,
		border-color .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.btn svg { flex-shrink: 0; }
.btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(20,184,166,.22);
}

.btn-primary {
	background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
	color: white;
	border-color: #0f172a;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.10) inset,
		0 1px 2px 0 rgba(15,23,42,.20),
		0 4px 10px -2px rgba(15,23,42,.10);
}
.btn-primary:hover {
	background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.12) inset,
		0 4px 10px -1px rgba(15,23,42,.22),
		0 12px 28px -6px rgba(15,23,42,.18);
}
.btn-primary:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.06) inset,
		0 1px 2px 0 rgba(15,23,42,.20);
}

.btn-secondary {
	background: white;
	color: var(--c-text);
	border-color: var(--c-border);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.95) inset,
		0 1px 2px 0 rgba(15,23,42,.05),
		0 0 0 1px rgba(15,23,42,.02);
}
.btn-secondary:hover {
	border-color: #cbd5e1;
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.95) inset,
		0 4px 10px -2px rgba(15,23,42,.08),
		0 0 0 1px rgba(15,23,42,.04);
}
.btn-secondary:active {
	transform: translateY(0);
	background: var(--c-bg-light);
}

.btn-accent {
	background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
	color: white;
	border-color: #0d9488;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.18) inset,
		0 1px 2px 0 rgba(13,148,136,.30),
		0 4px 12px -2px rgba(20,184,166,.30);
}
.btn-accent:hover {
	background: linear-gradient(180deg, #2dd4bf 0%, #14b8a6 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.22) inset,
		0 4px 12px -2px rgba(13,148,136,.40),
		0 14px 32px -8px rgba(20,184,166,.40);
}
.btn-accent:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
}

.btn-sm { padding: 8px 16px; font-size: 13px; gap: 6px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-xl { padding: 17px 32px; font-size: 16px; border-radius: 14px; gap: 10px; }

/* HERO with embedded story */
.hero {
	padding: 36px 0 30px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -250px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 600px;
	background: radial-gradient(ellipse at center, rgba(20,184,166,.08) 0%, transparent 60%);
	pointer-events: none;
}
.hero-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.hero-photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid white;
	box-shadow: var(--shadow-lg);
	margin: 0 auto 24px;
}
.hero-byline {
	font-size: var(--fz-base);
	color: var(--c-subtext);
	margin-bottom: 28px;
}
.hero-byline strong { color: var(--c-text); font-weight: 600; }
.hero h1 {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.03em;
	margin-bottom: 20px;
}
.hero h1 .em {
	background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-sub {
	font-size: 19px;
	line-height: 1.55;
	color: var(--c-subtext);
	margin-bottom: 36px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.cta-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* PROOF METRICS (zero-to-hero) */
.proof {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.proof-item { text-align: center; }
.proof-num {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--c-text);
	line-height: 1;
	margin-bottom: 6px;
}
.proof-num .unit { font-size: 18px; font-weight: 700; color: var(--c-subtext); }
.proof-label {
	font-size: var(--fz-base);
	color: var(--c-subtext);
	line-height: 1.4;
}

/* SECTION COMMON */
section { padding: 80px 0; }
.section-head {
	text-align: center;
	max-width: 580px;
	margin: 0 auto 48px;
}
.section-eyebrow {
	color: var(--c-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-bottom: 12px;
}
.section-head h2 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.15;
	margin-bottom: 12px;
}
.section-head p {
	font-size: 16px;
	color: var(--c-subtext);
}

/* TOPICS */
.topics-section { background: var(--c-bg-light); }
.topics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.topic-card {
	background: white;
	padding: 28px 24px;
	border-radius: var(--radius-md);
	border: 1px solid var(--c-border);
	transition: all .2s;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.topic-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: rgba(20,184,166,.4);
}
.topic-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(20,184,166,.1);
	display: grid;
	place-items: center;
	color: var(--c-primary);
}
.topic-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.topic-card p { 	font-size: var(--fz-base); line-height: 1.55; color: var(--c-subtext); flex: 1; }
.topic-card .link {
	color: var(--c-primary);
	font-weight: 600;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 2px;
}

/* NEWSLETTER */
.newsletter-section {
	background: var(--c-text);
	color: white;
	position: relative;
	overflow: hidden;
}
.newsletter-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(20,184,166,.18) 0%, transparent 70%);
	pointer-events: none;
}
.newsletter-inner {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.newsletter-section .badge {
	display: inline-block;
	background: rgba(20,184,166,.15);
	border: 1px solid rgba(20,184,166,.3);
	color: #5eead4;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 20px;
	width: auto;
	height: auto;
}
.newsletter-section h2 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.15;
	margin-bottom: 14px;
	color: var(--primary-color);
	background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.newsletter-section .lead {
	font-size: 16px;
	color: #cbd5e1;
	margin-bottom: 32px;
}
.newsletter-form {
	display: block !important;
	max-width: 420px;
	margin: 0 auto 14px;
}
.newsletter-form input {
	flex: 1;
	min-width: 200px;
	padding: 13px 16px;
	border-radius: 10px;
	border: 1px solid #334155;
	background: #1e293b;
	color: white;
	font-size: 15px;
	font-family: inherit;
	outline: none;
}
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus { border-color: var(--c-primary); }
.newsletter-form button,
.newsletter-form input.wpcf7-form-control.wpcf7-submit.has-spinner{
	padding: 13px 22px;
	background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
	color: white;
	border: 1px solid #0d9488;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -.005em;
	font-family: inherit;
	cursor: pointer;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.18) inset,
		0 1px 2px 0 rgba(13,148,136,.35),
		0 4px 12px -2px rgba(20,184,166,.32);
	transition:
		background .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.newsletter-form button:hover {
	background: linear-gradient(180deg, #2dd4bf 0%, #14b8a6 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.22) inset,
		0 4px 12px -2px rgba(13,148,136,.45),
		0 14px 32px -8px rgba(20,184,166,.45);
}
.newsletter-form button:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
}
.newsletter-section .privacy { font-size: 13px; color: #64748b; }

/* ALSO BUILDING (MQG cross-link) */
.also-section { background: white; }
.also-card {
	max-width: 720px;
	margin: 0 auto;
	background: var(--c-bg-light);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 28px 32px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.also-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: linear-gradient(135deg, #14b8a6, #06b6d4);
	display: grid;
	place-items: center;
	color: white;
	font-weight: 800;
	font-size: 22px;
	flex-shrink: 0;
}
.also-content { flex: 1; }
.also-content .label {
	font-size: 12px;
	font-weight: 700;
	color: var(--c-primary);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 4px;
}
.also-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
	letter-spacing: -.01em;
}
.also-content p {font-size: var(--fz-base); color: var(--c-subtext); }
.also-arrow { color: var(--c-subtext); }

/* FOOTER */
.site-footer {
	padding: 48px 0 28px;
	background: white;
	border-top: 1px solid var(--c-border);
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.footer-brand-info {
	color: var(--c-subtext);
	font-size: 14px;
	line-height: 1.6;
	max-width: 360px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--c-bg-light);
	display: grid;
	place-items: center;
	color: var(--c-subtext);
	transition: all .15s;
}
.footer-social a:hover {
	background: var(--c-text);
	color: white;
	transform: translateY(-2px);
}
.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid var(--c-border);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: var(--c-subtext);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--c-text); }

.mockup-badge {
	position: fixed;
	bottom: 16px;
	right: 16px;
	background: #facc15;
	color: #0f172a;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: var(--shadow-md);
	z-index: 199;
}

@media (max-width: 1024px) {
	.topics-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
	.proof { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
	.container, .container-narrow { padding: 0 20px; }
	.nav-links { display: none; }
	.nav-inner { padding: 14px 0; }
	.hero { padding: 15px 0; }
	.hero h1 { font-size: 36px; letter-spacing: -.02em; }
	.hero-sub { font-size: 16px; }
	.hero-photo { width: 80px; height: 80px; }
	.cta-row { flex-direction: column; width: 100%; }
	.cta-row .btn { width: 100%; justify-content: center; }
	section { padding: 15px 0; }
	.section-head { margin-bottom: 32px; }
	.section-head h2 { font-size: 26px; }
	.proof { margin-top: 40px; }
	.proof-num { font-size: 24px; }
	.also-card { flex-direction: column; text-align: center; padding: 24px; }
	.newsletter-section h2 { font-size: 26px; }
	.newsletter-form { flex-direction: column; gap: 10px; }
	.newsletter-form input, .newsletter-form button { width: 100%; }
	.footer-inner { flex-direction: column; align-items: flex-start; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
	.hero h1 { font-size: 30px; }
	.section-head h2 { font-size: 22px; }
	.proof-num { font-size: 22px; }
}

/* === SKILL HUB + AFFILIATE STYLES === */
:root {
	--c-primary: #14b8a6;
	--c-primary-dark: #0d9488;
	--c-accent: #facc15;
	--c-accent-warm: #f59e0b;
	--c-text: #0f172a;
	--c-subtext: #64748b;
	--c-bg-light: #f7f9fc;
	--c-bg-soft: #f1f5f9;
	--c-border: #e2e8f0;
	--c-white: #ffffff;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow-sm: 0 1px 2px rgba(15,23,42,.04);
	--shadow-md: 0 4px 12px rgba(15,23,42,.06);
	--shadow-lg: 0 16px 40px rgba(15,23,42,.10);
	--container: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: 'Be Vietnam Pro', system-ui, sans-serif;
	color: var(--c-text);
	background: var(--c-bg-light);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* HEADER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(247,249,252,.92);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid rgba(226,232,240,.6);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	gap: 32px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -.01em;
	color: var(--c-text);
}
.brand-mark {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
	display: grid;
	place-items: center;
	color: white;
	font-weight: 800;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(20,184,166,.25);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--c-subtext); }
.nav-links a:hover, .nav-links a.active { color: var(--c-text); }

/* ===== BUTTON SYSTEM — premium polish ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 10px;
	font-family: inherit;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.005em;
	line-height: 1.2;
	cursor: pointer;
	border: 1px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		background .15s ease,
		color .15s ease,
		border-color .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.btn svg { flex-shrink: 0; }
.btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(20,184,166,.22);
}
.btn-primary {
	background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
	color: white;
	border-color: #0f172a;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.10) inset,
		0 1px 2px 0 rgba(15,23,42,.20),
		0 4px 10px -2px rgba(15,23,42,.10);
}
.btn-primary:hover {
	background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.12) inset,
		0 4px 10px -1px rgba(15,23,42,.22),
		0 12px 28px -6px rgba(15,23,42,.18);
}
.btn-primary:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.btn-accent {
	background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
	color: white;
	border-color: #0d9488;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.18) inset,
		0 1px 2px 0 rgba(13,148,136,.30),
		0 4px 12px -2px rgba(20,184,166,.30);
}
.btn-accent:hover {
	background: linear-gradient(180deg, #2dd4bf 0%, #14b8a6 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.22) inset,
		0 4px 12px -2px rgba(13,148,136,.40),
		0 14px 32px -8px rgba(20,184,166,.40);
}
.btn-accent:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
}
.btn-sm { padding: 8px 16px; font-size: 13px; gap: 6px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }

/* PAGE WRAPPER */
.page-wrap { padding: 32px 0 64px; }

/* HERO CARD (dark) */
.hero-card {
	background:
		radial-gradient(ellipse 800px 400px at 80% 20%, rgba(245,158,11,.12) 0%, transparent 60%),
		linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: var(--radius-xl);
	padding: 56px 56px;
	color: white;
	position: relative;
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: 0 24px 60px rgba(15,23,42,.18);
}
.hero-card::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
	position: relative;
}
.hero-eyebrow {
	color: var(--c-accent-warm);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.hero-eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--c-accent-warm);
}
.hero-card h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.03em;
	margin-bottom: 18px;
	color: white;
}
.hero-card h1 .accent {
	color: var(--c-accent);
	background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-card .lead {
	font-size: 16px;
	line-height: 1.65;
	color: #cbd5e1;
	max-width: 500px;
}
.hero-card .lead strong { color: white; font-weight: 600; }

/* STATS */
.stats {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}
.stat { text-align: left; }
.stat-num {
	font-size: 40px;
	font-weight: 800;
	color: var(--c-accent);
	letter-spacing: -.025em;
	line-height: 1;
	margin-bottom: 6px;
}
.stat-label {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 500;
}

/* FILTER + SEARCH BAR */
.controls {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}
.filter-pills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	background: white;
	border: 1px solid var(--c-border);
	border-radius: 999px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-text);
	cursor: pointer;
	transition: all .15s;
}
.pill:hover { border-color: var(--c-text); }
.pill .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.pill[data-cat="all"] .dot { background: var(--c-accent-warm); }
.pill[data-cat="ai"] .dot { background: #06b6d4; }
.pill[data-cat="content"] .dot { background: #ef4444; }
.pill[data-cat="marketing"] .dot { background: #10b981; }
.pill[data-cat="video"] .dot { background: #8b5cf6; }
.pill[data-cat="sales"] .dot { background: #f59e0b; }
.pill[data-cat="business"] .dot { background: #ec4899; }
.pill.active {
	background: var(--c-text);
	color: white;
	border-color: var(--c-text);
}
.pill.active .dot { background: var(--c-accent); }
.pill .count {
	display: inline-block;
	background: var(--c-bg-light);
	color: var(--c-subtext);
	padding: 1px 7px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	margin-left: 2px;
}
.pill.active .count {
	background: rgba(255,255,255,.18);
	color: white;
}

/* SEARCH BAR */
.search-bar {
	position: relative;
	max-width: 280px;
}
.search-bar input {
	width: 100%;
	padding: 11px 16px 11px 40px;
	background: white;
	border: 1px solid var(--c-border);
	border-radius: 999px;
	font-family: inherit;
	font-size: 14px;
	color: var(--c-text);
	outline: none;
	transition: border-color .15s, box-shadow .15s;
}
.search-bar input:focus {
	border-color: var(--c-primary);
	box-shadow: 0 0 0 3px rgba(20,184,166,.12);
}
.search-bar input::placeholder { color: var(--c-subtext); }
.search-bar svg {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	color: var(--c-subtext);
}

/* SKILL GRID */
.skill-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}
.skill-card {
	background: white;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 24px;
	transition: all .2s;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	overflow: hidden;
}
.skill-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: rgba(20,184,166,.4);
}
.skill-num {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 48px;
	font-weight: 900;
	color: var(--c-bg-soft);
	letter-spacing: -.02em;
	line-height: 1;
	pointer-events: none;
}
.skill-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	padding: 4px 10px;
	background: var(--c-bg-light);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	color: var(--c-subtext);
	text-transform: uppercase;
	letter-spacing: .06em;
	position: relative;
	z-index: 1;
}
.skill-tag .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
}
.skill-card[data-cat="ai"] .skill-tag .dot { background: #06b6d4; }
.skill-card[data-cat="content"] .skill-tag .dot { background: #ef4444; }
.skill-card[data-cat="marketing"] .skill-tag .dot { background: #10b981; }
.skill-card[data-cat="video"] .skill-tag .dot { background: #8b5cf6; }
.skill-card[data-cat="sales"] .skill-tag .dot { background: #f59e0b; }
.skill-card[data-cat="business"] .skill-tag .dot { background: #ec4899; }
.skill-card h3 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--c-text);
	line-height: 1.3;
	position: relative;
	z-index: 1;
}
.skill-card p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--c-subtext);
	flex: 1;
	position: relative;
	z-index: 1;
}
.skill-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 4px;
	position: relative;
	z-index: 1;
	padding-top: 12px;
	border-top: 1px solid var(--c-border);
}
.skill-meta .free {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-primary);
}
.skill-meta .link {
	color: var(--c-text);
	font-weight: 600;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.skill-card:hover .skill-meta .link { gap: 8px; transition: gap .15s; }

/* EMPTY STATE */
.empty-state {
	grid-column: 1 / -1;
	text-align: center;
	padding: 64px 24px;
	color: var(--c-subtext);
	font-size: 15px;
}

/* AFFILIATE SECTION */
.affiliate-section {
	background: white;
	border-radius: var(--radius-xl);
	padding: 56px 40px;
	margin-top: 48px;
	border: 1px solid var(--c-border);
}
.affiliate-header { text-align: center; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.affiliate-eyebrow { color: var(--c-accent-warm); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.affiliate-header h2 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.2; }
.affiliate-header p { font-size: 15px; color: var(--c-subtext); line-height: 1.6; }
.affiliate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 24px;
}
.afl-card {
	background: var(--c-bg-light);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 20px;
	transition: all .2s;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.afl-card:hover {
	background: white;
	border-color: rgba(20,184,166,.4);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.afl-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.afl-thumb { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; font-size: 14px; letter-spacing: -.01em; flex-shrink: 0; }
.afl-tag-using { display: inline-block; padding: 3px 9px; background: rgba(20,184,166,.12); color: var(--c-primary); border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.afl-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
.afl-card p { font-size: 13px; color: var(--c-subtext); line-height: 1.5; flex: 1; }
.afl-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--c-border); margin-top: 4px; gap: 8px; }
.afl-cat { font-size: 11px; font-weight: 600; color: var(--c-subtext); text-transform: uppercase; letter-spacing: .05em; }
.afl-cta { font-size: 13px; font-weight: 700; color: var(--c-text); display: inline-flex; align-items: center; gap: 4px; }
.afl-card:hover .afl-cta { color: var(--c-primary); }
.affiliate-disclosure { display: flex; align-items: flex-start; gap: 10px; max-width: 600px; margin: 0 auto; padding: 14px 18px; background: var(--c-bg-light); border-radius: 999px; font-size: 12px; color: var(--c-subtext); line-height: 1.5; text-align: left; }
.affiliate-disclosure svg { color: var(--c-accent-warm); flex-shrink: 0; margin-top: 1px; }
.affiliate-disclosure strong { color: var(--c-text); font-weight: 600; }

/* NEWSLETTER */
.newsletter-section {
	background: white;
	border-radius: var(--radius-xl);
	padding: 56px 32px;
	margin-top: 48px;
	text-align: center;
	border: 1px solid var(--c-border);
}
.newsletter-section .badge {
	display: inline-block;
	background: var(--c-bg-light);
	color: var(--c-primary);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.newsletter-section h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 10px;
}
.newsletter-section .lead {
	font-size: 15px;
	color: var(--c-subtext);
	margin-bottom: 24px;
}
.newsletter-form input {
	flex: 1;
	min-width: 200px;
	padding: 13px 18px;
	border-radius: 10px;
	border: 1px solid var(--c-border);
	background: white;
	color: var(--c-text);
	font-size: 15px;
	font-family: inherit;
	outline: none;
}
.newsletter-form input:focus { border-color: var(--c-primary); }
.newsletter-form button {
	padding: 13px 22px;
	background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
	color: white;
	border: 1px solid #0f172a;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -.005em;
	font-family: inherit;
	cursor: pointer;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.10) inset,
		0 1px 2px 0 rgba(15,23,42,.20),
		0 4px 10px -2px rgba(15,23,42,.10);
	transition:
		background .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.newsletter-form button:hover {
	background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.12) inset,
		0 4px 10px -1px rgba(15,23,42,.22),
		0 12px 28px -6px rgba(15,23,42,.18);
}
.newsletter-form button:active {
	transform: translateY(0);
}

/* FOOTER */
.site-footer {
	padding: 40px 0 28px;
	background: var(--c-bg-light);
	border-top: 1px solid var(--c-border);
	margin-top: 48px;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.footer-brand-info {
	color: var(--c-subtext);
	font-size: 14px;
	line-height: 1.6;
	max-width: 360px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: white;
	border: 1px solid var(--c-border);
	display: grid;
	place-items: center;
	color: var(--c-subtext);
	transition: all .15s;
}
.footer-social a:hover { background: var(--c-text); color: white; transform: translateY(-2px); border-color: var(--c-text); }
.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid var(--c-border);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: var(--c-subtext);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--c-text); }

.mockup-badge {
	position: fixed;
	bottom: 16px;
	right: 16px;
	background: #facc15;
	color: #0f172a;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: var(--shadow-md);
	z-index: 199;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr; gap: 32px; }
	.stats { gap: 28px; }
	.stat-num { font-size: 32px; }
}
@media (max-width: 768px) {
	.container { padding: 0 16px; }
	.nav-links { display: none; }
	.page-wrap { padding: 20px 0 40px; }
	.hero-card { padding: 32px 24px; border-radius: 20px; }
	.hero-card h1 { font-size: 30px; letter-spacing: -.02em; }
	.hero-card .lead { font-size: 15px; }
	.stats { gap: 24px; flex-wrap: wrap; }
	.stat-num { font-size: 28px; }
	.controls { gap: 14px; }
	.filter-pills { gap: 8px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
	.filter-pills::-webkit-scrollbar { display: none; }
	.pill { white-space: nowrap; flex-shrink: 0; padding: 8px 14px; font-size: 12px; }
	.search-bar { max-width: 100%; }
	.skill-grid { grid-template-columns: 1fr; gap: 12px; }
	.skill-card { padding: 20px; }
	.skill-card h3 { font-size: 16px; }
	.affiliate-section { padding: 36px 20px; border-radius: 20px; margin-top: 32px; }
	.affiliate-header h2 { font-size: 22px; }
	.affiliate-grid { grid-template-columns: 1fr; gap: 12px; }
	.afl-card { padding: 16px; }
	.affiliate-disclosure { border-radius: 12px; font-size: 11px; padding: 12px 14px; }
	.newsletter-section { padding: 36px 20px; border-radius: 20px; }
	.newsletter-section h2 { font-size: 22px; }
	.newsletter-form { flex-direction: column; gap: 10px; }
	.newsletter-form input, .newsletter-form button { width: 100%; }
	.footer-inner { flex-direction: column; align-items: flex-start; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* === NEWSLETTER PAGE STYLES === */
:root {
	--c-primary: #14b8a6;
	--c-primary-dark: #0d9488;
	--c-accent: #facc15;
	--c-accent-warm: #f59e0b;
	--c-text: #0f172a;
	--c-subtext: #64748b;
	--c-bg-light: #f7f9fc;
	--c-bg-soft: #f1f5f9;
	--c-border: #e2e8f0;
	--c-white: #ffffff;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow-sm: 0 1px 2px rgba(15,23,42,.04);
	--shadow-md: 0 4px 12px rgba(15,23,42,.06);
	--shadow-lg: 0 16px 40px rgba(15,23,42,.10);
	--container: 1080px;
	--container-narrow: 720px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: 'Be Vietnam Pro', system-ui, sans-serif;
	color: var(--c-text);
	background: var(--c-bg-light);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

/* HEADER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(247,249,252,.92);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid rgba(226,232,240,.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 17px; letter-spacing: -.01em; color: var(--c-text); }
.brand-mark { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%); display: grid; place-items: center; color: white; font-weight: 800; font-size: 14px; box-shadow: 0 4px 12px rgba(20,184,166,.25); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--c-subtext); }
.nav-links a:hover, .nav-links a.active { color: var(--c-text); }
/* ===== BUTTON SYSTEM — premium polish ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 10px;
	font-family: inherit;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.005em;
	line-height: 1.2;
	cursor: pointer;
	border: 1px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		background .15s ease,
		color .15s ease,
		border-color .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.btn svg { flex-shrink: 0; }
.btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(20,184,166,.22);
}
.btn-primary {
	background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
	color: white;
	border-color: #0f172a;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.10) inset,
		0 1px 2px 0 rgba(15,23,42,.20),
		0 4px 10px -2px rgba(15,23,42,.10);
}
.btn-primary:hover {
	background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.12) inset,
		0 4px 10px -1px rgba(15,23,42,.22),
		0 12px 28px -6px rgba(15,23,42,.18);
}
.btn-primary:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

/* PAGE WRAPPER */
.page-wrap { padding: 32px 0 64px; }

/* HERO CARD */
.hero-card {
	background:
		radial-gradient(ellipse 800px 400px at 80% 20%, rgba(245,158,11,.12) 0%, transparent 60%),
		radial-gradient(ellipse 600px 400px at 20% 80%, rgba(20,184,166,.10) 0%, transparent 60%),
		linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: var(--radius-xl);
	padding: 64px 56px;
	color: white;
	position: relative;
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: 0 24px 60px rgba(15,23,42,.18);
	text-align: center;
}
.hero-card::before {
	content: '';
	position: absolute;
	top: 24px;
	right: 24px;
	width: 80px;
	height: 80px;
	background:
		linear-gradient(135deg, transparent 49%, rgba(255,255,255,.05) 50%, transparent 51%),
		linear-gradient(45deg, transparent 49%, rgba(255,255,255,.05) 50%, transparent 51%);
	background-size: 8px 8px;
	border-radius: 50%;
	opacity: .4;
	pointer-events: none;
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	background: rgba(20,184,166,.15);
	border: 1px solid rgba(20,184,166,.3);
	color: #5eead4;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 24px;
	position: relative;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: #5eead4; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-card h1 {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.035em;
	margin-bottom: 18px;
	color: white;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.hero-card h1 .accent {
	background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-card .lead {
	font-size: 18px;
	line-height: 1.6;
	color: #cbd5e1;
	max-width: 560px;
	margin: 0 auto 36px;
	position: relative;
}
.hero-card .lead strong { color: white; font-weight: 600; }

/* SIGN UP FORM IN HERO */
.newsletter-form input.wpcf7-form-control.wpcf7-submit.has-spinner{
	width: 100%;
	margin: 0 auto;
	display: block;
	line-height: 1;
}
.hero-form {
	max-width: 480px;
	margin: 0 auto;
	position: relative;
}
.hero-form-input,
.newsletter-form .form__contact input{
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.hero-form input[type="email"],
.newsletter-form .form__contact input{
	flex: 1;
	min-width: 220px;
	padding: 16px 20px;
	border-radius: 12px;
	border: 1px solid #334155;
	background: rgba(15,23,42,.6);
	color: white;
	font-size: 15px;
	font-family: inherit;
	outline: none;
	transition: border-color .15s, box-shadow .15s;
}
.newsletter-form .form__contact input{
	background: #fff;
	height: 48px;
}
span.wpcf7-spinner{
	display: none;
}
.wpcf7 form .wpcf7-response-output{
	padding-top: 0;
	margin-top: 10px;
}
.hero-form input[type="email"]::placeholder,
.newsletter-form .form__contact input::placeholder{ color: #64748b; }
.hero-form input[type="email"]:focus,
.newsletter-form .form__contact input:focus{
	border-color: var(--c-primary);
	box-shadow: 0 0 0 4px rgba(20,184,166,.15);
}
.hero-form button {
	padding: 16px 28px;
	background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
	color: white;
	border: 1px solid #0d9488;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -.005em;
	font-family: inherit;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.22) inset,
		0 1px 2px 0 rgba(13,148,136,.35),
		0 8px 22px -4px rgba(20,184,166,.40);
	transition:
		background .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.hero-form button:hover {
	background: linear-gradient(180deg, #2dd4bf 0%, #14b8a6 100%);
	transform: translateY(-2px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.26) inset,
		0 4px 12px -2px rgba(13,148,136,.45),
		0 18px 36px -8px rgba(20,184,166,.50);
}
.hero-form button:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.15) inset,
		0 1px 2px 0 rgba(13,148,136,.40);
}
.hero-form button:focus-visible {
	outline: none;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.22) inset,
		0 0 0 4px rgba(20,184,166,.30),
		0 8px 22px -4px rgba(20,184,166,.40);
}
.hero-trust {
	font-size: 13px;
	color: #94a3b8;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--c-primary); }

/* CONTENT WRAPPER */
.content-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: 56px 40px;
	margin-bottom: 32px;
	border: 1px solid var(--c-border);
}
.section-head { text-align: center; margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto; }
.section-eyebrow { color: var(--c-primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; }
.section-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -.025em; line-height: 1.2; margin-bottom: 12px; }
.section-head p { font-size: 16px; color: var(--c-subtext); }

/* WHAT YOU GET — 4 cards */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.benefit-card {
	padding: 24px;
	background: var(--c-bg-light);
	border-radius: var(--radius-md);
	border: 1px solid var(--c-border);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.benefit-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: white;
	border: 1px solid var(--c-border);
	display: grid;
	place-items: center;
	color: var(--c-primary);
	flex-shrink: 0;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px; }
.benefit-card p { font-size: 14px; color: var(--c-subtext); line-height: 1.55; }

/* ARCHIVE PREVIEW */
.archive-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: 48px 40px;
	margin-bottom: 32px;
	border: 1px solid var(--c-border);
}
.archive-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.archive-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 20px 24px;
	background: var(--c-bg-light);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	transition: all .2s;
}
.archive-item:hover {
	background: white;
	border-color: rgba(20,184,166,.4);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.archive-num {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: white;
	border: 1px solid var(--c-border);
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 13px;
	color: var(--c-subtext);
	letter-spacing: -.01em;
	flex-shrink: 0;
}
.archive-meta { min-width: 0; }
.archive-meta .date {
	font-size: 11px;
	font-weight: 700;
	color: var(--c-primary);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px;
}
.archive-meta h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; line-height: 1.35; margin-bottom: 4px; }
.archive-meta p { font-size: 13px; color: var(--c-subtext); line-height: 1.5; }
.archive-arrow { color: var(--c-subtext); flex-shrink: 0; }
.archive-item:hover .archive-arrow { color: var(--c-primary); transform: translateX(4px); transition: transform .15s, color .15s; }

.archive-footer { text-align: center; margin-top: 24px; }
.archive-footer a {
	color: var(--c-text);
	font-weight: 600;
	font-size: 14px;
	border-bottom: 1px solid var(--c-border);
	padding-bottom: 2px;
}
.archive-footer a:hover { color: var(--c-primary); border-color: var(--c-primary); }

/* TESTIMONIAL */
.testimonial-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: 48px 40px;
	margin-bottom: 32px;
	border: 1px solid var(--c-border);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 32px;
	font-size: 140px;
	font-weight: 900;
	color: var(--c-bg-soft);
	line-height: 1;
	font-family: Georgia, serif;
	pointer-events: none;
}
.testimonial-quote {
	font-size: 22px;
	line-height: 1.5;
	color: var(--c-text);
	font-weight: 500;
	letter-spacing: -.01em;
	max-width: 640px;
	margin: 0 auto 24px;
	position: relative;
}
.testimonial-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	position: relative;
}
.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #14b8a6, #06b6d4);
	color: white;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 16px;
}
.testimonial-meta-text { text-align: left; }
.testimonial-meta-text .name { font-size: 14px; font-weight: 700; }
.testimonial-meta-text .role { font-size: 12px; color: var(--c-subtext); }

/* FAQ */
.faq-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: 48px 40px;
	margin-bottom: 32px;
	border: 1px solid var(--c-border);
}
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item {
	border-bottom: 1px solid var(--c-border);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
	padding: 20px 0;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	color: var(--c-text);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 400;
	color: var(--c-subtext);
	transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--c-primary); }
.faq-item .answer {
	padding: 0 0 20px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--c-subtext);
}

/* FINAL CTA */
.final-cta {
	background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
	color: white;
	border-radius: var(--radius-xl);
	padding: 48px 32px;
	text-align: center;
	margin-bottom: 32px;
	position: relative;
	overflow: hidden;
}
.final-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 70%);
	pointer-events: none;
}
.final-cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; line-height: 1.2; position: relative; }
.final-cta p { font-size: 16px; opacity: .92; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.final-cta .hero-form { max-width: 460px; }
.final-cta .hero-form input[type="email"] { background: rgba(255,255,255,.92); color: var(--c-text); border-color: rgba(255,255,255,.5); }
.final-cta .hero-form input[type="email"]::placeholder { color: var(--c-subtext); }
.final-cta .hero-form input[type="email"]:focus { border-color: white; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.final-cta .hero-form button { background: var(--c-text); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.final-cta .hero-form button:hover { background: #1e293b; }
.final-cta .hero-trust { color: rgba(255,255,255,.7); position: relative; }
.final-cta .hero-trust svg { color: white; }

/* FOOTER */
.site-footer { padding: 40px 0 28px; background: var(--c-bg-light); border-top: 1px solid var(--c-border); margin-top: 32px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.footer-brand-info { color: var(--c-subtext); font-size: 14px; line-height: 1.6; max-width: 360px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: white; border: 1px solid var(--c-border); display: grid; place-items: center; color: var(--c-subtext); transition: all .15s; }
.footer-social a:hover { background: var(--c-text); color: white; transform: translateY(-2px); border-color: var(--c-text); }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--c-border); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--c-subtext); }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--c-text); }

.mockup-badge {
	position: fixed;
	bottom: 16px;
	right: 16px;
	background: #facc15;
	color: #0f172a;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: var(--shadow-md);
	z-index: 199;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.container, .container-narrow { padding: 0 16px; }
	.nav-links { display: none; }
	.page-wrap { padding: 20px 0 40px; }
	.hero-card { padding: 40px 24px; border-radius: 20px; }
	.hero-card h1 { font-size: 32px; letter-spacing: -.02em; }
	.hero-card .lead { font-size: 16px; margin-bottom: 28px; }
	.hero-form-input { flex-direction: column; gap: 10px; }
	.hero-form input[type="email"], .hero-form button { width: 100%; min-width: 0; padding: 14px 16px; }
	.hero-trust { gap: 12px; font-size: 12px; }
	.content-card, .archive-card, .testimonial-card, .faq-card, .final-cta { padding: 32px 22px; border-radius: 20px; }
	.section-head h2 { font-size: 24px; }
	.benefits-grid { grid-template-columns: 1fr; gap: 12px; }
	.benefit-card { padding: 20px; }
	.archive-item { padding: 16px; grid-template-columns: auto 1fr; gap: 12px; }
	.archive-arrow { display: none; }
	.archive-num { width: 40px; height: 40px; font-size: 12px; }
	.testimonial-quote { font-size: 18px; }
	.testimonial-card::before { font-size: 100px; left: 16px; top: -10px; }
	.faq-item summary { padding: 16px 0; font-size: 15px; }
	.final-cta h2 { font-size: 24px; }
	.footer-inner { flex-direction: column; align-items: flex-start; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
	.hero-card h1 { font-size: 26px; }
	.section-head h2 { font-size: 22px; }
}

/* === SKILL DETAIL STYLES === */
:root {
	--c-primary: #14b8a6;
	--c-primary-dark: #0d9488;
	--c-accent: #facc15;
	--c-accent-warm: #f59e0b;
	--c-text: #0f172a;
	--c-subtext: #64748b;
	--c-bg-light: #f7f9fc;
	--c-bg-soft: #f1f5f9;
	--c-border: #e2e8f0;
	--c-white: #ffffff;
	--c-category: #ef4444;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow-sm: 0 1px 2px rgba(15,23,42,.04);
	--shadow-md: 0 4px 12px rgba(15,23,42,.06);
	--shadow-lg: 0 16px 40px rgba(15,23,42,.10);
	--container: 1080px;
	--container-narrow: 720px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: 'Be Vietnam Pro', system-ui, sans-serif;
	color: var(--c-text);
	background: var(--c-bg-light);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

/* HEADER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(247,249,252,.92);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid rgba(226,232,240,.6);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	gap: 32px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -.01em;
	color: var(--c-text);
}
.brand-mark {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
	display: grid;
	place-items: center;
	color: white;
	font-weight: 800;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(20,184,166,.25);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--c-subtext); }
.nav-links a:hover, .nav-links a.active { color: var(--c-text); }
/* ===== BUTTON SYSTEM — premium polish ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 10px;
	font-family: inherit;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.005em;
	line-height: 1.2;
	cursor: pointer;
	border: 1px solid transparent;
	text-decoration: none;
	white-space: nowrap;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		background .15s ease,
		color .15s ease,
		border-color .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.btn svg { flex-shrink: 0; }
.btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(20,184,166,.22);
}
.btn-primary {
	background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
	color: white;
	border-color: #0f172a;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.10) inset,
		0 1px 2px 0 rgba(15,23,42,.20),
		0 4px 10px -2px rgba(15,23,42,.10);
}
.btn-primary:hover {
	background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.12) inset,
		0 4px 10px -1px rgba(15,23,42,.22),
		0 12px 28px -6px rgba(15,23,42,.18);
}
.btn-primary:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

/* PAGE WRAPPER */
.page-wrap { padding: 32px 0 48px; }

/* SKILL HERO CARD (similar hub) */
.skill-hero {
	background:
		radial-gradient(ellipse 800px 400px at 80% 20%, rgba(239,68,68,.10) 0%, transparent 60%),
		linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: var(--radius-xl);
	padding: 48px 56px;
	color: white;
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
	box-shadow: 0 24px 60px rgba(15,23,42,.18);
}
.breadcrumb {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 20px;
	position: relative;
}
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }
.skill-meta-row {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 24px;
	position: relative;
}
.skill-num-badge {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 18px;
	color: white;
	letter-spacing: -.01em;
}
.skill-cat-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	background: rgba(239,68,68,.15);
	border: 1px solid rgba(239,68,68,.3);
	color: #fca5a5;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.skill-cat-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-category); }
.skill-hero h1 {
	font-size: 44px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.03em;
	margin-bottom: 18px;
	color: white;
	position: relative;
}
.skill-hero .lead {
	font-size: 17px;
	line-height: 1.65;
	color: #cbd5e1;
	max-width: 640px;
	position: relative;
	text-align: left;
	margin: unset;
}
.skill-hero .lead strong { color: white; font-weight: 600; }

/* CONTENT WRAPPER */
.content-wrap {
	background: white;
	border-radius: var(--radius-xl);
	padding: 56px 48px;
	box-shadow: var(--shadow-sm);
}

/* ARTICLE BODY */
.article {
	max-width: 640px;
	margin: 0 auto;
}
.article h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.02em;
	margin: 40px 0 16px;
	line-height: 1.25;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 32px 0 12px;
	letter-spacing: -.01em;
}
.article p {
	font-size: 17px;
	line-height: 1.75;
	color: #1e293b;
	margin-bottom: 18px;
}
.article ul, .article ol { margin: 0 0 20px 22px; }
.article li { margin-bottom: 8px; font-size: 17px; line-height: 1.7; color: #1e293b; }
.article strong { font-weight: 700; color: var(--c-text); }
.article a {
	color: var(--c-primary);
	border-bottom: 1px solid rgba(20,184,166,.3);
	transition: border-color .15s;
}
.article a:hover { border-bottom-color: var(--c-primary); }

/* DIRECT ANSWER */
.direct-answer {
	background: var(--c-bg-light);
	border-left: 4px solid var(--c-primary);
	padding: 24px 28px;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	margin-bottom: 32px;
}
.direct-answer .label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--c-primary);
	margin-bottom: 8px;
}
.direct-answer p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--c-text);
	margin: 0;
	font-weight: 500;
}

/* TOOLS SECTION (affiliate) */
.tools-section {
	margin: 56px auto 0;
	max-width: 720px;
}
.tools-section-header {
	text-align: center;
	margin-bottom: 32px;
}
.tools-section-header .label {
	color: var(--c-accent-warm);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-bottom: 12px;
}
.tools-section-header h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 10px;
}
.tools-section-header p {
	font-size: 15px;
	color: var(--c-subtext);
	max-width: 480px;
	margin: 0 auto;
}
.disclosure-mini {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--c-bg-light);
	border: 1px solid var(--c-border);
	border-radius: 999px;
	font-size: 12px;
	color: var(--c-subtext);
	margin-bottom: 32px;
	margin-top: 4px;
}
.disclosure-mini svg { color: var(--c-accent-warm); }
.disclosure-mini strong { color: var(--c-text); font-weight: 600; }

.tools-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
.tool-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 20px 22px;
	background: white;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	transition: all .2s;
}
.tool-row:hover {
	border-color: rgba(20,184,166,.4);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.tool-thumb {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: var(--c-bg-light);
	display: grid;
	place-items: center;
	font-size: 22px;
	border: 1px solid var(--c-border);
}
.tool-meta { min-width: 0; }
.tool-meta h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
	letter-spacing: -.01em;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.tool-meta .using-tag {
	display: inline-block;
	padding: 2px 8px;
	background: rgba(20,184,166,.12);
	color: var(--c-primary);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.tool-meta .why {
	font-size: 14px;
	color: var(--c-subtext);
	line-height: 1.5;
}
.tool-cta {
	padding: 9px 16px;
	background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
	color: white;
	border: 1px solid #0f172a;
	border-radius: 9px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: -.005em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.10) inset,
		0 1px 2px 0 rgba(15,23,42,.18);
	transition:
		background .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.tool-cta:hover {
	background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.12) inset,
		0 4px 10px -2px rgba(15,23,42,.18);
}
.tool-cta:active { transform: translateY(0); }

/* NEWSLETTER */
.newsletter-card {
	background:
		radial-gradient(ellipse at 80% 20%, rgba(245,158,11,.12) 0%, transparent 60%),
		linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	border-radius: var(--radius-xl);
	padding: 48px 32px;
	margin-top: 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.newsletter-card .badge {
	display: inline-block;
	background: rgba(20,184,166,.15);
	border: 1px solid rgba(20,184,166,.3);
	color: #5eead4;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 16px;
	white-space: nowrap;
}
.newsletter-card h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 10px;
	color: white;
}
.newsletter-card p { font-size: 15px; color: #cbd5e1; margin-bottom: 24px; }
.newsletter-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.newsletter-form input {
	flex: 1;
	min-width: 200px;
	padding: 13px 18px;
	border-radius: 10px;
	border: 1px solid #334155;
	background: #1e293b;
	color: white;
	font-size: 15px;
	font-family: inherit;
	outline: none;
}
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus { border-color: var(--c-primary); }
.newsletter-form button {
	padding: 13px 22px;
	background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
	color: white;
	border: 1px solid #0d9488;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -.005em;
	font-family: inherit;
	cursor: pointer;
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.18) inset,
		0 1px 2px 0 rgba(13,148,136,.30),
		0 4px 12px -2px rgba(20,184,166,.30);
	transition:
		background .15s ease,
		transform .12s ease,
		box-shadow .22s cubic-bezier(.4,0,.2,1);
}
.newsletter-form button:hover {
	background: linear-gradient(180deg, #2dd4bf 0%, #14b8a6 100%);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 0 rgba(255,255,255,.22) inset,
		0 4px 12px -2px rgba(13,148,136,.40),
		0 14px 32px -8px rgba(20,184,166,.40);
}
.newsletter-form button:active {
	transform: translateY(0);
	background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
}

/* RELATED SKILLS */
.related-section { margin-top: 48px; }
.related-section h2 {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 20px;
	text-align: center;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.related-card {
	background: white;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 20px;
	transition: all .2s;
}
.related-card:hover {
	border-color: rgba(20,184,166,.4);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.related-num {
	font-size: 12px;
	font-weight: 700;
	color: var(--c-subtext);
	margin-bottom: 6px;
}
.related-card h3 { font-size: 15px; font-weight: 700; line-height: 1.3; }

/* FOOTER */
.site-footer {
	padding: 40px 0 28px;
	background: var(--c-bg-light);
	border-top: 1px solid var(--c-border);
	margin-top: 48px;
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.footer-brand-info { color: var(--c-subtext); font-size: 14px; line-height: 1.6; max-width: 360px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: white; border: 1px solid var(--c-border); display: grid; place-items: center; color: var(--c-subtext); transition: all .15s; }
.footer-social a:hover { background: var(--c-text); color: white; transform: translateY(-2px); border-color: var(--c-text); }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--c-border); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--c-subtext); }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--c-text); }

.mockup-badge {
	position: fixed;
	bottom: 16px;
	right: 16px;
	background: #facc15;
	color: #0f172a;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: var(--shadow-md);
	z-index: 199;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.container, .container-narrow { padding: 0 16px; }
	.nav-links { display: none; }
	.page-wrap { padding: 20px 0 32px; }
	.skill-hero { padding: 32px 24px; border-radius: 20px; margin-bottom: 24px; }
	.skill-hero h1 { font-size: 28px; letter-spacing: -.02em; }
	.skill-hero .lead { font-size: 15px; }
	.skill-num-badge { width: 40px; height: 40px; font-size: 16px; }
	.content-wrap { padding: 32px 22px; border-radius: 20px; }
	.article h2 { font-size: 22px; }
	.article h3 { font-size: 17px; }
	.article p, .article li { font-size: 16px; }
	.direct-answer { padding: 20px 22px; }
	.direct-answer p { font-size: 15px; }
	.tools-section { margin-top: 40px; }
	.tools-section-header h2 { font-size: 22px; }
	.tool-row { grid-template-columns: auto 1fr; gap: 14px; padding: 16px; }
	.tool-cta { grid-column: 1 / -1; justify-content: center; padding: 11px 16px; }
	.tool-thumb { width: 44px; height: 44px; font-size: 18px; }
	.newsletter-card { padding: 36px 22px; border-radius: 20px; }
	.newsletter-card h2 { font-size: 22px; }
	.newsletter-form { flex-direction: column; gap: 10px; }
	.newsletter-form input, .newsletter-form button { width: 100%; }
	.related-grid { grid-template-columns: 1fr; }
	.footer-inner { flex-direction: column; align-items: flex-start; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
