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

:root {
	/* 90s funky palette */
	--electric-blue: #0066FF;
	--electric-blue-dark: #0052cc;
	--hot-pink: #FF0080;
	--hot-pink-dark: #cc0066;
	--cyber-yellow: #FFE500;
	--lime: #00FF66;
	--orange: #FF6B35;
	--purple: #9747FF;
	--white: #FFFFFF;
	--off-white: #F8F8F8;
	--light-gray: #EEEEEE;
	--black: #0A0A0A;
	--gray: #666666;

	/* Functional */
	--text-primary: #0A0A0A;
	--text-secondary: #444444;
	--text-muted: #888888;
	--border: #0A0A0A;
	--success: #00CC55;
	--danger: #FF3366;

	/* Shadows */
	--shadow-sm: 3px 3px 0 var(--black);
	--shadow-md: 5px 5px 0 var(--black);
	--shadow-lg: 8px 8px 0 var(--black);
	--shadow-color: 5px 5px 0 var(--electric-blue);
}

/* Dot pattern background */
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--off-white);
	background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
	background-size: 24px 24px;
	color: var(--text-primary);
	line-height: 1.5;
	min-height: 100vh;
}

::selection {
	background: var(--cyber-yellow);
	color: var(--black);
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Navbar */
.navbar {
	padding: 14px 0;
	background: var(--white);
	border-bottom: 3px solid var(--black);
	position: sticky;
	top: 0;
	z-index: 100;
}

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

.logo {
	font-size: 22px;
	font-weight: 800;
	text-decoration: none;
	color: var(--black);
	letter-spacing: -1px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.15s;
}

.logo:hover {
	transform: rotate(-2deg);
}

.logo-img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	transition: transform 0.15s;
}

.logo:hover .logo-img {
	transform: rotate(15deg) scale(1.1);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-links a:not(.btn) {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 0;
	position: relative;
}

.nav-links a:not(.btn)::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--hot-pink);
	transition: width 0.2s;
}

.nav-links a:not(.btn):hover::after {
	width: 100%;
}

.nav-user {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 600;
	background: var(--light-gray);
	padding: 6px 12px;
	border: 2px solid var(--black);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 3px solid var(--black);
	transition: all 0.1s;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: inherit;
}

.btn-primary {
	background: var(--electric-blue);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translate(-3px, -3px);
	box-shadow: 8px 8px 0 var(--black);
	background: var(--electric-blue-dark);
}

.btn-primary:active {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 var(--black);
}

.btn-primary:disabled,
.btn-primary[disabled] {
	background: var(--gray);
	cursor: not-allowed;
	opacity: 0.6;
	box-shadow: none;
	transform: none;
}

.btn-primary:disabled:hover,
.btn-primary[disabled]:hover {
	transform: none;
	box-shadow: none;
	background: var(--gray);
}

.btn-secondary {
	background: var(--white);
	color: var(--black);
	box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
	transform: translate(-3px, -3px);
	box-shadow: 8px 8px 0 var(--black);
	background: var(--cyber-yellow);
}

.btn-danger {
	background: var(--danger);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.btn-danger:hover {
	transform: translate(-3px, -3px);
	box-shadow: 8px 8px 0 var(--black);
}

.btn-lg {
	padding: 16px 32px;
	font-size: 15px;
}

.btn-sm {
	padding: 8px 14px;
	font-size: 12px;
	box-shadow: var(--shadow-sm);
}

.btn-sm:hover {
	box-shadow: 5px 5px 0 var(--black);
}

.btn-block {
	width: 100%;
}

/* Badge/Tag */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid var(--black);
	background: var(--cyber-yellow);
}

.badge-pink {
	background: var(--hot-pink);
	color: var(--white);
}

.badge-blue {
	background: var(--electric-blue);
	color: var(--white);
}

.badge-lime {
	background: var(--lime);
}

/* Hero Section */
.hero {
	padding: 70px 0 90px;
	position: relative;
	overflow: hidden;
	background: var(--white);
	border-bottom: 3px solid var(--black);
}

/* Grid overlay on hero */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--light-gray) 1px, transparent 1px),
		linear-gradient(90deg, var(--light-gray) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.5;
}

/* Geometric decorations */
.hero-orbs {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	pointer-events: none;
}

.orb {
	position: absolute;
	border: 3px solid var(--black);
}

.orb-1 {
	width: 180px;
	height: 180px;
	background: var(--cyber-yellow);
	top: 8%;
	right: 8%;
	border-radius: 50%;
	animation: float1 6s ease-in-out infinite;
}

.orb-2 {
	width: 100px;
	height: 100px;
	background: var(--hot-pink);
	bottom: 20%;
	left: 5%;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	border: none;
	animation: float2 5s ease-in-out infinite;
}

.orb-3 {
	width: 70px;
	height: 70px;
	background: var(--lime);
	top: 55%;
	right: 18%;
	animation: float3 7s ease-in-out infinite;
}

.orb-4 {
	width: 40px;
	height: 40px;
	background: var(--purple);
	top: 25%;
	left: 15%;
	border-radius: 50%;
	animation: float1 4s ease-in-out infinite reverse;
}

.orb-5 {
	width: 25px;
	height: 25px;
	background: var(--orange);
	bottom: 35%;
	right: 30%;
	border-radius: 50%;
	animation: float2 3s ease-in-out infinite;
}

@keyframes float1 {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	50% {
		transform: translate(-15px, 20px) rotate(10deg);
	}
}

@keyframes float2 {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	50% {
		transform: translate(20px, -15px) rotate(-15deg);
	}
}

@keyframes float3 {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(10px, 15px);
	}
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-badge {
	margin-bottom: 20px;
}

.hero h1 {
	font-size: 58px;
	font-weight: 800;
	letter-spacing: -3px;
	line-height: 1.0;
	margin-bottom: 20px;
	color: var(--black);
}

.hero h1 span {
	color: var(--electric-blue);
	position: relative;
	display: inline-block;
}

.hero h1 span::before {
	content: '';
	position: absolute;
	bottom: 8px;
	left: -6px;
	right: -6px;
	height: 18px;
	background: var(--cyber-yellow);
	z-index: -1;
	border: 2px solid var(--black);
	transform: rotate(-1deg);
}

.hero-subtitle {
	font-size: 17px;
	color: var(--text-secondary);
	margin-bottom: 32px;
	line-height: 1.7;
	max-width: 520px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	margin-bottom: 36px;
}

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

.hero-note span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
	background: var(--white);
	padding: 8px 14px;
	border: 2px solid var(--black);
	box-shadow: 2px 2px 0 var(--black);
}

.hero-note span::before {
	content: '';
	width: 8px;
	height: 8px;
	border: 2px solid var(--black);
}

.hero-note span:nth-child(1)::before {
	background: var(--lime);
}

.hero-note span:nth-child(2)::before {
	background: var(--hot-pink);
	border-radius: 50%;
}

.hero-note span:nth-child(3)::before {
	background: var(--cyber-yellow);
}

/* Features */
.features {
	padding: 90px 0;
	background: var(--off-white);
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header .badge {
	margin-bottom: 16px;
}

.features h2 {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: -2px;
}

.features-subtitle {
	color: var(--text-secondary);
	font-size: 16px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

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

.feature-card {
	background: var(--white);
	padding: 28px;
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
	transition: all 0.15s;
	position: relative;
	overflow: hidden;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	transition: transform 0.2s;
}

.feature-card:nth-child(1)::after {
	background: var(--electric-blue);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.feature-card:nth-child(2)::after {
	background: var(--cyber-yellow);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.feature-card:nth-child(3)::after {
	background: var(--lime);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.feature-card:nth-child(4)::after {
	background: var(--hot-pink);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.feature-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 9px 9px 0 var(--black);
}

.feature-card:hover::after {
	transform: scale(1.2);
}

.feature-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border: 3px solid var(--black);
	position: relative;
	z-index: 1;
}

.feature-card:nth-child(1) .feature-icon {
	background: var(--electric-blue);
	border-radius: 50%;
}

.feature-card:nth-child(2) .feature-icon {
	background: var(--cyber-yellow);
}

.feature-card:nth-child(3) .feature-icon {
	background: var(--lime);
	border-radius: 50%;
}

.feature-card:nth-child(4) .feature-icon {
	background: var(--hot-pink);
}

.feature-icon svg {
	stroke: var(--black);
}

.feature-card:nth-child(4) .feature-icon svg {
	stroke: var(--white);
}

.feature-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.5px;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
}

/* Marquee / Social proof */
.marquee-container {
	background: var(--black);
	border-top: 3px solid var(--black);
	border-bottom: 3px solid var(--black);
	padding: 14px 0;
	overflow: hidden;
}

.marquee {
	display: flex;
	animation: marquee 20s linear infinite;
}

.marquee-content {
	display: flex;
	gap: 60px;
	padding-right: 60px;
	flex-shrink: 0;
}

.marquee-content span {
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 12px;
}

.marquee-content span::before {
	content: '◆';
	color: var(--cyber-yellow);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* CTA */
.cta {
	padding: 90px 0;
	background: var(--electric-blue);
	border-top: 3px solid var(--black);
	border-bottom: 3px solid var(--black);
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: var(--hot-pink);
	border-radius: 50%;
	top: -150px;
	right: -100px;
	opacity: 0.3;
}

.cta::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: var(--cyber-yellow);
	bottom: -100px;
	left: -50px;
	opacity: 0.3;
}

.cta-card {
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 14px;
	letter-spacing: -2px;
	color: var(--white);
}

.cta p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 28px;
	font-size: 17px;
}

.cta .btn-primary {
	background: var(--cyber-yellow);
	color: var(--black);
	border-color: var(--black);
	box-shadow: 5px 5px 0 var(--black);
}

.cta .btn-primary:hover {
	background: var(--white);
	box-shadow: 8px 8px 0 var(--black);
}

/* Auth Pages */
.auth-section {
	min-height: calc(100vh - 70px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
	position: relative;
	overflow: hidden;
}

.auth-section::before {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	background: var(--cyber-yellow);
	border: 3px solid var(--black);
	border-radius: 50%;
	top: 12%;
	left: 8%;
	animation: float1 5s ease-in-out infinite;
}

.auth-section::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	background: var(--hot-pink);
	border: 3px solid var(--black);
	bottom: 15%;
	right: 12%;
	animation: float2 6s ease-in-out infinite;
}

.auth-card {
	background: var(--white);
	padding: 44px;
	max-width: 400px;
	width: 100%;
	border: 3px solid var(--black);
	box-shadow: var(--shadow-lg);
	position: relative;
	z-index: 1;
}

.auth-card h1 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 6px;
	letter-spacing: -1px;
}

.auth-subtitle {
	color: var(--text-secondary);
	margin-bottom: 28px;
	font-size: 14px;
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group input {
	padding: 14px 16px;
	border: 3px solid var(--black);
	background: var(--white);
	color: var(--text-primary);
	font-size: 15px;
	font-family: inherit;
	transition: all 0.15s;
}

.form-group input:focus {
	outline: none;
	box-shadow: var(--shadow-color);
	transform: translate(-2px, -2px);
}

.form-group input::placeholder {
	color: #aaa;
}

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

.auth-footer {
	text-align: center;
	margin-top: 24px;
	color: var(--text-secondary);
	font-size: 14px;
}

.auth-footer a {
	color: var(--electric-blue);
	text-decoration: none;
	font-weight: 700;
	position: relative;
}

.auth-footer a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--electric-blue);
}

.auth-footer a:hover {
	color: var(--hot-pink);
}

.auth-footer a:hover::after {
	background: var(--hot-pink);
}

/* Link-style button */
.link-button {
	background: none;
	border: none;
	color: var(--electric-blue);
	text-decoration: none;
	font-weight: 700;
	font-size: inherit;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
}

.link-button:hover {
	color: var(--hot-pink);
	text-decoration: underline;
}

/* Alerts */
.alert {
	padding: 14px 18px;
	font-size: 14px;
	margin-bottom: 20px;
	border: 3px solid var(--black);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.alert::before {
	font-size: 18px;
}

.alert-error {
	background: var(--danger);
	color: var(--white);
}

.alert-error::before {
	content: '!';
	width: 24px;
	height: 24px;
	background: var(--white);
	color: var(--danger);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	border-radius: 50%;
	flex-shrink: 0;
}

.alert-success {
	background: var(--success);
	color: var(--white);
}

/* Verify */
.verify-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
}

.verify-icon.pending {
	background: var(--cyber-yellow);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.verify-icon.success {
	background: var(--lime);
}

.verify-icon.error {
	background: var(--danger);
	border-radius: 50%;
}

.verify-text {
	color: var(--text-secondary);
	text-align: center;
	margin-bottom: 16px;
	line-height: 1.6;
}

.verify-text.muted {
	font-size: 14px;
	color: var(--text-muted);
}

.verify-text a {
	color: var(--electric-blue);
	font-weight: 700;
	text-decoration: none;
}

.verify-text a:hover {
	text-decoration: underline;
}

/* Dashboard */
.dashboard {
	padding: 48px 0 80px;
}

.dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 16px;
}

.dashboard h1 {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -1.5px;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 20px;
}

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

.dashboard-card {
	background: var(--white);
	padding: 28px;
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
}

.dashboard-card h2 {
	font-size: 11px;
	font-weight: 800;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 3px dashed var(--light-gray);
	display: flex;
	align-items: center;
	gap: 10px;
}

.dashboard-card h2::before {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--electric-blue);
	border: 2px solid var(--black);
}

/* Room Info */
.room-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.room-url {
	background: var(--light-gray);
	padding: 18px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 14px;
	border: 3px solid var(--black);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.room-url-text {
	overflow: hidden;
	text-overflow: ellipsis;
}

.room-prefix {
	color: var(--text-muted);
}

.room-name {
	color: var(--electric-blue);
	font-weight: 700;
}

.room-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.room-empty {
	color: var(--text-muted);
	margin-bottom: 20px;
	padding: 20px;
	background: var(--light-gray);
	border: 2px dashed var(--gray);
	text-align: center;
}

/* Reserve Form */
.reserve-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.input-group {
	display: flex;
	align-items: stretch;
	background: var(--white);
	border: 3px solid var(--black);
	overflow: hidden;
	transition: all 0.15s;
}

.input-group:focus-within {
	box-shadow: var(--shadow-color);
	transform: translate(-2px, -2px);
}

.input-prefix {
	padding: 14px 12px;
	color: var(--text-muted);
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	white-space: nowrap;
	background: var(--light-gray);
	border-right: 3px solid var(--black);
	display: flex;
	align-items: center;
}

.input-group input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 14px;
	color: var(--text-primary);
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	min-width: 0;
}

.input-group input:focus {
	outline: none;
}

/* Plan Features */
.plan-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.plan-features li {
	color: var(--text-secondary);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	padding: 8px 0;
	border-bottom: 1px solid var(--light-gray);
}

.plan-features li:last-child {
	border-bottom: none;
}

.plan-features li::before {
	content: '';
	width: 18px;
	height: 18px;
	border: 2px solid var(--black);
	flex-shrink: 0;
}

.plan-features li:nth-child(1)::before {
	background: var(--lime);
	border-radius: 50%;
}

.plan-features li:nth-child(2)::before {
	background: var(--cyber-yellow);
}

.plan-features li:nth-child(3)::before {
	background: var(--hot-pink);
	border-radius: 50%;
}

.plan-features li:nth-child(4)::before {
	background: var(--electric-blue);
}

.plan-features li:nth-child(5)::before {
	background: var(--purple);
	border-radius: 50%;
}

/* Footer */
.footer {
	padding: 20px 0;
	text-align: center;
	font-size: 13px;
	border-top: 3px solid var(--black);
	background: var(--white);
	font-weight: 600;
	color: var(--text-secondary);
}

.footer span {
	color: var(--electric-blue);
}

.footer p {
	text-align: center;
}

.footer .copyright {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 12px;
}

.footer-logo {
	width: 15px;
	height: auto;
	vertical-align: middle;
	margin-right: 6px;
}

.footer a {
	color: var(--electric-blue);
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

/* Toast notification for better UX */
.toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--black);
	color: var(--white);
	padding: 14px 24px;
	font-weight: 700;
	font-size: 14px;
	border: 3px solid var(--cyber-yellow);
	box-shadow: 4px 4px 0 var(--cyber-yellow);
	z-index: 1000;
	opacity: 0;
	transition: all 0.3s ease;
}

.toast.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.toast.success {
	border-color: var(--lime);
	box-shadow: 4px 4px 0 var(--lime);
}

.toast.error {
	border-color: var(--danger);
	box-shadow: 4px 4px 0 var(--danger);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	z-index: 101;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--black);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive - Tablet */
@media (max-width: 900px) {
	.hero {
		padding: 50px 0 60px;
	}

	.hero h1 {
		font-size: 46px;
	}

	.container {
		padding: 0 20px;
	}
}

/* Responsive - Mobile */
@media (max-width: 640px) {

	/* Navbar Mobile */
	.navbar {
		padding: 10px 0;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--white);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 24px;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 100;
	}

	.nav-links.active {
		opacity: 1;
		visibility: visible;
	}

	.nav-links a:not(.btn) {
		font-size: 20px;
		padding: 12px 0;
	}

	.nav-links .btn {
		margin-top: 12px;
		padding: 16px 32px;
		font-size: 16px;
	}

	/* Logo Mobile */
	.logo-img {
		width: 48px;
		height: 48px;
	}

	.logo {
		font-size: 18px;
	}

	/* Hero Mobile */
	.hero {
		padding: 40px 0 50px;
	}

	.hero h1 {
		font-size: 32px;
		letter-spacing: -1.5px;
		line-height: 1.1;
	}

	.hero-subtitle {
		font-size: 15px;
		line-height: 1.5;
	}

	.hero-actions {
		flex-direction: column;
		gap: 12px;
	}

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

	.hero-note {
		flex-direction: column;
		gap: 8px;
	}

	/* Auth Card Mobile */
	.auth-card {
		padding: 24px 18px;
		box-shadow: var(--shadow-sm);
		margin: 0 8px;
	}

	.auth-card h1 {
		font-size: 24px;
	}

	.auth-subtitle {
		font-size: 14px;
	}

	/* Sections Mobile */
	.features h2,
	.cta h2 {
		font-size: 26px;
		letter-spacing: -1px;
	}

	.section-subtitle {
		font-size: 14px;
	}

	/* Cards Mobile */
	.feature-card {
		padding: 24px;
	}

	/* Orbs Mobile */
	.orb-1 {
		width: 80px;
		height: 80px;
	}

	.orb-2 {
		width: 50px;
		height: 50px;
	}

	.orb-3 {
		width: 35px;
		height: 35px;
	}

	.orb-4,
	.orb-5 {
		display: none;
	}

	/* Marquee Mobile */
	.marquee-container {
		display: none;
	}

	/* Buttons Mobile */
	.btn {
		padding: 12px 20px;
		font-size: 14px;
	}

	.btn-lg {
		padding: 14px 24px;
	}

	/* Footer Mobile */
	.footer {
		padding: 30px 0;
	}

	.footer-links {
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer p {
		font-size: 12px;
	}

	/* Form inputs Mobile */
	.form-group input,
	.form-group select {
		padding: 14px;
		font-size: 16px;
		/* Prevents zoom on iOS */
	}

	/* Turnstile container */
	.turnstile-container {
		transform: scale(0.9);
		transform-origin: center;
	}
}

/* Utility: Stagger animation for lists */
@keyframes staggerIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

.feature-card {
	animation: staggerIn 0.4s ease backwards;
}

.feature-card:nth-child(1) {
	animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
	animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
	animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
	animation-delay: 0.4s;
}

/* Loading spinner */
.spinner {
	width: 20px;
	height: 20px;
	border: 3px solid var(--white);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Room page styles will be inline */

/* ===========================================
   PRICING PAGE
   =========================================== */
.pricing-hero {
	padding: 70px 0 90px;
	background: var(--white);
	border-bottom: 3px solid var(--black);
}

.pricing-subtitle {
	color: var(--text-secondary);
	font-size: 17px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 800px;
	margin: 0 auto;
}

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

.pricing-card {
	background: var(--white);
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
	padding: 32px;
	display: flex;
	flex-direction: column;
	transition: all 0.15s;
}

.pricing-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 9px 9px 0 var(--black);
}

.pricing-card.featured {
	border-color: var(--electric-blue);
	box-shadow: 5px 5px 0 var(--electric-blue);
	position: relative;
}

.pricing-card.featured:hover {
	box-shadow: 9px 9px 0 var(--electric-blue);
}

.pricing-header {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 3px dashed var(--light-gray);
}

.pricing-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--lime);
	border: 2px solid var(--black);
	margin-bottom: 12px;
}

.pricing-badge.coming-soon {
	background: var(--cyber-yellow);
}

.pricing-card h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 8px;
}

.pricing-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.pricing-price .price {
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -2px;
}

.pricing-price .period {
	font-size: 15px;
	color: var(--text-muted);
	font-weight: 600;
}

.pricing-features {
	list-style: none;
	margin-bottom: 28px;
	flex: 1;
}

.pricing-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	font-size: 14px;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li svg {
	flex-shrink: 0;
	color: var(--lime);
	margin-top: 2px;
}

.pricing-features li.highlight {
	color: var(--text-primary);
}

.pricing-features li.highlight svg {
	color: var(--electric-blue);
}

.pricing-note {
	text-align: center;
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 12px;
}

.pricing-card .btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* FAQ Section */
.pricing-faq {
	padding: 80px 0;
	background: var(--off-white);
}

.pricing-faq h2 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -1.5px;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

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

.faq-item {
	background: var(--white);
	padding: 24px;
	border: 3px solid var(--black);
	box-shadow: var(--shadow-sm);
}

.faq-item h3 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.3px;
}

.faq-item p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-hero {
	padding: 70px 0 60px;
	background: var(--white);
	border-bottom: 3px solid var(--black);
}

.about-hero h1 {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -2.5px;
	line-height: 1.1;
}

.about-subtitle {
	color: var(--text-secondary);
	font-size: 17px;
	max-width: 600px;
	margin: 16px auto 0;
}

.about-story {
	padding: 70px 0;
	background: var(--off-white);
}

.about-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 30px;
	align-items: start;
}

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

.about-content h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 20px;
}

.about-content p {
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.about-card {
	background: var(--white);
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
	padding: 28px;
}

.about-card-icon {
	width: 60px;
	height: 60px;
	background: var(--lime);
	border: 3px solid var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.about-card-icon svg {
	stroke: var(--black);
}

.about-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.about-card p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Team Section */
.about-team {
	padding: 70px 0;
	background: var(--white);
	border-top: 3px solid var(--black);
	border-bottom: 3px solid var(--black);
}

.about-team h2 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -1.5px;
}

.team-grid {
	max-width: 600px;
	margin: 0 auto 30px;
}

.team-card {
	background: var(--off-white);
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
	padding: 32px;
}

.team-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.team-avatar {
	width: 140px;
	height: 140px;
	border: 3px solid var(--black);
	object-fit: cover;
}

.team-info h3 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 4px;
}

.team-role {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.team-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 16px;
}

.team-card p:last-of-type {
	margin-bottom: 20px;
}

.team-card a {
	color: var(--electric-blue);
	text-decoration: none;
	font-weight: 600;
}

.team-card a:hover {
	text-decoration: underline;
}

.team-stats {
	display: flex;
	gap: 20px;
	padding-top: 20px;
	border-top: 3px dashed var(--light-gray);
}

.team-stats .stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.team-stats .stat-number {
	font-size: 24px;
	font-weight: 800;
	color: var(--electric-blue);
}

.team-stats .stat-label {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Company Card */
.company-card {
	background: var(--white);
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
	padding: 32px;
	max-width: 800px;
	margin: 0 auto;
}

.company-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 16px;
	flex-wrap: wrap;
	gap: 8px;
}

.company-logo {
	height: 64px;
	width: auto;
}

.company-location {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 600;
}

.company-card p {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
}

.company-card a {
	color: var(--electric-blue);
	text-decoration: none;
	font-weight: 600;
}

.company-card a:hover {
	text-decoration: underline;
}

.company-clients {
	padding-top: 20px;
	border-top: 3px dashed var(--light-gray);
}

.company-clients span {
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 12px;
}

.company-clients ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.company-clients li {
	background: var(--light-gray);
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 600;
	border: 2px solid var(--black);
}

/* Values Section */
.about-values {
	padding: 70px 0;
	background: var(--off-white);
}

.about-values h2 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -1.5px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

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

.value-card {
	background: var(--white);
	border: 3px solid var(--black);
	box-shadow: var(--shadow-sm);
	padding: 28px;
}

.value-icon {
	width: 50px;
	height: 50px;
	border: 3px solid var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.value-icon svg {
	stroke: var(--black);
}

.value-card h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.3px;
}

.value-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* Contact Section */
.about-contact {
	padding: 70px 0;
	background: var(--white);
	border-top: 3px solid var(--black);
}

.contact-card {
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}

.contact-card h2 {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -1.5px;
	margin-bottom: 12px;
}

.contact-card p {
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.contact-links {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-links .btn {
	font-size: 13px;
}

/* ===========================================
   PRIVACY / LEGAL PAGES
   =========================================== */
.legal-hero {
	padding: 60px 0 50px;
	background: var(--white);
	border-bottom: 3px solid var(--black);
}

.legal-hero h1 {
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -2px;
}

.legal-subtitle {
	color: var(--text-muted);
	font-size: 14px;
	font-weight: 600;
}

.legal-content {
	padding: 60px 0;
}

.legal-card {
	max-width: 800px;
	margin: 0 auto;
}

.legal-summary {
	background: var(--lime);
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
	padding: 28px;
	margin-bottom: 40px;
}

.legal-summary h2 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 16px;
}

.legal-summary ul {
	list-style: none;
}

.legal-summary li {
	font-size: 14px;
	line-height: 1.6;
	padding: 8px 0;
	padding-left: 24px;
	position: relative;
	border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
}

.legal-summary li:last-child {
	border-bottom: none;
}

.legal-summary li::before {
	content: '✓';
	position: absolute;
	left: 0;
	font-weight: 800;
}

.legal-summary strong {
	color: var(--black);
}

.legal-article {
	background: var(--white);
	border: 3px solid var(--black);
	box-shadow: var(--shadow-md);
	padding: 40px;
}

.legal-article h2 {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 36px 0 16px;
	padding-top: 24px;
	border-top: 3px dashed var(--light-gray);
}

.legal-article h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.legal-article h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 24px 0 12px;
	color: var(--text-primary);
}

.legal-article p {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 16px;
}

.legal-article ul {
	list-style: none;
	margin-bottom: 16px;
}

.legal-article li {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	padding: 8px 0;
	padding-left: 20px;
	position: relative;
}

.legal-article li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--electric-blue);
	font-weight: 800;
}

.legal-article strong {
	color: var(--text-primary);
}

.legal-article a {
	color: var(--electric-blue);
	text-decoration: none;
	font-weight: 600;
}

.legal-article a:hover {
	text-decoration: underline;
}

/* ===========================================
   FOOTER LINKS
   =========================================== */
.footer-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
}

.footer-links a:hover {
	color: var(--electric-blue);
}