﻿/* Gapestan Landing */

:root {
	--bg: #f3f5f8;
	--bg-card: rgba(255, 255, 255, 0.9);
	--bg-elevated: #ffffff;
	--glass: rgba(255, 255, 255, 0.72);
	--glass-border: rgba(15, 23, 42, 0.09);
	--text: #111827;
	--muted: #64748b;
	--emerald: #0f766e;
	--emerald-dark: #115e59;
	--emerald-glow: rgba(15, 118, 110, 0.22);
	--indigo: #2563eb;
	--purple: #64748b;
	--telegram: #229ed9;
	--bale: #2ecc71;
	--radius: 10px;
	--radius-sm: 7px;
	--phone-w: 280px;
	--font: 'Vazirmatn', Tahoma, sans-serif;
	--nav-h: 64px;
	--gp-primary: #0d9488;
	--gp-bg: #eef1f6;
	--gp-card: #ffffff;
	--gp-border: #e2e8f0;
	--gp-text: #0f172a;
	--gp-muted: #64748b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	font-size: 16px;
	scroll-padding-top: var(--nav-h);
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
	-webkit-text-size-adjust: 100%;
}

.page-top-anchor {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.75;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	direction: rtl;
	-webkit-font-smoothing: antialiased;
}

/* â”€â”€ Noise & background â”€â”€ */
.noise {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.02;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-shapes {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.grid-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 70%);
}

.shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: float 18s ease-in-out infinite;
}

.shape-1 { width: 480px; height: 480px; background: #14b8a6; top: -140px; left: -160px; opacity: 0.16; }
.shape-2 { width: 380px; height: 380px; background: #38bdf8; bottom: 12%; right: -120px; opacity: 0.12; animation-delay: -6s; }
.shape-3 { width: 300px; height: 300px; background: #94a3b8; top: 42%; left: 28%; opacity: 0.08; animation-delay: -12s; }
.shape-4 { width: 260px; height: 260px; background: #2dd4bf; bottom: 28%; left: -70px; opacity: 0.1; animation-delay: -9s; }

@keyframes float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -20px) scale(1.05); }
	66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* â”€â”€ Top nav â”€â”€ */
.top-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--nav-h);
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(20px) saturate(1.4);
	border-bottom: 1px solid var(--glass-border);
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.top-nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--text);
	font-weight: 800;
	font-size: 1.05rem;
}

.nav-brand img.nav-logo {
	width: 36px;
	height: 36px;
	object-fit: contain;
	filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.35));
}

.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 1.35rem;
	width: 100%;
}

.nav-links a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	transition: color 0.2s;
}

.nav-links a:hover { color: var(--emerald); }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	background: var(--glass);
	cursor: pointer;
	flex-shrink: 0;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
	overflow: hidden;
}

.nav-badge {
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.3rem 0.65rem;
	border-radius: var(--radius-sm);
	background: rgba(13, 148, 136, 0.1);
	color: var(--emerald-dark);
	border: 1px solid rgba(13, 148, 136, 0.28);
}

.nav-ver {
	font-style: normal;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--muted);
	margin-inline-start: 0.15rem;
	letter-spacing: 0.02em;
}

.nav-badge-soon {
	background: rgba(91, 106, 191, 0.12);
	color: #a5b4fc;
	border-color: rgba(91, 106, 191, 0.35);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex-shrink: 0;
}

.nav-demo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-sm);
	background: var(--emerald);
	color: #fff;
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.nav-demo:hover {
	background: var(--emerald-dark);
}

.nav-buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-sm);
	background: transparent;
	color: var(--text);
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 650;
	white-space: nowrap;
	border: 1px solid var(--glass-border);
	transition: border-color 0.2s, background 0.2s;
}

.nav-buy:hover {
	border-color: rgba(13, 148, 136, 0.35);
	background: rgba(13, 148, 136, 0.08);
}

.pill-soon {
	border-color: rgba(59, 130, 246, 0.3);
	background: rgba(59, 130, 246, 0.08);
	color: #1d4ed8;
}

.feature-grid--compact .grid-card {
	padding: 16px 18px;
}

.feature-grid--compact .grid-card--glass {
	padding: 0;
}

.feature-grid--compact .grid-card h3 {
	font-size: 0.92rem;
	margin-bottom: 4px;
}

.feature-grid--compact .grid-card p {
	font-size: 0.78rem;
	margin: 0;
}

.feature-grid--compact .grid-icon-wrap {
	font-size: 1.4rem;
	width: auto;
	height: auto;
	background: transparent;
	border: 0;
	margin-bottom: 8px;
}

/* â”€â”€ Hero â”€â”€ */
.hero {
	position: relative;
	z-index: 1;
	padding: calc(var(--nav-h) + 4.5rem) 1.5rem 2rem;
	text-align: center;
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: hidden;
}

.hero-brand-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.15rem;
}

.hero-mark {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: var(--radius);
	filter: drop-shadow(0 8px 24px rgba(234, 138, 58, 0.25));
}

.hero-brand-name {
	font-size: clamp(2.4rem, 7vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--text);
	margin: 0;
}

.hero-meta {
	margin-top: 1.25rem;
	font-size: 0.8rem;
	color: var(--muted);
	letter-spacing: 0.02em;
}

.hero-glow {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse, var(--emerald-glow) 0%, transparent 70%);
	opacity: 0.35;
	pointer-events: none;
	animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%, 100% { opacity: 0.25; transform: translateX(-50%) scale(1); }
	50% { opacity: 0.45; transform: translateX(-50%) scale(1.08); }
}

.hero-inner {
	width: 100%;
	max-width: min(880px, 100%);
	min-width: 0;
	margin: 0 auto;
	position: relative;
	padding-inline: 0.25rem;
}

.hero-badge-row {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	border: 1px solid var(--glass-border);
	background: var(--glass);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--muted);
}

.pill-live i {
	width: 7px; height: 7px;
	background: var(--emerald);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--emerald);
	animation: blink-live 1.5s infinite;
}

@keyframes blink-live {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.hero-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.75rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.logo-ring {
	display: inline-flex;
	padding: 5px;
	border-radius: 28px;
	background: linear-gradient(135deg, #fb923c, #f97316, #ea580c);
	animation: ring-pulse 4s ease-in-out infinite;
	box-shadow: 0 0 40px var(--emerald-glow);
}

@keyframes ring-pulse {
	0%, 100% { box-shadow: 0 0 30px var(--emerald-glow); }
	50% { box-shadow: 0 0 50px rgba(249, 115, 22, 0.65); }
}

.hero-icon {
	border-radius: 22px;
	display: block;
	width: min(88px, 24vw);
	max-width: 88px;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
}

.hero-wordmark {
	height: 76px;
	width: auto;
	max-width: min(160px, 48vw);
	max-height: 76px;
	object-fit: contain;
	filter: drop-shadow(0 4px 24px rgba(255, 255, 255, 0.12));
}

.hero-title {
	margin-bottom: 1rem;
}

.title-line {
	display: block;
	font-size: clamp(1.4rem, 3.6vw, 1.9rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.35;
	color: #1e293b;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
}

.title-gradient {
	display: none;
}

.hero-desc {
	color: var(--muted);
	font-size: 1rem;
	max-width: min(520px, 100%);
	width: 100%;
	margin: 0 auto 1.5rem;
	line-height: 1.8;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.hero-cta {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.35rem;
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
	background: var(--emerald);
	color: #fff;
	box-shadow: 0 10px 24px rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
	transform: none;
	background: var(--emerald-dark);
	box-shadow: 0 12px 28px rgba(13, 148, 136, 0.3);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--glass-border);
}

.btn-ghost:hover { background: var(--glass); }

.btn-buy {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--glass-border);
	box-shadow: none;
}

.btn-buy:hover {
	transform: none;
	background: var(--glass);
	box-shadow: none;
}

.hero-stats {
	display: none;
}

.stat {
	background: var(--bg-card);
	padding: 1rem 0.5rem;
	text-align: center;
}

.stat strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--emerald);
	line-height: 1.2;
}

.stat span {
	font-size: 0.72rem;
	color: var(--muted);
	font-weight: 500;
}

.hero-modes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.65rem;
	max-width: 880px;
	margin: 2rem auto 0;
	padding: 0 1.25rem;
	width: 100%;
}

.hero-mode-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	padding: 1rem 0.9rem;
	border-radius: var(--radius);
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, background 0.2s;
}

.hero-mode-card:hover {
	border-color: rgba(13, 148, 136, 0.35);
	background: rgba(255, 255, 255, 0.92);
	transform: none;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.hero-mode-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: var(--radius-sm);
	background: rgba(13, 148, 136, 0.12);
	color: var(--emerald);
	font-size: 0;
	margin-bottom: 0.25rem;
}

.hero-mode-icon svg {
	display: block;
}

.hero-mode-card strong {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text);
}

.hero-mode-card span:last-child {
	font-size: 0.72rem;
	color: var(--muted);
	text-align: start;
	line-height: 1.4;
}

.hero-mode-lock:hover {
	border-color: rgba(234, 138, 58, 0.35);
}

/* â”€â”€ Marquee â”€â”€ */
.marquee-wrap {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 1rem 0 2rem;
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee {
	display: flex;
	gap: 2rem;
	width: max-content;
	animation: marquee 35s linear infinite;
	white-space: nowrap;
}

.marquee span {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0.02em;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(50%); }
}

/* â”€â”€ Section heads â”€â”€ */
.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.5rem;
}

.section-tag {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--emerald);
	background: rgba(249, 115, 22, 0.1);
	border: 1px solid rgba(249, 115, 22, 0.28);
	margin-bottom: 0.85rem;
}

.section-head h2 {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 800;
	margin-bottom: 0.65rem;
	letter-spacing: -0.02em;
}

.section-head p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* â”€â”€ Showcase / Browser â”€â”€ */
.showcase {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	padding: 2rem 1.25rem 4rem;
}

.browser-wrap {
	position: relative;
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
	padding: 2px;
	box-shadow:
		0 24px 60px rgba(15, 23, 42, 0.12),
		0 0 40px rgba(13, 148, 136, 0.08);
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.browser-chrome {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 12px 16px;
	background: #1a1a24;
	border-radius: 18px 18px 0 0;
	border-bottom: 1px solid rgba(255,255,255,.06);
}

.browser-dots {
	display: flex;
	gap: 6px;
}

.browser-dots i {
	width: 11px; height: 11px;
	border-radius: 50%;
	background: #ff5f57;
}

.browser-dots i:nth-child(2) { background: #febc2e; }
.browser-dots i:nth-child(3) { background: #28c840; }

.browser-url {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	background: rgba(0,0,0,.35);
	border-radius: 8px;
	font-size: 0.72rem;
	color: var(--muted);
	font-family: ui-monospace, monospace;
	direction: ltr;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.browser-glow {
	position: absolute;
	inset: -1px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--emerald-glow), transparent 40%, rgba(99,102,241,.2));
	z-index: -1;
	opacity: 0.5;
	filter: blur(20px);
}

.panel-demo {
	border-radius: 0 0 18px 18px;
	overflow: hidden;
	background: var(--gp-bg);
	min-height: 480px;
}

/* Admin hero replica */
.gp-hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,.06);
}

.gp-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #134e4a 100%);
}

.gp-hero-grid {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(to bottom, #000 40%, transparent 100%);
}

.gp-hero-inner {
	position: relative;
	padding: 16px 20px;
}

.gp-topbar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}

.gp-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gp-logo-wrap {
	width: 42px; height: 42px;
	border-radius: 12px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gp-logo-wrap img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	border-radius: 8px;
}

.gp-brand-text { color: #fff; }
.gp-brand-text strong { display: block; font-size: 1rem; font-weight: 800; }
.gp-brand-text span { font-size: 0.68rem; opacity: 0.72; }

.gp-version {
	font-size: 0.62rem;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(255,255,255,.1);
	color: rgba(255,255,255,.92);
	border: 1px solid rgba(255,255,255,.12);
}

.gp-nav {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 4px;
	width: 100%;
	padding: 3px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 12px;
}

.gp-nav-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 6px;
	border: 1px solid transparent;
	border-radius: 9px;
	background: transparent;
	color: rgba(255,255,255,.72);
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	min-width: 0;
}

.gp-nav-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.gp-nav-item:hover {
	color: #fff;
	background: rgba(255,255,255,.1);
}

.gp-nav-item.is-active {
	color: var(--gp-text);
	background: #fff;
	box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.gp-nav-item.is-active svg { color: var(--gp-primary); }

/* App body */
.gp-app {
	padding: 16px 20px 24px;
	color: var(--gp-text);
}

.gp-page-head {
	background: var(--gp-card);
	border: 1px solid #edf2f7;
	border-radius: 14px;
	padding: 14px 18px;
	margin-bottom: 14px;
	box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 4px 16px rgba(15,23,42,.04);
}

.gp-page-head h1, .gp-page-title {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0 0 2px;
	color: var(--gp-text);
}

.gp-page-head p {
	margin: 0;
	font-size: 0.78rem;
	color: var(--gp-muted);
}

.gp-view { display: none; animation: viewIn 0.35s ease; }
.gp-view.is-active { display: block; }

@keyframes viewIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Inbox */
.gp-inbox {
	display: grid;
	grid-template-columns: 240px 1fr;
	background: var(--gp-card);
	border-radius: 14px;
	border: 1px solid #edf2f7;
	overflow: hidden;
	min-height: 340px;
	box-shadow: 0 0 0 1px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.06);
}

.gp-sidebar {
	background: #f8fafc;
	border-left: 1px solid var(--gp-border);
	padding: 10px 8px;
}

.gp-sidebar-head {
	font-size: 0.75rem;
	font-weight: 700;
	padding: 8px 10px;
	color: var(--gp-muted);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.badge {
	background: var(--gp-primary);
	color: #fff;
	font-size: 0.65rem;
	padding: 2px 7px;
	border-radius: 999px;
}

.gp-room {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.15s;
	margin-bottom: 2px;
}

.gp-room:hover { background: rgba(13,148,136,.06); }
.gp-room.active {
	background: rgba(13,148,136,.12);
	border: 1px solid rgba(13,148,136,.2);
}

.avatar {
	width: 34px; height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.av-2 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.av-3 { background: linear-gradient(135deg, #0d9488, #10b981); }

.gp-room-info { flex: 1; min-width: 0; }
.gp-room-info strong {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gp-room-info span {
	display: block;
	font-size: 0.68rem;
	color: var(--gp-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dot-online {
	display: inline-block;
	width: 6px; height: 6px;
	background: #10b981;
	border-radius: 50%;
	margin-right: 3px;
	vertical-align: middle;
}

.gp-room time {
	font-size: 0.62rem;
	color: var(--gp-muted);
	flex-shrink: 0;
}

.gp-chat {
	display: flex;
	flex-direction: column;
	background: #f5f6f8;
}

.gp-chat-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: #fff;
	border-bottom: 1px solid var(--gp-border);
}

.gp-chat-head strong { display: block; font-size: 0.82rem; }
.gp-chat-head small { font-size: 0.68rem; color: #10b981; font-weight: 600; }

.gp-messages {
	flex: 1;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 200px;
}

.msg { display: flex; flex-direction: column; gap: 3px; }
.msg-other { align-items: flex-start; }
.msg-mine { align-items: flex-end; }

.msg-bubble {
	max-width: 78%;
	padding: 8px 12px;
	border-radius: 14px;
	font-size: 0.78rem;
	line-height: 1.55;
}

.msg-other .msg-bubble {
	background: #fff;
	border-bottom-right-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.msg-mine .msg-bubble {
	background: rgba(16,185,129,.15);
	border-bottom-left-radius: 4px;
	color: var(--gp-text);
}

.msg-time { font-size: 0.6rem; color: var(--gp-muted); }

.msg-typing {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.68rem;
	color: var(--gp-muted);
}

.msg-typing span {
	width: 5px; height: 5px;
	background: var(--gp-primary);
	border-radius: 50%;
	animation: blink 1.2s infinite;
}

.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }

.gp-composer {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: #fff;
	border-top: 1px solid var(--gp-border);
}

.composer-btn {
	width: 32px; height: 32px;
	border: none;
	background: #f1f5f9;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
}

.composer-input {
	flex: 1;
	padding: 8px 12px;
	background: #eef0f3;
	border-radius: 10px;
	font-size: 0.75rem;
	color: var(--gp-muted);
}

.composer-send {
	padding: 8px 14px;
	background: var(--gp-primary);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	cursor: pointer;
}

/* Settings view */
.gp-settings-shell {
	display: grid;
	grid-template-columns: 180px 1fr;
	background: var(--gp-card);
	border-radius: 14px;
	border: 1px solid #edf2f7;
	overflow: hidden;
	min-height: 340px;
	box-shadow: 0 8px 24px rgba(15,23,42,.06);
}

.gp-settings-tabs {
	display: flex;
	flex-direction: column;
	padding: 10px 8px;
	background: #f8fafc;
	border-left: 1px solid var(--gp-border);
	gap: 2px;
}

.gp-stab {
	padding: 9px 12px;
	border: 1px solid transparent;
	background: transparent;
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--gp-muted);
	text-align: right;
	cursor: pointer;
	transition: all 0.15s;
}

.gp-stab:hover { background: rgba(13,148,136,.08); color: var(--gp-primary); }
.gp-stab.is-active {
	background: #fff;
	color: #0f766e;
	border-color: var(--gp-border);
	box-shadow: 0 1px 3px rgba(15,23,42,.06);
}

.gp-settings-body { padding: 20px 24px; }

.gp-panel-intro {
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--gp-border);
}

.gp-panel-intro h2 { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.gp-panel-intro p { font-size: 0.75rem; color: var(--gp-muted); margin: 0; }

.gp-switch-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 16px;
}

.gp-switch-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	background: #fff;
}

.gp-switch-card strong { display: block; font-size: 0.78rem; }
.gp-switch-card span { font-size: 0.65rem; color: var(--gp-muted); }

.sw {
	width: 36px; height: 20px;
	border-radius: 999px;
	background: #cbd5e1;
	position: relative;
	flex-shrink: 0;
}

.gp-switch-card.on .sw {
	background: var(--gp-primary);
}

.gp-switch-card.on .sw::after {
	content: '';
	position: absolute;
	width: 16px; height: 16px;
	background: #fff;
	border-radius: 50%;
	top: 2px; left: 2px;
}

.gp-color-field {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
}

.gp-color-field label { font-size: 0.78rem; font-weight: 600; flex: 1; }
.color-swatch {
	width: 28px; height: 28px;
	border-radius: 8px;
	background: var(--c);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
}
.gp-color-field code { font-size: 0.72rem; color: var(--gp-muted); direction: ltr; }

/* Rooms view */
.gp-rooms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.gp-room-card {
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: 14px;
	padding: 16px;
	transition: box-shadow 0.2s;
}

.gp-room-card:hover { box-shadow: 0 4px 16px rgba(15,23,42,.08); }
.gp-room-card.locked { border-color: rgba(99,102,241,.3); }

.gp-room-card-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.gp-room-card-head strong { font-size: 0.82rem; flex: 1; }
.room-icon { font-size: 1.1rem; }
.room-badge {
	font-size: 0.62rem;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(13,148,136,.12);
	color: #0f766e;
	font-weight: 700;
}

.gp-room-card p { font-size: 0.72rem; color: var(--gp-muted); margin: 0; }

/* Archive view */
.gp-archive-table {
	width: 100%;
	background: var(--gp-card);
	border-radius: 14px;
	border: 1px solid var(--gp-border);
	overflow: hidden;
}

.gp-archive-row {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	width: 100%;
	padding: 11px 16px;
	font-size: 0.75rem;
	border-bottom: 1px solid var(--gp-border);
}

.gp-archive-row.head {
	background: #f8fafc;
	font-weight: 700;
	color: var(--gp-muted);
	font-size: 0.68rem;
}

.gp-archive-row .act {
	color: var(--gp-primary);
	font-weight: 700;
	cursor: pointer;
}

/* Highlights v2.3 */
.highlights {
	padding: 3rem 0 2rem;
}

.highlight-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

.highlight-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px;
	background: var(--card, #fff);
	border: 1.5px solid var(--border, #e2e8f0);
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: border-color .2s ease, transform .2s ease;
}

.highlight-card:hover {
	border-color: #0d9488;
	transform: translateY(-2px);
}

.highlight-card .hl-num {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: .08em;
	color: #0d9488;
}

.highlight-card h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	color: var(--text, #0f172a);
}

.highlight-card p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.65;
	color: var(--muted, #64748b);
	flex: 1;
}

.highlight-card .hl-link {
	font-size: 0.72rem;
	font-weight: 700;
	color: #0d9488;
	margin-top: 4px;
}

.highlight-card--featured {
	border-color: rgba(13, 148, 136, .35);
	background: linear-gradient(135deg, rgba(13, 148, 136, .06) 0%, #fff 55%);
}

.grid-card--primary {
	border-color: rgba(13, 148, 136, .28);
}

.gp-dept-mock {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gp-dept-card-mock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 10px;
	border: 1px solid color-mix(in srgb, var(--dept) 30%, #e2e8f0);
	background: color-mix(in srgb, var(--dept) 10%, #fff);
	font-size: 0.78rem;
}

.gp-dept-card-mock strong { font-weight: 800; }
.gp-dept-card-mock span { color: #64748b; font-size: 0.7rem; }

.gp-inbox-filter-mock {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--gp-border, #e2e8f0);
}

.gp-inbox-filter-mock span {
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	font-size: 0.72rem;
	font-weight: 700;
	color: #64748b;
}

.gp-inbox-filter-mock span.on {
	background: rgba(13, 148, 136, .12);
	border-color: rgba(13, 148, 136, .3);
	color: #0f766e;
}

.gp-inbox-filter-mock span:not(.on) {
	border-color: color-mix(in srgb, var(--c) 35%, #e2e8f0);
	color: var(--c);
	background: color-mix(in srgb, var(--c) 8%, #fff);
}

.gp-cleanup-mock {
	margin-top: 10px;
	padding: 12px;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	background: #fafbfc;
}

.gp-cleanup-next-mock {
	margin: 10px 0 0;
	padding: 8px 10px;
	background: #fff;
	border: 1px solid var(--gp-border);
	border-radius: 8px;
	font-size: 0.65rem;
	color: var(--gp-muted);
}

@media (max-width: 768px) {
	.highlight-grid { grid-template-columns: 1fr; }
}

/* Reports view â€” flat editorial */
.gp-reports-page {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gp-reports-page-full {
	padding: 0 4px 8px;
}

.gp-page-head-compact {
	margin-bottom: 4px;
}

.gp-reports-intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: 12px;
}

.gp-reports-kicker {
	display: block;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gp-muted);
	margin-bottom: 3px;
}

.gp-reports-title {
	margin: 0 0 8px;
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--gp-text);
}

.gp-reports-range {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.gp-range-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 8px;
	background: #f8fafc;
	border: 1px solid var(--gp-border);
	border-radius: 7px;
}

.gp-range-tag small {
	font-size: 0.58rem;
	font-weight: 700;
	color: var(--gp-muted);
}

.gp-range-tag code {
	font-family: ui-monospace, monospace;
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--gp-text);
}

.gp-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-size: 0.62rem;
	font-weight: 700;
	color: #0f766e;
	background: rgba(13,148,136,.1);
	border: 1px solid rgba(13,148,136,.18);
	border-radius: 8px;
}

.gp-pulse-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #0d9488;
}

.gp-reports-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: 12px;
}

.gp-reports-dates {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 1;
}

.gp-reports-dates .gp-field {
	min-width: 130px;
}

.gp-reports-dates .gp-field label {
	display: block;
	font-size: 0.62rem;
	color: var(--gp-muted);
	margin-bottom: 4px;
	font-weight: 700;
}

.gp-input-mock-pro {
	background: #fff !important;
	border: 1.5px solid var(--gp-border) !important;
	box-shadow: inset 0 1px 2px rgba(15,23,42,.03);
	font-family: ui-monospace, monospace;
	font-weight: 700;
}

.gp-reports-btn {
	font-size: 0.72rem;
	padding: 8px 16px;
	white-space: nowrap;
}

.gp-reports-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.gp-r-stat {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 14px;
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: 10px;
}

.gp-r-stat::before {
	content: '';
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 0;
	width: 3px;
	border-radius: 3px 0 0 3px;
}

.gp-r-stat.teal::before { background: #0d9488; }
.gp-r-stat.blue::before { background: #2563eb; }
.gp-r-stat.green::before { background: #059669; }
.gp-r-stat.amber::before { background: #d97706; }

.gp-r-stat strong {
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--gp-text);
	letter-spacing: -.02em;
}

.gp-r-stat > span:last-child {
	font-size: 0.62rem;
	color: var(--gp-muted);
	line-height: 1.4;
}

.gp-field-search-mock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 10px;
	background: #fff;
	border: 1.5px solid var(--gp-border);
	border-radius: 9px;
	font-size: 0.62rem;
	color: #94a3b8;
	min-width: 150px;
}

.gp-field-search-mock i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: #f8fafc;
	color: var(--gp-muted);
	font-style: normal;
}

.gp-reports-card-head-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.gp-reports-panels {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 12px;
}

.gp-reports-card--sat { grid-column: 1 / -1; }

.gp-satisfaction-mock--inline { margin-top: 0; }

.gp-reports-card {
	background: var(--gp-card);
	border: 1px solid var(--gp-border);
	border-radius: 14px;
	padding: 14px 16px;
}

.gp-reports-card-head {
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--gp-border);
}

.gp-reports-card-head h3 {
	margin: 0 0 4px;
	font-size: 0.82rem;
	font-weight: 800;
}

.gp-reports-card-head p {
	margin: 0;
	font-size: 0.65rem;
	color: var(--gp-muted);
}

.gp-peak-chart {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gp-peak-row {
	display: grid;
	grid-template-columns: 44px 1fr 28px;
	gap: 10px;
	align-items: center;
	font-size: 0.72rem;
}

.gp-peak-row span {
	font-weight: 700;
	direction: ltr;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.gp-peak-row i {
	display: block;
	height: 8px;
	background: #e2e8f0;
	border-radius: 999px;
	position: relative;
	overflow: hidden;
}

.gp-peak-row i::after {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--w, 50%);
	background: #0d9488;
	border-radius: 999px;
}

.gp-peak-row em {
	font-style: normal;
	font-weight: 800;
	color: #0d9488;
	font-variant-numeric: tabular-nums;
}

.gp-reports-table {
	width: 100%;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	overflow: hidden;
}

.gp-reports-row {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 1fr);
	width: 100%;
	padding: 10px 14px;
	font-size: 0.72rem;
	border-bottom: 1px solid var(--gp-border);
	align-items: center;
}

.gp-reports-row.head span:nth-child(1),
.gp-reports-row > span:nth-child(1) { text-align: right; }
.gp-reports-row.head span:nth-child(2),
.gp-reports-row > span:nth-child(2) { text-align: center; font-variant-numeric: tabular-nums; }
.gp-reports-row.head span:nth-child(3),
.gp-reports-row > span:nth-child(3) { text-align: center; }

.gp-reports-row:last-child { border-bottom: 0; }

.gp-reports-row.head {
	background: #f8fafc;
	font-weight: 700;
	color: var(--gp-muted);
	font-size: 0.65rem;
}

.gp-reports-row .op {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
}

.gp-reports-row .av {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: rgba(13,148,136,.1);
	color: #0f766e;
	border: 1px solid rgba(13,148,136,.15);
	font-size: 0.62rem;
	font-weight: 800;
	font-style: normal;
}

.gp-reports-row .role {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 0.62rem;
	font-weight: 700;
}

.gp-reports-row .role.admin {
	background: #ecfdf5;
	color: #047857;
}

.reports-showcase {
	max-width: 1000px;
	margin: 0 auto;
	padding: 4rem 1.25rem;
}

.reports-browser-wrap {
	max-width: 920px;
	margin: 0 auto;
}

.panel-demo-reports {
	min-height: 0;
}

.panel-demo-reports--framed {
	max-height: 520px;
	overflow: hidden;
	position: relative;
}

.panel-demo-reports--framed::after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 56px;
	background: linear-gradient(to bottom, transparent, var(--gp-bg, #f1f5f9));
	pointer-events: none;
}

.gp-reports-panels--framed {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

@media (max-width: 900px) {
	.gp-reports-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gp-reports-panels { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.gp-feedback-table-mock--wide .gp-fb-row {
		grid-template-columns: 1fr 1fr;
	}
	.gp-feedback-table-mock--wide .gp-fb-row.head { display: none; }
	.gp-fb-row .gp-fb-date { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
	.gp-reports-stats { grid-template-columns: 1fr; }
	.gp-fb-row { grid-template-columns: 1fr 1fr; }
	.gp-fb-row.head { display: none; }
}

.showcase-hint {
	text-align: center;
	margin-top: 1.25rem;
	font-size: 0.82rem;
	color: var(--muted);
}

/* â”€â”€ Banner â”€â”€ */
.banner-strip {
	position: relative;
	z-index: 1;
	padding: 0 1.25rem;
	margin-bottom: 4rem;
}

.banner-inner {
	max-width: 920px;
	margin: 0 auto;
	padding: 1.25rem 2rem;
	border-radius: var(--radius);
	background: linear-gradient(90deg, #ea580c, #f97316, #fb923c);
	text-align: center;
	box-shadow: 0 12px 40px var(--emerald-glow);
	position: relative;
	overflow: hidden;
}

.banner-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.banner-inner p {
	font-size: 1.05rem;
	font-weight: 500;
	color: #fff;
	position: relative;
}

.banner-inner strong { font-weight: 800; }

/* â”€â”€ Features â”€â”€ */
.sections {
	position: relative;
	z-index: 1;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 1.25rem 4rem;
}

.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
	margin-bottom: 6rem;
}

.feature-row-reverse .feature-copy { order: 2; }
.feature-row-reverse .device-wrap { order: 1; }

.feature-num {
	display: block;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(180deg, rgba(16,185,129,.25), transparent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: -0.5rem;
}

.feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.feature-icon svg { width: 30px; height: 30px; }

.icon-emerald { background: linear-gradient(135deg, #ea580c, #f97316); color: #fff; }
.icon-indigo { background: linear-gradient(135deg, #4f46e5, var(--indigo)); color: #fff; }
.icon-purple { background: linear-gradient(135deg, #7c3aed, var(--purple)); color: #fff; }
.icon-bale { background: linear-gradient(135deg, #27ae60, var(--bale)); color: #fff; }
.icon-telegram { background: linear-gradient(135deg, #1a8cd8, var(--telegram)); color: #fff; }
.icon-ai {
	background: linear-gradient(135deg, var(--indigo), var(--purple));
	color: #fff;
	font-weight: 800;
	font-size: 1.2rem;
}
.icon-lightning { background: linear-gradient(135deg, #f59e0b, #eab308); color: #fff; }

.feature-copy h2 {
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 0.65rem;
	letter-spacing: -0.02em;
}

.feature-copy > p {
	color: var(--muted);
	margin-bottom: 1rem;
	font-size: 0.95rem;
	line-height: 1.8;
}

.feature-list { list-style: none; }

.feature-list li {
	position: relative;
	padding-right: 1.3rem;
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
	color: #475569;
}

.feature-list li::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0.55em;
	width: 6px; height: 6px;
	background: var(--emerald);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--emerald-glow);
}

.feature-preview-link {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.feature-preview-link .btn { margin: 0; }

.feature-copy {
	min-width: 0;
}

.gp-v13-showcase {
	padding-top: 1rem;
}

.gp-v13-grid {
	margin-top: 2rem;
	max-width: 960px;
	margin-inline: auto;
}

/* Device wraps */
.device-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
}

.device-glow {
	position: absolute;
	width: 200px; height: 200px;
	background: var(--emerald-glow);
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
}

.device-glow-indigo { background: rgba(99,102,241,.4); }
.device-glow-purple { background: rgba(139,92,246,.4); }
.device-glow-emerald { background: rgba(16, 185, 129, 0.35); }

.phone {
	width: var(--phone-w);
	position: relative;
	z-index: 1;
}

.phone-frame {
	background: linear-gradient(145deg, #2a2a38, #1a1a24);
	border-radius: 40px;
	padding: 10px;
	box-shadow:
		0 0 0 1px rgba(255,255,255,.08),
		0 30px 70px rgba(0,0,0,.55),
		inset 0 1px 0 rgba(255,255,255,.1);
}

.phone-notch {
	width: 90px; height: 24px;
	background: #0a0a0f;
	border-radius: 0 0 16px 16px;
	margin: 0 auto 6px;
}

/* Desktop site mock */
.desktop-site {
	position: relative;
	width: 100%;
	max-width: 380px;
	background: #1e293b;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(0,0,0,.5);
	border: 1px solid rgba(255,255,255,.08);
	z-index: 1;
}

.site-bar {
	display: flex;
	gap: 5px;
	padding: 10px 12px;
	background: #0f172a;
}

.site-bar i {
	width: 9px; height: 9px;
	border-radius: 50%;
	background: #475569;
}

.site-content { padding: 16px; min-height: 260px; position: relative; }

.site-nav-mock {
	height: 12px;
	width: 60%;
	background: rgba(255,255,255,.08);
	border-radius: 4px;
	margin-bottom: 20px;
}

.site-hero-mock {
	height: 80px;
	background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(99,102,241,.15));
	border-radius: 10px;
	margin-bottom: 16px;
}

.site-cards {
	display: flex;
	gap: 8px;
}

.site-cards i {
	flex: 1;
	height: 50px;
	background: rgba(255,255,255,.05);
	border-radius: 8px;
}

.float-btn {
	position: absolute;
	bottom: 16px;
	left: 16px;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px var(--emerald-glow);
	animation: float-btn 3s ease-in-out infinite;
	z-index: 2;
}

@keyframes float-btn {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.float-panel {
	position: absolute;
	bottom: 78px;
	left: 14px;
	right: 14px;
	background: #0d0d14;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0,0,0,.5);
	border: 1px solid rgba(255,255,255,.08);
	z-index: 2;
}

/* Mock internals (dark phone) */
.mock {
	background: #0d0d14;
	border-radius: 28px;
	overflow: hidden;
	min-height: 380px;
	font-size: 11px;
}

.mock-header {
	padding: 14px 16px;
	color: #fff;
	font-weight: 700;
}

.mock-header small {
	display: block;
	font-weight: 400;
	opacity: 0.85;
	font-size: 10px;
	margin-top: 2px;
}

.mock-header-emerald { background: linear-gradient(135deg, #ea580c, #f97316); }
.mock-header-indigo { background: linear-gradient(135deg, #4f46e5, var(--indigo)); }
.mock-header-ai { background: linear-gradient(135deg, var(--indigo), var(--purple)); }

.ai-spark { float: left; animation: sparkle 2s infinite; }
@keyframes sparkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.mock-body {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 200px;
}

.mock-body.mini { min-height: 90px; }

.bubble {
	max-width: 85%;
	padding: 8px 12px;
	border-radius: 14px;
	line-height: 1.5;
}

.bubble-other {
	align-self: flex-start;
	background: #1e293b;
	border-bottom-right-radius: 4px;
}

.bubble-mine {
	align-self: flex-end;
	background: var(--emerald);
	color: #fff;
	border-bottom-left-radius: 4px;
}

.bubble-ai {
	align-self: flex-start;
	background: linear-gradient(135deg, rgba(99,102,241,.25), rgba(139,92,246,.2));
	border: 1px solid rgba(139,92,246,.35);
}

.ai-label {
	display: inline-block;
	font-size: 9px;
	font-weight: 800;
	color: var(--purple);
	margin-left: 6px;
}

.bubble.sm { font-size: 10px; padding: 6px 10px; }
.bubble.reply { margin-top: 8px; }

.typing-indicator {
	font-size: 10px;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 4px;
}

.typing-indicator span {
	width: 4px; height: 4px;
	background: var(--emerald);
	border-radius: 50%;
	animation: blink 1.2s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
	0%, 80%, 100% { opacity: 0.3; }
	40% { opacity: 1; }
}

.mock-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-top: 1px solid rgba(255,255,255,.06);
	color: #64748b;
	font-size: 10px;
}

.send-dot {
	width: 28px; height: 28px;
	border-radius: 50%;
	background: var(--emerald);
	opacity: 0.8;
}

.mock-messenger { padding: 14px; min-height: 320px; }

.msg-notif {
	background: #1e293b;
	border-radius: 12px;
	padding: 12px;
	margin-bottom: 12px;
	border-right: 3px solid var(--bale);
}

.msg-notif.tg { border-right-color: var(--telegram); }
.msg-notif strong { display: block; margin-bottom: 6px; font-size: 11px; }
.msg-notif p { color: var(--muted); line-height: 1.6; }

.inline-btns { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

.inline-btns span {
	padding: 4px 10px;
	border-radius: 8px;
	background: rgba(16,185,129,.2);
	color: var(--emerald);
	font-size: 9px;
}

.sent-ok { font-size: 10px; color: var(--emerald); margin-top: 8px; }

.room-list-m { padding: 8px 12px; }

.room-list-m .r {
	display: flex;
	justify-content: space-between;
	padding: 8px 10px;
	border-radius: 8px;
	margin-bottom: 4px;
	font-size: 10px;
}

.room-list-m .r.on { background: rgba(99,102,241,.15); }

.bubble.media {
	background: #1e293b;
	color: #94a3b8;
	align-self: flex-end;
}

.bubble.media-img {
	width: 120px; height: 70px;
	align-self: flex-end;
	border-radius: 12px;
	background: linear-gradient(135deg, #334155, #475569);
}

.reactions { text-align: center; font-size: 14px; margin-top: 8px; }

/* Integrations block */
.integrations-block {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 6rem;
}

.int-card {
	position: relative;
	padding: 1.75rem;
	border-radius: var(--radius);
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	overflow: hidden;
	transition: transform 0.25s, border-color 0.25s;
}

.int-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
}

.int-bale::before { background: linear-gradient(90deg, var(--bale), #27ae60); }
.int-tg::before { background: linear-gradient(90deg, var(--telegram), #1a8cd8); }
.int-ai::before { background: linear-gradient(90deg, var(--indigo), var(--purple)); }

.int-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255,255,255,.12);
}

.int-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.int-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.int-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* â”€â”€ Grid â”€â”€ */
.grid-section {
	position: relative;
	z-index: 1;
	max-width: 1040px;
	margin: 0 auto 4rem;
	padding: 0 1.25rem;
}

.grid-title { margin-bottom: 0; }

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.grid-card {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
	overflow: hidden;
}

.grid-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 100% 0%, rgba(16,185,129,.08), transparent 50%);
	opacity: 0;
	transition: opacity 0.25s;
}

.grid-card:hover {
	transform: translateY(-4px);
	border-color: rgba(16,185,129,.2);
	box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

.grid-card:hover::after { opacity: 1; }

.grid-icon-wrap {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: rgba(16,185,129,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--emerald);
}

.grid-icon-wrap svg { width: 22px; height: 22px; }

.grid-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; }
.grid-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; position: relative; }

.grid-card code {
	font-size: 0.72rem;
	background: rgba(255,255,255,.06);
	padding: 2px 6px;
	border-radius: 4px;
	color: var(--emerald);
	direction: ltr;
}

/* â”€â”€ Specs â”€â”€ */
.specs {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto 3rem;
	padding: 0 1.25rem;
}

.specs-table {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--glass-border);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--glass-border);
}

.specs-table div {
	background: var(--bg-card);
	padding: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: center;
}

.specs-table span { font-size: 0.78rem; color: var(--muted); }
.specs-table strong { color: var(--emerald); font-size: 0.95rem; font-weight: 800; }

/* â”€â”€ CTA â”€â”€ */
.cta-section {
	position: relative;
	z-index: 1;
	padding: 0 1.25rem 3rem;
}

.cta-inner {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	padding: 2rem 1.5rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--glass-border);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.cta-inner h2 {
	font-size: 1.25rem;
	font-weight: 750;
	margin-bottom: 0.5rem;
}

.cta-inner p {
	color: var(--muted);
	margin-bottom: 1rem;
	font-size: 0.92rem;
}

.cta-badges {
	display: none;
}

/* â”€â”€ Footer â”€â”€ */
.footer-strip {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem 1.5rem 3.5rem;
	border-top: 1px solid var(--glass-border);
}

.footer-logo {
	margin-bottom: 0.75rem;
	width: 56px;
	height: auto;
	object-fit: contain;
	opacity: 0.95;
	filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.25));
}

.footer-strip p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }

.footer-demo,
.footer-buy {
	margin: 0 0.35rem 1rem;
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
}

.back-top {
	display: inline-block;
	padding: 0.65rem 1.35rem;
	border-radius: 999px;
	border: 1px solid rgba(249, 115, 22, 0.35);
	color: var(--emerald);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	transition: background 0.2s, transform 0.2s;
}

.back-top:hover {
	background: rgba(249, 115, 22, 0.1);
	transform: translateY(-2px);
}

/* â•â•â• Rich phone mockups â•â•â• */
.device-wrap-duo,
.device-wrap-triple {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.phone-back { transform: scale(0.92); opacity: 0.92; }
.phone-front { z-index: 2; }
.phone-mini { width: 220px; }
.phone-mini .phone-frame { padding: 8px; border-radius: 32px; }

.phone-frame-pro {
	box-shadow:
		0 0 0 1px rgba(255,255,255,.1),
		0 40px 80px rgba(0,0,0,.6),
		0 0 60px rgba(249, 115, 22, 0.2);
}

.phone-label {
	display: block;
	text-align: center;
	font-size: 0.72rem;
	color: var(--muted);
	margin-top: 0.75rem;
	font-weight: 600;
}

/* Message rows with avatars */
.msg-row {
	display: flex;
	gap: 8px;
	align-items: flex-end;
	margin-bottom: 10px;
}

.msg-row-mine {
	justify-content: flex-end;
}

.msg-row-mine .msg-col {
	align-items: flex-end;
}

.msg-col {
	display: flex;
	flex-direction: column;
	gap: 3px;
	max-width: 82%;
}

.msg-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid rgba(255,255,255,.1);
}

.msg-avatar.sm { width: 22px; height: 22px; }

.msg-sender {
	font-size: 9px;
	font-weight: 700;
	color: var(--emerald);
	margin-bottom: 2px;
}

.msg-sender.ai-sender { color: var(--purple); }

.msg-time {
	font-size: 8px;
	color: #64748b;
}

.msg-time.muted { font-style: italic; }

.mock-scroll {
	overflow: hidden;
	max-height: 280px;
	min-height: 240px;
}

.mock-rich .mock-scroll { max-height: 300px; }

/* Fullscreen mobile mock */
.mock-fullscreen {
	min-height: 420px;
	display: flex;
	flex-direction: column;
	background: #0a0a10;
	border-radius: 28px;
}

.fs-bar {
	display: flex;
	justify-content: space-between;
	padding: 6px 16px 2px;
	font-size: 9px;
	color: var(--muted);
	background: #0a0a10;
}

.fs-icons { letter-spacing: 2px; }

.fs-header {
	display: flex !important;
	align-items: center;
	gap: 10px;
	padding: 10px 12px !important;
	flex-shrink: 0;
}

.fs-header .mock-header-icon { border-radius: 6px; }

.fs-back, .fs-menu {
	background: rgba(255,255,255,.1);
	border: none;
	color: #fff;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	flex-shrink: 0;
}

.fs-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255,255,255,.2);
}

.fs-avatar.round-icon { border-radius: 10px; object-fit: contain; background: #fff; padding: 2px; }

.fs-head-text { flex: 1; min-width: 0; }
.fs-head-text span { display: block; font-weight: 700; font-size: 11px; }
.fs-head-text small { font-size: 9px; opacity: 0.85; }

.fs-body {
	flex: 1;
	background: linear-gradient(180deg, #0e1018, #0a0a10);
}

.date-sep {
	text-align: center;
	font-size: 8px;
	color: var(--muted);
	margin: 8px 0;
	padding: 3px 10px;
	background: rgba(255,255,255,.05);
	border-radius: 999px;
	align-self: center;
}

.mock-composer-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	background: #12121a;
	border-top: 1px solid rgba(255,255,255,.06);
	flex-shrink: 0;
}

.mock-composer-bar.sm { padding: 6px 8px; }

.composer-ico {
	width: 28px;
	height: 28px;
	border: none;
	background: rgba(255,255,255,.06);
	border-radius: 8px;
	font-size: 12px;
	cursor: pointer;
	flex-shrink: 0;
}

.composer-ph {
	flex: 1;
	font-size: 9px;
	color: #64748b;
	padding: 6px 10px;
	background: rgba(255,255,255,.04);
	border-radius: 999px;
}

.composer-send-btn {
	width: 32px;
	height: 32px;
	border: none;
	background: var(--emerald);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	cursor: pointer;
	flex-shrink: 0;
	box-shadow: 0 4px 12px var(--emerald-glow);
}

.typing-bubble {
	display: flex;
	gap: 4px;
	padding: 10px 14px !important;
	align-items: center;
}

.typing-bubble span {
	width: 5px;
	height: 5px;
	background: var(--muted);
	border-radius: 50%;
	animation: blink 1.2s infinite;
}

.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }

.mock-header.compact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px !important;
}

.pop-close {
	background: rgba(255,255,255,.15);
	border: none;
	color: #fff;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
}

/* Site mini + float */
.mock-site-mini {
	min-height: 300px;
	background: linear-gradient(180deg, #1e293b, #0f172a);
	border-radius: 24px;
	position: relative;
	padding: 12px;
}

.site-mini-nav {
	height: 10px;
	width: 50%;
	background: rgba(255,255,255,.08);
	border-radius: 4px;
	margin-bottom: 16px;
}

.site-mini-hero {
	height: 70px;
	background: linear-gradient(135deg, rgba(249,115,22,.2), rgba(99,102,241,.12));
	border-radius: 8px;
	margin-bottom: 12px;
}

.float-btn-mini {
	position: absolute;
	bottom: 14px;
	left: 14px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ea580c, #f97316);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px var(--emerald-glow);
}

.float-btn-mini img { border-radius: 8px; }

.mock-popup { min-height: 280px; border-radius: 24px; overflow: hidden; }

/* Bale app mock */
.mock-bale-app,
.mock-telegram-app {
	min-height: 380px;
	background: #17212b;
	border-radius: 28px;
}

.bale-app-head,
.tg-app-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	background: #1c2733;
	border-bottom: 1px solid rgba(255,255,255,.06);
	font-weight: 700;
	font-size: 12px;
	color: #fff;
}

.bale-app-head img { border-radius: 8px; }

.bale-notif {
	border-right: 3px solid #2ecc71 !important;
}

.notif-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.notif-head img { border-radius: 6px; }

.bale-reply .bubble { background: #2ecc71 !important; }

.tg-bubble { background: #229ed9 !important; }

.sent-ok {
	font-size: 9px;
	color: var(--emerald);
	padding: 8px 12px;
	text-align: center;
}

/* AI chat */
.msg-row-ai {
	align-items: flex-start;
}

.ai-avatar {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--indigo), var(--purple));
	color: #fff;
	font-size: 8px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Room tabs */
.room-tabs {
	display: flex;
	gap: 4px;
	padding: 6px 10px;
	background: rgba(0,0,0,.2);
	border-bottom: 1px solid rgba(255,255,255,.05);
}

.room-tabs span {
	font-size: 9px;
	padding: 4px 10px;
	border-radius: 999px;
	color: var(--muted);
}

.room-tabs span.on {
	background: rgba(99,102,241,.25);
	color: #a5b4fc;
}

.inline-react { margin-top: 4px; font-size: 11px; }
.center-react { text-align: center; padding: 8px; font-size: 14px; }

/* Media rich */
.mock-media-rich { min-height: 360px; border-radius: 28px; overflow: hidden; }

.mock-photo {
	width: 130px !important;
	height: 80px !important;
	background:
		linear-gradient(135deg, rgba(249,115,22,.3), rgba(99,102,241,.2)),
		url('https://picsum.photos/seed/gapeston/260/160') center/cover !important;
	border-radius: 12px !important;
}

.bubble.media small {
	display: block;
	font-size: 8px;
	opacity: 0.7;
	margin-top: 2px;
}

.voice-bubble {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 120px;
}

.voice-wave {
	display: inline-block;
	width: 60px;
	height: 16px;
	background: repeating-linear-gradient(90deg, var(--emerald) 0 2px, transparent 2px 4px);
	opacity: 0.6;
	border-radius: 2px;
}

/* Integrations icons */
.int-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 12px;
}

.int-icon-svg {
	display: flex;
	align-items: center;
	justify-content: center;
}

.int-icon-ai {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--indigo), var(--purple));
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-img {
	background: #fff !important;
	padding: 8px;
}

.icon-img img { object-fit: contain; }

/* Admin avatar images */
.avatar-img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid rgba(13,148,136,.2);
}

.mock-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mock-header > div span { display: block; }

.feature-copy code {
	font-size: 0.8rem;
	background: rgba(249, 115, 22, 0.12);
	padding: 2px 6px;
	border-radius: 4px;
	color: var(--emerald);
	direction: ltr;
}

/* â•â•â• Settings showcase â€” full detail â•â•â• */
.settings-showcase {
	position: relative;
	z-index: 1;
	max-width: 1140px;
	margin: 0 auto 5rem;
	padding: 0 1.25rem;
}

.browser-wrap-tall .panel-demo-settings {
	background: var(--gp-bg);
	min-height: 560px;
}

.gp-settings-page-head {
	background: var(--gp-card);
	border: 1px solid #edf2f7;
	border-radius: 14px;
	padding: 16px 22px;
	margin: 16px 20px 0;
	box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.gp-settings-page-head h1 {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--gp-text);
	margin: 0 0 4px;
}

.gp-settings-page-head p {
	margin: 0;
	font-size: 0.78rem;
	color: var(--gp-muted);
}

.gp-settings-full {
	margin: 14px 20px 20px;
	min-height: 480px;
}

.gp-settings-tabs-full .gp-stab {
	font-size: 0.72rem;
	padding: 10px 12px;
}

.stab-ico {
	display: inline-flex;
	width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	flex-shrink: 0;
}

.stab-ico-img img { border-radius: 4px; }

.gp-settings-body-full {
	padding: 22px 26px;
	max-height: 520px;
	overflow-y: auto;
}

.gp-settings-body-full::-webkit-scrollbar { width: 6px; }
.gp-settings-body-full::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }

.gp-stab-panel { display: none; animation: viewIn 0.3s ease; }
.gp-stab-panel.is-active { display: block; }

.gp-settings-scroll { max-height: 340px; overflow-y: auto; }

.gp-settings-compact { min-height: 380px; }

.gp-settings-more {
	text-align: center;
	margin-top: 12px;
	font-size: 0.78rem;
}

.gp-settings-more a {
	color: var(--gp-primary);
	font-weight: 700;
	text-decoration: none;
}

.gp-settings-more a:hover { text-decoration: underline; }

.gp-field { margin-bottom: 12px; }
.gp-field-wide { grid-column: 1 / -1; }

.gp-field label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--gp-text);
	margin-bottom: 4px;
}

.gp-field-hint {
	font-size: 0.65rem;
	color: var(--gp-muted);
	margin: 0 0 6px;
	line-height: 1.5;
}

.gp-select-val,
.gp-input-mock {
	padding: 9px 12px;
	background: #fff;
	border: 1.5px solid var(--gp-border);
	border-radius: 10px;
	font-size: 0.72rem;
	color: var(--gp-text);
	box-shadow: inset 0 1px 2px rgba(15,23,42,.03);
}

.gp-preset-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.gp-preset-chip {
	padding: 6px 12px;
	border-radius: 8px;
	border: 1.5px solid var(--gp-border);
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--gp-muted);
	background: #fff;
}

.gp-preset-chip.on {
	border-color: #0d9488;
	color: #0f766e;
	background: rgba(13,148,136,.08);
}

.gp-color-chip-mock {
	padding: 8px 10px;
	border-radius: 8px;
	border: 1.5px solid var(--gp-border);
	font-size: 0.68rem;
	font-family: ui-monospace, monospace;
	background: #fff;
	position: relative;
	padding-right: 28px;
}

.gp-color-chip-mock::before {
	content: '';
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border-radius: 4px;
	background: var(--c, #0d9488);
}

.gp-icon-pick-mock {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 6px 8px;
	border: 1.5px solid var(--gp-border);
	border-radius: 10px;
	background: #fff;
}

.gp-icon-pick-mock span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	border: 1px solid var(--gp-border);
	font-size: 0.95rem;
	line-height: 1;
	background: #f8fafc;
}

.gp-icon-pick-mock span.on {
	border-color: #0d9488;
	background: #ecfdf5;
	box-shadow: 0 0 0 1px #0d9488;
}

.gp-icon-pick-mock span.custom {
	font-size: 0.78rem;
	font-weight: 800;
	color: #64748b;
}

.gp-textarea-mock {
	padding: 10px 12px;
	background: #f8fafc;
	border: 1px solid var(--gp-border);
	border-radius: 10px;
	font-size: 0.72rem;
	color: var(--gp-muted);
	line-height: 1.6;
	min-height: 48px;
}

.gp-textarea-mock.tall { min-height: 72px; }

.gp-section-label {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gp-primary);
	margin: 14px 0 8px;
	padding-bottom: 6px;
	border-bottom: 2px solid rgba(13,148,136,.12);
}

.gp-switch-grid-3 { grid-template-columns: repeat(3, 1fr); }

.gp-switch-card.wide { grid-column: 1 / -1; }

.gp-switch-card.sm { padding: 10px 12px; }
.gp-switch-card.sm strong { font-size: 0.72rem; }

.gp-switch-grid.compact { grid-template-columns: 1fr 1fr; gap: 8px; }

.gp-tag-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.gp-tag-grid span {
	font-size: 0.65rem;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f1f5f9;
	color: var(--gp-muted);
	border: 1px solid var(--gp-border);
}

.gp-tag-grid span.on {
	background: rgba(13,148,136,.12);
	color: #0f766e;
	border-color: rgba(13,148,136,.25);
}

.gp-feature-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gp-fcol h3 {
	font-size: 0.78rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--gp-text);
}

.gp-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 12px;
}

.gp-field-row-3 { grid-template-columns: repeat(3, 1fr); }
.gp-field-row-4 { grid-template-columns: repeat(2, 1fr); }

.gp-color-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid var(--gp-border);
	border-radius: 10px;
	font-size: 0.72rem;
}

.gp-color-row i {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	flex-shrink: 0;
}

.gp-color-row code { font-size: 0.68rem; color: var(--gp-muted); direction: ltr; }

.gp-btn-secondary,
.gp-btn-ghost,
.gp-btn-primary {
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 10px;
	cursor: pointer;
	border: 1px solid var(--gp-border);
	background: #fff;
	color: var(--gp-text);
	margin-top: 8px;
}

.gp-btn-primary {
	background: var(--gp-primary);
	color: #fff;
	border-color: var(--gp-primary);
}

.gp-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.gp-status-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0;
}

.gp-badge {
	font-size: 0.65rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f1f5f9;
	color: var(--gp-muted);
	border: 1px solid var(--gp-border);
}

.gp-badge.on {
	background: #ecfdf5;
	color: #047857;
	border-color: #a7f3d0;
}

.gp-setup-guide {
	background: #f8fafc;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 14px;
}

.gp-setup-guide h3 { font-size: 0.78rem; margin-bottom: 8px; }
.gp-setup-guide ol {
	margin: 0;
	padding-right: 18px;
	font-size: 0.68rem;
	color: var(--gp-muted);
	line-height: 1.7;
}

.gp-webhook-card,
.gp-tip-card {
	background: #f8fafc;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	padding: 14px 16px;
	margin-top: 14px;
}

.gp-webhook-card strong,
.gp-tip-card strong { display: block; font-size: 0.75rem; margin-bottom: 8px; }

.gp-webhook-card code,
.gp-tip-card code {
	display: block;
	font-size: 0.62rem;
	background: #fff;
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid var(--gp-border);
	margin-bottom: 8px;
	word-break: break-all;
}

.gp-tip-card ul {
	margin: 0;
	padding-right: 18px;
	font-size: 0.68rem;
	color: var(--gp-muted);
	line-height: 1.8;
}

.gp-shortcodes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.gp-shortcodes code {
	font-size: 0.65rem;
	padding: 4px 8px;
	background: #ecfdf5;
	color: #047857;
	border-radius: 6px;
}

.gp-hint { font-size: 0.65rem; color: var(--gp-muted); }

.gp-shortcode-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.gp-sc-card {
	background: #fff;
	border: 1px solid var(--gp-border);
	border-radius: 10px;
	padding: 12px;
}

.gp-sc-card code {
	display: block;
	font-size: 0.68rem;
	color: var(--gp-primary);
	margin-bottom: 4px;
}

.gp-sc-card p { font-size: 0.65rem; color: var(--gp-muted); margin: 0; }

/* Widget tab layout */
.gp-widget-layout {
	display: grid;
	grid-template-columns: 1fr 200px;
	gap: 16px;
}

.gp-color-group h4 {
	font-size: 0.72rem;
	margin-bottom: 8px;
	color: var(--gp-text);
}

.gp-color-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gp-color-chips span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.65rem;
	color: var(--gp-muted);
}

.gp-color-chips i {
	width: 18px;
	height: 18px;
	border-radius: 4px;
}

.gp-widget-preview {
	background: #f8fafc;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	padding: 12px;
}

.preview-label {
	display: block;
	font-size: 0.62rem;
	font-weight: 700;
	color: var(--gp-muted);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.preview-mock-site {
	position: relative;
	background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
	border-radius: 10px;
	min-height: 160px;
	padding: 12px;
}

.preview-panel {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,.1);
	max-width: 140px;
}

.preview-panel-head {
	background: #f97316;
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	padding: 8px 10px;
}

.preview-panel-body {
	padding: 20px 10px;
	font-size: 0.6rem;
	color: var(--gp-muted);
	text-align: center;
}

.preview-float {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f97316;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(249,115,22,.4);
	cursor: pointer;
}

.preview-float img { border-radius: 8px; }

/* â”€â”€ Tilt & reveal â”€â”€ */
.tilt-card {
	transform-style: preserve-3d;
	transition: transform 0.1s ease-out;
	will-change: transform;
}

.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-stagger > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
	opacity: 1;
	transform: translateY(0);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 960px) {
	.top-nav-inner {
		grid-template-columns: 1fr auto auto;
		padding: 0 1rem;
		gap: 0.65rem;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-links {
		display: none;
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		z-index: 99;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		max-height: calc(100dvh - var(--nav-h));
		overflow-y: auto;
		padding: 0.75rem 1rem 1.25rem;
		background: rgba(3, 3, 5, 0.96);
		backdrop-filter: blur(16px);
		border-bottom: 1px solid var(--glass-border);
		-webkit-overflow-scrolling: touch;
	}

	.nav-links.is-open {
		display: flex;
	}

	.nav-links a {
		padding: 0.75rem 0.85rem;
		border-radius: 10px;
		font-size: 0.92rem;
	}

	.nav-links a:hover {
		background: rgba(249, 115, 22, 0.08);
	}

	.nav-badge {
		font-size: 0.65rem;
		padding: 0.25rem 0.55rem;
	}

	.nav-demo,
	.nav-buy {
		font-size: 0.72rem;
		padding: 0.4rem 0.7rem;
	}

	.hero-stats { grid-template-columns: repeat(2, 1fr); }

	.hero-modes { grid-template-columns: 1fr 1fr; max-width: none; }

	.browser-wrap,
	.browser-wrap-chat,
	.browser-wrap-rooms,
	.browser-wrap-tall {
		max-width: 100%;
		overflow: hidden;
		border-radius: 14px;
	}

	.browser-chrome {
		padding: 8px 10px;
		gap: 0.5rem;
	}

	.browser-url {
		font-size: 0.62rem;
		padding: 5px 8px;
		min-width: 0;
	}

	.browser-wrap-rooms .gcd-files { display: none; }

	.feature-row,
	.feature-row-reverse {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.feature-row-reverse .feature-copy,
	.feature-row-reverse .device-wrap { order: unset; }

	.gp-inbox { grid-template-columns: 1fr; }
	.gp-sidebar { display: none; }

	.gp-settings-shell { grid-template-columns: 1fr; }
	.gp-settings-tabs {
		flex-direction: row;
		flex-wrap: wrap;
		border-left: none;
		border-bottom: 1px solid var(--gp-border);
	}

	.gp-rooms-grid { grid-template-columns: 1fr; }

	.device-wrap-duo,
	.device-wrap-triple {
		flex-direction: column;
		align-items: center;
	}

	.phone-back { transform: none; }

	.integrations-block,
	.feature-grid { grid-template-columns: 1fr; }

	.gp-feature-cols,
	.gp-widget-layout,
	.gp-shortcode-grid,
	.gp-field-row,
	.gp-field-row-3,
	.gp-field-row-4,
	.gp-switch-grid-3 { grid-template-columns: 1fr; }

	.gp-settings-body-full { max-height: 420px; }

	.browser-wrap-tall .panel-demo-settings { min-height: auto; }

	.gp-topbar { flex-direction: column; align-items: stretch; }
	.gp-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gp-nav-item { font-size: 0.68rem; padding: 7px 4px; }
	.gp-nav-item svg { width: 14px; height: 14px; }

	.showcase,
	.sections,
	.grid-section,
	.gp-enterprise-showcase,
	.gp-chat-showcase,
	.gp-v13-showcase {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.hero {
		padding: calc(var(--nav-h) + 2rem) 1rem 1.5rem;
		min-height: auto;
	}

	.hero-desc { font-size: 0.95rem; }

	.section-head h2 { font-size: clamp(1.25rem, 5vw, 1.75rem); }

	[data-tilt] { transform: none !important; }

	.panel-demo { min-height: auto; overflow-x: hidden; }

	.panel-demo-dark { overflow-x: hidden; }

	.gp-hero-inner { padding: 12px; }

	.gp-app { padding: 12px; overflow-x: hidden; max-width: 100%; }
}

@media (max-width: 560px) {
	.hero { min-height: auto; padding-bottom: 1rem; padding-top: calc(var(--nav-h) + 1.5rem); }

	.title-line { font-size: clamp(2rem, 12vw, 3rem); }

	.hero-wordmark { height: 52px; max-width: 42vw; }
	.hero-icon { width: 64px; max-width: 64px; }
	.hero-logo-wrap { gap: 0.85rem; margin-bottom: 1rem; }
	.hero-inner { padding-inline: 0.5rem; }
	.hero-stats { max-width: 100%; }
	.stat { padding: 0.75rem 0.35rem; }
	.stat strong { font-size: 1.1rem; }
	.stat span { font-size: 0.62rem; }

	.hero-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-cta .btn { width: 100%; justify-content: center; }

	.device-wrap { padding-inline: 0; }

	.feature-copy h2 { font-size: 1.35rem; }
	.feature-list { font-size: 0.88rem; padding-right: 1rem; }
	.feature-list code { word-break: break-all; font-size: 0.78rem; }

	.specs-table { grid-template-columns: 1fr; }

	.gp-archive-row {
		grid-template-columns: 1fr 1fr;
		font-size: 0.68rem;
	}

	.gp-switch-grid { grid-template-columns: 1fr; }

	.phone, .phone-mini { width: min(260px, 100%); max-width: 100%; }

	.gp-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.gp-brand { flex-wrap: wrap; gap: 8px; }
	.gp-brand-text strong { font-size: 0.88rem; }

	.banner-inner { padding: 1rem 1.15rem; }
	.banner-inner p { font-size: 0.92rem; }

	.feature-row { margin-bottom: 3rem; gap: 1.5rem; }
	.feature-num { font-size: 2.25rem; }

	.footer-strip { padding: 2rem 1rem; }

	.grid-section,
	.gp-v13-grid { padding-inline: 0; }

	.grid-card code { word-break: break-all; font-size: 0.72rem; }
}

@media (max-width: 400px) {
	.hero-wordmark { height: 44px; }
	.logo-ring { padding: 3px; border-radius: 22px; }
	.hero-icon { width: 56px; max-width: 56px; }
	.hero-badge-row { gap: 0.4rem; }
	.pill { font-size: 0.72rem; padding: 0.3rem 0.65rem; }
	.nav-brand span { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
	.reveal, .reveal-stagger > * { transition: none; opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
	.logo-ring, .hero-glow, .float-btn, .hero-stage-frame { animation: none; }
}

/* Chat theme studio (landplug mocks â€” mirrors gapeston Appearance tab) */
.gp-theme-studio {
	margin: 12px 0 20px;
	padding: 18px;
	border-radius: 14px;
	border: 1px solid var(--gp-border);
	background: linear-gradient(160deg, #fff, #f8fafc);
}

.gp-theme-studio--compact { padding: 12px; }

.gp-theme-studio-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.gp-theme-studio-head strong { display: block; font-size: 0.92rem; }
.gp-theme-studio-head p { margin: 4px 0 0; font-size: 0.72rem; color: var(--gp-muted); }

.gp-theme-tabs, .gp-context-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.gp-theme-tab, .gp-context-tab {
	padding: 8px 14px;
	border-radius: 999px;
	border: 1.5px solid var(--gp-border);
	background: #fff;
	font: inherit;
	font-size: 0.72rem;
	cursor: pointer;
}

.gp-theme-tab.is-active, .gp-context-tab.is-active {
	border-color: #0d9488;
	background: rgba(13, 148, 136, 0.08);
	color: #0f766e;
	font-weight: 700;
}

.gp-theme-panel, .gp-context-panel { display: none; }
.gp-theme-panel.is-active, .gp-context-panel.is-active { display: block; }

.gp-theme-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
	gap: 16px;
}

.gp-theme-layout--compact { grid-template-columns: 1fr 140px; }

@media (max-width: 900px) {
	.gp-theme-layout { grid-template-columns: 1fr; }
}

.gp-palette-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.gp-palette-chip {
	padding: 6px 12px 6px 16px;
	border-radius: 999px;
	border: 1px solid var(--gp-border);
	background: #fff;
	font-size: 0.68rem;
	cursor: pointer;
	position: relative;
}

.gp-palette-chip::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	border-radius: 999px 0 0 999px;
	background: var(--chip, #10b981);
}

.gp-palette-chip.on { border-color: #0d9488; }

.gp-token-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
	gap: 8px;
	margin: 10px 0;
}

.gp-token-grid--mini { grid-template-columns: repeat(4, 1fr); }

.gp-token label { display: block; font-size: 0.62rem; color: var(--gp-muted); margin-bottom: 4px; }

.gp-token i {
	display: block;
	height: 32px;
	border-radius: 8px;
	border: 1px solid var(--gp-border);
}

.gp-token-img {
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	background: #f1f5f9 !important;
}

.gp-bg-image-mock {
	margin-top: 10px;
	padding: 10px;
	border-radius: 10px;
	border: 1px dashed var(--gp-border);
	background: #f8fafc;
}

.gp-bg-image-preview {
	height: 72px;
	border-radius: 8px;
	border: 1px solid var(--gp-border);
	background: #eef1f6 center/cover no-repeat;
	margin-top: 8px;
}

.gp-bg-image-preview.empty::after {
	content: 'Ø¨Ø¯ÙˆÙ† ØªØµÙˆÛŒØ±';
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 0.68rem;
	color: var(--gp-muted);
}

.gp-range-mock {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	font-size: 0.68rem;
}

.gp-range-mock i {
	flex: 1;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, #0d9488 35%, #e2e8f0 35%);
}

.gp-ctp {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e8eaed;
	font-size: 0.72rem;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.gp-ctp.is-light { --ctp-bg: #f5f6f8; --ctp-surface: #fff; --ctp-text: #1a1d21; }
.gp-ctp.is-dark { --ctp-bg: #0e1621; --ctp-surface: #17212b; --ctp-text: #e8edf2; border-color: #2b3949; }
.gp-ctp.is-support { --ctp-primary: #10b981; --ctp-head: #10b981; }
.gp-ctp.is-rooms { --ctp-primary: #6366f1; --ctp-head: #6366f1; }
.gp-ctp.is-channels { --ctp-primary: #8b5cf6; --ctp-head: #8b5cf6; }

.gp-ctp-head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: var(--ctp-head);
	color: #fff;
}

.gp-ctp-head i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.8; }

.gp-ctp-msgs {
	padding: 12px;
	min-height: 100px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: var(--ctp-bg);
}

.gp-ctp-b { max-width: 85%; padding: 8px 10px; border-radius: 12px; line-height: 1.45; }
.gp-ctp-b.other { align-self: flex-start; background: var(--ctp-surface); color: var(--ctp-text); }
.gp-ctp-b.mine { align-self: flex-end; background: #eef0f3; color: #1a1d21; }
.gp-ctp.is-dark .gp-ctp-b.mine { background: var(--ctp-primary); color: #fff; }
.gp-ctp-b.ai { align-self: flex-start; background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.25); color: var(--ctp-text); }

.gp-ctp-typing {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.68rem;
	color: var(--ctp-text);
	opacity: 0.85;
}

.gp-ctp-typing span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ctp-primary);
	animation: blink 1.2s infinite;
}

.gp-ctp-typing span:nth-child(2) { animation-delay: 0.15s; }
.gp-ctp-typing span:nth-child(3) { animation-delay: 0.3s; }

.gp-ctp-compose {
	display: flex;
	gap: 8px;
	padding: 8px 10px;
	background: var(--ctp-surface);
	border-top: 1px solid #e8eaed;
}

.gp-ctp.is-dark .gp-ctp-compose { border-top-color: #2b3949; }
.gp-ctp-compose span { flex: 1; height: 32px; border-radius: 16px; background: #eef0f3; }
.gp-ctp.is-dark .gp-ctp-compose span { background: #121d29; }

.gp-ctp-compose b {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ctp-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
}

.gp-admin-preset-block {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--gp-border);
}

@keyframes spin {
	to { transform: rotate(360deg); }
}


/* ═══════════════════════════════════════════
   Landing polish — light, calm, no image spam
   ═══════════════════════════════════════════ */

.hero-badge-row,
.hero-logo-wrap { display: none !important; }

.pill,
.nav-toggle,
.section-tag { border-radius: var(--radius-sm) !important; }

.hero-inner {
	max-width: min(820px, 100%);
}

.hero-shot {
	margin: 2rem auto 0;
	max-width: 760px;
	padding: 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.hero-shot img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Look section */
.look-section {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto 3.5rem;
	padding: 0 1.25rem;
}

.look-copy {
	max-width: 560px;
	margin: 0 auto 1.75rem;
	text-align: center;
}

.look-copy h2 {
	font-size: clamp(1.35rem, 3vw, 1.7rem);
	font-weight: 750;
	letter-spacing: -0.02em;
	margin: 0.55rem 0 0.7rem;
	color: var(--text);
}

.look-copy p {
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.8;
	margin: 0;
}

.look-shots {
	display: grid;
	grid-template-columns: 1.4fr 0.7fr;
	gap: 1rem;
	align-items: end;
	margin-bottom: 1rem;
}

.look-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.look-shot {
	margin: 0;
	padding: 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.look-shot img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	background: #e8eef4;
}

.look-shot figcaption {
	margin-top: 0.65rem;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 650;
	color: #475569;
}

.look-shot--phone {
	max-width: 240px;
	justify-self: center;
	width: 100%;
}

.look-modes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.65rem;
}

.look-mode {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.95rem 0.85rem;
	border-radius: var(--radius);
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(15, 23, 42, 0.08);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.look-mode:hover {
	border-color: rgba(15, 118, 110, 0.35);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.look-mode strong {
	font-size: 0.92rem;
	color: var(--text);
}

.look-mode span {
	font-size: 0.78rem;
	color: var(--muted);
}

/* Studio */
.studio-section {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto 3.5rem;
	padding: 0 1.25rem;
}

.studio-inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 1.5rem;
	align-items: center;
	padding: 1.35rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
	margin-bottom: 1.5rem;
}

.studio-copy h2 {
	font-size: clamp(1.25rem, 2.8vw, 1.55rem);
	font-weight: 750;
	margin: 0.5rem 0 0.65rem;
}

.studio-copy p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.75;
	margin: 0;
}

.studio-shot {
	margin: 0;
	padding: 10px;
	border-radius: 12px;
	background: #e8eef4;
}

.studio-shot img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.feature-grid--compact .grid-card {
	padding: 1.15rem 1.2rem;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.feature-grid--compact .grid-card h3 {
	margin-bottom: 0.35rem;
}

.feature-grid--compact .grid-card p {
	margin: 0;
}

.gp-chat-block {
	background: rgba(255, 255, 255, 0.78) !important;
	border: 1px solid rgba(15, 23, 42, 0.08) !important;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
	padding: 0.35rem;
	border-radius: var(--radius) !important;
}

.gp-chat-block-head h3,
.section-head h2 {
	color: var(--text) !important;
}

.gp-chat-block-head p,
.section-head p {
	color: var(--muted) !important;
}

.marquee-wrap { display: none !important; }

.footer-brand {
	font-size: 1.05rem;
	font-weight: 750;
	color: var(--text);
	margin: 0 0 0.25rem !important;
}

.footer-note {
	font-size: 0.85rem !important;
	margin-bottom: 1rem !important;
}

.footer-actions {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

@media (max-width: 860px) {
	.look-shots {
		grid-template-columns: 1fr;
	}
	.look-shot--phone {
		max-width: 220px;
	}
	.look-modes {
		grid-template-columns: 1fr 1fr;
	}
	.studio-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.look-pair,
	.look-modes {
		grid-template-columns: 1fr;
	}
}
