/* ===== Slice — style.css ===== */

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

:root {
	--neon: #EC4899;
	--neon-bright: #F472B6;
	--neon-dim: #DB2777;
	--neon-glow: rgba(236, 72, 153, 0.25);
	--neon-glow-strong: rgba(236, 72, 153, 0.45);
	--neon-subtle: rgba(236, 72, 153, 0.08);
	--bg: #0A0A0F;
	--bg-raised: #111118;
	--bg-card: #16161F;
	--bg-card-hover: #1C1C28;
	--border: #2A2A3A;
	--border-light: #1E1E2E;
	--text: #E8E8EC;
	--text-secondary: #9494A8;
	--text-muted: #5A5A72;
	--radius: 8px;
	--radius-lg: 16px;
	--shadow-neon: 0 0 20px rgba(236, 72, 153, 0.15);
	--shadow-neon-strong: 0 0 40px rgba(236, 72, 153, 0.25);
	--sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	--mono: 'SF Mono', 'Menlo', 'Consolas', 'Liberation Mono', monospace;
	--transition: 0.25s ease;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--sans);
	color: var(--text);
	background: var(--bg);
	line-height: 1.7;
	overflow-x: hidden;
	font-size: 16px;
}

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

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

code {
	font-family: var(--mono);
	background: var(--neon-subtle);
	border: 1px solid var(--border);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.88em;
	color: var(--neon-bright);
}

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

.section {
	padding: 120px 0;
}

.section:nth-child(even) {
	background: var(--bg-raised);
}

.section-label {
	font-family: var(--mono);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--neon);
	margin-bottom: 12px;
}

.section-title {
	font-family: var(--sans);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--text);
}

.section-subtitle {
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin-bottom: 48px;
}

.neon-text {
	background: linear-gradient(135deg, var(--neon), #F9A8D4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== Fade-in ===== */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 16px 0;
	transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
	background: rgba(10, 10, 15, 0.92);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 var(--border);
}

.nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

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

.nav-logo-icon {
	filter: drop-shadow(0 0 6px var(--neon-glow));
}

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

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

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

.nav-cta {
	background: var(--neon);
	color: #fff !important;
	padding: 8px 20px;
	border-radius: var(--radius);
	font-weight: 600;
	transition: background var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
	background: var(--neon-dim);
	box-shadow: var(--shadow-neon);
}

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

.nav-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

/* ===== Hero ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	top: -200px;
	right: -200px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, var(--neon-glow-strong) 0%, transparent 70%);
	pointer-events: none;
	animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-badge {
	font-family: var(--mono);
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-muted);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.hero-badge a {
	color: var(--neon-bright);
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
}

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

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

/* ===== Buttons ===== */
.btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	background: var(--neon);
	color: #fff;
	font-family: var(--sans);
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--transition), box-shadow var(--transition);
}

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

.btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	background: transparent;
	color: var(--text);
	font-family: var(--sans);
	font-size: 0.95rem;
	font-weight: 600;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color var(--transition), color var(--transition);
}

.btn-secondary:hover {
	border-color: var(--neon);
	color: var(--neon-bright);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	background: transparent;
	color: var(--text);
	font-family: var(--sans);
	font-size: 0.95rem;
	font-weight: 600;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
	width: 100%;
	justify-content: center;
}

.btn-outline:hover {
	border-color: var(--neon);
	background: var(--neon-subtle);
}

/* ===== Terminal ===== */
.hero-terminal {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-neon), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid var(--border);
}

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

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
	margin-left: auto;
	font-family: var(--mono);
	font-size: 0.75rem;
	color: var(--text-muted);
}

.terminal-body {
	padding: 20px;
	font-family: var(--mono);
	font-size: 0.85rem;
	line-height: 1.8;
}

.term-line {
	white-space: nowrap;
}

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

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

.term-output {
	color: var(--text-secondary);
	padding-left: 20px;
	margin-bottom: 8px;
}

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

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

/* ===== Integrations ===== */
.integrations {
	padding: 48px 0;
	border-bottom: 1px solid var(--border);
	background: var(--bg);
}

.integrations-label {
	font-family: var(--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--text-muted);
	text-align: center;
	margin-bottom: 24px;
}

.integrations-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
}

.integration-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-muted);
}

.integration-icon {
	font-size: 1.1rem;
}

/* ===== Features ===== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 24px;
	margin-top: 48px;
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

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

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

.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text);
}

.feature-flag {
	font-family: var(--mono);
	font-size: 0.75rem;
	background: var(--neon-subtle);
	color: var(--neon-bright);
	padding: 2px 8px;
	border-radius: 4px;
	border: 1px solid var(--border);
	vertical-align: middle;
}

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

/* ===== How It Works ===== */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

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

.step-number {
	font-family: var(--mono);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--neon);
	opacity: 0.3;
	margin-bottom: 16px;
}

.step h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.step p {
	font-size: 0.92rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== Stats ===== */
.stats {
	background: var(--bg);
	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-value {
	font-family: var(--mono);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--neon);
	text-shadow: 0 0 30px var(--neon-glow);
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.88rem;
	color: var(--text-secondary);
}

/* ===== Pricing ===== */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
	border-color: var(--neon);
	box-shadow: var(--shadow-neon);
}

.pricing-card.featured {
	border-color: var(--neon);
	box-shadow: var(--shadow-neon);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--neon);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.7rem;
	font-weight: 600;
	padding: 4px 14px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pricing-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.price {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.price span {
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--text-muted);
}

.price-desc {
	font-size: 0.88rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.pricing-card ul {
	list-style: none;
	margin-bottom: 28px;
	flex: 1;
}

.pricing-card li {
	font-size: 0.88rem;
	color: var(--text-secondary);
	padding: 6px 0;
	border-bottom: 1px solid var(--border-light);
}

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

.pricing-card .btn-primary,
.pricing-card .btn-outline {
	margin-top: auto;
}

/* ===== Testimonials ===== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 24px;
	margin-top: 48px;
}

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

.testimonial-card:hover {
	border-color: var(--neon);
}

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

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

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--neon-subtle);
	border: 1px solid var(--neon);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--neon-bright);
}

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

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

/* ===== Demo ===== */
.demo-container {
	margin-top: 48px;
}

.demo-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.demo-btn {
	font-family: var(--mono);
	font-size: 0.8rem;
	padding: 8px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-card);
	color: var(--text-secondary);
	cursor: pointer;
	transition: all var(--transition);
}

.demo-btn:hover {
	border-color: var(--neon);
	color: var(--text);
}

.demo-btn.active {
	border-color: var(--neon);
	background: var(--neon-subtle);
	color: var(--neon-bright);
}

.demo-terminal {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.demo-cmd {
	font-family: var(--mono);
	font-size: 0.85rem;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	color: var(--text);
	white-space: nowrap;
	overflow-x: auto;
}

.demo-split {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0;
	min-height: 180px;
}

.demo-pane {
	padding: 16px 20px;
	font-family: var(--mono);
	font-size: 0.82rem;
	line-height: 1.8;
}

.demo-pane-label {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--text-muted);
	margin-bottom: 12px;
	font-weight: 600;
}

.demo-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--neon);
	font-size: 1.4rem;
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
	padding: 0 16px;
}

#demo-before {
	color: var(--text-secondary);
}

#demo-after {
	color: var(--text);
}

.hl {
	color: var(--neon-bright);
	font-weight: 600;
}

.demo-line.deleted {
	text-decoration: line-through;
	opacity: 0.4;
}

.demo-line.dimmed {
	opacity: 0.35;
}

/* ===== Comparison ===== */
.table-wrapper {
	overflow-x: auto;
	margin-top: 48px;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}

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

.comparison-table th {
	font-family: var(--mono);
	font-weight: 600;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	background: var(--bg-card);
}

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

.highlight-col {
	color: var(--neon-bright) !important;
	font-weight: 600;
}

/* ===== Changelog ===== */
.changelog-list {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.changelog-entry {
	display: flex;
	gap: 24px;
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.changelog-version {
	font-family: var(--mono);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--neon);
	background: var(--neon-subtle);
	border: 1px solid var(--border);
	padding: 4px 12px;
	border-radius: var(--radius);
	height: fit-content;
	white-space: nowrap;
}

.changelog-content h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.changelog-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
	margin-top: 48px;
	max-width: 760px;
}

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

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

.faq-question:hover {
	color: var(--neon-bright);
}

.faq-chevron {
	font-family: var(--mono);
	font-size: 1.2rem;
	color: var(--neon);
	flex-shrink: 0;
	transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
	transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
	max-height: 400px;
}

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

/* ===== Waitlist ===== */
.waitlist {
	text-align: center;
	background: var(--bg);
}

.waitlist-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 16px;
}

.waitlist-content > p {
	color: var(--text-secondary);
	font-size: 1.05rem;
	margin-bottom: 32px;
}

.waitlist-form {
	display: flex;
	gap: 12px;
	justify-content: center;
	max-width: 480px;
	margin: 0 auto 16px;
}

.waitlist-input,
.modal-input {
	flex: 1;
	padding: 12px 18px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text);
	font-family: var(--sans);
	font-size: 0.95rem;
	outline: none;
	transition: border-color var(--transition);
}

.waitlist-input:focus,
.modal-input:focus {
	border-color: var(--neon);
}

.waitlist-note {
	font-size: 0.8rem;
	color: var(--text-muted);
}

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

.portfolio-banner h2 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.portfolio-banner > .container > p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 32px;
}

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

.portfolio-grid a,
.portfolio-grid .current {
	font-family: var(--mono);
	font-size: 0.72rem;
	padding: 4px 10px;
	border-radius: 4px;
	border: 1px solid var(--border);
	color: var(--text-muted);
	transition: all var(--transition);
}

.portfolio-grid a:hover {
	color: var(--neon-bright);
	border-color: var(--neon);
}

.portfolio-grid .current {
	background: var(--neon);
	color: #fff;
	border-color: var(--neon);
	font-weight: 600;
}

/* ===== Footer ===== */
.footer {
	padding: 64px 0 32px;
	background: var(--bg);
	border-top: 1px solid var(--border);
}

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

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

.footer-col h4 {
	font-family: var(--mono);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-muted);
	margin-bottom: 16px;
}

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

.footer-col a {
	font-size: 0.88rem;
	color: var(--text-secondary);
	transition: color var(--transition);
}

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

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

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

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

.modal {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	box-shadow: var(--shadow-neon-strong);
}

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

.modal h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.modal p {
	font-size: 0.92rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.6;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.modal {
	position: relative;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		padding: 24px;
		gap: 16px;
	}

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

	.nav-mobile-toggle {
		display: flex;
	}

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

	.hero {
		padding: 100px 0 60px;
		min-height: auto;
	}

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

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

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

	.demo-split {
		grid-template-columns: 1fr;
	}

	.demo-arrow {
		border-left: none;
		border-right: none;
		border-top: 1px solid var(--border);
		border-bottom: 1px solid var(--border);
		padding: 8px;
	}

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

	.comparison-table {
		font-size: 0.8rem;
	}

	.changelog-entry {
		flex-direction: column;
		gap: 12px;
	}

	.waitlist-form {
		flex-direction: column;
	}
}

/* ===== 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: #EC4899;
	color: #fff;
	border: 1px solid #EC4899;
}

/* 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: #EC4899 !important;
	border-color: #EC4899 !important;
	opacity: 1 !important;
}

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