/* Labai website styles - dark neon theme */
:root {
	--bg: #0b0e10;
	--elev-1: #0f1316;
	--elev-2: #12171b;
	--text: #e8f1ec;
	--muted: #9cb3a7;
	--primary: #22c55e;
	--primary-700: #16a34a;
	--primary-glow: 0 0 24px rgba(34, 197, 94, 0.45), 0 0 64px rgba(34, 197, 94, 0.25);
	--card: rgba(255,255,255,0.04);
	--glass: rgba(255,255,255,0.06);
	--border: rgba(255,255,255,0.08);
	--radius-lg: 18px;
	--radius-md: 14px;
	--radius-sm: 10px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	background: radial-gradient(1000px 500px at 15% 5%, rgba(34,197,94,0.09), transparent 60%),
		radial-gradient(800px 400px at 85% 10%, rgba(34,197,94,0.07), transparent 60%),
		var(--bg);
	color: var(--text);
	accent-color: var(--primary);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	width: min(1120px, 90%);
	margin: 0 auto;
}

.section { padding: 96px 0; position: relative; }
.section-title { font-size: 40px; margin: 0 0 14px; letter-spacing: -0.02em; }
.section-sub { color: var(--muted); margin: 0 0 28px; }

/* Header */
.site-header {
	position: sticky; top: 0; z-index: 40;
	backdrop-filter: blur(8px);
	background: linear-gradient(to bottom, rgba(11,14,16,0.85), rgba(11,14,16,0.35) 60%, transparent);
	border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.2px; }
.brand-glyph { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--primary), #2dd4bf); display: grid; place-items: center; color: #04140a; font-weight: 800; box-shadow: var(--primary-glow); }
.brand-text { font-size: 18px; }

.nav-menu { display: flex; gap: 20px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--muted); padding: 8px 10px; border-radius: 10px; }
.nav-menu a:hover { color: var(--text); background: var(--card); }

.nav-toggle { display: none; background: transparent; border: 0; width: 40px; height: 40px; border-radius: 10px; }
.nav-toggle .bar { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px auto; border-radius: 2px; }

/* Hero */
.hero { padding-top: 72px; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.display { font-size: clamp(40px, 6vw, 60px); line-height: 1.05; margin: 0 0 16px; }
.lead { color: var(--muted); font-size: 18px; line-height: 1.7; margin: 0 0 22px; }

.cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border); color: var(--text); background: var(--elev-1); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: #062010; border: 1px solid rgba(0,0,0,0.2); box-shadow: var(--primary-glow); }
.btn-ghost { background: transparent; }
.btn-app { background: #0f1413; border: 1px solid var(--border); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02); }

.badges { display: flex; gap: 12px; padding: 0; margin: 16px 0 0; list-style: none; color: var(--muted); font-size: 14px; }
.badges li { padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); }

/* Phone visual */
.hero-visual { display: none; }
.phone { display: none; }

/* Features */
.features .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 20px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); min-height: 180px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(34,197,94,0.25); box-shadow: 0 24px 64px rgba(0,0,0,0.35), var(--primary-glow); }
.feature-card .icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(180deg, rgba(34,197,94,0.25), rgba(34,197,94,0.05)); border: 1px solid rgba(34,197,94,0.35); margin-bottom: 12px; }
.feature-card h3 { margin: 0 0 8px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); }

/* How */
.how .steps ol { margin: 0 0 18px 20px; line-height: 1.8; }
.how .pill { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); margin-right: 8px; margin-bottom: 8px; font-size: 13px; }
.glass { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 10px 40px rgba(0,0,0,0.35); backdrop-filter: blur(8px); }
.how-card { padding: 20px; min-height: 260px; }
.how-card .mock { margin-top: 14px; height: 180px; border-radius: 12px; border: 1px dashed rgba(255,255,255,0.12); background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.02)); }

/* Screens */
.screens .screen-row { display: none; }
.screens .screen { display: none; }
.caption { color: var(--muted); margin-top: 14px; }

/* Download */
.download .btn-app { padding: 14px 18px; border-radius: 12px; }
.download .download-card { padding: 20px; }
.download .download-card ul { margin: 12px 0 0 18px; color: var(--muted); }

/* Footer */
.site-footer { padding: 40px 0 60px; border-top: 1px solid var(--border); background: #0a0d0f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 20px; align-items: start; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-legal { color: var(--muted); }
.footer-legal a { color: var(--text); }
.muted { color: var(--muted); }

/* Utilities & media */
.grid-2 > * { min-width: 0; }

@media (max-width: 980px) {
	.grid-2 { grid-template-columns: 1fr; }
	.hero { padding-top: 32px; }
	.hero-visual { order: -1; }
	.features .feature-grid { grid-template-columns: 1fr 1fr; }
	.screens .screen-row { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.nav-toggle { display: inline-grid; place-items: center; }
	.nav-menu { position: absolute; right: 5%; top: 70px; width: 90%; background: #0b1012; border: 1px solid var(--border); border-radius: 14px; padding: 10px; display: none; flex-direction: column; gap: 6px; }
	.nav-menu.open { display: flex; }
	.nav-menu .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
	.section { padding: 72px 0; }
	.display { font-size: 36px; text-align: left; }
	.lead { font-size: 16px; }
	.cta-group { flex-direction: column; }
	.cta-group .btn { width: 100%; }
	.features .feature-grid { grid-template-columns: 1fr; }
	.screens .screen-row { grid-template-columns: 1fr; }
	.screens .screen { height: 360px; }
	.nav-menu { position: fixed; left: 5%; right: 5%; top: 76px; width: auto; }
}

@media (max-width: 400px) {
	.section { padding: 60px 0; }
	.brand-glyph { width: 28px; height: 28px; border-radius: 7px; }
	.display { font-size: 30px; }
	.phone { width: 240px; height: 500px; }
	.screens .screen { height: 320px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Legal pages */
.legal .display { margin-bottom: 6px; }
.legal-wrap { max-width: 900px; }
.legal-card { padding: 22px; }
.legal-card h2 { margin: 18px 0 8px; font-size: 20px; }
.legal-card p { color: var(--text); line-height: 1.75; }
.legal-card ul { margin: 8px 0 8px 18px; color: var(--muted); }
.footer-nav a:hover { color: var(--text); } 