﻿
:root {
	--bg: #020509;
	--bg2: #06090f;
	--panel: rgba(8,14,22,0.9);
	--glass: rgba(255,255,255,0.03);
	--border: rgba(0,255,170,0.08);
	--border-bright: rgba(0,255,170,0.25);
	--neon: #00ffaa;
	--neon2: #00d4ff;
	--neon3: #ff3e6c;
	--gold: #f5c842;
	--text: #e4eef8;
	--muted: #3a5060;
	--muted2: #6080a0;
	--font-display: 'Bebas Neue', sans-serif;
	--font-body: 'Outfit', sans-serif;
	--font-mono: 'JetBrains Mono', monospace;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	overflow-x: hidden;
	cursor: none;
}

/* ── CURSOR ── */
#cur {
	width: 8px;
	height: 8px;
	background: var(--neon);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	top: 0;
	left: 0;
	transition: transform .1s;
	mix-blend-mode: screen;
}

#cur-trail {
	width: 28px;
	height: 28px;
	border: 1px solid rgba(0,255,170,.35);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9998;
	top: 0;
	left: 0;
	transition: all .18s cubic-bezier(.25,.46,.45,.94);
}

body:hover #cur {
	opacity: 1;
}

/* ── CANVAS BG ── */
#bg-canvas {
	position: fixed;
	inset: 0;
	z-index: 0;
	opacity: .7;
}

/* ── NOISE OVERLAY ── */
body::after {
	content: '';
	position: fixed;
	inset: 0;
	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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 1;
	opacity: .4;
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 48px;
	background: rgba(2,5,9,0.75);
	backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid var(--border);
	animation: navIn .9s cubic-bezier(.16,1,.3,1) both;
}

@keyframes navIn {
	from {
		transform: translateY(-100%);
	}
}

.logo {
	display: flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
}

.logo-hex {
	width: 38px;
	height: 38px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.logo-hex svg {
		width: 100%;
		height: 100%;
	}

.logo-text {
	font-family: var(--font-display);
	font-size: 26px;
	letter-spacing: 2px;
	color: var(--text);
	line-height: 1;
}

	.logo-text em {
		color: var(--neon);
		font-style: normal;
	}

.logo-ver {
	font-family: var(--font-mono);
	font-size: 9px;
	color: var(--muted2);
	margin-left: 6px;
	letter-spacing: 1px;
}

.nav-links {
	display: flex;
	gap: 34px;
	list-style: none;
}

	.nav-links a {
		font-size: 13px;
		font-weight: 500;
		color: var(--muted2);
		text-decoration: none;
		letter-spacing: .5px;
		transition: color .2s;
		position: relative;
		padding-bottom: 2px;
	}

		.nav-links a::after {
			content: '';
			position: absolute;
			bottom: -2px;
			left: 0;
			width: 0;
			height: 1px;
			background: var(--neon);
			transition: width .25s;
		}

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

			.nav-links a:hover::after {
				width: 100%;
			}

.nav-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pill-badge {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--neon);
	background: rgba(0,255,170,.08);
	border: 1px solid rgba(0,255,170,.2);
	padding: 4px 10px;
	border-radius: 100px;
	display: flex;
	gap: 6px;
	align-items: center;
}

.pill-dot {
	width: 5px;
	height: 5px;
	background: var(--neon);
	border-radius: 50%;
	animation: blink 1.8s infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

.btn-n {
	background: none;
	border: 1px solid var(--border-bright);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 13px;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 20px;
	border-radius: 8px;
	cursor: none;
	transition: all .2s;
}

/* Mobile View (768px se kam screen ke liye) */
@media (max-width: 768px) {
	.btn-n {
		/* Height aur Padding change */
		height: 34px !important; /* Choti height mobile ke liye */
		padding: 4px 12px !important; /* Side padding kam kar di */
		/* Font aur Text adjustments */
		font-size: 11px !important;
		line-height: 1;
		/* Mobile fixes */
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer; /* Mobile par 'none' kaam nahi karta, pointer behtar hai */
		/* Agar button full width chahiye toh niche wali line enable karein */
		/* width: 100%; */
	}
}

.btn-n:hover {
	background: rgba(0,255,170,.06);
	border-color: var(--neon);
	color: var(--neon);
}

.btn-g {
	background: linear-gradient(135deg, var(--neon), #00cc88);
	color: #020509;
	font-family: var(--font-body);
	font-size: 13px;
	text-decoration: none;
	font-weight: 700;
	padding: 9px 22px;
	border: none;
	border-radius: 8px;
	cursor: none;
	transition: all .25s;
	letter-spacing: .3px;
	position: relative;
	overflow: hidden;
}

/* Mobile View (768px se kam screen ke liye) */
@media (max-width: 768px) {
	.btn-g {
		/* Height aur Padding badalne ke liye */
		height: 36px !important; /* Mobile par standard height */
		padding: 6px 16px !important; /* Side padding thodi kam ki gayi */
		/* Text adjustments */
		font-size: 11px !important; /* Text thoda chota taaki button compact lage */
		font-weight: 600; /* Mobile par 700 kabhi-kabhi bahut bhari lagta hai */
		letter-spacing: 0px; /* Chote size mein spacing kam karni chahiye */
		/* Layout fixes */
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer; /* Mobile par 'none' hata kar 'pointer' karein */
		/* Animation/Transition speed */
		transition: all .2s;
	}
}

.btn-g::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #00ffcc, var(--neon));
	opacity: 0;
	transition: opacity .2s;
}

.btn-g:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 40px rgba(0,255,170,.35);
}

	.btn-g:hover::before {
		opacity: 1;
	}

.btn-g span {
	position: relative;
	z-index: 1;
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 0;
	padding: 100px 48px 60px;
	overflow: hidden;
}

.hero-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-right: 60px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--neon);
	border: 1px solid rgba(0,255,170,.2);
	background: rgba(0,255,170,.04);
	padding: 6px 14px;
	border-radius: 4px;
	margin-bottom: 30px;
	animation: fadeUp .9s .3s both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
}

.hero-h1 {
	font-family: var(--font-display);
	font-size: clamp(64px, 8vw, 110px);
	line-height: .95;
	letter-spacing: 2px;
	margin-bottom: 24px;
	animation: fadeUp .9s .45s both;
}

	.hero-h1 .c1 {
		color: var(--text);
		display: block;
	}

	.hero-h1 .c2 {
		display: block;
		background: linear-gradient(90deg, var(--neon), var(--neon2));
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		filter: drop-shadow(0 0 30px rgba(0,255,170,.4));
	}

	.hero-h1 .c3 {
		color: var(--muted);
		display: block;
	}

.hero-sub {
	font-size: 16px;
	line-height: 1.7;
	color: var(--muted2);
	font-weight: 300;
	max-width: 440px;
	margin-bottom: 38px;
	animation: fadeUp .9s .6s both;
}

.hero-cta {
	display: flex;
	gap: 14px;
	margin-bottom: 56px;
	animation: fadeUp .9s .75s both;
}

/* Default Size (Desktop ke liye) */
.btn-xl {
	padding: 15px 36px;
	font-size: 15px;
	border-radius: 10px;
}

/* Mobile Devices ke liye (Screen size 768px se kam) */
@media (max-width: 768px) {
	/* Pehle wala button */
	.btn-xl {
		padding: 7px 14px;
		font-size: 10px;
		height: 38px;
	}

	/* Neeche wala button (btn-xl-o) */
	.btn-xl-o {
		/* Mobile ke liye padding aur font kam karein */
		padding: 8px 16px !important;
		font-size: 12px !important;
		border-radius: 8px;
		height: 38px;
	}
}

.btn-xl-o {
	padding: 15px 28px;
	font-size: 15px;
	border-radius: 10px;
	background: none;
	border: 1px solid var(--border-bright);
	color: var(--text);
	font-family: var(--font-body);
	font-weight: 500;
	cursor: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .2s;
}

	.btn-xl-o:hover {
		border-color: var(--neon2);
		color: var(--neon2);
	}

.hero-metrics {
	display: flex;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--panel);
	backdrop-filter: blur(20px);
	overflow: hidden;
	width: 100%;
	animation: fadeUp .9s .9s both;
}

.hm {
	flex: 1;
	padding: 20px 13px;
	border-right: 1px solid var(--border);
	text-align: center;
	position: relative;
}

	.hm:last-child {
		border-right: none;
	}

	.hm::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 1px;
		background: linear-gradient(90deg, transparent, var(--neon), transparent);
		transform: scaleX(0);
		transition: transform .4s;
	}

	.hm:hover::before {
		transform: scaleX(1);
	}

.hm-v {
	font-family: var(--font-display);
	font-size: 30px;
	letter-spacing: 1px;
	color: var(--neon);
	display: block;
}

.hm-l {
	font-size: 11px;
	color: var(--muted2);
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-top: 2px;
	font-family: var(--font-mono);
}

/* Hero Right - Live Chart Panel */
.hero-right {
	position: relative;
	height: 540px;
	animation: fadeUp .9s .5s both;
	width: 100%;
}

@media (max-width: 768px) {
	.hero-right {
		height: auto !important;
		min-height: 500px;
		padding: 15px !important;
		width: 90% !important;
		animation-duration: 0.6s !important;
		/* Centering content */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
}

.chart-panel {
	position: absolute;
	inset: 0;
	background: var(--panel);
	border: 1px solid var(--border-bright);
	border-radius: 24px;
	backdrop-filter: blur(30px);
	overflow: hidden;
	box-shadow: 0 0 80px rgba(0,255,170,.06), inset 0 1px 0 rgba(255,255,255,.04);
}

	.chart-panel::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: linear-gradient(90deg, transparent 0%, var(--neon) 40%, var(--neon2) 70%, transparent 100%);
	}

.cp-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-bottom: 1px solid var(--border);
}

.cp-pair {
	font-family: var(--font-display);
	font-size: 20px;
	letter-spacing: 1px;
	color: var(--text);
}

.cp-price {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--neon);
}

.cp-change {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--neon);
	background: rgba(0,255,170,.1);
	padding: 3px 8px;
	border-radius: 4px;
}

.cp-body {
	padding: 16px 20px 12px;
	position: relative;
}

.live-chart-canvas {
	width: 100%;
	height: 230px;
	display: block;
}

.cp-signals {
	padding: 0 20px 16px;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.sig-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 12px;
	border-radius: 8px;
	font-size: 12px;
	background: rgba(255,255,255,.02);
	border: 1px solid rgba(255,255,255,.04);
	transition: all .2s;
}

	.sig-row:hover {
		background: rgba(0,255,170,.04);
		border-color: rgba(0,255,170,.1);
	}

.sig-sym {
	font-family: var(--font-mono);
	font-weight: 700;
	color: var(--text);
	font-size: 12px;
}

.sig-val {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted2);
}

.sig-tag {
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 4px;
	letter-spacing: .5px;
}

.t-buy {
	background: rgba(0,255,170,.15);
	color: var(--neon);
}

.t-sell {
	background: rgba(255,62,108,.15);
	color: var(--neon3);
}

.t-hold {
	background: rgba(0,212,255,.12);
	color: var(--neon2);
}

/* Floating glow orbs on hero */
.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: -1;
}

.orb-1 {
	width: 400px;
	height: 400px;
	background: rgba(0,255,170,.07);
	top: 10%;
	right: -100px;
}

.orb-2 {
	width: 300px;
	height: 300px;
	background: rgba(0,212,255,.05);
	bottom: 10%;
	left: 5%;
}

.orb-3 {
	width: 200px;
	height: 200px;
	background: rgba(245,200,66,.04);
	top: 50%;
	left: 40%;
}

/* ── TICKER ── */
.ticker {
	background: #020d09;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 10px 0;
}

	.ticker::before, .ticker::after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		width: 120px;
		z-index: 2;
	}

	.ticker::before {
		left: 0;
		background: linear-gradient(90deg, #020509, transparent);
	}

	.ticker::after {
		right: 0;
		background: linear-gradient(-90deg, #020509, transparent);
	}

.ticker-track {
	display: flex;
	gap: 0;
	width: max-content;
	animation: scroll 40s linear infinite;
}

@keyframes scroll {
	to {
		transform: translateX(-50%);
	}
}

.ti {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 36px;
	border-right: 1px solid var(--border);
	font-family: var(--font-mono);
	font-size: 11.5px;
	white-space: nowrap;
}

.ti-sym {
	color: var(--text);
	font-weight: 700;
	letter-spacing: .5px;
}

.ti-p {
	color: var(--muted2);
}

.ti-up {
	color: var(--neon);
}

.ti-dn {
	color: var(--neon3);
}

/* ── SECTION COMMONS ── */
.sec {
	position: relative;
	z-index: 2;
}

.sec-tag {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--neon);
	letter-spacing: 3px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

	.sec-tag::before {
		content: '';
		width: 20px;
		height: 1px;
		background: var(--neon);
	}

.sec-title {
	font-family: var(--font-display);
	font-size: clamp(40px, 5vw, 68px);
	letter-spacing: 1px;
	line-height: .95;
	margin-bottom: 16px;
}

.sec-desc {
	color: var(--muted2);
	font-size: 16px;
	line-height: 1.65;
	font-weight: 300;
}

/* ── FEATURES ── */
.features {
	padding: 120px 48px;
}

.feat-layout {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 80px;
	align-items: center;
}

.feat-left .sec-desc {
	max-width: 320px;
	margin-bottom: 40px;
}

.feat-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 18px;
	overflow: hidden;
}

.fl-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 24px 26px;
	border-bottom: 1px solid var(--border);
	background: var(--glass);
	transition: all .25s;
	cursor: none;
	position: relative;
	overflow: hidden;
}

	.fl-item:last-child {
		border-bottom: none;
	}

	.fl-item::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(0,255,170,.04), transparent);
		opacity: 0;
		transition: opacity .3s;
	}

	.fl-item:hover {
		background: rgba(0,255,170,.03);
	}

		.fl-item:hover::before {
			opacity: 1;
		}

.fl-num {
	font-family: var(--font-display);
	font-size: 42px;
	color: rgba(0,255,170,.12);
	line-height: 1;
	flex-shrink: 0;
	width: 50px;
	transition: color .3s;
}

.fl-item:hover .fl-num {
	color: rgba(0,255,170,.3);
}

.fl-title {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--text);
}

.fl-desc {
	font-size: 13px;
	color: var(--muted2);
	line-height: 1.6;
}

.feat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.fg-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 30px 28px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

	.fg-card:hover {
		border-color: var(--border-bright);
		transform: translateY(-4px);
		box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(0,255,170,.04);
	}

	.fg-card::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(0,255,170,.03), transparent 60%);
		opacity: 0;
		transition: opacity .3s;
	}

	.fg-card:hover::after {
		opacity: 1;
	}

.fg-icon {
	font-size: 32px;
	margin-bottom: 18px;
	display: block;
}

.fg-title {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 9px;
}

.fg-desc {
	font-size: 13px;
	color: var(--muted2);
	line-height: 1.6;
}

.fg-badge {
	display: inline-block;
	margin-top: 14px;
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--neon2);
	background: rgba(0,212,255,.08);
	padding: 3px 10px;
	border-radius: 100px;
}

/* ── DASHBOARD ── */
.dash-sec {
	padding: 0 48px 120px;
}

.dash-intro {
	text-align: center;
	margin-bottom: 52px;
}

	.dash-intro .sec-tag {
		justify-content: center;
	}

		.dash-intro .sec-tag::before {
			display: none;
		}

.dash-shell {
	border: 1px solid var(--border-bright);
	border-radius: 28px;
	overflow: hidden;
	background: #060c14;
	box-shadow: 0 60px 180px rgba(0,0,0,.7), 0 0 100px rgba(0,255,170,.04);
	position: relative;
}

	.dash-shell::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg, transparent, var(--neon) 30%, var(--neon2) 70%, transparent);
	}

.dash-bar {
	background: #040a11;
	border-bottom: 1px solid var(--border);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.mac-dots {
	display: flex;
	gap: 7px;
}

.md {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.md-r {
	background: #ff5f57;
}

.md-y {
	background: #febc2e;
}

.md-g {
	background: #28c840;
}

.url-bar {
	flex: 1;
	max-width: 420px;
	background: #020509;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 6px 14px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted2);
	display: flex;
	align-items: center;
	gap: 8px;
}

.url-lock {
	color: var(--neon);
	font-size: 10px;
}

.dash-body {
	display: grid;
	grid-template-columns: 200px 1fr 220px;
	height: 520px;
}

/* sidebar */
.db-sb {
	background: #030810;
	border-right: 1px solid var(--border);
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.db-logo {
	font-family: var(--font-display);
	font-size: 18px;
	color: var(--neon);
	letter-spacing: 1px;
	padding: 4px 10px 16px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 10px;
}

.db-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: 9px;
	font-size: 12.5px;
	color: var(--muted2);
	cursor: none;
	transition: all .2s;
}

	.db-item:hover {
		color: var(--text);
		background: rgba(255,255,255,.03);
	}

	.db-item.act {
		background: rgba(0,255,170,.1);
		color: var(--neon);
		border: 1px solid rgba(0,255,170,.15);
	}

.db-i {
	font-size: 13px;
}

.db-sep {
	height: 1px;
	background: var(--border);
	margin: 8px 0;
}

/* main */
.db-main {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow: hidden;
}

.db-top-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.db-kpi {
	background: #040b14;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	position: relative;
	overflow: hidden;
}

	.db-kpi::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
	}

.kpi-g::before {
	background: linear-gradient(90deg, var(--neon), transparent);
}

.kpi-b::before {
	background: linear-gradient(90deg, var(--neon2), transparent);
}

.kpi-r::before {
	background: linear-gradient(90deg, var(--neon3), transparent);
}

.kpi-l {
	font-size: 11px;
	color: var(--muted2);
	margin-bottom: 5px;
	font-family: var(--font-mono);
}

.kpi-v {
	font-family: var(--font-display);
	font-size: 26px;
	letter-spacing: .5px;
}

.kpi-c {
	font-family: var(--font-mono);
	font-size: 11px;
	margin-top: 3px;
}

.kpi-spark {
	position: absolute;
	bottom: 10px;
	right: 12px;
	opacity: .5;
}

.db-chart-box {
	background: #040b14;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dcb-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dcb-title {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.live-tag {
	font-family: var(--font-mono);
	font-size: 9px;
	color: var(--neon);
	background: rgba(0,255,170,.1);
	padding: 2px 8px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.lt-dot {
	width: 4px;
	height: 4px;
	background: var(--neon);
	border-radius: 50%;
	animation: blink 1.2s infinite;
}

.dcb-tabs {
	display: flex;
	gap: 4px;
}

.tab {
	padding: 3px 10px;
	border-radius: 5px;
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--muted2);
	cursor: none;
	transition: all .2s;
}

	.tab.on {
		background: rgba(0,255,170,.1);
		color: var(--neon);
	}

canvas.mc {
	width: 100%;
	height: 150px;
	display: block;
}

/* right panel */
.db-rp {
	background: #030810;
	border-left: 1px solid var(--border);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	overflow: hidden;
}

.rp-sec-t {
	font-size: 12px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

	.rp-sec-t span {
		font-family: var(--font-mono);
		font-size: 10px;
		color: var(--neon);
		cursor: none;
	}

.rp-sig {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.rp-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px;
	border-radius: 7px;
	transition: background .2s;
}

	.rp-row:hover {
		background: rgba(255,255,255,.03);
	}

.rp-sym {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 700;
	color: var(--text);
}

.rp-p {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted2);
}

.rp-div {
	height: 1px;
	background: var(--border);
	margin: 4px 0;
}

.rp-ai-box {
	background: rgba(0,255,170,.04);
	border: 1px solid rgba(0,255,170,.12);
	border-radius: 10px;
	padding: 12px;
}

.rp-ai-head {
	font-size: 11px;
	font-weight: 700;
	color: var(--neon);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.rp-ai-item {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	padding: 4px 0;
	border-bottom: 1px solid rgba(0,255,170,.06);
}

	.rp-ai-item:last-child {
		border: none;
	}

.rp-ai-k {
	color: var(--muted2);
	font-family: var(--font-mono);
}

.rp-ai-v {
	color: var(--text);
	font-family: var(--font-mono);
	font-weight: 700;
}

/* ── HOW IT WORKS ── */
.how {
	background: #030810;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 120px 48px;
}

.how-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.how-head {
	text-align: center;
	margin-bottom: 80px;
}

.how-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	gap: 40px;
}

	.how-steps::before {
		content: '';
		position: absolute;
		top: 34px;
		left: calc(12.5% + 20px);
		right: calc(12.5% + 20px);
		height: 1px;
		background: linear-gradient(90deg, var(--neon), var(--neon2));
		opacity: .3;
	}

.hs {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hs-num {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	border: 1px solid var(--border-bright);
	background: #040b14;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--neon);
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
	transition: all .3s;
}

	.hs-num::before {
		content: '';
		position: absolute;
		inset: -4px;
		border-radius: 50%;
		border: 1px solid rgba(0,255,170,.15);
		animation: pulse-ring 3s infinite;
	}

@keyframes pulse-ring {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0;
	}
}

.hs:hover .hs-num {
	background: rgba(0,255,170,.1);
	border-color: var(--neon);
	box-shadow: 0 0 30px rgba(0,255,170,.2);
}

.hs-title {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

.hs-desc {
	font-size: 13px;
	color: var(--muted2);
	line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
	padding: 120px 48px;
}

.p-head {
	text-align: center;
	margin-bottom: 60px;
}

.p-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 960px;
	margin: 0 auto;
}

.p-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 38px 34px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

	.p-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(255,255,255,.02), transparent);
		pointer-events: none;
	}

	.p-card:hover {
		transform: translateY(-6px);
		border-color: rgba(0,255,170,.2);
		box-shadow: 0 30px 80px rgba(0,0,0,.4);
	}

	.p-card.feat {
		border-color: var(--neon);
		background: linear-gradient(135deg, rgba(0,255,170,.06), var(--panel));
	}

		.p-card.feat:hover {
			box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 60px rgba(0,255,170,.08);
		}

.p-pop {
	position: absolute;
	top: 18px;
	right: 18px;
	background: var(--neon);
	color: #020509;
	font-family: var(--font-mono);
	font-size: 9px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 100px;
	letter-spacing: 1px;
}

.p-plan {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--neon);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.p-price {
	font-family: var(--font-display);
	font-size: 58px;
	letter-spacing: -1px;
	line-height: 1;
	margin-bottom: 4px;
}

.p-per {
	font-size: 13px;
	color: var(--muted2);
	margin-bottom: 28px;
}

.p-line {
	height: 1px;
	background: var(--border);
	margin-bottom: 26px;
}

.p-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-bottom: 34px;
}

	.p-features li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 14px;
		color: var(--muted2);
	}

		.p-features li .ck {
			color: var(--neon);
			font-size: 12px;
			flex-shrink: 0;
		}

		.p-features li.off {
			opacity: .35;
		}

			.p-features li.off .ck {
				color: var(--muted);
			}

.pb-btn {
	width: 100%;
	padding: 14px;
	border-radius: 11px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	cursor: none;
	transition: all .2s;
	letter-spacing: .3px;
}

.pb-ghost {
	background: none;
	border: 1px solid var(--border-bright);
	color: var(--text);
}

	.pb-ghost:hover {
		border-color: var(--neon);
		color: var(--neon);
		background: rgba(0,255,170,.04);
	}

.pb-solid {
	background: linear-gradient(135deg, var(--neon), #00cc88);
	color: #020509;
	border: none;
}

	.pb-solid:hover {
		box-shadow: 0 10px 40px rgba(0,255,170,.35);
		transform: translateY(-2px);
	}

/* ── CTA ── */
.cta-s {
	padding: 0 48px 120px;
}

.cta-box {
	border-radius: 30px;
	padding: 100px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: #030d08;
	border: 1px solid rgba(0,255,170,.2);
}

	.cta-box::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse at 50% 0%, rgba(0,255,170,.12) 0%, transparent 60%);
	}

	.cta-box h2 {
		font-family: var(--font-display);
		font-size: clamp(42px, 5vw, 72px);
		letter-spacing: 2px;
		line-height: .95;
		margin-bottom: 18px;
		position: relative;
	}

	.cta-box p {
		color: var(--muted2);
		font-size: 16px;
		margin-bottom: 40px;
		position: relative;
	}

.cta-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	position: relative;
}

.cta-note {
	margin-top: 18px;
	font-size: 12px;
	color: var(--muted);
	font-family: var(--font-mono);
	position: relative;
}

/* ── FOOTER ── */
footer {
	border-top: 1px solid var(--border);
	position: relative;
	z-index: 2;
	padding: 60px 48px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 60px;
}

.f-brand {
}

.f-logo {
	font-family: var(--font-display);
	font-size: 28px;
	letter-spacing: 2px;
	color: var(--text);
	margin-bottom: 12px;
}

	.f-logo em {
		color: var(--neon);
		font-style: normal;
	}

.f-tagline {
	font-size: 13px;
	color: var(--muted2);
	line-height: 1.6;
	max-width: 240px;
	margin-bottom: 20px;
}

.f-badges {
	display: flex;
	gap: 8px;
}

.f-badge {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--muted2);
	border: 1px solid var(--border);
	padding: 4px 10px;
	border-radius: 6px;
}

.f-col h4 {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--neon);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.f-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.f-col a {
	color: var(--muted2);
	text-decoration: none;
	font-size: 13px;
	transition: color .2s;
}

	.f-col a:hover {
		color: var(--neon);
	}

.f-bottom {
	border-top: 1px solid var(--border);
	padding: 24px 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted);
	position: relative;
	z-index: 2;
}

/* ── SCROLL REVEAL ── */
.sr {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1);
}

	.sr.vis {
		opacity: 1;
		transform: none;
	}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
	.hero {
		grid-template-columns: 1fr;
		padding-top: 120px;
	}

	.hero-right {
		height: 380px;
	}

	.feat-layout {
		grid-template-columns: 1fr;
	}

	footer {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 0 20px;
	}

	.nav-links {
		display: none;
	}

	.hero {
		padding: 100px 20px 60px;
	}

	.features, .dash-sec, .pricing, .cta-s {
		padding-left: 20px;
		padding-right: 20px;
	}

	.how {
		padding: 80px 20px;
	}

	.p-grid, .how-steps {
		grid-template-columns: 1fr;
	}

		.how-steps::before {
			display: none;
		}

	.dash-body {
		grid-template-columns: 1fr;
	}

	.db-sb, .db-rp {
		display: none;
	}

	.cta-box {
		padding: 60px 30px;
	}

	footer {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px 20px;
	}

	.f-bottom {
		padding: 20px;
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
}
