/* ========================================
   Unravel — gunzip startup site
   Boutique / Indie / Warm Neutrals
   Fraunces + DM Sans
   ======================================== */

:root {
	--parchment: #f5f0e8;
	--parchment-dark: #e0d8c8;
	--cream: #faf8f3;
	--coffee: #5c4a3a;
	--coffee-light: #8b7462;
	--coffee-dark: #3d2e22;
	--rust: #b85c38;
	--rust-light: #d4856a;
	--rust-dark: #8c3f22;
	--sage: #8a9a7b;
	--bg: var(--cream);
	--surface: #ffffff;
	--surface-alt: var(--parchment);
	--text: var(--coffee-dark);
	--text-muted: var(--coffee);
	--text-light: var(--coffee-light);
	--border: #d9d0c2;
	--border-light: #e8e2d6;
	--shadow-sm: 0 1px 3px rgba(93, 74, 58, 0.06);
	--shadow: 0 4px 20px rgba(93, 74, 58, 0.08);
	--shadow-lg: 0 12px 40px rgba(93, 74, 58, 0.12);
	--radius: 10px;
	--radius-lg: 18px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--font-display: 'Fraunces', serif;
	--font-body: 'DM Sans', sans-serif;
}

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

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

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

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

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

a:hover {
	color: var(--rust-dark);
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	line-height: 1.2;
}

h1 {
	font-weight: 700;
}

h2 {
	font-weight: 600;
}

em {
	font-style: italic;
	color: var(--rust);
}

code {
	font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
	font-size: 0.85em;
	background: rgba(184, 92, 56, 0.08);
	color: var(--rust-dark);
	padding: 2px 6px;
	border-radius: 4px;
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 24px;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all var(--transition);
	text-decoration: none;
}

.btn-primary {
	background: var(--rust);
	color: #fff;
	border-color: var(--rust);
}

.btn-primary:hover {
	background: var(--rust-dark);
	border-color: var(--rust-dark);
	color: #fff;
}

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

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

.btn-ghost {
	background: transparent;
	color: var(--coffee);
	border-color: transparent;
}

.btn-ghost:hover {
	color: var(--rust);
}

.btn-lg {
	padding: 14px 32px;
	font-size: 1.05rem;
}

.btn-full {
	width: 100%;
}

/* ===== Section Tags ===== */
.section-tag {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--rust);
	margin-bottom: 12px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin-bottom: 16px;
	color: var(--coffee-dark);
}

.section-header p {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 580px;
	margin: 0 auto;
}

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

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

.modal-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 48px 40px;
	text-align: center;
	max-width: 420px;
	width: 90%;
	box-shadow: var(--shadow-lg);
	position: relative;
	transform: translateY(20px);
	transition: transform var(--transition);
}

.modal-overlay.open .modal-card {
	transform: translateY(0);
}

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

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

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

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

.modal-btn {
	min-width: 140px;
}

/* ===== Navbar ===== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(250, 248, 243, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-light);
	transition: all var(--transition);
}

.navbar.scrolled {
	box-shadow: var(--shadow-sm);
}

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

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

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

.nav-links {
	display: flex;
	list-style: none;
	gap: 32px;
}

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

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

.nav-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

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

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--coffee);
	border-radius: 2px;
	transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

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

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

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

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

/* ===== Hero — Split Screen ===== */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
	padding-top: 68px;
}

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

.hero-badge {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-light);
	margin-bottom: 24px;
}

.hero-badge a {
	color: var(--rust);
	font-weight: 600;
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	color: var(--coffee-dark);
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hero h1 em {
	font-style: italic;
	color: var(--rust);
}

.hero-sub {
	font-size: 1.15rem;
	color: var(--text-muted);
	margin-bottom: 36px;
	max-width: 480px;
	line-height: 1.8;
}

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

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

.hero-right::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -20%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(184, 92, 56, 0.06) 0%, transparent 70%);
}

.hero-visual {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 40px;
}

.compressed-file,
.decompressed-file {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	text-align: center;
	box-shadow: var(--shadow);
	min-width: 140px;
}

.file-icon {
	font-size: 2.4rem;
	margin-bottom: 10px;
}

.file-name {
	display: block;
	font-family: 'SF Mono', 'Fira Code', monospace;
	font-size: 0.82rem;
	color: var(--coffee);
	margin-bottom: 4px;
	word-break: break-all;
}

.file-size {
	display: block;
	font-size: 0.75rem;
	color: var(--text-light);
}

.decompressed-file {
	border-color: var(--rust-light);
	box-shadow: 0 4px 20px rgba(184, 92, 56, 0.12);
}

.unravel-arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.arrow-label {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-style: italic;
	color: var(--rust);
}

/* ===== Manifesto ===== */
.manifesto {
	padding: 100px 0;
	background: var(--coffee-dark);
	color: var(--parchment);
}

.manifesto-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.manifesto .section-tag {
	color: var(--rust-light);
}

.manifesto h2 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	color: var(--parchment);
	margin-bottom: 40px;
	font-style: italic;
}

.manifesto-text p {
	font-size: 1.1rem;
	line-height: 1.9;
	color: rgba(245, 240, 232, 0.85);
	margin-bottom: 24px;
}

.manifesto-text p:last-child {
	margin-bottom: 0;
}

.manifesto-text code {
	background: rgba(184, 92, 56, 0.2);
	color: var(--rust-light);
}

/* ===== Stats Bar ===== */
.stats-bar {
	padding: 48px 0;
	background: var(--parchment);
	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-val {
	display: block;
	font-family: var(--font-display);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--rust);
}

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

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

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

.feature-card {
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	transition: all var(--transition);
	opacity: 0;
	transform: translateY(20px);
}

.feature-card.visible {
	opacity: 1;
	transform: translateY(0);
}

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

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

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

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

/* ===== How It Works ===== */
.how-it-works {
	padding: 100px 0;
	background: var(--parchment);
}

.steps-grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}

.step {
	flex: 1;
	max-width: 300px;
	text-align: center;
	padding: 0 24px;
	opacity: 0;
	transform: translateY(20px);
}

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

.step-number {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 300;
	color: var(--rust-light);
	margin-bottom: 16px;
	opacity: 0.6;
}

.step h3 {
	font-size: 1.2rem;
	color: var(--coffee-dark);
	margin-bottom: 12px;
}

.step p {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.step-connector {
	display: flex;
	align-items: center;
	padding-top: 36px;
}

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

.terminal-window {
	max-width: 780px;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
}

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--parchment-dark);
	padding: 12px 16px;
}

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

.terminal-dot.red { background: #e8685a; }
.terminal-dot.yellow { background: #f0b840; }
.terminal-dot.green { background: #61c454; }

.terminal-title {
	margin-left: auto;
	font-size: 0.78rem;
	color: var(--text-light);
	font-family: 'SF Mono', 'Fira Code', monospace;
}

.terminal-body {
	background: var(--coffee-dark);
	padding: 24px;
	font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
	font-size: 0.85rem;
	line-height: 1.7;
	color: var(--parchment);
	overflow-x: auto;
}

.terminal-line {
	white-space: pre;
}

.terminal-line .prompt {
	color: var(--rust-light);
	margin-right: 8px;
}

.terminal-line.output {
	color: rgba(245, 240, 232, 0.7);
}

/* ===== Case Study ===== */
.case-study {
	padding: 100px 0;
	background: var(--parchment);
}

.case-study-inner {
	max-width: 760px;
	margin: 0 auto;
}

.case-study .section-tag {
	display: block;
	margin-bottom: 12px;
}

.case-study h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	color: var(--coffee-dark);
	margin-bottom: 36px;
	font-style: italic;
}

.case-body p {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 24px;
}

.case-body blockquote {
	border-left: 3px solid var(--rust);
	padding: 20px 28px;
	margin: 32px 0;
	background: var(--surface);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-style: italic;
	color: var(--coffee);
	line-height: 1.8;
}

.case-attribution {
	font-weight: 600;
	color: var(--coffee-dark);
	font-size: 0.95rem !important;
}

/* ===== Team ===== */
.team {
	padding: 100px 0;
}

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

.team-card {
	text-align: center;
	padding: 40px 28px;
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
}

.team-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.team-card:hover {
	box-shadow: var(--shadow);
}

.team-avatar {
	margin: 0 auto 20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.team-card h4 {
	font-size: 1.1rem;
	color: var(--coffee-dark);
	margin-bottom: 4px;
}

.team-role {
	display: block;
	font-size: 0.85rem;
	color: var(--rust);
	margin-bottom: 16px;
}

.team-quote {
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-style: italic;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ===== Pricing ===== */
.pricing {
	padding: 100px 0;
	background: var(--parchment);
}

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

.pricing-card {
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	text-align: center;
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
}

.pricing-card.visible {
	opacity: 1;
	transform: translateY(0);
}

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

.pricing-card.featured {
	border-color: var(--rust);
	box-shadow: 0 8px 30px rgba(184, 92, 56, 0.12);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--rust);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 16px;
	border-radius: 20px;
	white-space: nowrap;
}

.pricing-tier {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--coffee-dark);
	margin-bottom: 12px;
}

.pricing-amount {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--coffee-dark);
	margin-bottom: 8px;
}

.currency {
	font-size: 1.2rem;
	vertical-align: top;
	margin-right: 2px;
}

.period {
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--text-light);
}

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

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

.pricing-features li {
	padding: 6px 0;
	font-size: 0.9rem;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border-light);
	position: relative;
	padding-left: 22px;
}

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

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

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

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

.testimonial-card {
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 32px;
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
}

.testimonial-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-stars {
	color: var(--rust);
	font-size: 0.9rem;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.testimonial-text {
	font-size: 0.98rem;
	color: var(--text-muted);
	line-height: 1.7;
	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(--parchment-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--coffee);
}

.testimonial-author strong {
	display: block;
	font-size: 0.9rem;
	color: var(--coffee-dark);
}

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

/* ===== FAQ ===== */
.faq {
	padding: 100px 0;
	background: var(--parchment);
}

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

.faq-item {
	border-bottom: 1px solid var(--border);
	opacity: 0;
	transform: translateY(16px);
	transition: all var(--transition);
}

.faq-item.visible {
	opacity: 1;
	transform: translateY(0);
}

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

.faq-toggle {
	font-size: 1.4rem;
	color: var(--rust);
	transition: transform var(--transition);
	flex-shrink: 0;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
	max-height: 300px;
}

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

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	padding: 60px 0;
	background: var(--coffee-dark);
	text-align: center;
}

.portfolio-banner h3 {
	font-size: 1.2rem;
	color: var(--parchment);
	margin-bottom: 28px;
}

.portfolio-banner h3 a {
	color: var(--rust-light);
}

.portfolio-banner h3 a:hover {
	color: var(--parchment);
}

.portfolio-scroll {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.portfolio-scroll a {
	font-size: 0.82rem;
	color: rgba(245, 240, 232, 0.5);
	transition: color var(--transition);
	white-space: nowrap;
}

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

.current-brand {
	font-size: 0.82rem;
	color: var(--rust-light);
	font-weight: 700;
	white-space: nowrap;
}

/* ===== Footer ===== */
.footer {
	padding: 60px 0 0;
	background: var(--surface-alt);
	border-top: 1px solid var(--border-light);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 2fr;
	gap: 48px;
	padding-bottom: 40px;
}

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

.footer-brand .nav-logo {
	font-size: 1.1rem;
}

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

.footer-col h4 {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--coffee-dark);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
}

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

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

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

.footer-bottom {
	border-top: 1px solid var(--border-light);
	padding: 20px 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.85rem;
	color: var(--text-light);
}

.footer-bottom a {
	color: var(--rust);
}

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

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

@media (max-width: 768px) {
	.nav-links,
	.nav-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-left {
		padding: 60px 24px 40px;
		max-width: 100%;
		margin-left: 0;
	}

	.hero-right {
		padding: 40px 24px 60px;
	}

	.hero-visual {
		flex-direction: column;
		gap: 16px;
	}

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

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

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

	.steps-grid {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

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

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

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

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

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

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

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

	.footer-links {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-ctas {
		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 #8a9a7b;
	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: #8a9a7b;
	color: #fff;
	border: 1px solid #8a9a7b;
}

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

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