/*
Theme Name: GetCricfy
Theme URI: https://getcricfy.com
Author: GetCricfy
Author URI: https://getcricfy.com
Description: Clean, minimal WordPress theme based on the PS2 BIOS layout, adapted for GetCricfy. Ideal for fast, focused download/landing pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: getcricfy
Tags: custom-logo, custom-menu, featured-images, one-column, responsive-layout, theme-options, translation-ready
*/

/* ==========================================================================
   Variables & base
   ========================================================================== */

:root {
	--color-bg: #f1f5f9;
	--color-bg-warm: #faf8f5;
	--color-surface: #ffffff;
	--color-surface-soft: #fefefe;
	--color-text: #1e293b;
	--color-text-muted: #64748b;
	--color-accent: #ea580c;
	--color-accent-hover: #c2410c;
	--color-accent-light: #ffedd5;
	--color-border: #e2e8f0;
	--color-nav-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
	--color-nav-text: #e2e8f0;
	--color-nav-text-hover: #ffffff;
	--color-download: linear-gradient(145deg, #f97316 0%, #ea580c 100%);
	--color-download-hover: linear-gradient(145deg, #fb923c 0%, #f97316 100%);
	--color-download-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
	--font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, monospace;
	--radius: 10px;
	--radius-lg: 14px;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -5px rgba(0, 0, 0, 0.04);
	--max-width: 720px;
	--header-height: 64px;
}

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

* {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	background-image: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
	background-attachment: fixed;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-height);
	background: var(--color-nav-bg);
	color: var(--color-nav-text);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	font-weight: 700;
	font-size: 1.2rem;
}

.site-logo img {
	display: block;
	height: 40px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.site-nav a {
	display: inline-block;
	padding: 0.5rem 0.9rem;
	color: var(--color-nav-text);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	border-radius: 8px;
	opacity: 0.92;
	transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.site-nav a:hover {
	opacity: 1;
	color: var(--color-nav-text-hover);
	background: rgba(255, 255, 255, 0.1);
}

/* Nav Download button */
.nav-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.15rem;
	margin-left: 0.5rem;
	background: var(--color-download) !important;
	color: #fff !important;
	font-weight: 600 !important;
	font-size: 0.9rem;
	border-radius: 8px;
	box-shadow: var(--color-download-shadow);
	opacity: 1 !important;
	transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.nav-download-btn:hover {
	background: var(--color-download-hover) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.site-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.15rem;
	margin: 0;
	padding: 0;
}

.site-nav li {
	margin: 0;
}

/* ==========================================================================
   Main content
   ========================================================================== */

.site-main {
	flex: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
	position: relative;
}

.content-width {
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Front page
   ========================================================================== */

.front-hero {
	text-align: center;
	padding: 3rem 0 4rem;
}

.front-hero__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.25;
	margin-bottom: 0.75rem;
}

.front-hero__tagline {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	margin-bottom: 2rem;
	max-width: 36ch;
	margin-left: auto;
	margin-right: auto;
}

.front-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: var(--color-download);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--color-download-shadow);
	transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.front-hero__cta:hover {
	background: var(--color-download-hover);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(5, 150, 105, 0.45);
}

/* ==========================================================================
   Page & single
   ========================================================================== */

.page-header,
.entry-header {
	margin-bottom: 1.5rem;
}

/* Content area: soft surface on page & single */
body.page .site-main .content-width,
body.single .site-main .content-width {
	background: var(--color-surface-soft);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 2rem 2.25rem;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.page-title,
.entry-title {
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.3;
}

.entry-content {
	font-size: 1.05rem;
}

.entry-content p {
	margin-bottom: 1rem;
}

.entry-content p:last-child {
	margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1rem 1.5rem;
}

.entry-content h2 {
	font-size: 1.35rem;
	margin: 2rem 0 0.75rem;
	color: var(--color-text);
}

.entry-content h3 {
	font-size: 1.15rem;
	margin: 1.5rem 0 0.5rem;
}

.entry-content a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.entry-content a:hover {
	color: var(--color-accent-hover);
}

/* ==========================================================================
   BIOS Download template
   ========================================================================== */

.bios-page .site-main {
	padding-top: 2rem;
}

.bios-hero {
	background: var(--color-surface-soft);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(5, 150, 105, 0.08);
	padding: 2.5rem;
	margin-bottom: 2rem;
}

.bios-hero__title {
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.bios-hero__desc {
	color: var(--color-text-muted);
	font-size: 1rem;
	margin-bottom: 1.5rem;
	line-height: 1.55;
}

.bios-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.bios-download-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	padding: 1.1rem 2rem;
	background: var(--color-download);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--color-download-shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}

.bios-download-btn:hover {
	background: var(--color-download-hover);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(5, 150, 105, 0.5);
}

.bios-download-btn__sub {
	font-size: 0.85rem;
	font-weight: 500;
	opacity: 0.95;
}

.bios-size {
	display: inline-block;
	padding: 0.65rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-accent);
	background: var(--color-accent-light);
	border: 1px solid rgba(5, 150, 105, 0.2);
	border-radius: 8px;
	font-family: var(--font-mono);
}

.bios-section {
	background: var(--color-surface-soft);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid rgba(0, 0, 0, 0.04);
	padding: 1.75rem 2rem;
	margin-bottom: 1.25rem;
}

.bios-section--alt {
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	border-color: rgba(5, 150, 105, 0.06);
}

.bios-section__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--color-border);
}

.bios-section__content {
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--color-text);
}

.bios-section__content p {
	margin-bottom: 0.5rem;
}

.bios-section__content p:last-child {
	margin-bottom: 0;
}

.bios-meta {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.35rem 1.5rem;
	font-size: 0.95rem;
}

.bios-meta dt {
	font-weight: 600;
	color: var(--color-text-muted);
}

.bios-meta dd {
	margin: 0;
}

.bios-content {
	padding-top: 0.5rem;
}

.bios-content .entry-content {
	padding: 0;
}

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

.site-footer {
	margin-top: auto;
	padding: 1.5rem;
	background: var(--color-nav-bg);
	color: var(--color-nav-text);
	text-align: center;
	font-size: 0.9rem;
	opacity: 0.92;
}

.site-footer a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer a:hover {
	opacity: 1;
}

/* ==========================================================================
   Intel-style BIOS Download page – Professional theme
   ========================================================================== */

.intel-bios-page .site-main {
	padding: 2.5rem 1.5rem 4rem;
	background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 50%, #f5f7fa 100%);
	min-height: 60vh;
	color: #2c3e50;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, "Helvetica Neue", sans-serif;
}

.intel-bios__container {
	max-width: 820px;
	margin: 0 auto;
}

/* Header card */
.intel-bios__header {
	margin-bottom: 2rem;
	padding: 2rem 2rem 1.75rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.intel-bios__title {
	font-size: clamp(1.4rem, 2.8vw, 1.75rem);
	font-weight: 700;
	color: #1a202c;
	line-height: 1.35;
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}

.intel-bios__meta-line {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 1.5rem;
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 0.5rem;
}

.intel-bios__meta-line span {
	display: inline-flex;
	align-items: center;
}

.intel-bios__version {
	font-size: 0.95rem;
	margin: 0;
	color: #475569;
	font-weight: 500;
}

/* Section cards */
.intel-bios__section {
	margin-bottom: 2rem;
	padding: 2rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.intel-bios__section--download {
	padding: 2rem;
}

.intel-bios__section-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #e2e8f0;
	letter-spacing: -0.01em;
}

.intel-bios__subtitle {
	font-size: 1rem;
	font-weight: 600;
	color: #334155;
	margin: 1.5rem 0 0.5rem;
}

.intel-bios__subtitle:first-child {
	margin-top: 0;
}

.intel-bios__content {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #475569;
}

.intel-bios__content p {
	margin: 0 0 0.75rem;
}

.intel-bios__content ul,
.intel-bios__content ol {
	margin: 0 0 0.75rem 1.5rem;
}

/* License section */
.intel-bios__license-section {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.intel-bios__license-text {
	font-size: 0.875rem;
	line-height: 1.65;
	color: #475569;
	max-height: 220px;
	overflow-y: auto;
	margin-bottom: 1.25rem;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	scrollbar-width: thin;
}

.intel-bios__license-text::-webkit-scrollbar {
	width: 8px;
}

.intel-bios__license-text::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 4px;
}

.intel-bios__license-text::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 4px;
}

.intel-bios__license-text p {
	margin: 0 0 0.5rem;
}

.intel-bios__license-prompt {
	font-size: 0.9375rem;
	margin: 0 0 1.25rem;
	color: #334155;
	font-weight: 500;
}

.intel-bios__license-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 0;
}

.intel-bios__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.7rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
	font-family: inherit;
}

.intel-bios__btn:hover {
	transform: translateY(-1px);
}

.intel-bios__btn--primary {
	background: linear-gradient(180deg, #0077ed 0%, #0066cc 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 102, 204, 0.35);
}

.intel-bios__btn--primary:hover {
	background: linear-gradient(180deg, #0088ff 0%, #0077ed 100%);
	box-shadow: 0 4px 14px rgba(0, 102, 204, 0.4);
}

.intel-bios__btn--secondary {
	background: #fff;
	color: #475569;
	border: 1px solid #cbd5e1;
}

.intel-bios__btn--secondary:hover {
	background: #f8fafc;
	border-color: #94a3b8;
	color: #334155;
}

/* Download button – primary CTA */
.intel-bios__download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 1rem 1.75rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 10px;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
	font-family: inherit;
	border: none;
	cursor: pointer;
	text-align: center;
	line-height: 1.3;
}

.intel-bios__download-btn--primary {
	background: linear-gradient(180deg, #059669 0%, #047857 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.intel-bios__download-btn--primary:hover {
	background: linear-gradient(180deg, #10b981 0%, #059669 100%);
	box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
	color: #fff;
	transform: translateY(-2px);
}

.intel-bios__download-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25em;
	height: 1.25em;
	font-size: 1.1em;
	line-height: 1;
}

/* Download card (Available Downloads) */
.intel-bios__download-card {
	text-align: center;
	padding: 1.5rem 0 0;
}

.intel-bios__download-card .intel-bios__download-btn {
	margin-bottom: 1.5rem;
	min-width: 220px;
}

.intel-bios__download-meta {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: left;
	max-width: 100%;
}

.intel-bios__download-meta-item {
	font-size: 0.9rem;
	color: #64748b;
}

.intel-bios__sha-wrap {
	width: 100%;
	max-width: 100%;
}

.intel-bios__sha {
	display: block;
	margin-top: 0.35rem;
	padding: 0.65rem 0.85rem;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 0.75rem;
	word-break: break-all;
	font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
	color: #475569;
	line-height: 1.5;
}

/* Reveal block after license accept */
.intel-bios__download-reveal {
	margin-top: 1.25rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border: 1px solid #a7f3d0;
	border-radius: 10px;
	text-align: center;
}

.intel-bios__download-reveal .intel-bios__download-msg {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: #065f46;
	font-weight: 500;
}

.intel-bios__download-reveal .intel-bios__download-btn {
	margin-top: 0.25rem;
}

.intel-bios__available-downloads--gated[hidden] {
	display: none;
}

.intel-bios__product-list,
.intel-bios__doc-list {
	margin: 0 0 0.75rem;
	padding-left: 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #475569;
}

.intel-bios__product-list li,
.intel-bios__doc-list li {
	margin-bottom: 0.4rem;
}

.intel-bios__doc-list a {
	color: #0077ed;
	text-decoration: none;
	font-weight: 500;
}

.intel-bios__doc-list a:hover {
	text-decoration: underline;
	color: #0066cc;
}

.intel-bios__content.entry-content {
	padding: 0;
}

/* ==========================================================================
   Software Landing (front page)
   ========================================================================== */

.software-landing .site-footer {
	display: none;
}

.software-landing .site-main {
	padding: 0;
}

.sw-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.sw-container--narrow {
	max-width: 720px;
}

.sw-section-title {
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 700;
	color: var(--color-text);
	text-align: center;
	margin-bottom: 1.5rem;
}

/* Hero */
.sw-hero {
	padding: 3rem 1.5rem 4rem;
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.sw-hero__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3rem;
	align-items: center;
}

.sw-hero__content {
	text-align: left;
}

.sw-hero__logo {
	margin-bottom: 1rem;
}

.sw-hero__logo img {
	display: block;
	max-height: 80px;
	width: auto;
	object-fit: contain;
}

.sw-hero__title {
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.sw-hero__desc {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.sw-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.sw-hero__cta--regions {
	gap: 1rem;
}
.sw-hero__cta-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
}
.sw-hero__cta-size {
	font-size: 0.8125rem;
	color: var(--slate-400, #94a3b8);
}
body.sw-dark .sw-hero__cta-size {
	color: rgba(148, 163, 184, 0.9);
}

.sw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	font-size: 1rem;
	border-radius: var(--radius);
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	border: none;
	cursor: pointer;
}

.sw-btn--primary {
	background: var(--color-download);
	color: #fff;
	box-shadow: var(--color-download-shadow);
}

.sw-btn--primary:hover {
	background: var(--color-download-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

/* Colorful button styles */
.software-landing.btn-style-blue .sw-btn--primary {
	background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}
.software-landing.btn-style-blue .sw-btn--primary:hover {
	background: linear-gradient(145deg, #60a5fa 0%, #3b82f6 100%);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.software-landing.btn-style-blue .nav-download-btn {
	background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%) !important;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.software-landing.btn-style-blue .nav-download-btn:hover {
	background: linear-gradient(145deg, #60a5fa 0%, #3b82f6 100%) !important;
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.software-landing.btn-style-orange .sw-btn--primary {
	background: linear-gradient(145deg, #f97316 0%, #ea580c 100%);
	box-shadow: 0 4px 14px rgba(234, 88, 12, 0.45);
}
.software-landing.btn-style-orange .sw-btn--primary:hover {
	background: linear-gradient(145deg, #fb923c 0%, #f97316 100%);
	box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}
.software-landing.btn-style-orange .nav-download-btn {
	background: linear-gradient(145deg, #f97316 0%, #ea580c 100%) !important;
	box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}
.software-landing.btn-style-orange .nav-download-btn:hover {
	background: linear-gradient(145deg, #fb923c 0%, #f97316 100%) !important;
	box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.software-landing.btn-style-purple .sw-btn--primary {
	background: linear-gradient(145deg, #a855f7 0%, #9333ea 100%);
	box-shadow: 0 4px 14px rgba(147, 51, 234, 0.45);
}
.software-landing.btn-style-purple .sw-btn--primary:hover {
	background: linear-gradient(145deg, #c084fc 0%, #a855f7 100%);
	box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
}
.software-landing.btn-style-purple .nav-download-btn {
	background: linear-gradient(145deg, #a855f7 0%, #9333ea 100%) !important;
	box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
}
.software-landing.btn-style-purple .nav-download-btn:hover {
	background: linear-gradient(145deg, #c084fc 0%, #a855f7 100%) !important;
	box-shadow: 0 6px 20px rgba(147, 51, 234, 0.45);
}

.software-landing.btn-style-red .sw-btn--primary {
	background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%);
	box-shadow: 0 4px 14px rgba(220, 38, 38, 0.45);
}
.software-landing.btn-style-red .sw-btn--primary:hover {
	background: linear-gradient(145deg, #f87171 0%, #ef4444 100%);
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}
.software-landing.btn-style-red .nav-download-btn {
	background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%) !important;
	box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}
.software-landing.btn-style-red .nav-download-btn:hover {
	background: linear-gradient(145deg, #f87171 0%, #ef4444 100%) !important;
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
}

/* Final CTA section matches button style */
.software-landing.btn-style-blue .sw-cta { background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%); }
.software-landing.btn-style-orange .sw-cta { background: linear-gradient(145deg, #ea580c 0%, #c2410c 100%); }
.software-landing.btn-style-purple .sw-cta { background: linear-gradient(145deg, #9333ea 0%, #7e22ce 100%); }
.software-landing.btn-style-red .sw-cta { background: linear-gradient(145deg, #dc2626 0%, #b91c1c 100%); }

/* ========== PS2 Preview layout (like React component) ========== */
.software-landing.sw-preview { --slate-50: #f8fafc; --slate-200: #e2e8f0; --slate-300: #cbd5e1; --slate-500: #64748b; --slate-600: #475569; --slate-900: #0f172a; }

.sw-container--wide {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ========== Dark premium layout (React-style) ========== */
html:has(body.sw-dark) {
	background: #020617 !important;
}
body.sw-dark {
	background: #020617 !important;
	background-image: none !important;
	background-attachment: scroll !important;
	color: #fff;
	min-height: 100vh;
}
body.sw-dark .site-main {
	padding: 0;
	background: transparent !important;
}
body.sw-dark .sw-dark-inner {
	background: transparent;
}
/* Override light hero/section backgrounds so content area is dark */
body.sw-dark .sw-hero,
body.sw-dark .sw-hero--dark,
body.sw-dark .sw-why,
body.sw-dark .sw-features--dark,
body.sw-dark .sw-guide,
body.sw-dark .sw-cta--dark .sw-cta__inner,
body.sw-dark .sw-seo--dark,
body.sw-dark .sw-container,
body.sw-dark .sw-container--wide {
	background: transparent !important;
}

/* Dark: blur orbs */
.sw-dark-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
.sw-dark-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
}
.sw-dark-orb--1 { left: -5rem; top: 0; width: 18rem; height: 18rem; background: rgba(99, 102, 241, 0.3); }
.sw-dark-orb--2 { right: 0; top: 6rem; width: 20rem; height: 20rem; background: rgba(34, 211, 238, 0.25); }
.sw-dark-orb--3 { bottom: 0; left: 33%; width: 18rem; height: 18rem; background: rgba(217, 70, 239, 0.15); }
.sw-dark-inner {
	position: relative;
	z-index: 1;
}

/* Dark: glass header */
body.sw-dark .site-header--preview {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.sw-dark .site-header--preview .site-logo { color: #fff; }
body.sw-dark .site-header--preview .site-logo__mark {
	background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.25);
}
body.sw-dark .site-header--preview .site-logo__name { color: #fff; }
body.sw-dark .site-header--preview .site-logo__tagline { color: #94a3b8; }
body.sw-dark .site-header--preview .site-nav a {
	color: #cbd5e1;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}
body.sw-dark .site-header--preview .site-nav a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}
body.sw-dark .site-header--preview .nav-download-btn {
	background: linear-gradient(90deg, #f97316 0%, #ea580c 100%) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 9999px;
	padding: 0.625rem 1.25rem;
	font-weight: 600;
	box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}
body.sw-dark .site-header--preview .nav-download-btn:hover {
	opacity: 0.95;
}

/* Dark: hero */
.sw-hero--dark {
	padding: 4rem 0 5rem;
	position: relative;
}
.sw-hero__grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 768px) {
	.sw-hero__grid { grid-template-columns: 1fr 1fr; }
}
/* Single-column hero: always one column so content can be centered */
.sw-hero__grid--single {
	grid-template-columns: 1fr;
	max-width: 56rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.sw-hero__grid--single .sw-hero__content {
	text-align: center;
	width: 100%;
}
.sw-hero__grid--single .sw-hero__title--dark,
.sw-hero__grid--single .sw-hero__desc--dark {
	max-width: none;
}
.sw-hero__grid--single .sw-hero__desc--dark {
	width: 100%;
}
.sw-hero__grid--single .sw-hero__cta {
	justify-content: center;
	width: 100%;
	gap: 1rem;
	flex-direction: column;
}
@media (min-width: 640px) {
	.sw-hero__grid--single .sw-hero__cta {
		flex-direction: row;
	}
}
.sw-hero__grid--single .sw-hero__cta .sw-btn--gradient,
.sw-hero__grid--single .sw-hero__cta .sw-btn--ghost {
	width: 100%;
	text-align: center;
}
@media (min-width: 640px) {
	.sw-hero__grid--single .sw-hero__cta .sw-btn--gradient,
	.sw-hero__grid--single .sw-hero__cta .sw-btn--ghost {
		flex: 1;
		width: auto;
	}
}
.sw-hero__grid--single .sw-hero__stats {
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* Force hero centre alignment (high specificity for dark front page) */
body.sw-dark .sw-hero--dark .sw-container--wide,
body.sw-dark .sw-hero--dark .sw-hero__grid--single {
	display: flex;
	justify-content: center;
	text-align: center;
}
body.sw-dark .sw-hero--dark .sw-hero__grid--single {
	flex: 1;
	width: 100%;
}
body.sw-dark .sw-hero--dark .sw-hero__content {
	text-align: left;
	width: 100%;
}
body.sw-dark .sw-hero--dark .sw-hero__cta {
	justify-content: center !important;
}
body.sw-dark .sw-hero--dark .sw-hero__stats {
	margin-left: auto !important;
	margin-right: auto !important;
}
body.sw-dark .sw-hero--dark .sw-hero__badge--dark,
body.sw-dark .sw-hero--dark .sw-hero__title--dark,
body.sw-dark .sw-hero--dark .sw-hero__desc--dark {
	margin-left: auto;
	margin-right: auto;
}
body.sw-dark .sw-hero--dark .sw-hero__desc--dark {
	max-width: 72ch;
}
body.sw-dark .sw-hero--dark .sw-hero__cta .sw-btn--gradient,
body.sw-dark .sw-hero--dark .sw-hero__cta .sw-btn--ghost {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sw-hero__badge--dark {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: 1px solid rgba(34, 211, 238, 0.2);
	background: rgba(34, 211, 238, 0.1);
	font-size: 0.75rem;
	font-weight: 500;
	color: #67e8f9;
}
.sw-hero__title--dark {
	margin-top: 1.5rem;
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: #fff;
	max-width: 36rem;
}
.sw-hero__desc--dark {
	margin-top: 1.5rem;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.75;
	color: #cbd5e1;
}
@media (min-width: 768px) {
	.sw-hero__desc--dark { font-size: 1.125rem; }
}
.sw-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}
.sw-btn--gradient {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.75rem;
	border-radius: 1rem;
	background: linear-gradient(90deg, #6366f1 0%, #22d3ee 100%);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 25px 50px -12px rgba(34, 211, 238, 0.35);
	transition: transform 0.15s, box-shadow 0.2s;
}
.sw-btn--gradient:hover {
	color: #fff;
	transform: scale(1.02);
	box-shadow: 0 25px 50px -12px rgba(34, 211, 238, 0.45);
}
.sw-btn--ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.75rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	backdrop-filter: blur(8px);
	transition: background 0.2s;
}
.sw-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.sw-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	max-width: 36rem;
	margin-top: 2rem;
}
@media (min-width: 768px) {
	.sw-hero__stats { grid-template-columns: repeat(4, 1fr); }
}
.sw-hero__stat {
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	padding: 1rem;
	backdrop-filter: blur(24px);
}
.sw-hero__stat-label {
	display: block;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #94a3b8;
}
.sw-hero__stat-value {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
}

/* Dark: hero mockup card */
.sw-hero__mockup-wrap--dark {
	position: relative;
}
.sw-hero__mockup-glow {
	position: absolute;
	inset: 0;
	border-radius: 2rem;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
	filter: blur(40px);
	opacity: 0.8;
}
.sw-hero__mockup-card--dark {
	position: relative;
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.08);
	padding: 1.25rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(24px);
}
.sw-hero__mockup-inner--dark {
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 23, 42, 0.8);
	padding: 1.25rem;
}
.sw-hero__mockup-label {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #67e8f9;
}
.sw-hero__mockup-title {
	margin-top: 0.5rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
}
.sw-hero__mockup-badge--safe {
	border-radius: 9999px;
	border: 1px solid rgba(52, 211, 153, 0.3);
	background: rgba(52, 211, 153, 0.1);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #6ee7b7;
}
.sw-hero__mockup-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1.5rem;
}
.sw-hero__mockup-mini {
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.05);
	padding: 1rem;
}
.sw-hero__mockup-mini-label { font-size: 0.75rem; color: #94a3b8; }
.sw-hero__mockup-mini-value { display: block; margin-top: 0.5rem; font-size: 0.875rem; font-weight: 700; color: #fff; }
.sw-hero__mockup-screens--dark {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 1.25rem;
	height: 11rem;
}
.sw-hero__mockup-screen {
	border-radius: 1rem;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	padding: 0.5rem;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.sw-hero__mockup-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.75rem;
	display: block;
}
.sw-hero__mockup-screen--placeholder {
	min-height: 100%;
}
.sw-hero__mockup-btn--gradient {
	display: block;
	width: 100%;
	margin-top: 1.25rem;
	padding: 1rem 1.25rem;
	border-radius: 1rem;
	background: linear-gradient(90deg, #6366f1 0%, #22d3ee 100%);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.3);
	transition: opacity 0.2s;
}
.sw-hero__mockup-btn--gradient:hover { opacity: 0.95; color: #fff; }
.sw-hero__mockup-thumbs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 1.25rem;
}
.sw-hero__mockup-thumb {
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	padding: 0.75rem;
	backdrop-filter: blur(24px);
}
.sw-hero__mockup-thumb-img {
	height: 6rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.sw-hero__mockup-thumb-line {
	margin-top: 0.75rem;
	height: 0.25rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.2);
	width: 75%;
}
.sw-hero__mockup-thumb-line--short {
	width: 50%;
	margin-top: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
}

/* Dark: Why section */
.sw-why {
	padding: 2.5rem 0;
}
.sw-why__card {
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	backdrop-filter: blur(24px);
}
.sw-why__grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) {
	.sw-why__grid { grid-template-columns: 1fr 2fr; }
}
.sw-why__eyebrow {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #67e8f9;
}
.sw-why__title {
	margin-top: 0.75rem;
	font-size: 1.875rem;
	font-weight: 800;
	color: #fff;
}
.sw-why__text {
	margin-top: 1rem;
	font-size: 0.875rem;
	line-height: 1.75;
	color: #cbd5e1;
}
.sw-why__items {
	display: grid;
	gap: 1rem;
}
@media (min-width: 768px) {
	.sw-why__items { grid-template-columns: repeat(2, 1fr); }
}
.sw-why__item {
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 23, 42, 0.6);
	padding: 1.25rem;
}
.sw-why__item-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
}
.sw-why__item-desc {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.75;
	color: #94a3b8;
}

/* Dark: Features */
.sw-features--dark {
	padding: 4rem 0;
}
.sw-features__head--dark { max-width: 42rem; margin-bottom: 2rem; }
.sw-features__eyebrow {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #67e8f9;
}
.sw-features__heading--dark {
	margin-top: 0.75rem;
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	font-weight: 800;
	color: #fff;
}
.sw-features__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.sw-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
	.sw-features__grid { grid-template-columns: repeat(3, 1fr); }
}
.sw-features__item--dark {
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	backdrop-filter: blur(24px);
	transition: transform 0.2s;
}
.sw-features__item--dark:hover {
	transform: translateY(-4px);
}
.sw-features__icon-box--gradient {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 800;
	box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.3);
	margin-bottom: 1.25rem;
}
.sw-features__title--dark {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}
.sw-features__desc--dark {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #cbd5e1;
	margin: 0;
}

/* Dark: Guide (Setup + File Info) */
.sw-guide {
	padding: 2rem 0 4rem;
}
.sw-guide__grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.sw-guide__grid { grid-template-columns: 1fr 1fr; }
}
.sw-guide__card {
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	backdrop-filter: blur(24px);
}
.sw-guide__eyebrow {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #67e8f9;
}
.sw-guide__title {
	margin-top: 0.75rem;
	font-size: 1.875rem;
	font-weight: 800;
	color: #fff;
}
.sw-guide__steps { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.sw-guide__step {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 23, 42, 0.5);
	padding: 1rem;
}
.sw-guide__step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 800;
}
.sw-guide__step-text {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #cbd5e1;
	margin: 0;
}
.sw-guide__info { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) {
	.sw-guide__info { grid-template-columns: repeat(2, 1fr); }
}
.sw-guide__info-row {
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 23, 42, 0.5);
	padding: 1.25rem;
}
.sw-guide__info-row span:first-child {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #94a3b8;
}
.sw-guide__info-value {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
}

/* Dark: FAQ */
.sw-faq--dark {
	padding: 4rem 0;
	background: #0b1220 !important;
}
body.sw-dark .sw-faq--dark {
	background: #0b1220 !important;
}
body.sw-dark .sw-faq--dark .sw-container,
body.sw-dark .sw-faq--dark .sw-container--narrow {
	background: transparent !important;
}
body.sw-dark .sw-faq--dark .sw-faq__list {
	background: transparent !important;
	border: none;
	border-radius: 0;
}
.sw-faq__head--dark { text-align: center; margin-bottom: 2.5rem; }
.sw-faq__heading--dark {
	margin-top: 0.75rem;
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	font-weight: 800;
	color: #fff;
}
.sw-faq--dark .sw-faq__list { display: flex; flex-direction: column; gap: 1rem; }
.sw-faq__item--dark {
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 23, 42, 0.6) !important;
	padding: 1.5rem;
	backdrop-filter: blur(24px);
}
body.sw-dark .sw-faq__item--dark {
	background: rgba(15, 23, 42, 0.6) !important;
}
.sw-faq__q {
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.75rem;
}
/* No +/- icon or toggle on dark FAQ – static open cards, no white on hover/click */
.sw-faq--dark .sw-faq__q::after,
body.sw-dark .sw-faq--dark .sw-faq__q::after {
	display: none !important;
	content: none !important;
	visibility: hidden !important;
}
.sw-faq--dark .sw-faq__q,
body.sw-dark .sw-faq--dark .sw-faq__q {
	cursor: default;
	pointer-events: none;
	background: transparent !important;
	color: #fff !important;
}
body.sw-dark .sw-faq--dark .sw-faq__q:hover,
body.sw-dark .sw-faq--dark .sw-faq__q:focus,
body.sw-dark .sw-faq--dark .sw-faq__q:active {
	background: transparent !important;
	color: #fff !important;
}
.sw-faq__a {
	font-size: 0.875rem;
	line-height: 1.75;
	color: #cbd5e1;
	margin: 0;
}

/* Dark: Final CTA */
.sw-cta--dark {
	padding: 2rem 0 5rem;
}
.sw-cta__border-wrap {
	border-radius: 2.25rem;
	background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 100%);
	padding: 1px;
	box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.35);
}
.sw-cta__inner {
	border-radius: 2.2rem;
	background: #020617;
	padding: 3rem 2rem;
}
@media (min-width: 768px) {
	.sw-cta__inner { padding: 4rem 3rem; }
}
.sw-cta__grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 768px) {
	.sw-cta__grid { grid-template-columns: 1fr 1fr; }
}
.sw-cta__eyebrow {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #67e8f9;
}
.sw-cta__title--dark {
	margin-top: 0.75rem;
	font-size: clamp(1.5rem, 3vw, 3rem);
	font-weight: 800;
	color: #fff;
}
.sw-cta__desc--dark {
	margin-top: 1.25rem;
	max-width: 36rem;
	font-size: 0.875rem;
	line-height: 1.75;
	color: #cbd5e1;
}
.sw-cta__card--dark {
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	backdrop-filter: blur(24px);
}
.sw-cta__card-label {
	font-size: 0.875rem;
	color: #94a3b8;
}
.sw-cta__card-title--dark {
	margin-top: 0.5rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
}
.sw-cta__card-rows {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.sw-cta__card-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 0.75rem;
	background: rgba(15, 23, 42, 0.6);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: #cbd5e1;
}
.sw-cta__card-row-value { font-weight: 700; color: #fff; }
.sw-cta__card-btn--gradient {
	display: block;
	width: 100%;
	margin-top: 2rem;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	background: linear-gradient(90deg, #6366f1 0%, #22d3ee 100%);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.35);
	transition: opacity 0.2s;
}
.sw-cta__card-btn--gradient:hover { opacity: 0.95; color: #fff; }

/* Dark: SEO + Footer */
.sw-seo--dark {
	padding: 2rem 0 4rem;
}
.sw-seo--dark .sw-seo__content {
	color: #cbd5e1;
	font-size: 1rem;
	line-height: 1.8;
	max-width: 72ch;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	text-align-last: left;
}
.sw-seo--dark .sw-seo__content a { color: #67e8f9; }
.sw-footer--dark {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.2);
	padding: 2rem 0 3rem;
	text-align: center;
	color: #94a3b8;
	font-size: 0.875rem;
}
.sw-footer--dark .sw-footer__about { margin-bottom: 1rem; }
.sw-footer--dark .sw-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; margin-bottom: 1rem; }
.sw-footer--dark .sw-footer__links a { color: #67e8f9; text-decoration: none; }
.sw-footer--dark .sw-footer__links a:hover { text-decoration: underline; }
.sw-footer--dark .sw-footer__copy { margin: 0; opacity: 0.8; }

@media (max-width: 767px) {
	body.sw-dark .site-header--preview .site-nav { display: none; }
	.sw-hero__grid { text-align: center; }
	.sw-hero__title--dark,
	.sw-hero__desc--dark { max-width: none; margin-left: auto; margin-right: auto; }
	.sw-hero__cta { justify-content: center; }
	.sw-hero__stats { margin-left: auto; margin-right: auto; }
}

.site-header--preview {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--slate-200, #e2e8f0);
	box-shadow: none;
}
.site-header--preview .site-header__inner { max-width: 1280px; padding: 1rem 1.5rem; }
.site-header--preview .site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--slate-900, #0f172a); }
.site-header--preview .site-logo__mark {
	display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 1rem;
	background: var(--slate-900, #0f172a); color: #fff; font-size: 0.875rem; font-weight: 700;
}
.site-header--preview .site-logo__text { display: flex; flex-direction: column; }
.site-header--preview .site-logo__name { font-size: 0.875rem; font-weight: 600; }
.site-header--preview .site-logo__tagline { font-size: 0.75rem; color: var(--slate-500, #64748b); }
.site-header--preview .site-nav a { color: var(--slate-600, #475569); }
.site-header--preview .site-nav a:hover { color: var(--slate-900, #0f172a); background: rgba(0,0,0,0.04); }
.site-header--preview .nav-download-btn {
	background: var(--slate-900, #0f172a) !important; color: #fff !important;
	box-shadow: none; border-radius: 12px; padding: 0.5rem 1rem;
}

.sw-hero--preview { padding: 4rem 1.5rem 5rem; position: relative; overflow: hidden; }
.sw-hero--preview .sw-hero__bg {
	position: absolute; inset: 0; background: linear-gradient(180deg, var(--slate-50, #f8fafc) 0%, #fff 100%);
}
.sw-hero--preview .sw-hero__inner { position: relative; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sw-hero--preview .sw-hero__badge {
	display: inline-flex; margin-bottom: 1rem; padding: 0.5rem 1rem; border-radius: 9999px;
	border: 1px solid var(--slate-200, #e2e8f0); background: #fff; font-size: 0.75rem; font-weight: 500; color: var(--slate-600, #475569);
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.sw-hero--preview .sw-hero__title { font-size: clamp(2rem, 4vw, 3.75rem); font-weight: 700; color: var(--slate-900, #0f172a); letter-spacing: -0.025em; line-height: 1.15; max-width: 36rem; }
.sw-hero--preview .sw-hero__desc { font-size: 1.125rem; line-height: 1.75; color: var(--slate-600, #475569); max-width: 36rem; margin-top: 1.5rem; margin-bottom: 2rem; }
.sw-hero--preview .sw-btn--primary { border-radius: 1rem; padding: 0.75rem 1.5rem; font-size: 0.875rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.sw-hero--preview .sw-btn--secondary { border-radius: 1rem; border: 1px solid var(--slate-300, #cbd5e1); background: #fff; color: var(--slate-700, #334155); }
.sw-hero--preview .sw-btn--secondary:hover { border-color: var(--slate-900, #0f172a); color: var(--slate-900, #0f172a); }
.sw-hero__info-cards {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 32rem; margin-top: 2rem;
}
@media (min-width: 768px) { .sw-hero__info-cards { grid-template-columns: repeat(4, 1fr); } }
.sw-hero__info-card {
	border-radius: 1rem; border: 1px solid var(--slate-200, #e2e8f0); background: #fff; padding: 1rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.sw-hero__info-label { display: block; font-size: 0.75rem; color: var(--slate-500, #64748b); }
.sw-hero__info-value { display: block; margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--slate-900, #0f172a); }

.sw-hero__mockup-wrap { position: relative; }
.sw-hero__mockup-card {
	position: relative; border-radius: 2rem; border: 1px solid var(--slate-200, #e2e8f0); background: #fff; padding: 1.25rem;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}
.sw-hero__mockup-inner {
	border-radius: 1.5rem; background: var(--slate-900, #0f172a); color: #fff; padding: 1.5rem;
}
.sw-hero__mockup-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.sw-hero__mockup-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.sw-hero__mockup-title { margin-top: 0.25rem; font-size: 1.5rem; font-weight: 700; }
.sw-hero__mockup-badge { border-radius: 12px; background: rgba(255,255,255,0.1); padding: 0.5rem 0.75rem; font-size: 0.75rem; }
.sw-hero__mockup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.sw-hero__mockup-mini { border-radius: 1rem; background: rgba(255,255,255,0.1); padding: 1rem; }
.sw-hero__mockup-mini-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.sw-hero__mockup-mini-value { display: block; margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; }
.sw-hero__mockup-btn {
	display: block; width: 100%; margin-top: 2rem; padding: 0.75rem 1.25rem; border-radius: 1rem;
	background: #fff; color: var(--slate-900, #0f172a); font-size: 0.875rem; font-weight: 600; text-align: center; text-decoration: none;
	transition: opacity 0.2s;
}
.sw-hero__mockup-btn:hover { opacity: 0.95; color: var(--slate-900, #0f172a); }
.sw-hero__mockup-screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
.sw-hero__mockup-screen {
	border-radius: 1rem; border: 1px solid var(--slate-200, #e2e8f0); background: var(--slate-50, #f8fafc); padding: 0.75rem; overflow: hidden;
}
.sw-hero__mockup-screen img { width: 100%; height: auto; display: block; border-radius: 0.75rem; }
.sw-hero__mockup-screen--placeholder { min-height: 6rem; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

.sw-features--preview { padding: 4rem 1.5rem; background: #fff; }
.sw-features--preview .sw-container { max-width: 1280px; }
.sw-features__head { max-width: 42rem; margin-bottom: 2.5rem; }
.sw-features__eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-500, #64748b); }
.sw-features__heading { margin-top: 0.75rem; font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; color: var(--slate-900, #0f172a); letter-spacing: -0.025em; }
.sw-features__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .sw-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .sw-features__grid { grid-template-columns: repeat(3, 1fr); } }
.sw-features__item--preview {
	border-radius: 1.5rem; border: 1px solid var(--slate-200, #e2e8f0); background: var(--slate-50, #f8fafc); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.sw-features__icon-box { width: 3rem; height: 3rem; border-radius: 1rem; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.05); margin-bottom: 1rem; }
.sw-features__item--preview .sw-features__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.sw-features__item--preview .sw-features__desc { font-size: 0.875rem; line-height: 1.75; color: var(--slate-600, #475569); margin: 0; }

.sw-preview-structure { padding: 4rem 1.5rem; background: var(--slate-50, #f8fafc); }
.sw-preview-structure .sw-container { max-width: 1280px; }
.sw-preview-structure__head {
	display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .sw-preview-structure__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.sw-preview-structure__eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-500, #64748b); }
.sw-preview-structure__heading { margin-top: 0.75rem; font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; color: var(--slate-900, #0f172a); letter-spacing: -0.025em; }
.sw-preview-structure__sub { font-size: 0.875rem; color: var(--slate-600, #475569); margin: 0; }
.sw-preview-structure__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .sw-preview-structure__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .sw-preview-structure__grid { grid-template-columns: repeat(4, 1fr); } }
.sw-preview-structure__card {
	border-radius: 1.5rem; border: 1px solid var(--slate-200, #e2e8f0); background: #fff; padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.sw-preview-structure__num { font-size: 0.875rem; font-weight: 600; color: var(--slate-400, #94a3b8); }
.sw-preview-structure__text { margin-top: 1rem; font-size: 0.875rem; line-height: 1.75; color: var(--slate-700, #334155); }

.sw-faq--preview { padding: 4rem 1.5rem; background: #fff; }
.sw-faq__head { text-align: center; margin-bottom: 2.5rem; }
.sw-faq__eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-500, #64748b); }
.sw-faq__heading { margin-top: 0.75rem; font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; color: var(--slate-900, #0f172a); }
.sw-faq__list--open { display: flex; flex-direction: column; gap: 1rem; }
.sw-faq__item--open {
	border-radius: 1.5rem; border: 1px solid var(--slate-200, #e2e8f0); background: #fff; padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.sw-faq__q-open { font-size: 1.125rem; font-weight: 600; color: var(--slate-900, #0f172a); margin: 0 0 0.75rem; }
.sw-faq__a-open { font-size: 0.875rem; line-height: 1.75; color: var(--slate-600, #475569); margin: 0; }

.sw-cta--preview {
	padding: 3rem 1.5rem 5rem; background: var(--slate-900, #0f172a); color: #fff;
}
.sw-cta--preview .sw-container { max-width: 1280px; }
.sw-cta__grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .sw-cta__grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.sw-cta__eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); }
.sw-cta--preview .sw-cta__title { margin-top: 0.75rem; font-size: clamp(1.5rem, 3vw, 3rem); font-weight: 700; color: #fff; }
.sw-cta__desc { margin-top: 1.25rem; max-width: 36rem; font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.8); }
.sw-cta__card {
	border-radius: 1.5rem; background: #fff; color: var(--slate-900, #0f172a); padding: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}
.sw-cta__card-label { font-size: 0.875rem; color: var(--slate-500, #64748b); }
.sw-cta__card-title { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 700; }
.sw-cta__card-meta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.sw-cta__card-meta div { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.sw-cta__card-meta dt { margin: 0; font-weight: normal; color: var(--slate-600, #475569); }
.sw-cta__card-meta dd { margin: 0; font-weight: 600; color: var(--slate-900, #0f172a); }
.sw-cta__card-btn {
	display: block; width: 100%; margin-top: 2rem; padding: 0.75rem 1.25rem; border-radius: 1rem;
	background: var(--slate-900, #0f172a); color: #fff; font-size: 0.875rem; font-weight: 600; text-align: center; text-decoration: none;
	transition: opacity 0.2s;
}
.sw-cta__card-btn:hover { opacity: 0.95; color: #fff; }

@media (max-width: 767px) {
	.sw-hero--preview .sw-hero__inner { grid-template-columns: 1fr; text-align: center; }
	.sw-hero--preview .sw-hero__content { text-align: center; }
	.sw-hero--preview .sw-hero__title { max-width: none; }
	.sw-hero--preview .sw-hero__desc { max-width: none; margin-left: auto; margin-right: auto; }
	.sw-hero--preview .sw-hero__cta { justify-content: center; }
	.sw-hero__info-cards { margin-left: auto; margin-right: auto; }
	.site-header--preview .site-nav { display: none; }
}

.sw-btn--secondary {
	background: var(--color-surface);
	color: var(--color-text);
	border: 2px solid var(--color-border);
}

.sw-btn--secondary:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.sw-btn--large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.sw-hero__mockup {
	max-width: 420px;
}

.sw-hero__mockup img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

/* Trust bar */
.sw-trust {
	background: var(--color-surface);
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--color-border);
}

.sw-trust__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 2rem;
	font-size: 0.95rem;
	color: var(--color-text-muted);
}

.sw-trust__item strong {
	color: var(--color-text);
	margin-right: 0.35rem;
}

/* Screenshots */
.sw-screenshots {
	padding: 3rem 0;
	background: var(--color-bg);
}

.sw-screenshots__slider {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	background: var(--color-surface);
}

.sw-screenshots__track {
	display: flex;
	transition: transform 0.3s ease;
}

.sw-screenshots__slide {
	flex: 0 0 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	display: block;
	width: 100%;
}

.sw-screenshots__slide img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
}

.sw-screenshots__nav {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.sw-screenshots__prev,
.sw-screenshots__next {
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	cursor: pointer;
	color: var(--color-text);
	transition: background 0.2s, border-color 0.2s;
}

.sw-screenshots__prev:hover,
.sw-screenshots__next:hover {
	background: var(--color-accent-light);
	border-color: var(--color-accent);
}

.sw-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.sw-lightbox[hidden] {
	display: none;
}

.sw-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	font-size: 2rem;
	line-height: 1;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #fff;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.2s;
}

.sw-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.25);
}

.sw-lightbox__inner {
	max-width: 95vw;
	max-height: 90vh;
}

.sw-lightbox__inner img {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Features */
.sw-features {
	padding: 3rem 0;
	background: var(--color-surface);
}

.sw-features__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.sw-features__item {
	padding: 1.5rem;
	background: var(--color-bg);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.sw-features__icon {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	text-align: center;
	background: var(--color-accent-light);
	color: var(--color-accent);
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.sw-features__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.35rem;
}

.sw-features__desc {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	margin: 0;
}

/* Install steps */
.sw-install {
	padding: 3rem 0;
	background: var(--color-bg);
}

.sw-install__steps {
	max-width: 480px;
	margin: 0 auto;
	padding-left: 1.5rem;
	font-size: 1.05rem;
	line-height: 2;
	color: var(--color-text);
}

.sw-install__step {
	margin-bottom: 0.5rem;
}

/* Requirements */
.sw-requirements {
	padding: 3rem 0;
	background: var(--color-surface);
}

.sw-requirements__list {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5rem 2rem;
	max-width: 520px;
	margin: 0 auto;
	font-size: 1rem;
}

.sw-requirements__list dt {
	font-weight: 600;
	color: var(--color-text-muted);
}

.sw-requirements__list dd {
	margin: 0;
	color: var(--color-text);
}

/* FAQ */
.sw-faq {
	padding: 3rem 0;
	background: var(--color-bg);
}

.sw-faq__list {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
}

.sw-faq__item {
	border-bottom: 1px solid var(--color-border);
}

.sw-faq__item:last-child {
	border-bottom: none;
}

.sw-faq__q {
	width: 100%;
	padding: 1rem 1.25rem;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.2s;
}

.sw-faq__q:hover {
	background: var(--color-bg);
}

.sw-faq__q::after {
	content: '+';
	font-size: 1.25rem;
	color: var(--color-text-muted);
}

.sw-faq__q[aria-expanded="true"]::after {
	content: '−';
}

.sw-faq__a {
	padding: 0 1.25rem 1rem;
}

.sw-faq__a[hidden] {
	display: none;
}

.sw-faq__a p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* Final CTA */
.sw-cta {
	padding: 3rem 1.5rem;
	background: linear-gradient(145deg, #059669 0%, #047857 100%);
	color: #fff;
}

.sw-cta__box {
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
}

.sw-cta__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #fff;
}

.sw-cta__meta {
	opacity: 0.95;
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
}

.sw-cta__box .sw-btn--primary {
	background: #fff;
	color: var(--color-accent);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.sw-cta__box .sw-btn--primary:hover {
	background: #f0fdf4;
	color: var(--color-accent);
}

.sw-cta__badges {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.25rem;
	flex-wrap: wrap;
}

.sw-cta__badge {
	font-size: 0.85rem;
	opacity: 0.95;
	padding: 0.35rem 0.75rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
}

/* SEO content */
.sw-seo {
	padding: 3rem 0 4rem;
	background: var(--color-surface);
}

.sw-seo__content {
	font-size: 1.12rem;
	line-height: 1.8;
	color: var(--color-text);
	max-width: 72ch;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	text-align-last: left;
}

.sw-seo__content p {
	margin-bottom: 1rem;
}

.sw-seo__content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 2rem 0 0.75rem;
}

/* Footer */
.sw-footer {
	padding: 2.5rem 1.5rem;
	background: var(--color-nav-bg);
	color: var(--color-nav-text);
	text-align: center;
	font-size: 0.95rem;
}

.sw-footer__about {
	opacity: 0.9;
	margin-bottom: 1rem;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

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

.sw-footer__links a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sw-footer__links a:hover {
	opacity: 1;
}

.sw-footer__copy {
	opacity: 0.8;
	font-size: 0.9rem;
	margin: 0;
}

@media (max-width: 768px) {
	.sw-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.sw-hero__content {
		text-align: center;
	}

	.sw-hero__cta {
		justify-content: center;
	}

	.sw-hero__mockup {
		margin: 0 auto;
		max-width: 100%;
	}

	.sw-trust__grid {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}
}

/* ==========================================================================
   404
   ========================================================================== */

.error-404 {
	text-align: center;
	padding: 3rem 1rem;
}

.error-404 .page-title {
	margin-bottom: 0.5rem;
}

.error-404 p {
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
}

.error-404 .search-form {
	max-width: 320px;
	margin: 0 auto 1.5rem;
}

.error-404 .search-field {
	width: 100%;
	padding: 0.65rem 1rem;
	font-size: 1rem;
	border: 1px solid var(--color-border);
	border-radius: 6px;
}

/* ==========================================================================
   Utilities & responsive
   ========================================================================== */

@media (max-width: 640px) {
	.site-header__inner {
		padding: 0 1rem;
	}

	.site-nav {
		gap: 0;
	}

	.site-nav a {
		padding: 0.5rem 0.6rem;
		font-size: 0.9rem;
	}

	.site-main {
		padding: 1.5rem 1rem 3rem;
	}

	.bios-hero {
		padding: 1.5rem 1.25rem;
	}

	.bios-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.bios-download-btn {
		text-align: center;
	}

	.bios-section {
		padding: 1.25rem 1.25rem;
	}
}
