/* ===== Tokens ===== */
:root {
	--magenta: #ff2d8a;
	--pink: #ff6ec7;
	--magenta-dark: #cc1a6e;
	--pink-light: rgba(255,110,199,.12);
	--gradient: linear-gradient(135deg, var(--magenta), var(--pink));
	--gradient-soft: linear-gradient(135deg, rgba(255,45,138,.08), rgba(255,110,199,.08));
	--bg: #0a0a0f;
	--bg-alt: #111118;
	--bg-card: #16161f;
	--text: #f0f0f5;
	--text-muted: #9a9aaf;
	--border: rgba(255,255,255,.08);
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 2px 8px rgba(0,0,0,.4);
	--shadow-lg: 0 12px 40px rgba(255,45,138,.15);
	--glow: 0 0 30px rgba(255,45,138,.25);
	--font-head: 'Syne', system-ui, sans-serif;
	--font: 'Inter', system-ui, sans-serif;
	--transition: .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
	overflow-x: hidden;
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img, svg {
	display: block;
	max-width: 100%;
}

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

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

code {
	font-family: 'SF Mono', 'Fira Code', monospace;
	font-size: .875em;
	background: var(--pink-light);
	padding: .15em .4em;
	border-radius: 4px;
	color: var(--pink);
}

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

/* ===== Gradient Text ===== */
.gradient-text {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-bottom: .15em;
	display: inline-block;
}

/* ===== Section Utilities ===== */
.section-badge {
	display: inline-block;
	font-family: var(--font-head);
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--magenta);
	background: var(--pink-light);
	padding: 4px 14px;
	border-radius: 100px;
	margin-bottom: 16px;
}

.section-sub {
	font-size: 1.15rem;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto 48px;
}

h1, h2, h3 {
	font-family: var(--font-head);
}

/* ===== Animations ===== */
[data-animate] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}

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

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10,10,15,.85);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	transition: background var(--transition);
}

.nav-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--text);
	letter-spacing: .04em;
}

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

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

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

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

.nav-cta {
	background: var(--gradient);
	color: #fff !important;
	padding: 8px 20px;
	border-radius: 100px;
	font-weight: 600;
}

.nav-cta:hover {
	box-shadow: var(--glow);
}

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

.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 24px 80px;
	overflow: visible;
	background: linear-gradient(180deg, #0a0a0f 0%, #12081a 50%, #0a0a0f 100%);
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: .5;
}

.hero-orb-1 {
	width: 600px;
	height: 600px;
	background: var(--magenta);
	top: -20%;
	left: -10%;
	opacity: .3;
}

.hero-orb-2 {
	width: 500px;
	height: 500px;
	background: var(--pink);
	bottom: -15%;
	right: -5%;
	opacity: .25;
}

.hero-orb-3 {
	width: 300px;
	height: 300px;
	background: #a020f0;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	opacity: .15;
}

.hero-burst {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle at center, rgba(255,45,138,.06) 0%, transparent 60%);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.hero-badge {
	display: inline-block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.hero-badge a {
	color: var(--magenta);
	text-decoration: underline;
}

.hero h1 {
	font-size: clamp(3.5rem, 10vw, 7rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.02em;
	margin-bottom: 24px;
}

.hero-sub {
	font-size: 1.25rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1rem;
	padding: 14px 32px;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
}

.btn-primary {
	background: var(--gradient);
	color: #fff;
	box-shadow: 0 4px 20px rgba(255,45,138,.3);
}

.btn-primary:hover {
	box-shadow: 0 8px 32px rgba(255,45,138,.5);
	transform: translateY(-2px);
	color: #fff;
}

.btn-secondary {
	background: rgba(255,255,255,.06);
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-secondary:hover {
	background: rgba(255,255,255,.1);
	border-color: var(--magenta);
	color: var(--text);
}

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

.btn-outline:hover {
	background: var(--gradient);
	color: #fff;
	border-color: transparent;
}

/* ===== Hero Metrics ===== */
.hero-metrics {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.hero-metric {
	text-align: center;
}

.hero-metric strong {
	display: block;
	font-family: var(--font-head);
	font-size: 2rem;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-metric span {
	font-size: .85rem;
	color: var(--text-muted);
}

/* ===== Before/After ===== */
.before-after {
	padding: 100px 0;
	text-align: center;
}

.ba-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

.ba-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	text-align: left;
}

.ba-before {
	border-color: rgba(255,80,80,.2);
}

.ba-after {
	border-color: rgba(255,45,138,.3);
	box-shadow: 0 0 40px rgba(255,45,138,.08);
}

.ba-label {
	font-family: var(--font-head);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	margin-bottom: 16px;
	color: var(--text-muted);
}

.ba-before .ba-label {
	color: #ff5050;
}

.ba-after .ba-label {
	color: var(--magenta);
}

.ba-terminal {
	font-family: 'SF Mono', 'Fira Code', monospace;
	font-size: .8rem;
	line-height: 1.8;
}

.ba-line.dim {
	color: #666;
}

.ba-line.err {
	color: #ff5050;
}

.ba-line.glow {
	color: var(--pink);
}

.ba-line.ok {
	color: #44dd88;
}

.ba-line.bright {
	font-weight: 600;
}

.ba-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ===== Features ===== */
.features {
	padding: 100px 0;
	text-align: center;
}

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

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	text-align: left;
	transition: all var(--transition);
}

.feature-card:hover {
	border-color: rgba(255,45,138,.3);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.feature-icon {
	font-size: 2rem;
	margin-bottom: 16px;
}

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

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

/* ===== How It Works ===== */
.how-it-works {
	padding: 100px 0;
	text-align: center;
	background: var(--bg-alt);
}

.steps {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 48px;
}

.step {
	flex: 1;
	min-width: 240px;
	max-width: 320px;
	text-align: left;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
}

.step-num {
	font-family: var(--font-head);
	font-size: 3rem;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 16px;
}

.step h3 {
	font-size: 1.3rem;
	margin-bottom: 8px;
}

.step p {
	color: var(--text-muted);
	font-size: .95rem;
}

.step-arrow {
	font-size: 2rem;
	color: var(--magenta);
	padding-top: 60px;
}

/* ===== Demo ===== */
.demo {
	padding: 100px 0;
	text-align: center;
}

.demo-terminal {
	max-width: 760px;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #0d0d14;
	border: 1px solid var(--border);
	box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.term-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #161620;
	border-bottom: 1px solid var(--border);
}

.term-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.term-dot.red { background: #ff5f57; }
.term-dot.yellow { background: #febc2e; }
.term-dot.green { background: #28c840; }

.term-title {
	margin-left: auto;
	font-size: .75rem;
	color: var(--text-muted);
}

.term-body {
	padding: 24px;
	text-align: left;
	font-family: 'SF Mono', 'Fira Code', monospace;
	font-size: .85rem;
	line-height: 1.8;
}

.term-line {
	white-space: pre-wrap;
}

.prompt {
	color: var(--magenta);
	font-weight: 700;
}

.cmd {
	color: var(--text);
}

.term-line.output {
	color: var(--text-muted);
}

.cursor {
	color: var(--magenta);
	animation: blink 1s step-end infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

/* ===== Benchmark ===== */
.benchmark {
	padding: 100px 0;
	text-align: center;
	background: var(--bg-alt);
}

.benchmark-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

.benchmark-row {
	display: grid;
	grid-template-columns: 120px 1fr 60px;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.benchmark-label {
	font-family: var(--font-head);
	font-size: .85rem;
	font-weight: 600;
	text-align: right;
	color: var(--text-muted);
}

.benchmark-track {
	height: 28px;
	background: rgba(255,255,255,.04);
	border-radius: 100px;
	overflow: hidden;
}

.benchmark-fill {
	height: 100%;
	border-radius: 100px;
	width: 0;
	transition: width 1.5s cubic-bezier(.4,0,.2,1);
}

.benchmark-fill.xtrakt {
	background: var(--gradient);
	box-shadow: 0 0 20px rgba(255,45,138,.4);
}

.benchmark-fill.other {
	background: rgba(255,255,255,.1);
}

.benchmark-value {
	font-family: var(--font-head);
	font-size: .9rem;
	font-weight: 700;
	color: var(--text);
}

.benchmark-stats {
	text-align: left;
}

.bm-stat {
	margin-bottom: 28px;
}

.bm-stat-val {
	font-family: var(--font-head);
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.bm-stat-label {
	font-size: .9rem;
	color: var(--text-muted);
	margin-top: 4px;
}

/* ===== Stats ===== */
.stats {
	padding: 80px 0;
}

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

.stat {
	text-align: center;
	padding: 40px 16px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.stat-value {
	font-family: var(--font-head);
	font-size: 3.5rem;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline;
}

.stat-unit {
	font-family: var(--font-head);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--pink);
	display: inline;
	margin-left: 2px;
}

.stat-label {
	font-size: .9rem;
	color: var(--text-muted);
	margin-top: 8px;
}

/* ===== Comparison ===== */
.comparison {
	padding: 100px 0;
	text-align: center;
}

.comparison-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: .9rem;
}

.comparison-table th,
.comparison-table td {
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
}

.comparison-table th {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--text-muted);
	background: var(--bg-card);
}

.comparison-table td {
	color: var(--text-muted);
}

.highlight-col {
	background: rgba(255,45,138,.06) !important;
	color: var(--text) !important;
	font-weight: 600;
}

/* ===== Social Proof Wall ===== */
.proof-wall {
	padding: 100px 0;
	text-align: center;
	background: var(--bg-alt);
}

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

.proof-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	text-align: left;
	transition: all var(--transition);
}

.proof-card:hover {
	border-color: rgba(255,45,138,.3);
	transform: translateY(-4px);
}

.proof-avatar {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.proof-handle {
	font-family: var(--font-head);
	font-size: .85rem;
	font-weight: 700;
	color: var(--magenta);
	margin-bottom: 12px;
}

.proof-card p {
	font-size: .9rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 12px;
}

.proof-likes {
	font-size: .8rem;
	color: var(--magenta);
	font-weight: 600;
}

/* ===== Testimonials ===== */
.testimonials {
	padding: 100px 0;
	text-align: center;
}

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

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px;
	text-align: left;
	transition: all var(--transition);
}

.testimonial-card:hover {
	border-color: rgba(255,45,138,.3);
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 1.1rem;
	margin-bottom: 16px;
}

.testimonial-card p {
	font-size: .95rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}

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

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: .85rem;
	color: #fff;
}

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

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

/* ===== Pricing ===== */
.pricing {
	padding: 100px 0;
	text-align: center;
	background: var(--bg-alt);
}

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

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	text-align: left;
	transition: all var(--transition);
	position: relative;
}

.pricing-card:hover {
	border-color: rgba(255,45,138,.3);
	transform: translateY(-4px);
}

.pricing-card.popular {
	border-color: var(--magenta);
	box-shadow: var(--shadow-lg);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient);
	color: #fff;
	font-family: var(--font-head);
	font-size: .75rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 100px;
	white-space: nowrap;
}

.pricing-name {
	font-family: var(--font-head);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text);
}

.pricing-price {
	font-family: var(--font-head);
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.pricing-price span {
	font-size: 1rem;
	font-weight: 500;
}

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

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

.pricing-features li {
	font-size: .85rem;
	color: var(--text-muted);
	padding: 6px 0;
	border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
	border-bottom: none;
}

/* ===== Changelog ===== */
.changelog {
	padding: 100px 0;
	text-align: center;
}

.changelog-entries {
	max-width: 700px;
	margin: 48px auto 0;
	text-align: left;
}

.changelog-entry {
	display: flex;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid var(--border);
}

.changelog-version {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .9rem;
	color: var(--magenta);
	min-width: 56px;
	padding-top: 4px;
}

.changelog-content h3 {
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.changelog-content p {
	font-size: .9rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 12px;
}

.changelog-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tag {
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 3px 10px;
	border-radius: 100px;
}

.tag-feature { background: rgba(255,45,138,.15); color: var(--magenta); }
.tag-perf { background: rgba(100,200,255,.12); color: #64c8ff; }
.tag-ga { background: rgba(60,220,100,.12); color: #3cdc64; }
.tag-security { background: rgba(255,180,50,.12); color: #ffb432; }
.tag-improvement { background: rgba(160,120,255,.12); color: #a078ff; }

/* ===== FAQ ===== */
.faq {
	padding: 100px 0;
	text-align: center;
	background: var(--bg-alt);
}

.faq-list {
	max-width: 700px;
	margin: 48px auto 0;
	text-align: left;
}

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

.faq-item summary {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.05rem;
	padding: 20px 0;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text);
}

.faq-item summary::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--magenta);
	transition: transform var(--transition);
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

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

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	padding: 60px 0;
	text-align: center;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.portfolio-banner h2 {
	font-size: 1.2rem;
	margin-bottom: 24px;
	color: var(--text-muted);
}

.portfolio-banner h2 a {
	color: var(--magenta);
}

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

.portfolio-scroll a {
	font-size: .8rem;
	font-weight: 600;
	color: var(--text-muted);
	background: var(--bg-card);
	padding: 6px 14px;
	border-radius: 100px;
	border: 1px solid var(--border);
	transition: all var(--transition);
}

.portfolio-scroll a:hover {
	border-color: var(--magenta);
	color: var(--magenta);
}

.portfolio-current {
	font-size: .8rem;
	font-weight: 700;
	color: #fff;
	background: var(--gradient);
	padding: 6px 14px;
	border-radius: 100px;
}

/* ===== Footer ===== */
.footer {
	padding: 60px 0 32px;
	background: var(--bg);
}

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

.footer-brand p {
	margin-top: 12px;
	font-size: .9rem;
	color: var(--text-muted);
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col h4 {
	font-family: var(--font-head);
	font-size: .85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--text);
	margin-bottom: 4px;
}

.footer-col a {
	font-size: .875rem;
	color: var(--text-muted);
}

.footer-col a:hover {
	color: var(--magenta);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-size: .8rem;
	color: var(--text-muted);
}

/* ===== Modal ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.7);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition);
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 48px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	position: relative;
}

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

.modal-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.modal-card h3 {
	font-size: 1.3rem;
	margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: rgba(10,10,15,.96);
		backdrop-filter: blur(16px);
		flex-direction: column;
		padding: 24px;
		gap: 20px;
		border-bottom: 1px solid var(--border);
	}

	.nav-links.open {
		display: flex;
	}

	.nav-toggle {
		display: flex;
	}

	.hero h1 {
		font-size: clamp(2.5rem, 8vw, 4rem);
	}

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

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

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

	.steps {
		flex-direction: column;
		align-items: center;
	}

	.step-arrow {
		transform: rotate(90deg);
		padding: 0;
	}

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

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

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

	.ba-arrow {
		transform: rotate(90deg);
	}

	.benchmark-row {
		grid-template-columns: 80px 1fr 50px;
	}
}

/* ===== 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 currentColor;
	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: 0 0 30px rgba(255,45,138,.25);
	color: #fff;
	border: 1px solid 0 0 30px rgba(255,45,138,.25);
}

/* Dark theme pill overrides */
.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 {
	color: #ccc !important;
	border-color: #555 !important;
	opacity: .8 !important;
}
.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 {
	color: 0 0 30px rgba(255,45,138,.25) !important;
	border-color: 0 0 30px rgba(255,45,138,.25) !important;
	opacity: 1 !important;
}

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

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