/* Modern Portfolio Design System */
/* Google Fonts loaded via HTML <link> for better performance */

:root {
	/* Colors */
	--bg: #09090b;
	--bg-elevated: #18181b;
	--bg-muted: #27272a;
	--surface: rgba(24, 24, 27, 0.8);
	--surface-hover: rgba(39, 39, 42, 0.9);
	--border: rgba(63, 63, 70, 0.5);
	--border-strong: rgba(82, 82, 91, 0.6);

	/* Text */
	--text: #fafafa;
	--text-muted: #a1a1aa;
	--text-subtle: #71717a;

	/* Accents */
	--accent: #3b82f6;
	--accent-hover: #60a5fa;
	--accent-muted: rgba(59, 130, 246, 0.15);
	--gradient-1: #3b82f6;
	--gradient-2: #8b5cf6;
	--gradient-3: #06b6d4;

	/* Effects */
	--glow: rgba(59, 130, 246, 0.4);
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
	--shadow-glow: 0 0 60px rgba(59, 130, 246, 0.15);

	/* Spacing */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;

	/* Transitions */
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	background: var(--bg);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Ambient Background */
.ambient {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.5;
	will-change: transform;
	transition: transform 0.1s linear;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--gradient-1), transparent 70%);
	top: -15%;
	left: -10%;
	animation: float 20s ease-in-out infinite;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--gradient-2), transparent 70%);
	top: 40%;
	right: -15%;
	animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--gradient-3), transparent 70%);
	bottom: -10%;
	left: 30%;
	animation: float 22s ease-in-out infinite 5s;
}

.grid-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(30px, -30px) scale(1.05); }
	50% { transform: translate(-20px, 20px) scale(0.95); }
	75% { transform: translate(20px, 30px) scale(1.02); }
}

/* Layout Shell */
.shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
	gap: clamp(2rem, 5vw, 3.5rem);
}

/* Navigation */
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.logo-link {
	text-decoration: none;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-mark {
	width: 10px;
	height: 10px;
	background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
	border-radius: 3px;
	box-shadow: 0 0 20px var(--glow);
}

.logo-text {
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: -0.02em;
	color: var(--text);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.status-indicator {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
	50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.badge {
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	padding: 0.35rem 0.75rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

/* Hero Section */
.hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 3rem);
	padding-top: clamp(1rem, 4vw, 2rem);
}

@media (min-width: 900px) {
	.hero {
		grid-template-columns: 1fr 1.1fr;
		align-items: start;
	}
}

.headline {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tag {
	display: inline-flex;
	align-self: flex-start;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent);
	padding: 0.4rem 0.9rem;
	background: var(--accent-muted);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 999px;
}

h1 {
	font-size: clamp(2.5rem, 7vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subtitle {
	font-size: clamp(1rem, 2.5vw, 1.15rem);
	color: var(--text-muted);
	line-height: 1.7;
	max-width: 48ch;
}

/* Hero Card */
.hero-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: clamp(1.5rem, 4vw, 2rem);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

label {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.surprise-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text);
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s var(--ease-out);
	overflow: hidden;
}

.surprise-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.surprise-btn:hover {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.25));
	border-color: rgba(139, 92, 246, 0.5);
	box-shadow: 0 0 20px rgba(139, 92, 246, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
	transform: translateY(-1px);
}

.surprise-btn:hover::before {
	transform: translateX(100%);
}

.surprise-btn:disabled {
	opacity: 0.5;
	cursor: wait;
	transform: none;
}

.surprise-btn svg {
	transition: transform 0.3s var(--ease-spring);
}

.surprise-btn:hover svg:not(.spin) {
	transform: rotate(180deg);
}

.surprise-btn svg.spin {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

textarea {
	width: 100%;
	min-height: 120px;
	padding: 1rem 1.25rem;
	font-family: inherit;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	resize: vertical;
	transition: all 0.2s var(--ease-out);
}

textarea::placeholder {
	color: var(--text-subtle);
}

textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-muted);
}

textarea.shake {
	animation: shake 0.4s var(--ease-spring);
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-8px); }
	40% { transform: translateX(8px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(4px); }
}

.quick-picks {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.quick-picks-label {
	font-size: 0.75rem;
	color: var(--text-subtle);
	margin-right: 0.25rem;
}

.chip {
	padding: 0.4rem 0.75rem;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--text-muted);
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s var(--ease-out);
}

.chip:hover {
	color: var(--text);
	background: var(--surface-hover);
	border-color: var(--border-strong);
}

.chip.selected {
	background: var(--accent-muted);
	border-color: var(--accent);
	color: var(--accent-hover);
}

.form-footer {
	padding-top: 0.5rem;
}

/* CTA Button */
.cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 1.75rem;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: white;
	background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 50%, #ec4899 100%);
	background-size: 200% 200%;
	animation: gradient-shift 3s ease infinite;
	border: none;
	border-radius: var(--radius-lg);
	cursor: pointer;
	transition: all 0.3s var(--ease-out);
	box-shadow:
		0 4px 16px rgba(59, 130, 246, 0.4),
		0 0 0 0 rgba(139, 92, 246, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.cta:hover::before {
	left: 100%;
}

@keyframes gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.cta:hover:not(:disabled) {
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 12px 32px rgba(59, 130, 246, 0.5),
		0 0 40px rgba(139, 92, 246, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta:active:not(:disabled) {
	transform: translateY(-1px) scale(1.01);
}

.cta:disabled {
	opacity: 0.7;
	cursor: wait;
	animation: none;
}

.cta.loading {
	animation: none;
	background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
}

.cta.loading .cta-icon {
	animation: spin 1s linear infinite;
}

.cta-icon {
	display: flex;
	transition: transform 0.3s var(--ease-spring);
}

.cta:hover:not(:disabled) .cta-icon {
	transform: translateX(4px);
}

/* Status Panel */
.status {
	display: none;
	margin-top: 0.5rem;
	padding: 1rem 1.25rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.status.active {
	display: block;
}

.status-content {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.pulse {
	width: 8px;
	height: 8px;
	margin-top: 6px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse-blue 1.5s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes pulse-blue {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

.status-text-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

#status-text {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text);
}

.status-step {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-family: "JetBrains Mono", monospace;
}

.status-progress {
	margin-top: 0.75rem;
	margin-left: 1.25rem;
	height: 3px;
	background: var(--border);
	border-radius: 2px;
	overflow: hidden;
}

.status-progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
	border-radius: 2px;
	transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.status-progress-bar::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.3) 50%,
		transparent 100%
	);
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.status-eta {
	margin-top: 0.5rem;
	margin-left: 1.25rem;
	font-size: 0.7rem;
	color: var(--text-muted);
	opacity: 0.7;
	transition: color 0.3s ease, opacity 0.3s ease;
}

.status-eta.status-complete {
	color: var(--accent);
	opacity: 1;
	font-weight: 500;
}

.status-step.step-change {
	animation: stepFadeIn 0.4s ease-out;
}

@keyframes stepFadeIn {
	0% {
		opacity: 0.4;
		transform: translateY(4px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Preview Section */
.preview {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.preview[hidden] {
	display: none;
}

.preview:not([hidden]) {
	animation: previewReveal 0.5s ease-out;
}

@keyframes previewReveal {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.preview-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.preview-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
}

.preview-dot {
	width: 6px;
	height: 6px;
	background: var(--text-subtle);
	border-radius: 50%;
}

.preview-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.action-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.85rem;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--text-muted);
	text-decoration: none;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.2s var(--ease-out);
}

.action-btn:hover {
	color: var(--text);
	background: var(--surface-hover);
	border-color: var(--border-strong);
}

.action-btn.copied {
	color: #22c55e;
	border-color: rgba(34, 197, 94, 0.3);
	background: rgba(34, 197, 94, 0.1);
}

#share-btn {
	display: none;
}

#share-btn.active {
	display: inline-flex;
}

.preview-container {
	position: relative;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	overflow: hidden;
}

.preview-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	min-height: 400px;
	padding: 2rem;
	color: var(--text-subtle);
	text-align: center;
}

.preview-placeholder[hidden] {
	display: none;
}

.placeholder-icon {
	color: var(--text-subtle);
	opacity: 0.5;
}

.preview-frame {
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 400px;
	border: none;
	background: var(--bg);
}

/* Gallery Section */
.gallery {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.section-title h2 {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--text);
}

.section-title p {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-top: 0.25rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: 1.25rem;
}

.gallery-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s var(--ease-out);
}

.gallery-card:hover {
	border-color: var(--border-strong);
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.gallery-card-preview {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--bg);
	overflow: hidden;
}

.gallery-card-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gallery-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	color: var(--text-subtle);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
}

.gallery-card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.5) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s var(--ease-out);
}

.gallery-card:hover .gallery-card-overlay {
	opacity: 1;
}

.gallery-card-cta {
	padding: 0.6rem 1.25rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: white;
	text-decoration: none;
	background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
	border-radius: var(--radius-md);
	transform: translateY(8px);
	transition: all 0.3s var(--ease-out);
}

.gallery-card:hover .gallery-card-cta {
	transform: translateY(0);
}

.gallery-card-info {
	padding: 1rem 1.25rem;
}

.gallery-card-prompt {
	font-size: 0.875rem;
	color: var(--text);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gallery-card-meta {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: var(--text-subtle);
	font-family: "JetBrains Mono", monospace;
}

.gallery-card-new {
	animation: galleryCardSlideIn 0.5s ease-out;
}

@keyframes galleryCardSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.gallery-card-preview img {
	transition: opacity 0.3s ease-in-out;
}

.gallery-empty {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 3rem 2rem;
	color: var(--text-muted);
	text-align: center;
	background: var(--surface);
	border: 1px dashed var(--border);
	border-radius: var(--radius-lg);
}

.gallery-empty-icon {
	color: var(--text-subtle);
	opacity: 0.5;
}

.gallery-loading {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	padding: 3rem;
}

.gallery-loading-spinner {
	width: 28px;
	height: 28px;
	border: 2px solid var(--border);
	border-top-color: var(--accent);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

/* CTA Section */
.cta-section {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.cta-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 5vw, 3rem);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: var(--radius-xl);
	max-width: 600px;
	overflow: hidden;
}

.cta-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1), transparent 50%),
	            radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1), transparent 50%);
	pointer-events: none;
}

.cta-card h2 {
	position: relative;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--text);
	line-height: 1.3;
}

.cta-card p {
	position: relative;
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 45ch;
}

.cta-contact {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: white;
	text-decoration: none;
	background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
	border-radius: var(--radius-md);
	transition: all 0.3s var(--ease-out);
	box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.cta-contact:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.cta-contact svg {
	transition: transform 0.3s var(--ease-spring);
}

.cta-contact:hover svg {
	transform: translateX(4px);
}

/* Footer */
.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-top: 2rem;
	margin-top: auto;
	border-top: 1px solid var(--border);
	font-size: 0.8rem;
	color: var(--text-subtle);
}

.footer-left {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-brand {
	font-weight: 600;
	color: var(--text-muted);
}

.footer-divider {
	opacity: 0.5;
}

.footer-links {
	display: flex;
	gap: 1.5rem;
}

.footer-link {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s var(--ease-out);
}

.footer-link:hover {
	color: var(--text);
}

/* Responsive */
@media (max-width: 640px) {
	.nav {
		flex-wrap: wrap;
	}

	.hero-card {
		padding: 1.25rem;
	}

	textarea {
		min-height: 100px;
	}

	.quick-picks {
		gap: 0.4rem;
	}

	.quick-picks-label {
		width: 100%;
		margin-bottom: 0.25rem;
	}

	.preview-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
}

@media (max-width: 768px), (hover: none) {
	.ambient {
		display: none;
	}

	.badge {
		background: var(--bg-elevated);
		backdrop-filter: none;
	}

	.hero-card {
		backdrop-filter: none;
		box-shadow: var(--shadow-md);
	}

	.cta {
		animation: none;
		background-size: auto;
	}

	.pulse,
	.status-progress-bar::after,
	.status-step.step-change,
	.preview:not([hidden]) {
		animation: none;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.orb {
		opacity: 0.3;
	}
}
