:root {
	--bg: #0a0612;
	--panel: #14091f;
	--glass: rgba(20, 9, 31, 0.8);
	--card: rgba(255, 255, 255, 0.03);
	--accent: #ff2d95;
	--accent-2: #00f0ff;
	--accent-3: #b14aed;
	--text: #f4f0ff;
	--muted: #a89ec2;
	--border: rgba(255, 255, 255, 0.08);
	--shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
	font-family: "Syne", "DM Sans", system-ui, -apple-system, sans-serif;
}

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

body {
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(177, 74, 237, 0.25), transparent),
		radial-gradient(circle at 15% 80%, rgba(255, 45, 149, 0.15), transparent 40%),
		radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.12), transparent 35%),
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.01) 2px,
			rgba(255, 255, 255, 0.01) 4px
		),
		var(--bg);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
	padding-bottom: 3rem;
}

a {
	color: inherit;
	text-decoration: none;
}

.hero {
	padding: 3.5rem clamp(1.5rem, 3vw, 3rem) 2.5rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 150%;
	height: 100%;
	background: conic-gradient(from 180deg at 50% 50%, rgba(255, 45, 149, 0.08), rgba(177, 74, 237, 0.08), rgba(0, 240, 255, 0.08), rgba(255, 45, 149, 0.08));
	animation: slowRotate 30s linear infinite;
	pointer-events: none;
}

@keyframes slowRotate {
	from { transform: translateX(-50%) rotate(0deg); }
	to { transform: translateX(-50%) rotate(360deg); }
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, var(--bg));
	pointer-events: none;
}

.topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 2;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--text);
}

.logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(255, 45, 149, 0.25), rgba(177, 74, 237, 0.25));
	box-shadow: 0 0 25px rgba(255, 45, 149, 0.3), 0 10px 30px rgba(0, 0, 0, 0.25);
	font-size: 1.1rem;
}

.brand-name {
	font-size: 1.2rem;
	font-weight: 800;
	background: linear-gradient(90deg, var(--text), var(--accent-2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pill {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	padding: 0.6rem 1.1rem;
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(1.5rem, 2.5vw, 2.5rem);
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	align-items: center;
}

.hero-copy h1 {
	font-size: clamp(2.4rem, 4.5vw, 3.8rem);
	margin-bottom: 1rem;
	line-height: 1.05;
	letter-spacing: -1px;
	font-weight: 800;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 0.75rem;
}

.eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	border-radius: 999px;
}

.lede {
	font-size: 1.1rem;
	color: var(--muted);
	max-width: 580px;
	font-family: "DM Sans", sans-serif;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin: 1.8rem 0 1.4rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.9rem 1.5rem;
	border-radius: 14px;
	font-weight: 700;
	font-size: 0.95rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
	background: linear-gradient(135deg, var(--accent), var(--accent-3));
	color: #fff;
	box-shadow: 0 0 35px rgba(255, 45, 149, 0.35), 0 15px 30px rgba(255, 45, 149, 0.2);
}

.btn.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 50px rgba(255, 45, 149, 0.5), 0 25px 45px rgba(255, 45, 149, 0.3);
}

.btn.ghost {
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--border);
	color: var(--text);
}

.btn.ghost:hover {
	border-color: rgba(0, 240, 255, 0.5);
	box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
	transform: translateY(-2px);
}

.btn.wide {
	width: 100%;
	justify-content: center;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	color: var(--muted);
	font-size: 0.85rem;
	font-family: "DM Sans", sans-serif;
}

.hero-badges span {
	padding: 0.5rem 0.9rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-badges span:hover {
	border-color: rgba(177, 74, 237, 0.4);
	box-shadow: 0 0 20px rgba(177, 74, 237, 0.15);
}

.hero-visual .glass-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.2rem;
	box-shadow: var(--shadow), 0 0 60px rgba(177, 74, 237, 0.1);
	backdrop-filter: blur(12px);
}

.hero-gif {
	width: 100%;
	display: block;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero-video {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	display: block;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.caption {
	margin-top: 0.85rem;
	color: var(--muted);
	font-size: 0.9rem;
	font-family: "DM Sans", sans-serif;
}

.section {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
}

.section-header {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 2.5rem;
}

.section-header h2 {
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	margin-bottom: 0.6rem;
	font-weight: 700;
}

.intro {
	color: var(--muted);
	font-size: 1.05rem;
	font-family: "DM Sans", sans-serif;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.1rem;
}

.feature-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1.4rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 45, 149, 0.3);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 45, 149, 0.1);
}

.feature-card .icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, rgba(255, 45, 149, 0.12), rgba(177, 74, 237, 0.12));
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.feature-card h3 {
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.feature-card p {
	color: var(--muted);
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
}

.story {
	padding-top: 1rem;
}

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

.story-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.6rem;
	box-shadow: var(--shadow);
}

.story-card.secondary {
	background: linear-gradient(145deg, rgba(177, 74, 237, 0.08), rgba(0, 240, 255, 0.05));
	border-color: rgba(177, 74, 237, 0.15);
}

.story-card h3 {
	margin-bottom: 0.9rem;
	font-weight: 600;
}

.story-list {
	list-style: none;
	display: grid;
	gap: 0.8rem;
	color: var(--muted);
	font-size: 0.95rem;
	font-family: "DM Sans", sans-serif;
}

.story-list li {
	display: flex;
	gap: 0.8rem;
	align-items: flex-start;
}

.story-list li > span:first-child {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.story-list li > span:not(:first-child) {
	flex: 1;
	line-height: 1.6;
}

.story-list a {
	color: var(--accent-2) !important;
	text-decoration: underline !important;
	text-decoration-color: rgba(0, 240, 255, 0.5);
	text-underline-offset: 2px;
	transition: text-decoration-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
	display: inline;
	cursor: pointer;
	opacity: 1;
}

.story-list a:hover {
	color: var(--accent-2) !important;
	text-decoration-color: var(--accent-2);
	opacity: 0.9;
}

.story-text {
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 1.2rem;
	font-family: "DM Sans", sans-serif;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.chip {
	padding: 0.45rem 0.85rem;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--border);
	color: var(--text);
	font-size: 0.85rem;
	font-family: "DM Sans", sans-serif;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chip:hover {
	border-color: rgba(0, 240, 255, 0.4);
	box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.footer {
	text-align: center;
	color: var(--muted);
	padding: 2.5rem 1.5rem 0;
	font-family: "DM Sans", sans-serif;
}

.footer a {
	color: var(--text);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.footer a:hover {
	border-color: var(--accent);
}

@media (max-width: 768px) {
	.hero {
		padding-top: 2.5rem;
	}

	.topline {
		flex-direction: column;
		gap: 0.9rem;
		align-items: flex-start;
	}

	.hero-actions {
		width: 100%;
	}

	.btn {
		width: 100%;
		justify-content: center;
	}

	.hero-badges {
		gap: 0.4rem;
	}

	.hero-badges span {
		font-size: 0.8rem;
		padding: 0.4rem 0.7rem;
	}
}
