/* Header */
body > header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: color-mix(in srgb, var(--base), transparent 10%);
	backdrop-filter: blur(10px);
}

body > header nav {
	max-inline-size: 1200px;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: block flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.logo {
	display: block flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
	font-size: 1.5rem;
}

.logo img {
	inline-size: 3rem;
	block-size: 3rem;
	border-radius: 0.5rem;
	box-shadow: inset 0 0 20px 10px var(--base);
}

.nav-links {
	display: block flex;
	gap: 2rem;
}

.nav-links a {
	color: var(--pop-muted);
	transition: color 0.2s;
}

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

.cta-button {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
	padding: 0.6rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 500;
	transition: opacity 0.2s;
}

.cta-button:hover {
	opacity: 0.9;
}

/* Main */
main {
	padding-top: 5rem;
}

/* Hero Section */
.hero {
	position: relative;
	min-block-size: calc(100vb - 5rem);
	display: block grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-inline-size: 1200px;
	margin: 0 auto;
	padding: 4rem 1.5rem;
}

.hero-content h1 {
	font-size: clamp(2rem, 5vi, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--pop), var(--accent-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--pop-muted);
	margin-bottom: 2rem;
	max-inline-size: 500px;
}

.hero-actions {
	display: block flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.primary-button {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 1.1rem;
	transition: transform 0.2s, box-shadow 0.2s;
}

.primary-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 40px color-mix(in srgb, var(--accent), transparent 60%);
}

.secondary-button {
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 1.1rem;
	border: 1px solid var(--pop-muted);
	transition: border-color 0.2s, color 0.2s;
}

.secondary-button:hover {
	border-color: var(--pop);
	color: var(--pop);
}

.hero-visual {
	display: block flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
	min-inline-size: 0;
}

.hero-visual .dashboard {
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	inline-size: 100%;
	max-inline-size: 800px;
}

.hero > .fancy {
	position: absolute;
	top: 0;
	left: 0;
	inline-size: 400px;
	opacity: 0.5;
	mask-image: radial-gradient(ellipse 50% 50% at center, black 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 50% 50% at center, black 0%, transparent 70%);
	pointer-events: none;
}

/* Features Section */
.features {
	padding: 6rem 1.5rem;
	max-inline-size: 1200px;
	margin: 0 auto;
}

.features h2,
.pricing h2,
.contact h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 0.5rem;
}

.section-subtitle {
	text-align: center;
	color: var(--pop-muted);
	font-size: 1.2rem;
	margin-bottom: 4rem;
}

.features-grid {
	display: block grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background-color: var(--base-light);
	border-radius: 1rem;
	padding: 2rem;
	transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
	font-size: 2.5rem;
	display: block flow;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.feature-card p {
	color: var(--pop-muted);
}

/* Pricing Section */
.pricing {
	padding: 6rem 1.5rem;
	background-color: var(--base-light);
}

.pricing-grid {
	display: block grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-inline-size: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background-color: var(--base);
	border-radius: 1rem;
	padding: 2.5rem;
	display: block flex;
	flex-direction: column;
	border: 1px solid color-mix(in srgb, var(--pop), transparent 90%);
}

.pricing-card.highlighted {
	border-color: var(--accent);
	box-shadow: 0 0 40px color-mix(in srgb, var(--accent), transparent 70%);
	position: relative;
}

.pricing-card h3 {
	font-size: 1.25rem;
	color: var(--pop-muted);
	margin-bottom: 1rem;
}

.price {
	margin-bottom: 2rem;
}

.price .amount {
	font-size: 2.5rem;
	font-weight: 800;
}

.price .period {
	color: var(--pop-muted);
}

.features-list {
	list-style: none;
	flex: 1;
	margin-bottom: 2rem;
}

.features-list li {
	padding: 0.5rem 0;
	color: var(--pop-muted);
}

.pricing-cta {
	display: block flow;
	text-align: center;
	padding: 1rem;
	border-radius: 0.5rem;
	font-weight: 600;
	background-color: color-mix(in srgb, var(--pop), transparent 90%);
	transition: background-color 0.2s;
}

.pricing-cta:hover {
	background-color: color-mix(in srgb, var(--pop), transparent 80%);
}

.pricing-card.highlighted .pricing-cta {
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

/* Contact Section */
.contact {
	padding: 6rem 1.5rem;
	max-inline-size: 800px;
	margin: 0 auto;
}

.contact-info {
	display: block grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.contact-item {
	display: block flex;
	gap: 1rem;
	align-items: flex-start;
	background-color: var(--base-light);
	padding: 1.5rem;
	border-radius: 1rem;
}

.contact-icon {
	font-size: 2rem;
}

.contact-item h3 {
	font-size: 1rem;
	color: var(--pop-muted);
	margin-bottom: 0.25rem;
}

.contact-item a {
	color: var(--gradient-start);
	font-weight: 600;
	transition: color 0.2s;
}

.contact-item a:hover {
	color: var(--gradient-end);
}

/* Footer */
footer {
	background-color: var(--base-light);
	border-top: 1px solid color-mix(in srgb, var(--pop), transparent 90%);
	padding: 4rem 1.5rem 2rem;
}

.footer-content {
	max-inline-size: 1200px;
	margin: 0 auto;
	display: block grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
}

.footer-brand .logo {
	margin-bottom: 1rem;
}

.footer-brand p {
	color: var(--pop-muted);
}

.footer-links {
	display: block flex;
	gap: 4rem;
}

.footer-column {
	display: block flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-column h3 {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--pop-muted);
	margin-bottom: 0.5rem;
}

.footer-column a {
	color: var(--pop-muted);
	transition: color 0.2s;
}

.footer-column a:hover {
	color: var(--pop);
}

.footer-bottom {
	max-inline-size: 1200px;
	margin: 3rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid color-mix(in srgb, var(--pop), transparent 90%);
	text-align: center;
	color: var(--pop-muted);
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 2rem;
	}

	.hero-subtitle {
		margin-inline: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-visual {
		order: -1;
	}

	.nav-links {
		display: none;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-links {
		gap: 2rem;
	}
}
