 :root {
	--bg-dark: #050711;
	--bg-panel: #0f1426;
	--bg-panel-dark: #0a0f1d;
	--primary: #ff4655;
	--primary-soft: #ff7280;
	--accent: #41ffd8;
	--text: #f4f5ff;
	--text-muted: #9aa4c0;
	--border: rgba(255, 255, 255, 0.1);
	--card-gradient: linear-gradient(145deg, rgba(255, 70, 85, 0.25), rgba(65, 255, 216, 0.05));
	--radius: 18px;
	--radius-small: 12px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Space Grotesk', 'Archivo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: radial-gradient(circle at top left, rgba(255, 70, 85, 0.25), transparent 35%),
				radial-gradient(circle at bottom right, rgba(65, 255, 216, 0.2), transparent 40%),
				var(--bg-dark);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

button {
	font: inherit;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

button:disabled {
	cursor: not-allowed;
	opacity: 0.7;
}

button:focus-visible,
a:focus-visible {
	outline: 2px dashed var(--accent);
	outline-offset: 4px;
}

canvas#grid-canvas {
	position: fixed;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 80px),
				repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 80px);
	pointer-events: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem clamp(1rem, 3vw, 4rem);
	background: rgba(5, 7, 17, 0.85);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border);
}

.header-left {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	flex-wrap: wrap;
}

.logo {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.logo img {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	box-shadow: 0 0 18px rgba(255, 70, 85, 0.45);
	object-fit: cover;
}

.logo span:first-child {
	color: var(--primary);
}

.logo span:last-child {
	color: var(--accent);
}

nav {
	display: flex;
	gap: 1.5rem;
}

nav a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.95rem;
	letter-spacing: 0.05rem;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

nav a:hover {
	color: var(--text);
}

.header-cta {
	display: flex;
	gap: 0.8rem;
	align-items: center;
	flex-wrap: wrap;
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.2rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.05);
	flex-shrink: 0;
}

.lang-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: transparent;
	color: var(--text-muted);
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.08rem;
}

.lang-btn .flag {
	font-size: 1rem;
}

.lang-btn.is-active {
	background: rgba(255, 255, 255, 0.12);
	color: var(--text);
	box-shadow: 0 0 16px rgba(255, 214, 137, 0.35);
}

.lang-btn:not(.is-active):hover {
	color: var(--text);
}

.primary,
.secondary,
.ghost {
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius-small);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06rem;
	position: relative;
	overflow: hidden;
	z-index: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
}

.checkout-btn.is-loading {
	pointer-events: none;
	box-shadow: none;
}

.primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-soft));
	color: white;
	box-shadow: 0 10px 25px rgba(255, 70, 85, 0.35);
}

.primary:hover {
	transform: translateY(-2px);
}

.secondary {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
	border: 1px solid var(--border);
}

.ghost {
	background: transparent;
	color: var(--text-muted);
	border: 1px solid var(--border);
}

.glow-btn::after {
	content: '';
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle, rgba(255, 70, 85, 0.55) 0%, rgba(65, 255, 216, 0.25) 45%, transparent 70%);
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: -1;
}

.glow-btn:hover::after,
.glow-btn:focus-visible::after {
	opacity: 1;
	transform: scale(1);
}

.glow-btn:hover,
.glow-btn:focus-visible {
	box-shadow: 0 0 25px rgba(255, 70, 85, 0.45);
}

.gold-glow {
	border-color: rgba(255, 214, 137, 0.5);
}

.gold-glow.primary {
	background: linear-gradient(135deg, #ffe7a1, #f3c15c 60%, #ffd778);
	color: #1b1200;
	box-shadow: 0 12px 28px rgba(255, 214, 137, 0.35);
}

.gold-glow.ghost {
	border-color: rgba(255, 214, 137, 0.6);
	color: #ffeac2;
}

.gold-glow::after {
	background: radial-gradient(circle, rgba(255, 231, 161, 0.85) 0%, rgba(255, 214, 137, 0.35) 45%, transparent 70%);
}

.gold-glow:hover,
.gold-glow:focus-visible {
	box-shadow: 0 0 30px rgba(255, 214, 137, 0.6);
}

main {
	width: min(1600px, 96vw);
	padding: clamp(2rem, 3.5vw, 4.5rem) 0;
	margin: 0 auto;
}

section {
	padding-left: clamp(1rem, 5vw, 5rem);
	padding-right: clamp(1rem, 5vw, 5rem);
	padding-top: clamp(2.5rem, 4vw, 5rem);
	padding-bottom: clamp(2.5rem, 4vw, 5rem);
	position: relative;
	z-index: 0;
}

section + section {
	margin-top: clamp(1.4rem, 3.2vw, 3.8rem);
}

body.motion-ready .animate-section {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.75s ease, transform 0.75s ease;
}

body.motion-ready .animate-section::after {
	content: '';
	position: absolute;
	inset: clamp(0.5rem, 2vw, 1.5rem);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.05);
	opacity: 0;
	filter: blur(0.5px);
	transition: opacity 0.9s ease;
	pointer-events: none;
	z-index: -1;
}

body.motion-ready .animate-section.section-visible {
	opacity: 1;
	transform: translateY(0);
}

body.motion-ready .animate-section.section-visible::after {
	opacity: 0.35;
	animation: sectionGlow 12s linear infinite;
}

section:not(:first-of-type)::before {
	content: '';
	position: absolute;
	top: 0;
	left: clamp(1rem, 5vw, 5rem);
	right: clamp(1rem, 5vw, 5rem);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	opacity: 0.4;
}


.hero {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(2.5rem, 4vw, 5rem);
	padding: clamp(3rem, 6vw, 7rem) 0;
	align-items: stretch;
}

.hero-text {
	padding-left: clamp(1.5rem, 5vw, 5rem);
	padding-right: clamp(1rem, 3vw, 2.5rem);
	max-width: 640px;
	flex: 1 1 480px;
	min-width: 320px;
}

.hero-side {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	flex: 1 1 360px;
	min-width: 320px;
	justify-content: center;
	align-self: center;
}

.hero-side-panel {
	background: linear-gradient(145deg, rgba(5, 7, 17, 0.95), rgba(15, 20, 38, 0.85));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: clamp(1.5rem, 2vw, 2.2rem);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	padding: 1.8rem;
}

.hero-card::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: inherit;
	background: conic-gradient(from 0deg, rgba(255, 231, 161, 0.05), rgba(255, 223, 148, 0.8), rgba(255, 148, 54, 0.4), rgba(255, 231, 161, 0.6));
	filter: blur(2px);
	animation: orbitGlow 8s linear infinite;
	z-index: 0;
}

.hero-card::after {
	content: '';
	position: absolute;
	inset: 2px;
	border-radius: calc(var(--radius) - 4px);
	background: linear-gradient(135deg, rgba(8, 10, 18, 0.95), rgba(18, 24, 44, 0.9));
	border: 1px solid rgba(255, 214, 137, 0.15);
	box-shadow: inset 0 0 25px rgba(255, 214, 137, 0.08);
	z-index: 0;
}

.hero-card > * {
	z-index: 1;
}

.hero-text h1 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1.1;
	margin-bottom: 1rem;
}

.accent {
	color: var(--primary);
}

.lead {
	color: var(--text-muted);
	max-width: 600px;
	margin-bottom: 1.5rem;
}

.eyebrow {
	text-transform: uppercase;
	color: var(--accent);
	letter-spacing: 0.3rem;
	font-size: 0.82rem;
	margin-bottom: 0.75rem;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 1.25rem;
}

.badge-card {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1.2rem;
	border-radius: var(--radius-small);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(5, 7, 17, 0.72);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
	animation: floatBadge 7s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

.badge-card > div {
	position: relative;
	z-index: 1;
}

.badge-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(255, 70, 85, 0.35), transparent 60%);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 0;
}

.badge-card:hover::after {
	opacity: 0.6;
}

.badge-card:nth-child(2) {
	animation-delay: 0.6s;
}

.badge-card:nth-child(3) {
	animation-delay: 1s;
}

.badge-card svg {
	width: 48px;
	height: 48px;
	min-width: 48px;
	z-index: 1;
}

.badge-card svg circle,
.badge-card svg rect,
.badge-card svg path {
	fill: none;
	stroke: var(--accent);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.badge-dot {
	fill: var(--primary);
	stroke: none;
}

.badge-shield {
	fill: rgba(255, 70, 85, 0.25);
	stroke: rgba(255, 70, 85, 0.55);
}

.badge-label {
	font-size: 0.85rem;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
	color: var(--text);
}

.badge-card span {
	color: var(--text-muted);
	font-size: 0.85rem;
}

.badge-card.tight-left {
	padding-left: 0;
	padding-right: 0.35rem;
	min-width: 200px;
}

.trial-banner {
	margin-top: 1.6rem;
	padding: 1.4rem 1.8rem;
	border-radius: var(--radius);
	background: linear-gradient(120deg, rgba(65, 255, 216, 0.12), rgba(255, 70, 85, 0.18));
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.trial-banner p {
	margin-bottom: 0.6rem;
	font-weight: 600;
	color: var(--text);
}

.trial-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
}

.code-pill {
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: rgba(5, 7, 17, 0.7);
	border: 1px solid rgba(65, 255, 216, 0.4);
	font-family: 'Space Grotesk', 'Archivo', system-ui, sans-serif;
	letter-spacing: 0.1rem;
}

.trial-meta .note {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.hero-meta .value {
	font-size: 1.6rem;
	font-weight: 700;
}

.hero-meta .label {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.hero-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
}

.hero-stats {
	background: rgba(5, 7, 17, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 1.5rem;
}

.hero-stats > div {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(7, 10, 20, 0.7) 40%, rgba(255, 173, 82, 0.08));
	border-radius: var(--radius-small);
	padding: 0.95rem 1.1rem;
	text-align: center;
	border: 1px solid rgba(255, 214, 137, 0.18);
	box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.55), 0 8px 18px rgba(0, 0, 0, 0.45);
	overflow: hidden;
}

.hero-stats > div::before {
	content: '';
	position: absolute;
	inset: -40% 0;
	background: radial-gradient(circle at top, rgba(255, 214, 137, 0.18), transparent 55%);
	opacity: 0.6;
	filter: blur(12px);
}

.hero-stats > div::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -30%;
	width: 80%;
	height: 200%;
	background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
	transform: rotate(15deg);
	animation: metalSweep 6s ease-in-out infinite;
	opacity: 0.4;
}

.hero-stats > div > * {
	position: relative;
	z-index: 1;
}

.hero-meta .value {
	font-size: 1.8rem;
	font-weight: 700;
	display: block;
}

.hero-meta .label {
	display: block;
	color: var(--text-muted);
	font-size: 0.85rem;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.holo-frame {
	position: absolute;
	inset: 0;
	border-radius: var(--radius);
	background: radial-gradient(circle at top, rgba(255, 70, 85, 0.3), transparent 50%);
	opacity: 0.4;
	pointer-events: none;
	animation: pulse 4s ease-in-out infinite;
}

.card-content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.card-content ul {
	list-style: none;
	color: var(--text-muted);
}

.card-content li {
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.3rem;
}

.card-content li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 2px;
	background: var(--primary);
}

.section-head {
	max-width: 720px;
	margin-bottom: 2.5rem;
}

.section-head-centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-head-centered p,
.section-head-centered h2 {
	margin-left: auto;
	margin-right: auto;
}

.section-head h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	margin-bottom: 0.6rem;
}

.feature-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
	padding: 1.5rem;
	border-radius: var(--radius);
	background: var(--card-gradient);
	border: 1px solid var(--border);
	min-height: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.9rem;
	opacity: 0;
	transform: translateY(20px);
	background-size: 220% 220%;
	animation: cardGlow 16s linear infinite;
}

.feature-card h3 {
	font-size: 1.3rem;
}

.feature-card p {
	color: var(--text-muted);
	flex-grow: 1;
}

.tag {
	align-self: center;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	font-size: 0.8rem;
}

.tag.gold-glow {
	background: linear-gradient(120deg, #fff2c2, #f3c15c, #ffe7a1);
	color: #1e1300;
	border: 1px solid rgba(255, 214, 137, 0.6);
	box-shadow: 0 0 16px rgba(255, 214, 137, 0.35);
}

.split {
	margin: 4rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.split-panel {
	background: var(--bg-panel);
	border-radius: var(--radius);
	padding: 2rem;
	border: 1px solid var(--border);
}

.video-frame {
	border-radius: var(--radius);
	border: 1px dashed var(--border);
	aspect-ratio: 16 / 9;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	color: var(--text-muted);
	position: relative;
	overflow: hidden;
	padding: 1rem;
}

.preview-video {
	width: 100%;
	height: 100%;
	border-radius: calc(var(--radius) - 0.8rem);
	border: none;
	object-fit: cover;
	background: #000;
}

.video-hint {
	font-size: 0.85rem;
	text-align: center;
}

.split-panel ul {
	list-style: none;
	margin-top: 1rem;
	color: var(--text-muted);
}

.split-panel li {
	margin: 0.4rem 0;
	padding-left: 1.2rem;
	position: relative;
}

.split-panel li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
}

.community {
	margin-top: 1.2rem;
	padding-top: clamp(1rem, 2.5vw, 2.2rem);
}

.community-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
}

.community-card {
	position: relative;
	padding: 1.75rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: linear-gradient(135deg, rgba(15, 20, 38, 0.9), rgba(5, 7, 17, 0.9));
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
	text-align: center;
}

.community-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 70, 85, 0.4), rgba(65, 255, 216, 0.05));
	opacity: 0;
	transform: rotate(25deg);
	transition: opacity 0.4s ease;
}

.community-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 70, 85, 0.5);
	box-shadow: 0 20px 40px rgba(255, 70, 85, 0.25);
}

.community-card:hover::after {
	opacity: 1;
}

.community-card .value {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.community-card .label {
	color: var(--text-muted);
	margin-bottom: 0.6rem;
}

.community-card .note {
	font-size: 0.85rem;
	letter-spacing: 0.05rem;
	text-transform: uppercase;
	color: var(--accent);
	display: inline-block;
	margin-top: 0.4rem;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.partners {
	padding-top: clamp(2rem, 4vw, 4rem);
	padding-bottom: clamp(2rem, 4vw, 4rem);
}

.partners-marquee {
	position: relative;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: rgba(5, 7, 17, 0.8);
	padding: 1rem 0;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
	display: flex;
	gap: 1.2rem;
	width: max-content;
	padding: 0.4rem 0;
	animation: marqueeScroll 28s linear infinite;
	will-change: transform;
}

.partner-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08rem;
	color: var(--text);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	position: relative;
	min-width: 190px;
}

.partner-chip svg {
	width: 56px;
	height: 24px;
	color: var(--accent);
	stroke-width: 1.5;
}

.partner-chip div {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.partner-chip strong {
	font-size: 0.85rem;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
}

.partner-chip span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.partner-chip svg circle,
.partner-chip svg rect,
.partner-chip svg path {
	fill: none;
	stroke: currentColor;
}

.partner-chip::after {
	content: '';
	position: absolute;
	inset: 2px;
	border-radius: inherit;
	border: 1px solid rgba(255, 70, 85, 0.35);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.partner-chip:hover::after {
	opacity: 1;
}

.pricing {
	margin: 4rem 0;
}

.pricing-card {
	position: relative;
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: linear-gradient(135deg, rgba(255, 70, 85, 0.25), rgba(5, 7, 17, 0.9));
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: inherit;
	background: conic-gradient(from 0deg, rgba(255, 214, 137, 0), rgba(255, 214, 137, 0.9), rgba(255, 118, 42, 0.4), rgba(255, 214, 137, 0));
	filter: blur(4px);
	animation: orbitGlow 9s linear infinite;
	opacity: 0.7;
	z-index: 0;
}

.pricing-card::after {
	content: '';
	position: absolute;
	inset: 2px;
	border-radius: calc(var(--radius) - 4px);
	background: linear-gradient(160deg, rgba(6, 8, 16, 0.94), rgba(18, 24, 44, 0.85));
	border: 1px solid rgba(255, 214, 137, 0.18);
	box-shadow: inset 0 0 40px rgba(255, 214, 137, 0.12);
	z-index: 0;
}

.pricing-card > * {
	position: relative;
	z-index: 1;
}

.gold-text {
	background: linear-gradient(120deg, #fff2c2, #f3c15c, #ffe7a1);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	text-shadow: 0 0 12px rgba(255, 214, 137, 0.35);
}

.gold-title {
	font-size: 1.6rem;
	background: linear-gradient(120deg, #fff2c2, #f3c15c, #ffe7a1);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 0.08rem;
	text-shadow: 0 0 18px rgba(255, 214, 137, 0.45);
}

.badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	background: rgba(65, 255, 216, 0.15);
	color: var(--accent);
	font-size: 0.8rem;
	letter-spacing: 0.1rem;
}

.price {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0.8rem 0;
}

.pricing-card ul {
	list-style: none;
	margin: 1.2rem 0;
	color: var(--text-muted);
}

.trial-note {
	margin-top: 0.8rem;
	color: var(--accent);
	font-weight: 500;
}

.pricing-card li {
	margin: 0.5rem 0;
	padding-left: 1.4rem;
	position: relative;
}

.pricing-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 0.8rem;
	height: 0.15rem;
	background: var(--accent);
}

.pricing-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.faq {
	margin: 4rem 0;
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.faq-item {
	background: var(--bg-panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border 0.3s ease, box-shadow 0.3s ease;
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 1.2rem 1.5rem;
	background: transparent;
	color: var(--text);
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.faq-question::after {
	content: '\25BC';
	font-size: 0.85rem;
	color: var(--text-muted);
	transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
	padding: 0 1.5rem;
	color: var(--text-muted);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-item.active {
	border: 1px solid rgba(255, 70, 85, 0.5);
	box-shadow: 0 0 25px rgba(255, 70, 85, 0.15);
}

.faq-item.active .faq-question::after {
	transform: rotate(180deg);
	color: var(--accent);
}

.faq-item.active .faq-answer {
	max-height: 420px;
	padding: 0 1.5rem 1.3rem;
	transition: max-height 0.45s ease, padding 0.3s ease;
}

.cta {
	background: linear-gradient(120deg, rgba(255, 70, 85, 0.3), rgba(10, 15, 29, 0.95));
	border-radius: var(--radius);
	padding: 2rem;
	border: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cta-actions {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

footer {
	padding: 2rem;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
	border-top: 1px solid var(--border);
	margin-top: 3rem;
}

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: 0.8rem;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08rem;
}

.footer-link {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 600;
}

.footer-link:hover,
.footer-link:focus-visible {
	color: var(--text);
}

.reveal.revealed {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.delay-1 {
	transition-delay: 0.1s;
}

.delay-2 {
	transition-delay: 0.2s;
}

.delay-3 {
	transition-delay: 0.3s;
}

@keyframes floatBadge {
	0% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
	100% { transform: translateY(0); }
}

@keyframes cardGlow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes marqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes orbitGlow {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes metalSweep {
	0% { transform: translateX(-120%) rotate(15deg); }
	50% { transform: translateX(60%) rotate(15deg); }
	100% { transform: translateX(160%) rotate(15deg); }
}

@keyframes pulse {
	0%, 100% { opacity: 0.2; }
	50% { opacity: 0.5; }
}

@keyframes sectionGlow {
	0% { box-shadow: 0 0 20px rgba(255, 70, 85, 0.15), inset 0 0 25px rgba(65, 255, 216, 0.05); }
	50% { box-shadow: 0 0 35px rgba(255, 70, 85, 0.35), inset 0 0 35px rgba(65, 255, 216, 0.12); }
	100% { box-shadow: 0 0 20px rgba(255, 70, 85, 0.15), inset 0 0 25px rgba(65, 255, 216, 0.05); }
}

@media (max-width: 768px) {
	.site-header {
		flex-direction: column;
		gap: 1rem;
	}

	.header-left {
		justify-content: center;
	}

	nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero {
		flex-direction: column;
	}

	.hero-text {
		padding-left: 0;
		padding-right: 0;
	}

	.hero-side {
		width: 100%;
		align-self: stretch;
	}

	.hero-side-panel {
		padding: 1.25rem;
	}

	.hero {
		align-items: flex-start;
	}

	.hero-meta {
		grid-template-columns: 1fr;
	}

	.hero-badges {
		flex-direction: column;
	}

	.badge-card {
		width: 100%;
	}

	.partners-marquee {
		mask-image: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.badge-card,
	.marquee-track,
	.feature-card {
		animation: none !important;
	}

	.hero-badges,
	.partners-marquee {
		animation: none !important;
	}
}

.disclaimer-banner {
	background: rgba(255, 70, 85, 0.1);
	border-bottom: 1px solid rgba(255, 70, 85, 0.3);
	padding: 1rem;
	text-align: center;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.disclaimer-banner p {
	margin: 0;
}
