/* ===== Tokens ===== */
:root {
	--gold: #E8A838;
	--gold-dark: #C48820;
	--gold-light: #F5D590;
	--warm-white: #FDF8F0;
	--warm-white-bright: #FFFCF7;
	--text: #1A1205;
	--text-mid: #5C4A20;
	--text-muted: #8A7442;
	--bg: #FFFCF7;
	--bg-alt: #FDF5E8;
	--bg-dark: #1A1205;
	--border: #E8DCC0;
	--border-light: #F0E8D4;
	--radius: 12px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--shadow: 0 2px 16px rgba(26, 18, 5, .06);
	--shadow-lg: 0 8px 40px rgba(26, 18, 5, .10);
	--transition: .25s 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 {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

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

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

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

.modal-card {
	background: var(--bg);
	border-radius: var(--radius-lg);
	padding: 48px;
	text-align: center;
	max-width: 400px;
	box-shadow: var(--shadow-lg);
}

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

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

.modal-close {
	background: var(--gold);
	color: var(--bg-dark);
	border: none;
	padding: 12px 32px;
	font-family: var(--font);
	font-weight: 600;
	font-size: .95rem;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--transition);
}

.modal-close:hover {
	background: var(--gold-dark);
}

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

.nav.scrolled {
	box-shadow: 0 1px 8px rgba(26, 18, 5, .08);
}

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

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

.nav-logo-icon {
	flex-shrink: 0;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: .9rem;
	font-weight: 500;
}

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

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

.nav-cta {
	background: var(--gold);
	color: var(--bg-dark) !important;
	padding: 8px 20px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	transition: background var(--transition);
}

.nav-cta:hover {
	background: var(--gold-dark);
}

.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text);
	cursor: pointer;
}

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

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

.mobile-menu ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

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

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

.btn-primary {
	background: var(--gold);
	color: var(--bg-dark);
}

.btn-primary:hover {
	background: var(--gold-dark);
	transform: translateY(-1px);
}

.btn-outline {
	border-color: var(--gold);
	color: var(--gold-dark);
	background: transparent;
}

.btn-outline:hover {
	background: var(--gold);
	color: var(--bg-dark);
}

/* ===== Hero (Split-screen) ===== */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
	padding-top: 64px;
}

.hero-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 64px 80px 64px;
	max-width: 640px;
	margin-left: auto;
}

.hero-badge {
	font-size: .85rem;
	font-weight: 600;
	color: var(--gold-dark);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 16px;
}

.hero-badge a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hero h1 {
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--text);
	margin-bottom: 20px;
}

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

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

.hero-right {
	background: var(--bg-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 168, 56, .25), transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
	50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ===== Terminal ===== */
.hero-terminal,
.demo-terminal {
	background: #0D0A04;
	border-radius: var(--radius-lg);
	overflow: hidden;
	width: 420px;
	max-width: 90%;
	position: relative;
	z-index: 1;
	box-shadow: 0 8px 48px rgba(0, 0, 0, .4);
}

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #1A1408;
	border-bottom: 1px solid #2A2010;
}

.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-label {
	margin-left: auto;
	font-size: .75rem;
	color: rgba(255, 252, 247, .3);
	font-family: 'DM Sans', monospace;
}

.terminal-body {
	padding: 20px;
	font-family: 'DM Sans', monospace;
	font-size: .88rem;
	line-height: 1.8;
}

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

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

.term-cmd {
	color: #FFFCF7;
}

.term-out {
	color: rgba(255, 252, 247, .5);
}

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

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

/* ===== Stats ===== */
.stats {
	padding: 64px 0;
	background: var(--bg-alt);
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

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

.stat-number {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--gold-dark);
	letter-spacing: -.02em;
}

.stat-suffix {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--gold-dark);
}

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

/* ===== Section Eyebrow ===== */
.section-eyebrow {
	font-size: .85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--gold-dark);
	margin-bottom: 8px;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--text-mid);
	max-width: 600px;
	margin: 0 auto 48px;
}

/* ===== Features ===== */
.features {
	padding: 120px 0;
}

.features .container > h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	text-align: center;
	margin-bottom: 56px;
}

.features .section-eyebrow {
	text-align: center;
}

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

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

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

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

.feature-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: .93rem;
	color: var(--text-mid);
	line-height: 1.65;
}

.feature-card code {
	background: var(--bg-alt);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .85rem;
	font-weight: 500;
	color: var(--gold-dark);
}

/* ===== How It Works ===== */
.how-it-works {
	padding: 120px 0;
	background: var(--bg-dark);
	color: var(--warm-white);
}

.how-it-works .section-eyebrow {
	text-align: center;
	color: var(--gold);
}

.how-it-works h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	text-align: center;
	margin-bottom: 64px;
}

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

.step-card {
	text-align: center;
	padding: 32px 20px;
}

.step-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--gold);
	opacity: .4;
	margin-bottom: 16px;
}

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

.step-card p {
	font-size: .92rem;
	color: rgba(253, 248, 240, .6);
	line-height: 1.65;
}

/* ===== Comparison Table ===== */
.comparison {
	padding: 120px 0;
}

.comparison .section-eyebrow,
.comparison h2 {
	text-align: center;
}

.comparison h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	margin-bottom: 16px;
}

.table-wrap {
	overflow-x: auto;
	margin-top: 48px;
}

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

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

.comparison-table thead th {
	font-weight: 700;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--text-muted);
	border-bottom: 2px solid var(--border);
}

.comparison-table .highlight {
	background: rgba(232, 168, 56, .08);
	color: var(--text);
	font-weight: 600;
}

.comparison-table thead .highlight {
	color: var(--gold-dark);
}

.comparison-table tbody tr:hover {
	background: var(--bg-alt);
}

/* ===== Activity Feed ===== */
.activity-feed {
	padding: 100px 0;
	background: var(--bg-alt);
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.activity-feed .section-eyebrow,
.activity-feed h2 {
	text-align: center;
}

.activity-feed h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 40px;
}

.feed-container {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.feed-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--border-light);
	animation: feedIn .6s ease both;
}

.feed-item:nth-child(2) { animation-delay: .1s; }
.feed-item:nth-child(3) { animation-delay: .2s; }
.feed-item:nth-child(4) { animation-delay: .3s; }
.feed-item:nth-child(5) { animation-delay: .4s; }

@keyframes feedIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.feed-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
	animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .3; }
}

.feed-text {
	flex: 1;
	font-size: .9rem;
	color: var(--text-mid);
}

.feed-text strong {
	color: var(--text);
}

.feed-text code {
	background: rgba(232, 168, 56, .12);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .82rem;
	color: var(--gold-dark);
}

.feed-time {
	font-size: .78rem;
	color: var(--text-muted);
	white-space: nowrap;
}

/* ===== Demo ===== */
.demo {
	padding: 120px 0;
}

.demo .section-eyebrow,
.demo h2 {
	text-align: center;
}

.demo h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	margin-bottom: 12px;
}

.demo-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.demo-btn {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	padding: 10px 20px;
	font-family: var(--font);
	font-size: .85rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition);
	color: var(--text-mid);
}

.demo-btn:hover,
.demo-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--bg-dark);
}

.demo-terminal {
	max-width: 640px;
	margin: 0 auto;
}

/* ===== Case Study ===== */
.case-study {
	padding: 120px 0;
	background: var(--bg-dark);
	color: var(--warm-white);
}

.case-study .section-eyebrow {
	color: var(--gold);
}

.case-study h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 48px;
}

.case-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 64px;
	align-items: start;
}

.case-content p {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(253, 248, 240, .7);
	margin-bottom: 20px;
}

.case-content blockquote {
	border-left: 3px solid var(--gold);
	padding-left: 24px;
	margin-top: 32px;
	font-size: 1.1rem;
	font-style: italic;
	color: var(--warm-white);
	line-height: 1.7;
}

.case-content cite {
	display: block;
	font-style: normal;
	font-size: .88rem;
	color: var(--gold);
	margin-top: 12px;
}

.case-stats {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.case-stat {
	text-align: center;
	padding: 32px;
	background: rgba(232, 168, 56, .06);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(232, 168, 56, .15);
}

.case-stat-num {
	display: block;
	font-size: 3rem;
	font-weight: 800;
	color: var(--gold);
}

.case-stat-label {
	font-size: .88rem;
	color: rgba(253, 248, 240, .5);
	margin-top: 4px;
}

/* ===== Testimonials ===== */
.testimonials {
	padding: 120px 0;
}

.testimonials .section-eyebrow,
.testimonials h2 {
	text-align: center;
}

.testimonials h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 56px;
}

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

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

.testimonial-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-mid);
	margin-bottom: 24px;
}

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

.avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold), var(--gold-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	font-weight: 700;
	color: var(--bg-dark);
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: .93rem;
}

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

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

.pricing .section-eyebrow,
.pricing h2 {
	text-align: center;
}

.pricing h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	margin-bottom: 56px;
}

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

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

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

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

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--bg-dark);
	font-size: .75rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 20px;
	white-space: nowrap;
}

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

.price {
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 8px;
}

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

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

.pricing-card ul {
	margin-bottom: 28px;
}

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

.pricing-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--gold-dark);
	font-weight: 700;
}

.pricing-card li code {
	background: var(--bg-alt);
	padding: 1px 5px;
	border-radius: 4px;
	font-size: .82rem;
	color: var(--gold-dark);
}

.pricing-card .btn {
	width: 100%;
}

/* ===== FAQ ===== */
.faq {
	padding: 120px 0;
}

.faq .section-eyebrow,
.faq h2 {
	text-align: center;
}

.faq h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 48px;
}

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

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

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

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

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

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item p {
	padding: 0 0 20px;
	font-size: .93rem;
	color: var(--text-mid);
	line-height: 1.7;
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--bg-dark) 0%, #2A1F08 100%);
	color: var(--warm-white);
	text-align: center;
}

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

.portfolio-banner h2 a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.portfolio-scroll {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
	font-size: .88rem;
}

.portfolio-scroll a {
	color: rgba(253, 248, 240, .5);
	transition: color var(--transition);
}

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

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

/* ===== Footer ===== */
.footer {
	padding: 64px 0 32px;
	background: var(--bg-dark);
	color: rgba(253, 248, 240, .6);
	border-top: 1px solid rgba(232, 168, 56, .1);
}

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

.footer-logo {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--warm-white);
	display: block;
	margin-bottom: 12px;
}

.footer-brand p {
	font-size: .9rem;
	line-height: 1.6;
}

.footer-mando {
	margin-top: 12px;
}

.footer-mando a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 2px;
}

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

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

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

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

.footer-bottom {
	border-top: 1px solid rgba(232, 168, 56, .1);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	font-size: .82rem;
	color: rgba(253, 248, 240, .35);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.hero {
		grid-template-columns: 1fr;
	}
	.hero-left {
		padding: 120px 32px 60px;
		max-width: 100%;
		margin: 0;
	}
	.hero-right {
		min-height: 400px;
	}
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.case-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.nav-mobile-toggle {
		display: block;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.features-grid,
	.steps-grid,
	.testimonial-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.comparison-table {
		font-size: .85rem;
	}
	.comparison-table th,
	.comparison-table td {
		padding: 12px 14px;
	}
	.hero-left {
		padding: 100px 24px 40px;
	}
	.hero-right {
		min-height: 320px;
	}
	.hero-terminal {
		width: 90%;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* ===== Scroll Reveal ===== */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

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

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

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

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