:root {
	--white: #ffffff;
	--navy: #0f172a;
	--navy-light: #1e293b;
	--slate: #475569;
	--slate-light: #94a3b8;
	--coral: #f56565;
	--coral-light: #feb2b2;
	--coral-dark: #e53e3e;
	--gray-50: #f8fafc;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--radius: 12px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--font-display: 'Outfit', system-ui, sans-serif;
	--font-body: 'DM Sans', system-ui, sans-serif;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
	font-family: var(--font-body);
	color: var(--navy);
	background: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

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

.modal-box {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 48px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.15);
	transform: translateY(16px);
	transition: transform var(--transition);
}

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

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

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

.modal-box h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.modal-box p {
	color: var(--slate);
	font-size: 0.95rem;
}

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

.navbar.scrolled {
	border-bottom-color: var(--gray-200);
}

.nav-inner {
	max-width: 1120px;
	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;
	text-decoration: none;
	color: var(--navy);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.15rem;
}

.logo-svg {
	color: var(--coral);
}

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

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

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

.nav-cta {
	background: var(--coral);
	color: var(--white) !important;
	padding: 8px 20px;
	border-radius: 999px;
	font-weight: 600 !important;
	transition: background var(--transition), color var(--transition) !important;
}

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

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

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: var(--transition);
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--transition);
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--coral);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--coral-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(245, 101, 101, 0.35);
}

.btn-secondary {
	background: var(--gray-100);
	color: var(--navy);
}

.btn-secondary:hover {
	background: var(--gray-200);
	transform: translateY(-1px);
}

/* ── Section Utils ── */
.section-eyebrow {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--coral);
	margin-bottom: 12px;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--navy);
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--slate);
	max-width: 560px;
	margin-bottom: 48px;
}

/* ── Hero ── */
.hero {
	padding: 160px 24px 100px;
	text-align: center;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(245, 101, 101, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.hero-inner {
	max-width: 720px;
	margin: 0 auto;
	position: relative;
}

.hero-badge {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--coral);
	background: rgba(245, 101, 101, 0.08);
	padding: 6px 18px;
	border-radius: 999px;
	margin-bottom: 28px;
	letter-spacing: 0.01em;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 6vw, 4.2rem);
	font-weight: 800;
	line-height: 1.08;
	color: var(--navy);
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: var(--slate);
	max-width: 540px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.hero-hostname-card {
	margin: 0 auto 44px;
	max-width: 440px;
}

.hostname-card-inner {
	background: var(--navy);
	border-radius: var(--radius-lg);
	padding: 32px 36px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.hostname-card-inner::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -30%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(245, 101, 101, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.hostname-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--slate-light);
	margin-bottom: 14px;
	text-transform: uppercase;
}

.hostname-value {
	font-family: 'DM Sans', monospace;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 8px;
	opacity: 0;
	transform: translateY(8px);
	animation: revealLine 0.6s ease forwards 0.4s;
}

.hostname-fqdn {
	font-family: 'DM Sans', monospace;
	font-size: 0.9rem;
	color: var(--coral-light);
	margin-bottom: 6px;
	opacity: 0;
	transform: translateY(8px);
	animation: revealLine 0.6s ease forwards 0.8s;
}

.hostname-ip {
	font-family: 'DM Sans', monospace;
	font-size: 0.85rem;
	color: var(--slate-light);
	opacity: 0;
	transform: translateY(8px);
	animation: revealLine 0.6s ease forwards 1.2s;
}

@keyframes revealLine {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── Stats ── */
.stats {
	padding: 64px 0;
	background: var(--gray-50);
	border-top: 1px solid var(--gray-200);
	border-bottom: 1px solid var(--gray-200);
}

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

.stat-number {
	display: block;
	font-family: var(--font-display);
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--navy);
}

.stat-label {
	font-size: 0.88rem;
	color: var(--slate);
	margin-top: 4px;
}

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

.features .section-subtitle {
	margin-left: 0;
}

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

.feature-card {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 32px;
	transition: all var(--transition);
}

.feature-card:hover {
	border-color: var(--coral-light);
	box-shadow: 0 4px 24px rgba(245, 101, 101, 0.08);
	transform: translateY(-2px);
}

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

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.feature-card p {
	font-size: 0.92rem;
	color: var(--slate);
	line-height: 1.6;
	margin-bottom: 14px;
}

.feature-card code {
	display: inline-block;
	font-size: 0.82rem;
	font-family: 'DM Sans', monospace;
	background: var(--navy);
	color: var(--coral-light);
	padding: 4px 12px;
	border-radius: 6px;
}

/* ── Resolution Matrix ── */
.resolution-matrix {
	padding: 120px 0;
	background: var(--navy);
	color: var(--white);
	text-align: center;
}

.resolution-matrix .section-eyebrow {
	color: var(--coral-light);
}

.resolution-matrix .section-title {
	color: var(--white);
}

.resolution-matrix .section-subtitle {
	color: var(--slate-light);
	margin-left: auto;
	margin-right: auto;
}

.matrix-visualization {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-top: 16px;
	flex-wrap: wrap;
}

.matrix-node {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 28px 32px;
	min-width: 220px;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.matrix-node.visible {
	opacity: 1;
	transform: translateY(0);
}

.matrix-node-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--coral-light);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.matrix-node-value {
	font-family: 'DM Sans', monospace;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 12px;
	word-break: break-all;
}

.matrix-node code {
	font-size: 0.78rem;
	font-family: 'DM Sans', monospace;
	color: var(--slate-light);
	background: rgba(255, 255, 255, 0.05);
	padding: 3px 10px;
	border-radius: 6px;
}

.matrix-connector {
	width: 60px;
	color: var(--coral);
	flex-shrink: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.matrix-connector.visible {
	opacity: 1;
}

.matrix-connector svg {
	width: 100%;
	height: 4px;
}

/* ── How It Works ── */
.how-it-works {
	padding: 120px 0;
	text-align: center;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 16px;
}

.step-card {
	text-align: left;
}

.step-number {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 800;
	color: var(--gray-200);
	line-height: 1;
	margin-bottom: 16px;
}

.step-card h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.step-card p {
	font-size: 0.95rem;
	color: var(--slate);
	line-height: 1.65;
}

/* ── Identity Card ── */
.identity-card-section {
	padding: 120px 0;
	background: var(--gray-50);
	text-align: center;
}

.identity-card-section .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.id-card-demo {
	max-width: 480px;
	margin: 0 auto;
}

.id-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.id-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 24px;
	background: var(--navy);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.id-card-header svg {
	color: var(--coral);
}

.id-card-rows {
	padding: 8px 0;
}

.id-card-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 24px;
	border-bottom: 1px solid var(--gray-100);
	opacity: 0;
	transform: translateX(-12px);
	transition: all 0.5s ease;
}

.id-card-row:last-child {
	border-bottom: none;
}

.id-card-row.revealed {
	opacity: 1;
	transform: translateX(0);
}

.id-card-key {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.id-card-val {
	font-family: 'DM Sans', monospace;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--navy);
}

/* ── Demo ── */
.demo-section {
	padding: 120px 0;
	text-align: center;
}

.terminal {
	max-width: 680px;
	margin: 0 auto;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
	text-align: left;
}

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #2d3748;
}

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

.terminal-dot.red { background: #fc5753; }
.terminal-dot.yellow { background: #fdbc40; }
.terminal-dot.green { background: #33c748; }

.terminal-title {
	flex: 1;
	text-align: center;
	font-size: 0.78rem;
	color: var(--slate-light);
	font-weight: 500;
}

.terminal-body {
	background: var(--navy);
	padding: 24px;
	font-family: 'DM Sans', monospace;
	font-size: 0.88rem;
	line-height: 1.8;
	color: var(--gray-200);
	max-height: 420px;
	overflow-y: auto;
}

.terminal-line {
	color: var(--white);
}

.prompt {
	color: var(--coral);
	margin-right: 8px;
	user-select: none;
}

.terminal-output {
	color: var(--slate-light);
	padding-left: 20px;
	margin-bottom: 8px;
	min-height: 1em;
}

/* ── Naming Generator ── */
.naming-gen {
	padding: 120px 0;
	background: var(--gray-50);
	text-align: center;
}

.naming-gen .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.naming-gen-ui {
	max-width: 600px;
	margin: 0 auto;
}

.naming-controls {
	display: flex;
	gap: 12px;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 24px;
}

.naming-field {
	text-align: left;
}

.naming-field label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}

.naming-field select {
	appearance: none;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	padding: 10px 32px 10px 14px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--navy);
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%23475569' stroke-width='1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	transition: border-color var(--transition);
}

.naming-field select:focus {
	outline: none;
	border-color: var(--coral);
}

.naming-output {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 24px;
	text-align: center;
}

.naming-result {
	margin-bottom: 12px;
}

.naming-hostname {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--navy);
}

.naming-command code {
	font-family: 'DM Sans', monospace;
	font-size: 0.85rem;
	background: var(--navy);
	color: var(--coral-light);
	padding: 6px 16px;
	border-radius: 6px;
}

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

.testimonials .section-title {
	text-align: center;
}

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

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

.testimonial-card {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 32px;
}

.testimonial-quote {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--navy);
	margin-bottom: 24px;
	font-style: italic;
}

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

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--coral);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	flex-shrink: 0;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.9rem;
}

.testimonial-title {
	font-size: 0.82rem;
	color: var(--slate);
}

/* ── Pricing ── */
.pricing {
	padding: 120px 0;
	background: var(--gray-50);
	text-align: center;
}

.pricing .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

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

.pricing-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: left;
	position: relative;
	transition: all var(--transition);
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.pricing-featured {
	border-color: var(--coral);
	box-shadow: 0 4px 24px rgba(245, 101, 101, 0.12);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--coral);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 999px;
	letter-spacing: 0.02em;
}

.pricing-tier {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: var(--slate);
	margin-bottom: 12px;
}

.pricing-price {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 8px;
}

.price-currency {
	font-size: 1.2rem;
	vertical-align: super;
	font-weight: 600;
}

.price-period {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--slate);
}

.pricing-desc {
	font-size: 0.88rem;
	color: var(--slate);
	margin-bottom: 24px;
}

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

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

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

.pricing-features code {
	font-family: 'DM Sans', monospace;
	font-size: 0.78rem;
	background: var(--gray-100);
	padding: 2px 6px;
	border-radius: 4px;
}

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

/* ── FAQ ── */
.faq {
	padding: 120px 0;
	text-align: center;
}

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

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

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

.faq-icon {
	font-size: 1.3rem;
	color: var(--coral);
	transition: transform var(--transition);
	flex-shrink: 0;
}

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

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

.faq-item.open .faq-answer {
	max-height: 300px;
	padding-bottom: 20px;
}

.faq-answer p {
	font-size: 0.92rem;
	color: var(--slate);
	line-height: 1.7;
}

.faq-answer code {
	font-family: 'DM Sans', monospace;
	font-size: 0.84rem;
	background: var(--gray-100);
	padding: 2px 6px;
	border-radius: 4px;
}

/* ── Portfolio Banner ── */
.portfolio-banner {
	padding: 64px 0;
	background: var(--navy);
	text-align: center;
}

.portfolio-label {
	font-size: 0.85rem;
	color: var(--slate-light);
	margin-bottom: 8px;
}

.portfolio-label a {
	color: var(--coral-light);
	text-decoration: none;
	font-weight: 600;
}

.portfolio-label a:hover {
	text-decoration: underline;
}

.portfolio-banner h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 24px;
}

.portfolio-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	max-width: 960px;
	margin: 0 auto;
}

.portfolio-links a {
	font-size: 0.82rem;
	color: var(--slate-light);
	text-decoration: none;
	transition: color var(--transition);
}

.portfolio-links a:hover {
	color: var(--coral-light);
}

.portfolio-current {
	font-size: 0.82rem;
	color: var(--coral);
	font-weight: 700;
}

/* ── Footer ── */
.site-footer {
	padding: 64px 0 32px;
	background: var(--white);
	border-top: 1px solid var(--gray-200);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand {
	max-width: 280px;
}

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

.footer-brand p {
	font-size: 0.88rem;
	color: var(--slate);
	line-height: 1.6;
}

.footer-brand a {
	color: var(--coral);
	text-decoration: none;
	font-weight: 600;
}

.footer-brand a:hover {
	text-decoration: underline;
}

.footer-links {
	display: flex;
	gap: 56px;
}

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--navy);
	margin-bottom: 14px;
}

.footer-col a {
	display: block;
	font-size: 0.88rem;
	color: var(--slate);
	text-decoration: none;
	padding: 4px 0;
	transition: color var(--transition);
}

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

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid var(--gray-200);
	font-size: 0.82rem;
	color: var(--slate-light);
}

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

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		padding: 24px;
		border-bottom: 1px solid var(--gray-200);
		gap: 16px;
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

	.matrix-visualization {
		flex-direction: column;
		gap: 16px;
	}

	.matrix-connector {
		transform: rotate(90deg);
		width: 40px;
	}

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

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.footer-inner {
		flex-direction: column;
	}

	.footer-links {
		gap: 32px;
		flex-wrap: wrap;
	}

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

	.naming-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.hero {
		padding: 120px 24px 80px;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.hero-title {
		font-size: 2.2rem;
	}
}

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

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

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