/* ========================================
   ArcVault — zip enterprise startup site
   Enterprise B2B / Cool Neutrals + Electric Blue
   IBM Plex Sans + IBM Plex Mono
   ======================================== */

:root {
	--navy: #0f172a;
	--navy-light: #1e293b;
	--slate: #334155;
	--steel: #64748b;
	--steel-light: #94a3b8;
	--blue: #2563eb;
	--blue-hover: #1d4ed8;
	--blue-light: #3b82f6;
	--blue-muted: rgba(37, 99, 235, 0.08);
	--blue-glow: rgba(37, 99, 235, 0.15);
	--bg: #f8fafc;
	--surface: #ffffff;
	--surface-alt: #f1f5f9;
	--text: #0f172a;
	--text-muted: #475569;
	--text-light: #94a3b8;
	--border: #e2e8f0;
	--border-light: #f1f5f9;
	--shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
	--shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	--shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.1);
	--shadow-blue: 0 4px 24px rgba(37, 99, 235, 0.2);
	--radius: 8px;
	--radius-lg: 16px;
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
	font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

a {
	color: var(--blue);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--blue-hover);
}

code {
	font-family: 'IBM Plex Mono', 'SF Mono', monospace;
	font-size: 0.85em;
	background: var(--blue-muted);
	color: var(--blue);
	padding: 2px 6px;
	border-radius: 4px;
}

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: all var(--transition);
	white-space: nowrap;
	gap: 8px;
}

.btn-primary {
	background: var(--blue);
	color: #fff;
}

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

.btn-outline {
	background: transparent;
	color: var(--blue);
	border: 1.5px solid var(--blue);
}

.btn-outline:hover {
	background: var(--blue-muted);
	color: var(--blue-hover);
}

.btn-ghost {
	background: transparent;
	color: var(--text-muted);
}

.btn-ghost:hover {
	color: var(--text);
	background: var(--surface-alt);
}

.btn-lg {
	padding: 14px 30px;
	font-size: 1rem;
	border-radius: 10px;
}

/* ---- Modal ---- */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: all;
}

.modal-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	box-shadow: var(--shadow-lg);
	transform: translateY(20px);
	transition: transform var(--transition);
}

.modal-overlay.active .modal-card {
	transform: translateY(0);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-light);
	cursor: pointer;
}

.modal-card {
	position: relative;
}

.modal-icon {
	margin-bottom: 16px;
	color: var(--blue);
}

.modal-card h3 {
	font-size: 1.25rem;
	margin-bottom: 8px;
	color: var(--text);
}

.modal-card p {
	color: var(--text-muted);
	margin-bottom: 24px;
	font-size: 0.95rem;
}

.modal-btn {
	width: 100%;
}

/* ---- Navbar ---- */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(248, 250, 252, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-light);
	transition: all var(--transition);
}

.navbar.scrolled {
	border-bottom-color: var(--border);
	box-shadow: var(--shadow-sm);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text);
}

.nav-logo:hover {
	color: var(--text);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 32px;
}

.nav-links a {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
	transition: color var(--transition);
}

.nav-links a:hover {
	color: var(--text);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.hamburger span {
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: all var(--transition);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	z-index: 999;
	box-shadow: var(--shadow);
}

.mobile-menu.active {
	display: block;
}

.mobile-menu ul {
	list-style: none;
	padding: 16px 24px;
}

.mobile-menu li {
	padding: 12px 0;
	border-bottom: 1px solid var(--border-light);
}

.mobile-menu a {
	color: var(--text);
	font-weight: 500;
}

/* ---- Hero ---- */
.hero {
	padding: 140px 0 80px;
	background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--blue);
	background: var(--blue-muted);
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.hero-sub {
	font-size: 1.1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 520px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.hero-trust-badges {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.trust-badge {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--steel);
	background: var(--surface-alt);
	border: 1px solid var(--border);
	padding: 4px 12px;
	border-radius: 100px;
	letter-spacing: 0.03em;
}

/* Product Screenshot */
.product-screenshot {
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
	transition: transform 0.6s ease;
}

.product-screenshot:hover {
	transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.screenshot-chrome {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--surface-alt);
	border-bottom: 1px solid var(--border);
}

.chrome-dots {
	display: flex;
	gap: 6px;
}

.chrome-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--border);
}

.chrome-title {
	font-size: 0.75rem;
	color: var(--text-light);
	font-weight: 500;
}

.screenshot-body {
	padding: 24px;
}

.dash-header {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
}

.dash-stat {
	flex: 1;
	background: var(--surface-alt);
	border-radius: var(--radius);
	padding: 16px;
	text-align: center;
}

.dash-stat-val {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--blue);
	font-family: 'IBM Plex Mono', monospace;
}

.dash-stat-label {
	font-size: 0.7rem;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.dash-bar-group {
	margin-bottom: 20px;
}

.dash-bar-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.dash-bar-label {
	font-size: 0.78rem;
	color: var(--text-muted);
	width: 100px;
	flex-shrink: 0;
}

.dash-bar {
	flex: 1;
	height: 8px;
	background: var(--surface-alt);
	border-radius: 4px;
	overflow: hidden;
}

.dash-bar-fill {
	height: 100%;
	background: var(--blue);
	border-radius: 4px;
	animation: barGrow 1.5s ease forwards;
}

@keyframes barGrow {
	from { width: 0; }
}

.dash-bar-tag {
	font-size: 0.65rem;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 100px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.dash-bar-tag.encrypted {
	background: rgba(37, 99, 235, 0.1);
	color: var(--blue);
}

.dash-bar-tag.verified {
	background: rgba(22, 163, 74, 0.1);
	color: #16a34a;
}

.dash-bar-tag.split {
	background: rgba(168, 85, 247, 0.1);
	color: #a855f7;
}

.dash-terminal {
	background: var(--navy);
	border-radius: var(--radius);
	padding: 12px 16px;
}

.dash-terminal code {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.78rem;
	color: #a5f3fc;
	background: transparent;
	padding: 0;
}

/* ---- Logos ---- */
.logos-section {
	padding: 48px 0;
	border-bottom: 1px solid var(--border-light);
}

.logos-label {
	text-align: center;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-light);
	margin-bottom: 24px;
}

.logos-row {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.logo-item {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--steel-light);
	letter-spacing: 0.02em;
	opacity: 0.6;
	transition: opacity var(--transition);
}

.logo-item:hover {
	opacity: 1;
}

/* ---- Section headers ---- */
.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--blue);
	margin-bottom: 12px;
}

.section-header h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--navy);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.section-header p {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ---- Features ---- */
.features {
	padding: 96px 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.feature-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: all var(--transition);
}

.feature-card:hover {
	border-color: var(--blue);
	box-shadow: 0 0 0 1px var(--blue), var(--shadow);
	transform: translateY(-2px);
}

.feature-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue-muted);
	border-radius: 10px;
	margin-bottom: 16px;
}

.feature-icon svg {
	width: 22px;
	height: 22px;
}

.feature-card h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--navy);
}

.feature-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ---- How It Works ---- */
.how-it-works {
	padding: 96px 0;
	background: var(--navy);
	color: #fff;
}

.how-it-works .section-tag {
	color: var(--blue-light);
}

.how-it-works .section-header h2 {
	color: #fff;
}

.steps-grid {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.step-card {
	flex: 1;
	padding: 32px;
	background: var(--navy-light);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-connector {
	width: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 40px;
	color: var(--steel);
}

.step-connector::before {
	content: '→';
	font-size: 1.5rem;
	color: var(--steel);
}

.step-number {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--blue-light);
	margin-bottom: 16px;
	letter-spacing: 0.05em;
}

.step-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.step-card p {
	font-size: 0.88rem;
	color: var(--steel-light);
	line-height: 1.6;
}

/* ---- Stats ---- */
.stats-section {
	padding: 72px 0;
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-val {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--blue);
	line-height: 1;
}

.stat-suffix {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--blue-light);
}

.stat-label {
	display: block;
	margin-top: 8px;
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 500;
}

/* ---- ROI Calculator ---- */
.roi-section {
	padding: 96px 0;
}

.roi-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.roi-field {
	margin-bottom: 28px;
}

.roi-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 12px;
}

.roi-field input[type="range"] {
	width: 100%;
	height: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: var(--border);
	border-radius: 3px;
	outline: none;
}

.roi-field input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	background: var(--blue);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.roi-field input[type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: var(--blue);
	border-radius: 50%;
	cursor: pointer;
	border: none;
}

.roi-val {
	display: block;
	margin-top: 8px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.9rem;
	color: var(--blue);
	font-weight: 600;
}

.roi-results {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
}

.roi-result-item {
	padding: 20px 24px;
	background: var(--surface-alt);
	border-radius: var(--radius);
	border: 1px solid var(--border-light);
}

.roi-result-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-light);
	margin-bottom: 4px;
}

.roi-result-val {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--navy);
}

.roi-result-val.highlight {
	color: var(--blue);
	font-size: 2rem;
}

/* ---- Compliance ---- */
.compliance-section {
	padding: 96px 0;
	background: var(--surface-alt);
}

.compliance-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.compliance-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	text-align: center;
}

.compliance-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	color: var(--blue);
}

.compliance-icon svg {
	width: 48px;
	height: 48px;
}

.compliance-card h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
}

.compliance-card p {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ---- Demo / Terminal ---- */
.demo-section {
	padding: 96px 0;
}

.demo-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 0;
	background: var(--navy);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 8px 8px 0;
}

.demo-tab {
	padding: 10px 20px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--steel-light);
	background: transparent;
	border: none;
	cursor: pointer;
	border-radius: var(--radius) var(--radius) 0 0;
	transition: all var(--transition);
}

.demo-tab:hover {
	color: #fff;
}

.demo-tab.active {
	color: #fff;
	background: var(--navy-light);
}

.terminal {
	background: var(--navy);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.terminal-chrome {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: var(--navy-light);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #eab308; }
.terminal-dot.green { background: #22c55e; }

.terminal-title {
	margin-left: auto;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	color: var(--steel);
}

.terminal-body {
	padding: 24px;
	min-height: 240px;
}

.terminal-content.hidden {
	display: none;
}

.term-line {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.82rem;
	line-height: 1.8;
	color: #e2e8f0;
}

.term-prompt {
	color: var(--blue-light);
	margin-right: 8px;
}

.term-line.output {
	color: var(--steel-light);
	padding-left: 20px;
}

.term-line.comment {
	color: var(--steel);
	font-style: italic;
}

/* ---- Integrations ---- */
.integrations-section {
	padding: 96px 0;
	background: var(--surface-alt);
}

.integrations-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 16px;
}

.integration-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 24px 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all var(--transition);
}

.integration-item:hover {
	border-color: var(--blue);
	box-shadow: var(--shadow-sm);
}

.int-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue-muted);
	border-radius: 10px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--blue);
}

.integration-item span {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 500;
	text-align: center;
}

/* ---- Testimonials ---- */
.testimonials {
	padding: 96px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.testimonial-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.testimonial-stars {
	color: #eab308;
	font-size: 0.9rem;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.testimonial-card blockquote {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--blue-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.75rem;
	color: var(--blue);
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 0.88rem;
	color: var(--text);
}

.testimonial-author span {
	font-size: 0.78rem;
	color: var(--text-light);
}

/* ---- Pricing ---- */
.pricing {
	padding: 96px 0;
	background: var(--surface-alt);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: start;
}

.pricing-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	position: relative;
}

.pricing-card.featured {
	border-color: var(--blue);
	box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--blue);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 4px 14px;
	border-radius: 100px;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pricing-tier {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}

.pricing-price {
	margin-bottom: 16px;
}

.price-amount {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--navy);
}

.price-period {
	font-size: 0.85rem;
	color: var(--text-light);
}

.pricing-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	line-height: 1.5;
}

.pricing-features {
	list-style: none;
	margin-bottom: 28px;
}

.pricing-features li {
	font-size: 0.85rem;
	color: var(--text);
	padding: 6px 0;
	padding-left: 20px;
	position: relative;
}

.pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--blue);
	font-weight: 700;
	font-size: 0.8rem;
}

.pricing-cta {
	width: 100%;
	text-align: center;
}

/* ---- FAQ ---- */
.faq {
	padding: 96px 0;
}

.faq-list {
	max-width: 720px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	gap: 16px;
}

.faq-arrow {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--text-light);
	transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
	transform: rotate(180deg);
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-item.open .faq-content {
	max-height: 300px;
}

.faq-content p {
	padding-bottom: 20px;
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ---- CTA Section ---- */
.cta-section {
	padding: 96px 0;
	background: var(--navy);
}

.cta-card {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.cta-card h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: #fff;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.cta-card p {
	color: var(--steel-light);
	font-size: 1.05rem;
	margin-bottom: 32px;
	line-height: 1.7;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.cta-section .btn-ghost {
	color: var(--steel-light);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.cta-section .btn-ghost:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

/* ---- Portfolio Banner ---- */
.portfolio-banner {
	padding: 48px 0;
	background: var(--surface);
	border-top: 1px solid var(--border);
}

.portfolio-label {
	text-align: center;
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.mando-link {
	font-weight: 700;
	color: var(--blue);
}

.portfolio-scroll {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
}

.portfolio-item {
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--text-light);
	transition: color var(--transition);
	white-space: nowrap;
}

a.portfolio-item:hover {
	color: var(--blue);
}

.portfolio-item.current {
	color: var(--blue);
	font-weight: 700;
}

/* ---- Footer ---- */
.footer {
	padding: 64px 0 32px;
	background: var(--navy);
	color: var(--steel-light);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand .nav-logo {
	margin-bottom: 16px;
}

.footer-brand .nav-logo span {
	color: #fff;
}

.footer-brand p {
	font-size: 0.85rem;
	color: var(--steel);
	line-height: 1.6;
	max-width: 280px;
}

.footer-col h4 {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--steel-light);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 10px;
}

.footer-col a {
	font-size: 0.85rem;
	color: var(--steel);
	transition: color var(--transition);
}

.footer-col a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
	font-size: 0.8rem;
	color: var(--steel);
}

.footer-socials {
	display: flex;
	gap: 16px;
}

.social-link {
	color: var(--steel);
	transition: color var(--transition);
}

.social-link:hover {
	color: #fff;
}

/* ---- Animations ---- */
[data-animate] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.compliance-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.steps-grid {
		flex-wrap: wrap;
	}

	.step-connector {
		display: none;
	}

	.step-card {
		flex: 1 1 45%;
	}

	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.integrations-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.nav-links,
	.nav-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero {
		padding: 120px 0 60px;
	}

	.product-screenshot {
		transform: none;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.roi-card {
		grid-template-columns: 1fr;
		padding: 32px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.compliance-grid {
		grid-template-columns: 1fr;
	}

	.integrations-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.dash-header {
		flex-direction: column;
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 1.75rem;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.integrations-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===== Portfolio Pills (universal) ===== */
.portfolio-banner,
[class*="portfolio-banner"] {
	padding: 3rem 0;
	text-align: center;
}

.portfolio-banner .container,
[class*="portfolio-banner"] .container,
[class*="portfolio-banner"] [class*="portfolio-banner-inner"] {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.portfolio-scroll,
.portfolio-grid,
.portfolio-list,
.portfolio-links,
.portfolio-commands,
.portfolio-track,
.portfolio-banner-commands,
.portfolio-items,
.footer-commands {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 1rem;
}

.portfolio-scroll a,
.portfolio-grid a,
.portfolio-list a,
.portfolio-links a,
.portfolio-commands a,
.portfolio-track a,
.portfolio-banner-commands a,
.portfolio-items a,
.footer-commands a {
	display: inline-block;
	padding: 6px 14px;
	font-size: .75rem;
	font-weight: 600;
	border-radius: 100px;
	border: 1px solid #2563eb;
	opacity: .55;
	text-decoration: none;
	transition: opacity .2s ease, transform .15s ease;
	white-space: nowrap;
}

.portfolio-scroll a:hover,
.portfolio-grid a:hover,
.portfolio-list a:hover,
.portfolio-links a:hover,
.portfolio-commands a:hover,
.portfolio-track a:hover,
.portfolio-banner-commands a:hover,
.portfolio-items a:hover,
.footer-commands a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.portfolio-current,
.portfolio-scroll .portfolio-current,
.portfolio-grid .portfolio-current,
.portfolio-list .portfolio-current,
.portfolio-banner-commands .portfolio-current,
span.portfolio-current,
[class*="portfolio"] span.current,
[class*="portfolio"] span[class*="current"] {
	display: inline-block;
	padding: 6px 14px;
	font-size: .75rem;
	font-weight: 700;
	border-radius: 100px;
	opacity: 1;
	white-space: nowrap;
}

.portfolio-label,
.portfolio-banner-label {
	font-size: .8125rem;
	opacity: .6;
	margin-bottom: .5rem;
}

.portfolio-label a,
.portfolio-banner-label a {
	border: none !important;
	padding: 0 !important;
	opacity: 1 !important;
	font-weight: 700 !important;
	border-radius: 0 !important;
}

.portfolio-current,
span.portfolio-current,
[class*="portfolio"] span.current,
[class*="portfolio"] span[class*="current"] {
	background: #2563eb;
	color: #fff;
	border: 1px solid #2563eb;
}

.portfolio-current,
span.portfolio-current {
	background: #2563eb !important;
	color: #fff !important;
	border: 1px solid #2563eb !important;
	opacity: 1 !important;
}

[class*="avatar"]{overflow:hidden}[class*="avatar"] img{display:block;width:100%;height:100%;object-fit:cover;border-radius:50%}