/*
	Sleek, Modern Styles for Reaper Script
	Theme: Dark Cyber/Tech with Green Accents
*/

:root {
	/* Palette */
	--bg: #030806;
	--bg-alt: #050d0a;
	
	/* Brand Colors */
	--primary: #22f36b;        /* Neon Green */
	--primary-hover: #36f578;
	--primary-dim: rgba(34, 243, 107, 0.1);
	
	/* Text */
	--text-main: #f3f4f6;
	--text-muted: #9ca3af;
	--text-dark: #111827;

	/* UI Elements */
	--glass-bg: rgba(10, 20, 15, 0.6);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-highlight: rgba(255, 255, 255, 0.05);
	
	--card-bg: rgba(11, 25, 18, 0.4);
	--card-border: rgba(34, 243, 107, 0.15);
	
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	
	--container: 1200px;
	--header-height: 80px;

	/* Animation timings */
	--ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	background: var(--bg);
	color: var(--text-main);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	/* Ensure no horizontal padding/margin that could shift containers */
	width: 100%;
}

main {
	margin: 0;
	padding: 0;
	width: 100%;
	/* Ensure main doesn't cause horizontal shifts */
	box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4 {
	margin: 0;
	line-height: 1.1;
	font-weight: 700;
	color: white;
}

h1 {
	font-size: clamp(55px, 6.5vw, 83px);
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	mix-blend-mode: difference;
	filter: drop-shadow(0 0 15px rgba(34, 243, 107, 0.5));
}

h2 {
	font-size: clamp(32px, 4vw, 48px);
	letter-spacing: -0.01em;
	margin-bottom: 24px;
}

h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

p {
	margin: 0 0 16px;
	color: var(--text-muted);
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

ul, ol {
	padding-left: 20px;
}

/* Utilities */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-weight: 600;
	font-size: 16px;
	border-radius: 100px; /* Pill shape */
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.3s var(--ease-out);
	text-decoration: none;
}

.btn-primary {
	background: var(--primary);
	color: var(--text-dark);
	box-shadow: 0 0 20px rgba(34, 243, 107, 0.3);
}

.btn-primary:hover {
	background: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(34, 243, 107, 0.5);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: white;
	border-color: var(--glass-border);
	backdrop-filter: blur(4px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	z-index: 100;
	background: rgba(3, 8, 6, 0.9);
	border-bottom: 1px solid var(--glass-border);
	backdrop-filter: blur(12px);
	transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
	background: rgba(3, 8, 6, 0.95);
	border-bottom: 1px solid var(--glass-border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 100%;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.brand {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: white;
	flex-shrink: 0;
}

.nav {
	display: none;
	gap: 32px;
	margin-left: 28px;
}

.nav a {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	white-space: nowrap;
}

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

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	flex-shrink: 0;
	white-space: nowrap;
}

.auth-controls {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-main);
	border: 1px solid var(--glass-border);
	padding: 10px 14px;
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
}

.user-menu {
	position: relative;
	display: inline-flex;
}

.user-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	border-radius: 999px;
	padding: 6px 10px;
	color: var(--text-main);
	cursor: pointer;
	min-width: 180px;
	transition: background 0.2s, border-color 0.2s;
}

.user-chip:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.user-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--primary-dim);
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 0.01em;
}

.user-avatar.small {
	width: 28px;
	height: 28px;
	font-size: 12px;
}

.user-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.2;
}

.user-label {
	font-size: 11px;
	color: var(--text-muted);
}

.user-email {
	font-size: 13px;
	color: var(--text-main);
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 160px;
}

.chevron {
	font-size: 12px;
	color: var(--text-muted);
	margin-left: auto;
}

.user-menu-panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: #0b1912;
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	min-width: 320px;
	max-width: 480px;
	width: max-content;
	z-index: 120;
}

.user-menu-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 8px 12px;
	border-bottom: 1px solid var(--glass-border);
	margin-bottom: 8px;
}

.user-email-full {
	color: var(--text-main);
	font-weight: 600;
	font-size: 14px;
	word-break: break-all;
}

.user-menu-item {
	width: 100%;
	text-align: left;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--glass-border);
	color: var(--text-main);
	padding: 10px 12px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.user-menu-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
}

/* License Management Section */
.license-management-section {
	margin: 12px 0;
	padding: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	max-height: 500px;
	overflow-y: auto;
}

.license-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.license-section-header h4 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-main);
}

.btn-refresh-license {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--glass-border);
	color: var(--text-main);
	padding: 4px 8px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.2s, border-color 0.2s;
}

.btn-refresh-license:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
}

.license-status-display {
	font-size: 13px;
	color: var(--text-main);
}

.license-loading,
.license-error {
	padding: 8px;
	text-align: center;
	color: var(--text-muted);
	font-size: 12px;
}

.license-error {
	color: #ef4444;
}

.license-key-section {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--glass-border);
}

.license-key-label {
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.license-key-value {
	display: flex;
	align-items: center;
	gap: 8px;
}

.license-key-code {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--glass-border);
	border-radius: 6px;
	padding: 6px 10px;
	font-family: 'Courier New', monospace;
	font-size: 12px;
	color: var(--primary);
	flex: 1;
	word-break: break-all;
}

.btn-copy-key {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--glass-border);
	color: var(--text-main);
	padding: 6px 10px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	transition: background 0.2s, border-color 0.2s;
	flex-shrink: 0;
}

.btn-copy-key:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
}

.license-status-section {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--glass-border);
}

.license-status-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.license-status-badge.status-active {
	background: rgba(34, 197, 94, 0.15);
	color: #22c55e;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.license-status-badge.status-trial {
	background: rgba(246, 195, 68, 0.15);
	color: #f6c344;
	border: 1px solid rgba(246, 195, 68, 0.3);
}

.license-status-badge.status-inactive,
.license-status-badge.status-expired {
	background: rgba(239, 68, 68, 0.15);
	color: #ef4444;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.license-expiry {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 4px;
}

.license-no-key {
	font-size: 12px;
	color: var(--text-muted);
	font-style: italic;
}

.device-activations-section {
	margin-top: 12px;
}

.device-activations-header {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.device-activations-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.device-activations-empty {
	font-size: 11px;
	color: var(--text-muted);
	font-style: italic;
	padding: 8px;
	text-align: center;
}

.device-activation-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--glass-border);
	border-radius: 8px;
	transition: background 0.2s, border-color 0.2s;
}

.device-activation-item:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
}

.device-info {
	flex: 1;
	min-width: 0;
}

.device-id {
	font-size: 12px;
	font-weight: 500;
	color: var(--text-main);
	margin-bottom: 4px;
	word-break: break-all;
}

.device-activated-date {
	font-size: 10px;
	color: var(--text-muted);
}

.btn-deactivate-device {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #ef4444;
	padding: 6px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 11px;
	font-weight: 500;
	transition: background 0.2s, border-color 0.2s;
	flex-shrink: 0;
	white-space: nowrap;
}

.btn-deactivate-device:hover:not(:disabled) {
	background: rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.5);
}

.btn-deactivate-device:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

@media (min-width: 768px) {
	.nav { display: flex; }
}

/* Hero Section */
.hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	left: 0;
	/* Allow video to dictate height */
	display: block; 
	padding: 0;
	min-height: 0;
}

.hero-background {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.hero-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Gradient overlay on right edge - Removed/Hidden */
.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	height: 100%;
	pointer-events: none;
}

.hero-video {
	width: 100%;
	height: auto;
	min-height: 0;
	object-fit: contain;
	object-position: center;
	opacity: 0.85;
	filter: brightness(0.7);
	cursor: pointer;
	transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
	transform-origin: center center;
	position: relative;
	display: block;
}

/* Custom Video Controls - Minimalistic Line (Feature Videos Only) */
.feature-media .video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	padding: 0;
	background: transparent;
	opacity: 1;
	pointer-events: none;
	z-index: 10;
}

/* Prevent video dimming on interaction */
.feature-media .video-controls-wrapper video {
	pointer-events: auto;
}

.feature-media .video-controls-wrapper video::-webkit-media-controls {
	display: none !important;
}

.feature-media .video-controls-wrapper video::-webkit-media-controls-enclosure {
	display: none !important;
}

.feature-media .video-progress-bar {
	position: relative;
	width: 100%;
	height: 20px; /* Larger hit area */
	background: transparent;
	overflow: visible;
	cursor: pointer;
	pointer-events: auto;
	display: flex;
	align-items: flex-end; /* Align track to bottom */
}

/* Track Background */
.feature-media .video-progress-bar::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.15);
}

.feature-media .video-progress-filled {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	background: var(--primary);
	width: 0%;
	transition: width 0.1s linear;
}

.feature-media .video-progress-handle {
	position: absolute;
	left: 0%;
	bottom: 1.5px; /* Center on the 3px track */
	width: 12px;
	height: 12px;
	background: var(--primary);
	border-radius: 50%;
	transform: translate(-50%, 50%);
	opacity: 0;
	transition: opacity 0.2s ease;
	cursor: grab;
	z-index: 2;
}

.feature-media .video-progress-handle:active {
	cursor: grabbing;
}

.feature-media .video-controls-wrapper:hover .video-progress-handle,
.feature-media .video-controls-wrapper.dragging .video-progress-handle {
	opacity: 1;
}

/* Feature media video controls */
.feature-media .video-controls-wrapper {
	position: relative;
	width: 100%;
	display: block;
}

/* Play icon overlay for paused videos */
.feature-media .video-controls-wrapper::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
	background-size: 40px 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-position-x: 55%; /* Slight offset to center the triangle */
}

.feature-media .video-controls-wrapper.video-paused::after {
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
}

/* Hero video play icon */
.hero-background {
	position: relative;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
	background-size: 50px 50px;
	background-position: center;
	background-repeat: no-repeat;
	background-position-x: 55%;
}

.hero-background.hero-video-paused::before {
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
}

.feature-media .video-controls-wrapper video {
	width: 100%;
	height: auto;
	display: block;
}

.hero-background::after {
	content: none;
}

.hero-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	pointer-events: none;
}

.hero-copy {
	max-width: 900px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	background: transparent;
	padding: 80px 40px;
	border-radius: var(--radius-lg);
	pointer-events: auto;
}

.hero-ctas {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center; /* Center align buttons */
	margin-top: 32px;
}


/* Responsive adjustments for hero */
@media (max-width: 991px) {
	.hero-inner {
		justify-content: center;
	}
	.hero-copy {
		margin-right: 0;
		text-align: center;
		max-width: 800px;
	}
	.hero-ctas {
		justify-content: center;
	}
	.hero-video,
	.hero-image {
		object-position: center center; /* On mobile, just center it */
	}
	.hero-background::after {
		background: radial-gradient(circle at center, rgba(3, 8, 6, 0.4) 0%, rgba(3, 8, 6, 0.9) 100%);
	}
	
}

/* Sections */
.section {
	padding: 100px 0;
	position: relative;
}

#features.section {
	padding-top: 0;
}

.section.alt {
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 50%, transparent);
}

/* Features Section - Apple Style */
.section-header {
	text-align: center;
	margin-bottom: 120px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-header h2 {
	font-size: clamp(40px, 5vw, 64px);
	margin-bottom: 16px;
	background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* FX List Title - 20% larger with scroll-controlled animation */
.fx-list-title {
	font-size: clamp(48px, 6vw, 76.8px) !important; /* 20% larger */
	margin-bottom: 16px;
	background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% auto;
	animation: gradientFlow 5s linear infinite;
	/* Scroll-driven animation initial state */
	opacity: 0;
	filter: blur(20px);
	transform: scale(0.9);
	will-change: opacity, filter, transform;
}

.lead-text {
	font-size: clamp(20px, 3vw, 28px);
	color: var(--text-muted);
	font-weight: 500;
}

/* Features List - One per line */
.features-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Sends Section - Full width background, constrained content */
.sends-section {
	position: relative;
	padding: 120px 0;
	margin: 0 0 100px 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 120px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	left: 0;
}

.sends-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('./assets/Bg pics/BG3.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(80px);
	-webkit-filter: blur(80px);
	opacity: 0.4;
	z-index: 0;
}

.sends-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(3, 8, 6, 0.6);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
	z-index: 1;
}

.sends-section .feature-block {
	position: relative;
	z-index: 2;
}

/* Constrain content inside sends-section to container width */
.sends-section > .sends-header {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.sends-section > .carousel-wrapper {
	width: 100%;
	position: relative;
	z-index: 2;
	overflow: visible;
}

/* FX List Section - Full width background, constrained content */
.fx-list-section {
	position: relative;
	padding: 120px 0;
	margin: 0 0 0 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	left: 0;
}

.fx-list-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('./assets/Bg pics/BG2.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(80px);
	-webkit-filter: blur(80px);
	opacity: 0.4;
	z-index: 0;
}

.fx-list-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(3, 8, 6, 0.6);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
	z-index: 1;
}

.fx-list-section .feature-block {
	position: relative;
	z-index: 2;
}

/* Constrain content inside fx-list-section to container width */
.fx-list-section > .section-header {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}

.fx-list-section > .carousel-wrapper {
	width: 100%;
	position: relative;
	z-index: 2;
	overflow: visible; /* Allow overflowing slides to be seen */
	margin-top: 0;
}

.carousel-wrapper, .sends-carousel {
	position: relative;
	z-index: 2;
	margin-top: 60px;
	width: 100%; /* Ensure full width for arrows */
}

.carousel-container {
	position: relative;
	width: 100%;
	overflow-x: visible; /* Allow slides to peek */
	overflow-y: visible;
	padding: 0;
	padding-bottom: 0;
	height: fit-content;
}

.carousel-track {
	display: flex;
	gap: 24px; /* Add gap between slides */
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 20px;
	/* Center the first and last items */
	padding-inline: max(24px, calc(50vw - var(--container) / 2));
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.carousel-track::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

.carousel-slide {
	flex: 0 0 auto;
	width: var(--container);
	max-width: 90vw;
	scroll-snap-align: center;
	transition: all 0.5s var(--ease-out);
	opacity: 0.3 !important;
	filter: blur(5px) !important;
	-webkit-filter: blur(5px) !important;
	transform: scale(0.95);
	will-change: opacity, filter, transform;
}

.carousel-slide.active {
	opacity: 1 !important;
	filter: blur(0) !important;
	-webkit-filter: blur(0) !important;
	transform: scale(1);
}

/* Ensure contents inherit or don't override the blur */
.carousel-slide:not(.active) * {
	filter: inherit;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 24px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.carousel-arrow:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
}

.carousel-prev {
	left: 24px;
}

.carousel-next {
	right: 24px;
}

@media (min-width: 1400px) {
	.carousel-prev {
		left: calc(50% - var(--container) / 2 - 80px);
	}
	.carousel-next {
		right: calc(50% - var(--container) / 2 - 80px);
	}
}

.carousel-dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 4;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	cursor: pointer;
	transition: all 0.2s ease;
}

.carousel-dot.active {
	background: white;
	border-color: white;
}

.carousel-dot:hover {
	background: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Sends Header */
.sends-header {
	text-align: center;
	margin-bottom: -100px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
	/* Scroll-driven animation initial state */
	opacity: 0;
	filter: blur(20px);
	transform: scale(0.9);
	will-change: opacity, filter, transform;
}

.sends-header h2,
.sends-title {
	font-size: clamp(48px, 6vw, 76.8px) !important; /* 20% larger - same as FX list */
	margin-bottom: 16px;
	background: linear-gradient(135deg, #fff 20%, var(--primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% auto;
	animation: gradientFlow 5s linear infinite;
	text-shadow: 0 10px 30px rgba(34, 243, 107, 0.2);
}

.sends-header .lead-text {
	color: rgba(255, 255, 255, 0.8);
}


/* Hero Animations */
.hero-copy h1, .hero-copy .lead, .hero-ctas {
	opacity: 0;
	transform: translateY(30px);
	animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy h1 { animation-delay: 0.2s; }
.hero-copy .lead { animation-delay: 0.4s; }
.hero-ctas { animation-delay: 0.6s; }

@keyframes heroFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Gradient Text Animation */
.section-header h2 {
	background-size: 200% auto;
	animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Scroll Reveal Base - Default Animation (Fade Up) */
[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
	            filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	filter: blur(10px);
	will-change: opacity, transform, filter;
}

[data-reveal].visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

/* Unique Animation: Flip Up (Workflow Supercharged) */
[data-reveal="anim-flip-up"] {
	transform: perspective(1000px) rotateX(90deg);
	transform-origin: bottom center;
}
[data-reveal="anim-flip-up"].visible {
	transform: perspective(1000px) rotateX(0deg);
}

/* Unique Animation: Zoom In (Watch it in Action) */
[data-reveal="anim-zoom-in"] {
	transform: scale(1.5);
	filter: blur(20px);
}
[data-reveal="anim-zoom-in"].visible {
	transform: scale(1);
	filter: blur(0);
}

/* Unique Animation: Slide Left (How it works) */
[data-reveal="anim-slide-left"] {
	transform: translateX(-100px);
}
[data-reveal="anim-slide-left"].visible {
	transform: translateX(0);
}

/* Unique Animation: Decode / Glitch Step (Requirements) */
[data-reveal="anim-decode"] {
	clip-path: inset(0 100% 0 0);
	filter: blur(0);
	transform: translateY(0);
	transition: clip-path 1s steps(10, end);
	opacity: 1; /* override default opacity for clip reveal */
}
[data-reveal="anim-decode"].visible {
	clip-path: inset(0 0 0 0);
}

/* Unique Animation: Slide Right (Installation) */
[data-reveal="anim-slide-right"] {
	transform: translateX(100px);
}
[data-reveal="anim-slide-right"].visible {
	transform: translateX(0);
}

/* Unique Animation: Elastic Pop (Pricing) */
[data-reveal="anim-elastic"] {
	transform: scale(0.5);
	transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-reveal="anim-elastic"].visible {
	transform: scale(1);
}

/* Unique Animation: Skew In (Testimonials) */
[data-reveal="anim-skew"] {
	transform: skewY(10deg) translateY(50px);
	transform-origin: left;
}
[data-reveal="anim-skew"].visible {
	transform: skewY(0deg) translateY(0);
}

/* Unique Animation: Perspective Fold (FAQ) */
[data-reveal="anim-fold"] {
	transform: perspective(1000px) rotateX(-90deg);
	transform-origin: top center;
}
[data-reveal="anim-fold"].visible {
	transform: perspective(1000px) rotateX(0deg);
}

/* Unique Animation: Condense (Contact) */
[data-reveal="anim-condense"] {
	letter-spacing: 20px;
	filter: blur(10px);
}
[data-reveal="anim-condense"].visible {
	letter-spacing: normal;
	filter: blur(0);
}

/* Base Feature Block with Advanced Animations */
.feature-block {
	width: 100%;
	position: relative;
	opacity: 0;
	transform: translateY(100px) scale(0.95);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
	            filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	filter: blur(20px);
	will-change: opacity, transform, filter;
}

.feature-block[data-reveal].visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

/* Stagger animations for content and media */
.feature-block .feature-content {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
	            transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.feature-block[data-reveal].visible .feature-content {
	opacity: 1;
	transform: translateX(0);
}

.feature-block .feature-media {
	opacity: 0;
	transform: translateX(30px) scale(0.95);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s,
	            transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.feature-block[data-reveal].visible .feature-media {
	opacity: 1;
	transform: translateX(0) scale(1);
}

/* Reverse layouts */
.feature-block .feature-inner.reverse .feature-content {
	transform: translateX(30px);
}

.feature-block[data-reveal].visible .feature-inner.reverse .feature-content {
	transform: translateX(0);
}

.feature-block .feature-inner.reverse .feature-media {
	transform: translateX(-30px) scale(0.95);
}

.feature-block[data-reveal].visible .feature-inner.reverse .feature-media {
	transform: translateX(0) scale(1);
}

/* Feature 2 specific: Overlay text animation */

/* Centered layouts */
.feature-block .feature-inner.centered .feature-content,
.feature-block .feature-inner.centered .feature-media {
	transform: translateY(40px);
}

.feature-block[data-reveal].visible .feature-inner.centered .feature-content,
.feature-block[data-reveal].visible .feature-inner.centered .feature-media {
	transform: translateY(0);
}

/* Video top layouts */
.feature-block .feature-inner.video-top .feature-media {
	transform: translateY(-40px) scale(0.9);
}

.feature-block[data-reveal].visible .feature-inner.video-top .feature-media {
	transform: translateY(0) scale(1);
}

.feature-block .feature-inner.video-top .feature-content {
	transform: translateY(40px);
}

.feature-block[data-reveal].visible .feature-inner.video-top .feature-content {
	transform: translateY(0);
}

/* Split layouts */
.feature-block .feature-inner.split .feature-content {
	transform: translateX(-50px);
}

.feature-block[data-reveal].visible .feature-inner.split .feature-content {
	transform: translateX(0);
}

.feature-block .feature-inner.split .feature-media {
	transform: translateX(50px) scale(0.95);
}

.feature-block[data-reveal].visible .feature-inner.split .feature-media {
	transform: translateX(0) scale(1);
}

/* Large centered */
.feature-block .feature-inner.large-centered .feature-content {
	transform: translateY(50px);
}

.feature-block[data-reveal].visible .feature-inner.large-centered .feature-content {
	transform: translateY(0);
}

.feature-block .feature-inner.large-centered .feature-media {
	transform: scale(0.85);
}

.feature-block[data-reveal].visible .feature-inner.large-centered .feature-media {
	transform: scale(1);
}

/* Grid layout */
.feature-block .feature-inner.grid-layout .feature-content {
	transform: translateY(40px);
}

.feature-block[data-reveal].visible .feature-inner.grid-layout .feature-content {
	transform: translateY(0);
}

.feature-block .feature-grid-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-block[data-reveal].visible .feature-grid-item:nth-child(1) {
	transition-delay: 0.2s;
	opacity: 1;
	transform: translateY(0);
}

.feature-block[data-reveal].visible .feature-grid-item:nth-child(2) {
	transition-delay: 0.3s;
	opacity: 1;
	transform: translateY(0);
}

.feature-block[data-reveal].visible .feature-grid-item:nth-child(3) {
	transition-delay: 0.4s;
	opacity: 1;
	transform: translateY(0);
}

.feature-block[data-reveal].visible .feature-grid-item:nth-child(4) {
	transition-delay: 0.5s;
	opacity: 1;
	transform: translateY(0);
}

/* Feature tags animation */
.feature-block .feature-tags li {
	opacity: 0;
	transform: translateY(20px) scale(0.8);
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-block[data-reveal].visible .feature-tags li:nth-child(1) {
	transition-delay: 0.4s;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.feature-block[data-reveal].visible .feature-tags li:nth-child(2) {
	transition-delay: 0.5s;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.feature-block[data-reveal].visible .feature-tags li:nth-child(3) {
	transition-delay: 0.6s;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.feature-block[data-reveal].visible .feature-tags li:nth-child(4) {
	transition-delay: 0.7s;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.feature-inner {
	display: grid;
	gap: 60px;
	align-items: center;
}

.feature-content {
	z-index: 2;
}

.feature-content h3 {
	font-size: clamp(32px, 4vw, 56px);
	margin-bottom: 20px;
	color: white;
	font-weight: 700;
	line-height: 1.1;
}

.feature-content p {
	font-size: clamp(18px, 2vw, 24px);
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 0;
}

.feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
	padding: 0;
	list-style: none;
}

.feature-tags li {
	background: rgba(34, 243, 107, 0.1);
	color: var(--primary);
	padding: 8px 20px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid rgba(34, 243, 107, 0.2);
	transition: all 0.3s var(--ease-out);
}

.feature-tags li:hover {
	background: rgba(34, 243, 107, 0.2);
	transform: translateY(-2px);
}

.feature-media {
	position: relative;
	width: 100%;
	overflow: visible;
	background: #000;
	border-radius: 20px;
	padding: 40px;
	box-sizing: border-box;
}

.feature-media video,
.feature-media .video-controls-wrapper video {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
	border-radius: 12px;
}

/* Hover enlarge effect removed for unified styling */

/* Remove hover enlarge effect for feature 2 */

/* Feature 1: Full Width Video */
.feature-1 .feature-inner {
	grid-template-columns: 1fr;
}

.feature-1 .feature-content {
	padding-right: 0;
	margin-bottom: 40px;
}

.feature-1 .feature-media {
	background: linear-gradient(135deg, rgba(34, 243, 107, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
	border: 1px solid rgba(34, 243, 107, 0.1);
}

/* Feature 1 Shortcuts */
.feature-1 .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 40px;
	margin-bottom: 0;
	padding: 0;
	justify-content: center;
}

.feature-1 .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.4;
}

.feature-1 .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.feature-1 .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-1 .shortcut-bubble .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 6px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 30px;
	height: 28px;
	vertical-align: middle;
}

.feature-1 .shortcut-bubble .mouse-button img {
	width: 21.6px;
	height: 21.6px;
	display: block;
	object-fit: contain;
}

/* Feature 2: Side-by-side Layout - Header Left, Text Right, Video Below */
.feature-2 .feature-inner {
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
	gap: 20px 40px;
	align-items: start;
	text-align: left;
}

.feature-2 .feature-content {
	padding-right: 0;
	max-width: none;
	margin: 0;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: start;
}

.feature-2 .feature-content h3 {
	font-size: clamp(24px, 3vw, 36px);
	margin-bottom: 0;
	white-space: nowrap;
	min-width: 120px;
}

.feature-2 .feature-content p {
	margin-bottom: 0;
}

.feature-2 .feature-media {
	grid-column: 1 / -1;
}

.feature-2 .feature-media {
	width: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(34, 243, 107, 0.2);
	border-radius: 20px;
}

.feature-2 .feature-media video {
	width: 100%;
	max-width: 100%;
	border-radius: 12px;
	clip-path: inset(0 0 10% 0);
	object-position: center top;
}

/* Feature 2 Shortcuts */
.feature-2 .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
	padding: 0;
	justify-content: center;
}

.feature-2 .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.4;
}

.feature-2 .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.feature-2 .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-2 .shortcut-bubble .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 6px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 30px;
	height: 28px;
	vertical-align: middle;
}

.feature-2 .shortcut-bubble .mouse-button img {
	width: 21.6px;
	height: 21.6px;
	display: block;
	object-fit: contain;
}

/* Feature 3: Side-by-side Layout - Header Left, Text Right, Video Below */
.feature-3 .feature-inner {
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
	gap: 20px 40px;
	align-items: start;
	text-align: left;
}

.feature-3 .feature-content {
	padding-right: 0;
	max-width: none;
	margin: 0;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: start;
}

.feature-3 .feature-content h3 {
	font-size: clamp(24px, 3vw, 36px);
	margin-bottom: 0;
	white-space: nowrap;
	min-width: 120px;
}

.feature-3 .feature-content p {
	margin-bottom: 0;
}

.feature-3 .feature-media {
	grid-column: 1 / -1;
}

.feature-3 .feature-media {
	width: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(34, 243, 107, 0.2);
	border-radius: 20px;
}

/* Feature 4: Side-by-side Layout - Header Left, Text Right, Video Below */
.feature-4 .feature-inner {
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
	gap: 20px 40px;
	align-items: start;
	text-align: left;
}

.feature-4 .feature-content {
	padding-right: 0;
	max-width: none;
	margin: 0;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: start;
}

.feature-4 .feature-content h3 {
	font-size: clamp(24px, 3vw, 36px);
	margin-bottom: 0;
	white-space: nowrap;
	min-width: 120px;
}

.feature-4 .feature-content p {
	margin-bottom: 0;
}

.feature-4 .feature-media {
	grid-column: 1 / -1;
	width: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(34, 243, 107, 0.2);
	border-radius: 20px;
}

/* Feature 5: Side-by-side Layout - Header Left, Text Right, Video Below */
.feature-5 .feature-inner {
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
	gap: 20px 40px;
	align-items: start;
	text-align: left;
}

.feature-5 .feature-content {
	padding-right: 0;
	max-width: none;
	margin: 0;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: start;
}

.feature-5 .feature-content h3 {
	font-size: clamp(24px, 3vw, 36px);
	margin-bottom: 0;
	white-space: nowrap;
	min-width: 120px;
}

.feature-5 .feature-content p {
	margin-bottom: 0;
}

.feature-5 .feature-media {
	grid-column: 1 / -1;
}

.feature-5 .feature-media {
	width: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(34, 243, 107, 0.2);
	border-radius: 20px;
}

.feature-5 .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
	padding: 0;
	justify-content: center;
}

.feature-5 .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
}

.feature-5 .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.feature-5 .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Feature sends-width shortcuts */
.feature-sends-width .feature-inner {
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
	gap: 20px 40px;
	align-items: start;
	text-align: left;
}

.feature-sends-width .feature-content {
	padding-right: 0;
	max-width: none;
	margin: 0;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: start;
}

.feature-sends-width .feature-content h3 {
	font-size: clamp(24px, 3vw, 36px);
	margin-bottom: 0;
	white-space: nowrap;
	min-width: 120px;
}

.feature-sends-width .feature-content p {
	margin-bottom: 0;
}

.feature-sends-width .feature-media {
	grid-column: 1 / -1;
}

.feature-sends-width .feature-media {
	width: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(34, 243, 107, 0.2);
	border-radius: 20px;
}

.feature-sends-width .feature-media .video-controls-wrapper {
	height: 60%;
	overflow: hidden;
}

.feature-sends-width .feature-media video {
	width: 100%;
	max-width: 100%;
	border-radius: 12px;
	object-fit: cover;
	object-position: center top;
}

.feature-sends-width .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
	padding: 0;
	justify-content: center;
}

.feature-sends-width .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.4;
}

.feature-sends-width .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.feature-sends-width .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-sends-width .shortcut-bubble .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 6px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 30px;
	height: 28px;
	vertical-align: middle;
}

.feature-sends-width .shortcut-bubble .mouse-button img {
	width: 21.6px;
	height: 21.6px;
	display: block;
	object-fit: contain;
}

/* Feature 6: Full Width Video Style */
.feature-6 .feature-content {
	padding: 60px 40px 40px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.feature-6 .feature-media.feature-6-full-width {
	padding: 0;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 24px;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin-top: 40px;
}

.feature-6 .feature-media.feature-6-full-width .video-controls-wrapper {
	width: 100%;
	padding: 0;
}

.feature-6 .feature-media.feature-6-full-width video {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
}

/* Accordion Feature Group */
.feature-accordion-group {
	width: 100%;
}

.feature-accordion-group .feature-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.accordion-group-title {
	font-size: clamp(40px, 5vw, 64px);
	margin-bottom: 0;
	text-align: center;
	background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.accordion-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.accordion-item {
	background: rgba(11, 25, 18, 0.4);
	border: 1px solid rgba(34, 243, 107, 0.15);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s var(--ease-out);
}

.accordion-item:hover {
	border-color: rgba(34, 243, 107, 0.25);
	background: rgba(11, 25, 18, 0.5);
}

.accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 32px;
	background: transparent;
	border: none;
	color: var(--text-main);
	cursor: pointer;
	text-align: left;
	font-size: clamp(20px, 2.5vw, 28px);
	font-weight: 600;
	transition: all 0.3s var(--ease-out);
}

.accordion-header:hover {
	color: var(--primary);
}

.accordion-header[aria-expanded="true"] {
	color: var(--primary);
}

.accordion-title {
	flex: 1;
}

.accordion-icon {
	font-size: 28px;
	font-weight: 300;
	color: var(--primary);
	transition: transform 0.3s var(--ease-out);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-left: 16px;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
	opacity: 0;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
	max-height: 5000px;
	opacity: 1;
}

.accordion-inner {
	padding: 0 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.accordion-inner .feature-content {
	padding: 0;
	margin: 0;
}

.accordion-inner .feature-content h3 {
	font-size: clamp(24px, 3vw, 36px);
	margin-bottom: 16px;
	color: white;
}

.accordion-inner .feature-content p {
	font-size: clamp(16px, 1.8vw, 20px);
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 0;
}

.accordion-inner .feature-media {
	padding: 40px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(34, 243, 107, 0.2);
	border-radius: 20px;
}

.accordion-inner .feature-media.feature-6-full-width {
	padding: 0;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 24px;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin-top: 0;
}

.accordion-inner .feature-media.feature-6-full-width .video-controls-wrapper {
	width: 100%;
	padding: 0;
}

.accordion-inner .feature-media.feature-6-full-width video {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
}

.accordion-inner .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 0;
	padding: 0;
	justify-content: center;
}

.accordion-inner .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.4;
}

.accordion-inner .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.accordion-inner .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.accordion-inner .shortcut-bubble .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 6px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 30px;
	height: 28px;
	vertical-align: middle;
}

.accordion-inner .shortcut-bubble .mouse-button img {
	width: 21.6px;
	height: 21.6px;
	display: block;
	object-fit: contain;
}

/* Small mouse button icons for inline text in paragraphs */
.accordion-inner .feature-content p .mouse-button-small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 2px 4px;
	border-radius: 3px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	width: 18px;
	height: 16px;
	vertical-align: middle;
	margin: 0 2px;
}

.accordion-inner .feature-content p .mouse-button-small img {
	width: 12px;
	height: 12px;
	display: block;
	object-fit: contain;
}

/* Mouse scroll icon styling */
.accordion-inner .shortcut-bubble .mouse-scroll-icon {
	font-size: 14px;
	vertical-align: middle;
	margin-right: 4px;
}

@media (max-width: 991px) {
	.accordion-header {
		padding: 20px 24px;
		font-size: clamp(18px, 2vw, 24px);
	}

	.accordion-inner {
		padding: 0 24px 24px;
		gap: 30px;
	}

	.accordion-inner .feature-media {
		padding: 30px;
	}
}

/* Feature 7: FX Linking - Moved to Feature 2 position (Side by Side) */
.feature-7 .feature-content {
	max-width: none;
	margin: 0;
}

.feature-7 .feature-media {
	background: linear-gradient(135deg, rgba(34, 243, 107, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
	border: 1px solid rgba(34, 243, 107, 0.15);
	padding: 30px;
	max-width: 100%;
	margin: 0;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.feature-7 .feature-media video {
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	border-radius: 12px;
	clip-path: inset(5% 0 0 0);
	-webkit-clip-path: inset(5% 0 0 0);
}

.feature-7 kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.9em;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	vertical-align: text-bottom;
}

.feature-7 .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 2px 4px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	vertical-align: text-bottom;
	margin: 0 2px;
}

/* Feature Marquee: Shortcut badges styling (matching feature-1) */
.feature-marquee .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 40px;
	margin-bottom: 0;
	padding: 0;
	justify-content: center;
}

.feature-marquee .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.4;
}

.feature-marquee .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.feature-marquee .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-marquee .shortcut-bubble .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 6px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 30px;
	height: 28px;
	vertical-align: middle;
}

.feature-marquee .shortcut-bubble .mouse-button img {
	width: 21.6px;
	height: 21.6px;
	display: block;
	object-fit: contain;
}

/* Feature Automation: Shortcut badges styling (matching feature-1) */
.feature-automation .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 40px;
	margin-bottom: 0;
	padding: 0;
	justify-content: center;
}

.feature-automation .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.4;
}

.feature-automation .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.feature-automation .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-automation .shortcut-bubble .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 6px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 30px;
	height: 28px;
	vertical-align: middle;
}

.feature-automation .shortcut-bubble .mouse-button img {
	width: 21.6px;
	height: 21.6px;
	display: block;
	object-fit: contain;
}

/* Feature Marquee Sends: Shortcut badges styling */
.feature-marquee-sends .feature-shortcuts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 40px;
	margin-bottom: 0;
	padding: 0;
	justify-content: center;
}

.feature-marquee-sends .shortcut-bubble {
	background: rgba(34, 243, 107, 0.08);
	color: var(--text-main);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(34, 243, 107, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.3s var(--ease-out);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.4;
}

.feature-marquee-sends .shortcut-bubble:hover {
	background: rgba(34, 243, 107, 0.12);
	border-color: rgba(34, 243, 107, 0.25);
	transform: translateY(-2px);
}

.feature-marquee-sends .shortcut-bubble kbd {
	background: rgba(0, 0, 0, 0.4);
	color: var(--primary);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-marquee-sends .shortcut-bubble .mouse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 6px;
	border-radius: 4px;
	border: 1px solid rgba(34, 243, 107, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 30px;
	height: 28px;
	vertical-align: middle;
}

.feature-marquee-sends .shortcut-bubble .mouse-button img {
	width: 21.6px;
	height: 21.6px;
	display: block;
	object-fit: contain;
}

/* Feature 8: Grid Layout */
.feature-8 .feature-inner.grid-layout {
	grid-template-columns: 1fr;
	background: linear-gradient(135deg, rgba(34, 243, 107, 0.05) 0%, rgba(3, 8, 6, 0.8) 100%);
	border-radius: 30px;
	padding: 80px 60px;
	border: 1px solid rgba(34, 243, 107, 0.1);
}

.feature-8 .feature-content {
	text-align: center;
	margin-bottom: 60px;
}

.feature-grid-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	width: 100%;
}

.feature-grid-item {
	padding: 30px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.4s var(--ease-out);
}

.feature-grid-item:hover {
	background: rgba(34, 243, 107, 0.05);
	border-color: rgba(34, 243, 107, 0.2);
	transform: translateY(-4px);
}

.feature-grid-item h4 {
	font-size: 22px;
	color: white;
	margin-bottom: 12px;
	margin-top: 0;
	font-weight: 700;
}

.feature-grid-item p {
	font-size: 16px;
	margin: 0;
	color: var(--text-muted);
}

/* Responsive */
@media (max-width: 991px) {
	.features-list {
		gap: 80px;
	}
	
	.feature-1 .feature-inner,
	.feature-5 .feature-inner {
		grid-template-columns: 1fr;
	}
	
	.feature-2 .feature-shortcuts {
		justify-content: flex-start;
		margin-top: 20px;
	}
	
	.feature-2 .shortcut-bubble {
		font-size: 13px;
		padding: 8px 14px;
	}
	
	.feature-2 .shortcut-bubble kbd {
		font-size: 11px;
		padding: 3px 6px;
	}
	
	.feature-1 .feature-content,
	.feature-5 .feature-content {
		padding: 0 0 40px 0;
	}
	
	.feature-5 .feature-inner {
		padding: 40px;
	}
	
	.feature-6 .feature-content {
		padding: 40px 20px 30px;
	}
	
	.feature-6 .feature-media.feature-6-full-width {
		margin-top: 30px;
	}
	
	.feature-media {
		padding: 30px;
	}
	
	.feature-4 .feature-media {
		padding: 40px;
	}
	
	.feature-8 .feature-inner.grid-layout {
		padding: 50px 30px;
	}
	
	.feature-grid-list {
		grid-template-columns: 1fr;
	}
}


/* Pricing */
.pricing {
	max-width: 500px;
	margin: 0 auto;
}

.price-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: var(--radius-lg);
	padding: 40px;
	text-align: center;
	position: relative;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.price-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
	opacity: 0.5;
}

.price {
	font-size: 64px;
	font-weight: 800;
	color: white;
	margin: 24px 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	line-height: 0.9;
}

.currency {
	font-size: 24px;
	margin-top: 8px;
	margin-right: 4px;
	color: var(--text-muted);
}

.price-card .list {
	text-align: left;
	margin: 32px 0;
}

.price-card .list li {
	margin-bottom: 12px;
	color: var(--text-main);
}

/* FAQ */
.faq details {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-sm);
	margin-bottom: 12px;
	transition: background 0.2s;
}

.faq details:hover {
	background: rgba(255, 255, 255, 0.04);
}

.faq summary {
	padding: 20px;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	position: relative;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: '+';
	position: absolute;
	right: 20px;
	color: var(--primary);
	font-size: 20px;
}

.faq details[open] summary::after {
	content: '-';
}

.faq p {
	padding: 0 20px 20px;
	margin: 0;
	color: var(--text-muted);
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--glass-border);
	padding: 60px 0;
	background: #020504;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-nav a {
	margin-left: 24px;
	color: var(--text-muted);
	font-size: 14px;
}

.footer-nav a:hover {
	color: white;
}

/* Demo Grid */
.demo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

@media (min-width: 992px) {
	.demo-grid {
		grid-template-columns: 2fr 1fr;
	}
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: black;
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Utility: Gradient Text */
.text-gradient {
	background: linear-gradient(135deg, #fff 0%, var(--primary-muted) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg);
}

::-webkit-scrollbar-thumb {
	background: #1f2937;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #374151;
}

/* License & Trial */
.sr-only {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.muted { color: var(--text-muted); }
.tiny { font-size: 13px; line-height: 1.3; }

.license-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	align-items: stretch;
}

.license-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.license-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.license-form input {
	width: 100%;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid var(--glass-border);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-main);
	font-size: 15px;
}

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

.license-actions .btn {
	flex: 1 1 180px;
}

.license-status {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 20px;
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.03);
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	width: fit-content;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--glass-border);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-badge.is-active { color: #0ef86a; border-color: rgba(14, 248, 106, 0.35); }
.status-badge.is-trial { color: #f6c344; border-color: rgba(246, 195, 68, 0.35); }
.status-badge.is-expired { color: #f87171; border-color: rgba(248, 113, 113, 0.35); }

.status-detail {
	color: var(--text-muted);
	font-size: 15px;
}

@media (max-width: 640px) {
	.license-actions {
		flex-direction: column;
	}
}

/* --- Added from SuperGPT Implementation --- */

/* Modal Styles */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal.active, .modal[style*="display: block"], .modal[style*="display: flex"] {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #0b1912; /* Adjusted to match theme card-bg approx */
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.license-key {
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#license-key-text {
    font-family: monospace;
    font-size: 1.1rem;
    flex: 1;
    word-break: break-all;
    color: var(--primary);
}

.copy-btn {
    background: var(--primary);
    color: var(--text-dark);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

/* Auth modal */
.auth-modal-content {
	text-align: left;
	max-width: 540px;
}

.auth-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.auth-tabs {
	display: inline-flex;
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 16px;
}

.auth-tab {
	background: transparent;
	color: var(--text-main);
	padding: 10px 14px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}

.auth-tab.active {
	background: rgba(255, 255, 255, 0.08);
	color: white;
}

.auth-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.btn-google {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	background: white;
	color: #0f172a;
	border: none;
	width: 100%;
	border-radius: 12px;
	padding: 12px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

.google-mark {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	display: grid;
	place-items: center;
	background: #4285f4;
	color: white;
	font-weight: 800;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.auth-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--glass-border);
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.auth-form input {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	color: var(--text-main);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
}

.auth-form input:focus {
	outline: 1px solid var(--primary);
}

.auth-form button {
	width: 100%;
}

/* Notifications */
.error-notification, .info-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 10000;
    max-width: 400px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.error-notification {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.info-notification {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.close-notification {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    color: inherit;
    opacity: 0.7;
}

/* Loading Overlay */
#payment-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}
#payment-loading-overlay .loading-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
#payment-loading-overlay .loading-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0b1912;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    color: var(--text-main);
    min-width: 240px;
    border: 1px solid var(--card-border);
}
#payment-loading-overlay .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Full-width image styles */
.img-full-width {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0;
	padding: 0;
}

/* Full-width image container (breaks out of container) */
.img-full-width-container {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: hidden;
}

.img-full-width-container img {
	width: 100%;
	height: auto;
	display: block;
}