:root {
	/* Light mode colors */
	--bg: #fafafa;
	--panel: #ffffff;
	--text: #1a1a1a;
	--muted: #666666;
	--brand: #ff6b35;
	--brand-2: #ffa726;
	--brand-3: #e91e63;
	--brand-4: #6c5ce7;
	--brand-5: #ffffff;
	--accent: #51cf66;
	--accent-2: #ffd43b;
	--border: #e5e5e5;
	--radius: 12px;
	--space: clamp(16px, 2vw, 24px);
	--container: min(1120px, 92vw);
	--shadow: 0 10px 30px rgba(0, 0, 0, .1);
	--shadow-colored: 0 10px 30px rgba(255, 107, 53, .2);
	--gradient-primary: linear-gradient(135deg, #ffa726 0%, #ff7043 50%, #e91e63 100%);
	--gradient-secondary: linear-gradient(135deg, #6c5ce7 0%, #4c6ef5 100%);
	--font: 'Figtree', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
	--font-em: 'Cormorant Garamond', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;

	/* Header backdrop */
	--header-backdrop: rgba(255, 255, 255, 0.9);

	/* Translucent colors */
	--brand-alpha: rgba(255, 107, 53, 0.1);
	--panel-translucent: rgba(255, 255, 255, 0.04);
	--panel-translucent-light: rgba(255, 255, 255, 0.1);
	--panel-translucent-medium: rgba(255, 255, 255, 0.15);
	--border-light: rgba(255, 255, 255, 0.2);
	--overlay-light: rgba(15, 17, 21, 0.2);
	--overlay-dark: rgba(0, 0, 0, 0.2);
	--overlay-darker: rgba(0, 0, 0, 0.4);
	--text-translucent: rgba(255, 255, 255, 0.9);
	--text-secondary: #333;
	--light-gray: #888;
	--medium-gray: #ccc;
	--card-bg: #1a1a1a;
	--card-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	--card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.3);
	--panel-overlay: rgba(255, 255, 255, 0.05);
	--border-dashed: rgba(102, 102, 102, 0.4);

	/* Emoji circle gradients */
	--gradient-green: linear-gradient(135deg, #51cf66, #69db7c);
	--gradient-pink: linear-gradient(135deg, #ff6b9d, #ff8cc8);
	--gradient-orange: linear-gradient(135deg, #ff6b35, #ff8c42);
	--gradient-blue: linear-gradient(135deg, #4c6ef5, #748ffc);
	--gradient-yellow: linear-gradient(135deg, #ffd43b, #ffe066);
	--gradient-purple: linear-gradient(135deg, #9c88ff, #be4bdb);
	--gradient-black: linear-gradient(135deg, #495057, #6c757d);
	--gradient-red: linear-gradient(135deg, #e63946, #f77f00);

	/* Complex patterns */
	--pattern-checkerboard: linear-gradient(135deg, rgba(108, 140, 255, .15), rgba(132, 255, 201, .15)), repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0, rgba(255, 255, 255, .04) 2px, transparent 2px, transparent 6px);
}

/* Dark mode colors */
[data-theme="dark"] {
	--bg: #0a0a0a;
	--panel: #1a1a1a;
	--text: #ffffff;
	--muted: #a0a0a0;
	--brand: #ff7043;
	--brand-2: #ffb74d;
	--brand-3: #f06292;
	--brand-4: #7986cb;
	--brand-5: #1a1a1a;
	--accent: #66bb6a;
	--accent-2: #ffeb3b;
	--border: #333333;
	--shadow: 0 10px 30px rgba(0, 0, 0, .3);
	--shadow-colored: 0 10px 30px rgba(255, 112, 67, .3);
	--gradient-primary: linear-gradient(135deg, #ffb74d 0%, #ff7043 50%, #f06292 100%);
	--gradient-secondary: linear-gradient(135deg, #7986cb 0%, #5c6bc0 100%);

	/* Header backdrop */
	--header-backdrop: rgba(26, 26, 26, 0.9);

	/* Translucent colors for dark mode */
	--brand-alpha: rgba(255, 112, 67, 0.15);
	--panel-translucent: rgba(255, 255, 255, 0.03);
	--panel-translucent-light: rgba(255, 255, 255, 0.08);
	--panel-translucent-medium: rgba(255, 255, 255, 0.12);
	--border-light: rgba(255, 255, 255, 0.15);
	--overlay-light: rgba(0, 0, 0, 0.3);
	--overlay-dark: rgba(0, 0, 0, 0.4);
	--overlay-darker: rgba(0, 0, 0, 0.6);
	--text-translucent: rgba(255, 255, 255, 0.8);
	--text-secondary: #e0e0e0;
	--light-gray: #b0b0b0;
	--medium-gray: #777;
	--card-bg: #2a2a2a;
	--card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	--card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.6);
	--panel-overlay: rgba(0, 0, 0, 0.3);
	--border-dashed: rgba(255, 255, 255, 0.2);

	/* Complex patterns for dark mode */
	--pattern-checkerboard: linear-gradient(135deg, rgba(108, 140, 255, .1), rgba(132, 255, 201, .1)), repeating-linear-gradient(45deg, rgba(255, 255, 255, .02) 0, rgba(255, 255, 255, .02) 2px, transparent 2px, transparent 6px);
}

/* Light mode colors (explicit override) */
[data-theme="light"] {
	--bg: #fafafa !important;
	--panel: #ffffff !important;
	--text: #1a1a1a !important;
	--muted: #666666 !important;
	--brand: #ff6b35 !important;
	--brand-2: #ffa726 !important;
	--brand-3: #e91e63 !important;
	--brand-4: #6c5ce7 !important;
	--brand-5: #ffffff !important;
	--accent: #51cf66 !important;
	--accent-2: #ffd43b !important;
	--border: #e5e5e5 !important;
	--shadow: 0 10px 30px rgba(0, 0, 0, .1) !important;
	--shadow-colored: 0 10px 30px rgba(255, 107, 53, .2) !important;
	--gradient-primary: linear-gradient(135deg, #ffa726 0%, #ff7043 50%, #e91e63 100%) !important;
	--gradient-secondary: linear-gradient(135deg, #6c5ce7 0%, #4c6ef5 100%) !important;
	--header-backdrop: rgba(255, 255, 255, 0.9) !important;
	--brand-alpha: rgba(255, 107, 53, 0.1) !important;
	--panel-translucent: rgba(255, 255, 255, 0.04) !important;
	--panel-translucent-light: rgba(255, 255, 255, 0.1) !important;
	--panel-translucent-medium: rgba(255, 255, 255, 0.15) !important;
	--border-light: rgba(255, 255, 255, 0.2) !important;
	--overlay-light: rgba(15, 17, 21, 0.2) !important;
	--overlay-dark: rgba(0, 0, 0, 0.2) !important;
	--overlay-darker: rgba(0, 0, 0, 0.4) !important;
	--text-translucent: rgba(255, 255, 255, 0.9) !important;
	--text-secondary: #333 !important;
	--light-gray: #888 !important;
	--medium-gray: #ccc !important;
	--card-bg: #ffffff !important;
	--card-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
	--card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
	--panel-overlay: rgba(255, 255, 255, 0.05) !important;
	--border-dashed: rgba(102, 102, 102, 0.4) !important;
}

/* Auto dark mode based on system preference */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) {
		--bg: #0a0a0a;
		--panel: #1a1a1a;
		--text: #ffffff;
		--muted: #a0a0a0;
		--brand: #ff7043;
		--brand-2: #ffb74d;
		--brand-3: #f06292;
		--brand-4: #7986cb;
		--brand-5: #1a1a1a;
		--accent: #66bb6a;
		--accent-2: #ffeb3b;
		--border: #333333;
		--shadow: 0 10px 30px rgba(0, 0, 0, .3);
		--shadow-colored: 0 10px 30px rgba(255, 112, 67, .3);
		--gradient-primary: linear-gradient(135deg, #ffb74d 0%, #ff7043 50%, #f06292 100%);
		--gradient-secondary: linear-gradient(135deg, #7986cb 0%, #5c6bc0 100%);
		--header-backdrop: rgba(26, 26, 26, 0.9);

		/* Translucent colors for dark mode */
		--brand-alpha: rgba(255, 112, 67, 0.15);
		--panel-translucent: rgba(255, 255, 255, 0.03);
		--panel-translucent-light: rgba(255, 255, 255, 0.08);
		--panel-translucent-medium: rgba(255, 255, 255, 0.12);
		--border-light: rgba(255, 255, 255, 0.15);
		--overlay-light: rgba(0, 0, 0, 0.3);
		--overlay-dark: rgba(0, 0, 0, 0.4);
		--overlay-darker: rgba(0, 0, 0, 0.6);
		--text-translucent: rgba(255, 255, 255, 0.8);
		--text-secondary: #e0e0e0;
		--light-gray: #b0b0b0;
		--medium-gray: #777;
		--card-bg: #2a2a2a;
		--card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
		--card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.6);
		--panel-overlay: rgba(0, 0, 0, 0.3);
		--border-dashed: rgba(255, 255, 255, 0.2);

		/* Complex patterns for dark mode */
		--pattern-checkerboard: linear-gradient(135deg, rgba(108, 140, 255, .1), rgba(132, 255, 201, .1)), repeating-linear-gradient(45deg, rgba(255, 255, 255, .02) 0, rgba(255, 255, 255, .02) 2px, transparent 2px, transparent 6px);
	}
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	/* Prevent horizontal overflow */
	overflow-x: hidden;
	max-width: 100vw;
}

.container {
	width: var(--container);
	margin-inline: auto;
	padding: calc(var(--space) * 1.5) var(--space);
}

.section {
	padding: calc(var(--space) * 3) 0;
	border-top: 1px solid var(--border);
}

.section:first-of-type {
	border-top: 0;
}

.section__title {
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.15;
	margin: 0 0 var(--space) 0;
	letter-spacing: -0.02em;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	backdrop-filter: blur(8px);
	background: var(--header-backdrop);
	border-bottom: 1px solid var(--border);
	z-index: 1000;
	box-shadow: var(--shadow);
	transform: translateY(-100%);
	transition: all 0.3s ease;
	padding: 12px 0;
}

.site-header.visible {
	transform: translateY(0);
}

.brand__link {
	font-weight: 700;
	font-size: 18px;
	color: var(--text);
	text-decoration: none;
}

.site-nav .nav-list {
	list-style: none;
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 0;
	margin: 0;
}

/* Match hero navigation styling exactly */
.nav-link {
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
}

.nav-link--text {
	color: var(--text);
	padding: 8px 12px;
}

.nav-link--text-footer {
	color: var(--muted);
	padding: 8px 12px;
	font-size: 0.9rem;
}

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

.nav-link--button {
	background: var(--text);
	color: var(--bg);
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
}

.nav-link--button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

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


/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid var(--border);
	text-decoration: none;
	color: var(--text);
	transition: transform .06s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--primary {
	background: var(--gradient-primary);
	color: white;
	border-color: transparent;
	font-weight: 700;
	box-shadow: var(--shadow-colored);
}

.btn--ghost {
	background: var(--panel);
	color: var(--text);
	border-color: var(--border);
}

.btn--small {
	padding: 8px 12px;
	font-size: 14px;
}

/* Hero */
.hero {
	display: flex;
	align-items: center;
	padding-top: 0;
}

.hero__grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 60px;
	align-items: stretch;
	width: 100%;
}

.hero__content {
	max-width: 600px;
	min-width: 0;
}

/* Hero Navigation */
.hero__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	padding: 20px 0;
}

.hero__brand {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 24px;
	color: var(--text);
}

.hero__brand-icon {
	width: 32px;
	height: auto;
	display: block;
}

/* Theme-specific brand icon visibility - default to light mode */
.hero__brand-icon--light {
	display: block;
}

.hero__brand-icon--dark {
	display: none;
}

/* Auto dark mode based on system preference */
@media (prefers-color-scheme: dark) {
	.hero__brand-icon--light {
		display: none;
	}

	.hero__brand-icon--dark {
		display: block;
	}
}

.hero__nav-buttons {
	display: flex;
	gap: 24px;
	align-items: center;
}

.hero__nav-button {
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
}

.hero__nav-button--text {
	color: var(--text);
	padding: 8px 12px;
}

.hero__nav-button--text:hover {
	color: var(--brand);
}

.hero__nav-button--button {
	background: var(--text);
	color: var(--bg);
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
}

.hero__nav-button--button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

.hero__title {
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
	margin: 0 0 10px 0;
	letter-spacing: -0.03em;
	font-weight: 700;
	font-family: var(--font);
}

.hero__title em {
	font-style: italic;
	font-weight: 700;
	font-family: var(--font-em);
}

.hero__subtitle {
	margin: 0 0 20px 0;
	color: var(--muted);
	font-size: clamp(16px, 2.2vw, 20px);
}

.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero__badges {
	display: flex;
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: 22px 0 0 0;
	color: var(--muted);
	flex-wrap: wrap;
}

.hero__badges li {
	background: var(--panel-translucent);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 8px 12px;
}

/* Right Card Styles */
.hero__card {
	position: relative;
	background: var(--gradient-primary);
	border-radius: 24px;
	padding: 32px;
	color: white;
	box-shadow: var(--shadow-colored);
	overflow: hidden;
	width: 400px;
	min-width: 400px;
	margin-top: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hero__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../img/orange-bg.png');
	background-size: cover;
	background-position: top;
	background-repeat: repeat;
	opacity: 0.6;
	z-index: 0;
}

.hero__card-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	z-index: 1;
}

.hero__card-header {
	margin-bottom: auto;
	position: relative;
	z-index: 1;
}

.hero__card-title {
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: white;
	line-height: 4rem;
	margin-top: 1rem;
}

.hero__card-subtitle {
	font-size: 1.4rem;
	opacity: 0.8;
	color: white;
	margin-top: 0;
	margin-bottom: 0;
}

.hero__card-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.hero__card-image {
	text-align: center;
	margin-bottom: 8px;
}

.hero__card-image img {
	max-width: 200px;
	height: auto;
	opacity: 0.9;
}

.btn--card-primary {
	background: white;
	color: #1a1a1a;
	border: none;
	padding: 16px 24px;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	font-size: 1rem;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn--card-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.hero__card-secondary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: var(--panel-translucent-light);
	border-radius: 12px;
	text-decoration: none;
	color: white;
	transition: background 0.2s;
	border: 1px solid var(--border-light);
}

.hero__card-secondary:hover {
	background: var(--panel-translucent-medium);
}

.hero__card-secondary-icon {
	font-size: 1.5rem;
	background: var(--overlay-light);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero__card-secondary-text {
	flex: 1;
}

.hero__card-secondary-main {
	display: block;
	font-weight: 600;
	font-size: 1.2rem;
	color: white;
}

.hero__card-secondary-sub {
	display: block;
	font-size: 1.1rem;
	opacity: 0.8;
	color: white;
}

.hero__card-secondary-arrow {
	font-size: 1.2rem;
	opacity: 0.8;
	color: white;
}

/* Card Decorations */
.hero__card-decorations {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.hero__card-emoji {
	position: absolute;
	font-size: 8rem;
	opacity: 0.3;
}

.hero__card-emoji--1 {
	top: 20px;
	right: 20px;
	transform: rotate(15deg);
}

.hero__card-emoji--2 {
	bottom: 80px;
	right: 68px;
	transform: rotate(-10deg);
	display: none;
}

.hero__card-emoji--3 {
	top: 50%;
	right: -20px;
	transform: rotate(20deg);
	display: none;
}

/* Hero responsive */
@media (max-width: 768px) {
	.hero__nav {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 40px;
		text-align: center;
	}

	.hero__nav-buttons {
		gap: 16px;
	}

	.hero__nav-button--text {
		padding: 6px 8px;
		font-size: 14px;
	}

	.hero__nav-button--button {
		padding: 10px 20px;
		font-size: 14px;
	}

	/* Main navigation responsive - match hero styling */
	.site-nav .nav-list {
		gap: 16px;
	}

	.nav-link--text {
		padding: 6px 8px;
		font-size: 14px;
	}

	.nav-link--button {
		padding: 10px 20px;
		font-size: 14px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
		align-items: start;
	}

	.hero__card {
		order: -1;
		max-width: 400px;
		margin: 0 auto 40px;
		min-width: auto;
		width: 100%;
		height: auto;
		justify-content: flex-start;
	}

	.hero__content {
		max-width: none;
	}

	.hero__actions {
		justify-content: center;
	}

	.hero__badges {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero__card {
		padding: 24px;
	}

	.hero__card-title {
		font-size: 1.5rem;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__badges {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}

/* How It Works */
section.how {
	padding-top: 2rem;
}

.how .section__title {
	font-size: clamp(28px, 4vw, 60px);
	line-height: 1.15;
	margin: 0 auto var(--space) auto;
	letter-spacing: -0.02em;
	text-align: center;
	width: 65%;
}

.section__title em {
	font-style: italic;
	font-family: var(--font-em);
	font-weight: 600;
	font-size: clamp(28px, 4.3vw, 80px);
}

/* Steps */
.steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	counter-reset: step;
	padding-left: 0;
}

.step-item {
	list-style: none;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 34px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.step-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.step-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--overlay-dark);
	z-index: 0;
}

.step-item--1::before {
	background-image: url('../img/purple-bg.png');
}

.step-item--2::before {
	background-image: url('../img/blue-bg.png');
}

.step-item--3::before {
	background-image: url('../img/yellow-bg.png');
}

.step-icon {
	margin: 0 auto 24px;
	position: relative;
	z-index: 1;
	text-align: center;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon img {
	display: block;
	border-radius: 12px;
	margin: 0 auto;
	max-width: 250px;
	height: auto;
}

.step-content {
	background: var(--overlay-darker);
	border-radius: 12px;
	padding: 16px;
	position: relative;
	z-index: 1;
}

.steps h3 {
	margin: 0 0 12px 0;
	font-size: 2rem;
	font-weight: 600;
	position: relative;
	z-index: 1;
	color: white;
	text-align: left;
}

.steps p {
	margin: 0;
	color: var(--text-translucent);
	line-height: 1.5;
	position: relative;
	z-index: 1;
	text-align: left;
	font-size: 1.2rem;
}

@media (max-width: 900px) {
	.steps {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.step-item {
		padding: 24px 30px 20px;
	}

	.step-icon {
		margin-bottom: 20px;
	}
}

/* Features */
#features .section__title {
	font-size: clamp(28px, 4vw, 60px);
	line-height: 1.15;
	margin: 0 0 var(--space) 0;
	letter-spacing: -0.02em;
	text-align: center;
}

#features .section__title em {
	font-style: italic;
	font-family: var(--font-em);
	font-weight: 600;
	font-size: clamp(28px, 4.3vw, 80px);
}

#features .section__subtitle {
	font-size: clamp(16px, 2.2vw, 20px);
	color: var(--muted);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
	list-style: none;
}

.feature-grid li {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
}

.feature-grid h3 {
	margin: 0 0 12px 0;
	font-size: 20px;
	font-weight: 600;
}

.feature-grid p {
	margin: 0;
	color: var(--muted);
	line-height: 1.5;
}



@media (max-width: 1100px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* Pricing */
.pricing {
	background: var(--bg);
	color: var(--text);
	padding-top: calc(var(--space) * 1);
	padding-bottom: 0;
}

.pricing-header {
	text-align: center;
	margin-bottom: calc(var(--space) * 2);
}

.pricing-pretitle {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--brand-4);
	margin: 0 0 16px 0;
}

.pricing-title {
	font-size: clamp(28px, 4vw, 60px);
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
	color: var(--text);
}

.pricing-title em {
	font-style: italic;
	font-family: var(--font-em);
	font-weight: 600;
	font-size: clamp(28px, 4.3vw, 80px);
}

.pricing-cards {
	display: grid;
	grid-template-columns: minmax(0, 35%) minmax(0, 65%);
	gap: 80px;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

/* Left Card */
.pricing-left-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	background: var(--panel);
	border-radius: 24px;
	padding: 40px;
	height: 100%;
	min-width: 400px;
	padding-top: 80px;
}

.pricing-card-stack {
	position: relative;
	width: 280px;
	height: 200px;
}

.pricing-card-item {
	position: absolute;
	width: 200px;
	height: 140px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--text-secondary);
	box-shadow: var(--card-shadow);
	transform-origin: center;
	transition: transform 0.3s ease, z-index 0.3s ease;
	animation: float 3s ease-in-out infinite;
}

.pricing-card-item:hover {
	transform: scale(1.15) translateY(-20px) translateZ(0);
	z-index: 10;
	box-shadow: var(--card-shadow-hover);
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-8px);
	}
}

.pricing-card-item--pink {
	animation-delay: 0s;
}

.pricing-card-item--orange {
	animation-delay: 0.2s;
}

.pricing-card-item--blue {
	animation-delay: 0.4s;
}

.pricing-card-item--yellow {
	animation-delay: 0.6s;
}

.pricing-card-item--green {
	animation-delay: 0.8s;
}

.pricing-card-item--pink {
	background: var(--gradient-pink);
	top: 0;
	left: 0;
	transform: rotate(-5deg);
	z-index: 1;
}

.pricing-card-item--orange {
	background: var(--gradient-orange);
	top: 20px;
	left: 40px;
	transform: rotate(8deg);
	z-index: 2;
}

.pricing-card-item--blue {
	background: var(--gradient-blue);
	top: 40px;
	left: 80px;
	transform: rotate(-3deg);
	z-index: 3;
}

.pricing-card-item--yellow {
	background: var(--gradient-yellow);
	top: 60px;
	left: 20px;
	transform: rotate(12deg);
	z-index: 4;
}

.pricing-card-item--green {
	background: var(--gradient-green);
	top: 80px;
	left: 60px;
	transform: rotate(-8deg);
	z-index: 5;
	flex-direction: column;
	gap: 8px;
}

.pricing-card-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--text);
}

.pricing-start-btn {
	background: var(--text);
	color: var(--bg);
	border: none;
	padding: 16px 24px;
	border-radius: 25px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: transform 0.2s;
	box-shadow: var(--shadow);
	margin-top: 3.5rem;
}

.pricing-start-btn:hover {
	transform: translateY(-2px);
}

.pricing-start-icon {
	color: var(--accent-2);
	font-size: 12px;
}

.pricing-left-title {
	font-size: 4.5rem;
	font-weight: 600;
	color: var(--text);
	margin: 0;
	line-height: 5rem;
}

/* Right Card */
.pricing-right-card {
	background: var(--card-bg);
	color: white;
	border-radius: 24px;
	padding: 40px;
	min-width: 0;
	overflow-wrap: break-word;
}

/* Light mode pricing overrides - system preference only */
@media (prefers-color-scheme: light) {
	.pricing-right-card {
		color: #1a1a1a;
		background-color: #ffffff;
		border: 1px solid #e5e5e5;
	}

	.pricing-right-title,
	.pricing-amount {
		color: #1a1a1a;
	}

	/* Keep the join button text white since it has a gradient background */
	.pricing-join-btn {
		color: white;
	}

	/* Light mode features grid styling */
	.pricing-features-grid {
		background: rgba(0, 0, 0, 0.04);
	}

	.pricing-features-left p,
	.pricing-features-right p {
		color: #1a1a1a;
	}
}

.pricing-right-header {
	margin-bottom: 32px;
}

.pricing-right-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 8px 0;
	color: white;
}

.pricing-right-subtitle {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--light-gray);
	margin: 0;
}

.pricing-amount {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 32px;
	color: white;
	border-top: dashed 1px var(--muted);
}

.pricing-currency {
	font-size: 0.6em;
	margin-right: 4px;
}

.pricing-period {
	font-size: 0.4em;
	margin-left: 4px;
	color: var(--light-gray);
}

.pricing-included {
	margin-bottom: 32px;
}

.pricing-included-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--light-gray);
	margin: 0 0 20px 0;
}

.pricing-features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	background: var(--panel-overlay);
	padding: 24px;
	border-radius: 12px;
	min-width: 0;
	overflow: hidden;
}

.pricing-features-left p,
.pricing-features-right p {
	font-size: 14px;
	margin: 0 0 8px 0;
	color: var(--medium-gray);
}

.pricing-join-btn {
	background: var(--gradient-primary);
	color: white;
	border: none;
	padding: 16px 24px;
	border-radius: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.2s;
	width: fit-content;
	box-shadow: var(--shadow-colored);
	font-size: clamp(10px, 2vw, 40px);
}

.pricing-join-btn:hover {
	transform: translateY(-2px);
}

.pricing-join-icon {
	font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
	.pricing-cards {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.pricing-card-stack {
		width: 240px;
		height: 160px;
	}

	.pricing-card-item {
		width: 160px;
		height: 100px;
		font-size: 2rem;
	}

	.pricing-right-card {
		padding: 24px;
	}

	.pricing-features-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* Supporting Statements */
.supporting-statements {
	background: var(--bg);
	padding: calc(var(--space) * 2) 0;
	padding-top: 0;
	border-top: unset;
}

.statements-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.statement-card {
	padding: 40px;
	border: 1px dashed var(--border-dashed);
	border-radius: 24px;
}

.statement-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.statement-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text);
}

.statement-icon .heroicon {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	fill: none;
}

.statement-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text);
	margin: 0;
}

.statement-description {
	color: var(--muted);
	margin: 0;
	line-height: 1.6;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.statements-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.statement-card {
		padding: 32px 24px;
	}
}

/* Calendar Intro */
.calendar-intro-section {
	background: var(--bg);
	padding: calc(var(--space) * 2) 0;
	overflow: hidden;
	width: 100%;
	max-width: 100vw;
}

.calendar-intro-section * {
	box-sizing: border-box;
	max-width: 100%;
}

.calendar-intro {
	color: var(--text);
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}

.calendar-intro__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 24px 0;
	color: var(--text);
	word-wrap: break-word;
	hyphens: auto;
}

.calendar-intro__title em {
	font-style: italic;
	color: var(--muted);
	font-weight: 600;
	font-family: var(--font-em);
	font-size: clamp(32px, 4vw, 58px);
}

.calendar-intro__description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0 0 40px 0;
}

/* Emoji Circles */
.calendar-intro__emojis {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 500px;
	margin: 0 auto;
}

.emoji-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	position: relative;
	animation: float 3s ease-in-out infinite;
}

.emoji-circle:nth-child(1) {
	animation-delay: 0s;
}

.emoji-circle:nth-child(2) {
	animation-delay: 0.2s;
}

.emoji-circle:nth-child(3) {
	animation-delay: 0.4s;
}

.emoji-circle:nth-child(4) {
	animation-delay: 0.6s;
}

.emoji-circle:nth-child(5) {
	animation-delay: 0.8s;
}

.emoji-circle:nth-child(6) {
	animation-delay: 1s;
}

.emoji-circle:nth-child(7) {
	animation-delay: 1.2s;
}

.emoji-circle:nth-child(8) {
	animation-delay: 1.4s;
}

.emoji-circle--green {
	background: var(--gradient-green);
}

.emoji-circle--pink {
	background: var(--gradient-pink);
}

.emoji-circle--orange {
	background: var(--gradient-orange);
}

.emoji-circle--blue {
	background: var(--gradient-blue);
}

.emoji-circle--yellow {
	background: var(--gradient-yellow);
}

.emoji-circle--purple {
	background: var(--gradient-purple);
}

.emoji-circle--black {
	background: var(--gradient-black);
}

.emoji-circle--red {
	background: var(--gradient-red);
}

/* Logo Request Image */
.calendar-intro__logo {
	margin-top: 40px;
	width: 100%;
}

.calendar-intro__logo-image {
	width: 100%;
	height: auto;
	max-width: 400px;
	display: block;
	margin: 0 auto;
}

/* Theme-specific logo visibility - default to light mode */
.calendar-intro__logo-image--light {
	display: block;
}

.calendar-intro__logo-image--dark {
	display: none;
}

/* Auto dark mode based on system preference */
@media (prefers-color-scheme: dark) {
	.calendar-intro__logo-image--light {
		display: none;
	}

	.calendar-intro__logo-image--dark {
		display: block;
	}
}

/* Calendar */
.calendar {
	background: var(--bg);
	padding: calc(var(--space) * 2) 0;
	overflow: hidden;
	width: 100%;
	max-width: 100vw;
}

.calendar .container {
	max-width: var(--container);
	width: 100%;
}

.calendar * {
	box-sizing: border-box;
	max-width: 100%;
}

.calendar-wrapper {
	background: white;
	border-radius: 12px;
	border: 1px solid var(--border);
	overflow: hidden;
	box-shadow: 0 4px 16px var(--overlay-dark);
	max-width: 600px;
	width: 100%;
	height: 800px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Calendar wrapper dark mode */
@media (prefers-color-scheme: dark) {
	.calendar-wrapper {
		background: #000000;
	}
}

.calendar-wrapper>div {
	width: 100% !important;
	max-width: 100% !important;
	overflow: auto !important;
}

/* Force Cal.com embed to stay within bounds */
.calendar-wrapper iframe,
.calendar-wrapper [class*="cal-"],
.calendar-wrapper div[id*="cal-"],
.calendar-wrapper div[id*="my-cal-"] {
	width: 100% !important;
	max-width: 100% !important;
	overflow: auto !important;
	box-sizing: border-box !important;
}

@media (max-width: 768px) {
	.calendar-intro__title {
		font-size: clamp(24px, 6vw, 36px);
	}

	.calendar-intro__description {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.calendar-intro__emojis {
		max-width: 100%;
		justify-content: center;
	}

	.emoji-circle {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.calendar-wrapper {
		border-radius: 8px;
		max-width: 100%;
	}
}

/* Work */
.work-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.work-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.work-card__thumb {
	height: 160px;
	background: var(--pattern-checkerboard);
}

.work-card figcaption {
	padding: 12px;
	color: var(--muted);
	font-size: 14px;
}

@media (max-width: 1100px) {
	.work-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* Testimonials */
section.quotes {
	padding-top: 2rem;
}

.quote {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	font-size: 20px;
}

.quote cite {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-style: normal;
}

/* Quotes Section */
.quotes-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: calc(var(--space) * 2);
}

.quote-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.quote-text {
	font-size: clamp(24px, 2.6vw, 50px);
	line-height: 1.3;
	margin: 0;
	font-weight: 400;
	color: var(--text);
	font-family: var(--font-em);
	font-style: italic;
}

.quote-attribution {
	display: flex;
	align-items: center;
	gap: 16px;
}

.quote-logo {
	height: 40px;
	width: auto;
}

.quote-company {
	font-weight: 600;
	color: var(--brand);
	font-size: 18px;
}

.quote-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.quote-person {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.quote-name {
	font-weight: 600;
	color: var(--text);
	font-size: 16px;
}

.quote-title {
	color: var(--muted);
	font-size: 14px;
}

/* Quotes responsive */
@media (max-width: 768px) {
	.quotes-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.quote-card {
		padding: 24px;
		gap: 24px;
	}

	.quote-text {
		font-size: clamp(20px, 4vw, 28px);
	}
}

/* FAQ */
section.faq {
	padding-bottom: 0;
}

#faq .section__title {
	font-size: clamp(28px, 4vw, 100px);
	line-height: 1.15;
	margin: 0 0 var(--space) 0;
	letter-spacing: -0.02em;
}

#faq .section__title em {
	font-style: italic;
	font-family: var(--font-em);
	font-weight: 600;
	font-size: clamp(28px, 4.3vw, 80px);
}

.onelist-faq {
	display: grid;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	overflow-wrap: break-word;
}

.onelist-faq__item {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 12px 16px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.onelist-faq__item[open] {
	box-shadow: var(--shadow);
}

.onelist-faq__q {
	cursor: pointer;
	font-weight: 600;
	letter-spacing: -0.01em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.onelist-faq__a {
	color: var(--muted);
	padding-top: 8px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.onelist-faq__a p {
	margin: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

section.faq {
	padding-top: 0;
}

section.faq .container {
	width: unset;
	/* Fix for FAQ overrunning column block container. */
	padding-top: 0;
}



/* CTA Card */
.cta-card {
	background: var(--gradient-primary);
	border-radius: 24px;
	padding: 40px;
	color: white;
	text-align: center;
	max-width: 400px;
	margin: 0 auto;
	position: relative;
	box-shadow: var(--shadow-colored);
	overflow: hidden;
	background-image: url('../img/red-orange.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	z-index: 0;
}

.cta-card__emoji {
	width: 80px;
	height: 80px;
	background: var(--overlay-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 24px;
	position: relative;
	z-index: 1;
}

.cta-card__title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 32px 0;
	line-height: 1.2;
	color: white;
	position: relative;
	z-index: 1;
}

.cta-card__button {
	background: white;
	color: #333;
	border: none;
	padding: 16px 32px;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 24px;
	transition: transform 0.2s;
	font-size: 16px;
	position: relative;
	z-index: 1;
}

.cta-card__button:hover {
	transform: translateY(-2px);
	color: #333;
	text-decoration: none;
}

.cta-card__email {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	opacity: 0.9;
	position: relative;
	z-index: 1;
	background: var(--panel-overlay);
	padding: 12px 20px;
	border-radius: 12px;
}

.cta-card__email span:first-child {
	color: white;
}

.cta-card__email a {
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.2s;
}

.cta-card__email a:hover {
	opacity: 0.8;
	color: white;
	text-decoration: none;
}

.cta-card__arrow {
	width: 20px;
	height: 20px;
	background: var(--border-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 480px) {
	.cta-card {
		padding: 24px;
		margin: 0 16px;
	}

	.cta-card__title {
		font-size: 1.5rem;
	}

	.cta-card__email {
		flex-direction: column;
		gap: 4px;
	}
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	color: var(--muted);
}

/* Confirmation Page Footer*/
#page-52 .entry-footer {
	margin-top: 4rem;
}