/* ========================
   RESET & BASE
======================== */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--green: #22c55e;
	--green-light: #4ade80;
	--green-dark: #16a34a;
	--green-glow: rgba(34, 197, 94, 0.2);
	--green-glow-strong: rgba(34, 197, 94, 0.35);
	--orange: #f97316;
	--blue: #3b82f6;
	--purple: #a855f7;
	--bg: #060608;
	--bg-2: #0c0c10;
	--bg-card: #111116;
	--bg-card-border: #1e1e26;
	--text: #f0f0f4;
	--text-muted: #4a4a5a;
	--text-sub: #9898aa;
	--radius: 16px;
	--radius-sm: 10px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	cursor: default;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
em { font-style: italic; color: var(--text); }

/* ========================
   CURSOR GLOW
======================== */
.cursor-glow {
	position: fixed;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 65%);
	pointer-events: none;
	z-index: 0;
	top: 0; left: 0;
	transform: translate(-50%, -50%);
	transition: transform 0.08s linear;
	will-change: transform;
}

/* ========================
   PUSH NOTIFICATION
======================== */
.push-notif {
	position: fixed;
	top: 20px;
	right: 24px;
	z-index: 9999;
	background: #18181f;
	border: 1px solid #2a2a38;
	border-radius: 16px;
	padding: 14px 16px;
	width: 300px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
	transform: translateX(340px);
	transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.push-notif.show { transform: translateX(0); }

.push-notif-app {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.push-notif-msg {
	font-size: 13px;
	color: var(--text-sub);
	line-height: 1.5;
}

.push-notif-msg strong { color: var(--green); }

.push-notif-close {
	position: absolute;
	top: 10px; right: 12px;
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	font-size: 14px;
	padding: 2px 4px;
	line-height: 1;
	transition: color 0.2s;
}
.push-notif-close:hover { color: var(--text); }

/* ========================
   CHART TOOLTIP
======================== */
.chart-tooltip {
	position: fixed;
	background: #18181f;
	border: 1px solid #2a2a38;
	border-radius: 8px;
	padding: 7px 12px;
	font-size: 12px;
	font-family: var(--mono);
	color: var(--text);
	pointer-events: none;
	z-index: 999;
	display: none;
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(0,0,0,0.5);
	transform: translate(-50%, -120%);
}

.chart-tooltip::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 8px; height: 8px;
	background: #18181f;
	border-right: 1px solid #2a2a38;
	border-bottom: 1px solid #2a2a38;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
	rotate: -45deg;
}

/* ========================
   NAV
======================== */
.nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 14px 0;
	background: rgba(6,6,8,0.75);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(255,255,255,0.05);
	transition: background 0.3s;
}

.nav-inner {
	max-width: 1100px; margin: 0 auto; padding: 0 24px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; letter-spacing: -0.3px; }
.logo-mark { flex-shrink: 0; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-sub); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* ========================
   BUTTONS
======================== */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 24px; border-radius: 100px;
	font-size: 14px; font-weight: 600; cursor: pointer;
	transition: all 0.2s; border: none;
	font-family: var(--font); white-space: nowrap;
}

.btn-primary {
	background: var(--green);
	color: #000; font-weight: 700;
	position: relative; overflow: hidden;
	will-change: transform;
}

.btn-primary::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
	transform: translateX(-100%);
	transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
	background: var(--green-light);
	box-shadow: 0 8px 32px var(--green-glow-strong), 0 0 0 1px rgba(34,197,94,0.3);
}

.btn-hero { padding: 15px 32px; font-size: 15px; box-shadow: 0 4px 24px var(--green-glow); }

.btn-ghost {
	background: rgba(255,255,255,0.06); color: var(--text);
	border: 1px solid rgba(255,255,255,0.08);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }

.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--bg-card-border); }
.btn-outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

.btn-plan { width: 100%; justify-content: center; padding: 13px 24px; }
.btn-cta { padding: 15px 28px; font-size: 15px; white-space: nowrap; }

.btn-nav {
	background: rgba(34,197,94,0.1); color: var(--green);
	border: 1px solid rgba(34,197,94,0.2); padding: 8px 18px; font-size: 13px;
}
.btn-nav:hover { background: rgba(34,197,94,0.18); box-shadow: 0 0 16px rgba(34,197,94,0.1); }

/* Feature button */
.feature-btn {
	margin-top: 16px;
	display: inline-flex; align-items: center; gap: 7px;
	padding: 8px 14px; border-radius: 8px;
	background: rgba(34,197,94,0.06);
	border: 1px solid rgba(34,197,94,0.15);
	color: var(--green); font-size: 12px; font-weight: 600;
	cursor: pointer; font-family: var(--font);
	transition: all 0.2s;
}
.feature-btn:hover { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.3); }
.feature-btn:active { transform: scale(0.97); }

.feature-btn-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--green);
	animation: livePulse 1.5s ease-in-out infinite;
}

/* ========================
   HERO
======================== */
.hero {
	min-height: 100vh;
	display: flex; flex-direction: column; align-items: center;
	padding-top: 96px; padding-bottom: 0;
	position: relative; overflow: hidden;
}

.hero-canvas {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	pointer-events: none;
	z-index: 0;
}

.hero-corner {
	position: absolute; width: 20px; height: 20px;
	pointer-events: none; opacity: 0.25; z-index: 1;
}
.hero-corner-tl { top: 84px; left: 24px; border-top: 1.5px solid var(--green); border-left: 1.5px solid var(--green); }
.hero-corner-tr { top: 84px; right: 24px; border-top: 1.5px solid var(--green); border-right: 1.5px solid var(--green); }

.hero .container {
	text-align: center; position: relative; z-index: 1;
	padding-top: 36px; padding-bottom: 48px;
}

.hero-badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 16px; border-radius: 100px;
	background: rgba(34,197,94,0.07);
	border: 1px solid rgba(34,197,94,0.18);
	color: var(--green); font-size: 13px; font-weight: 500;
	margin-bottom: 28px;
}

.badge-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--green);
	animation: badgePulse 2s infinite; flex-shrink: 0;
}

@keyframes badgePulse {
	0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(34,197,94,0.5); }
	50% { opacity:0.7; box-shadow:0 0 0 4px rgba(34,197,94,0); }
}

.hero-title {
	font-size: clamp(44px, 6.5vw, 78px);
	font-weight: 900; line-height: 1.06;
	letter-spacing: -3px; margin-bottom: 22px;
}

/* Typed wrapper */
.typed-wrap { display: inline-block; position: relative; min-height: 1.06em; }

.gradient-text {
	background: linear-gradient(100deg, #22c55e 0%, #4ade80 30%, #86efac 50%, #4ade80 70%, #22c55e 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 4s linear infinite;
}
@keyframes shimmer { from { background-position:0% center; } to { background-position:200% center; } }

.typed-cursor {
	display: inline-block;
	-webkit-text-fill-color: var(--green);
	color: var(--green);
	font-weight: 300;
	animation: blink 1s step-end infinite;
	margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-subtitle {
	font-size: 18px; color: var(--text-sub);
	max-width: 500px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-subtitle strong { color: var(--text); font-weight: 600; }

.hero-cta {
	display: flex; gap: 12px; justify-content: center;
	flex-wrap: wrap; margin-bottom: 32px;
}

.social-proof { display: flex; align-items: center; justify-content: center; gap: 10px; }
.avatars { display: flex; }
.avatar {
	width: 28px; height: 28px; border-radius: 50%;
	border: 2px solid var(--bg);
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 800; color: #fff;
	margin-left: -8px; flex-shrink: 0;
}
.avatars .avatar:first-child { margin-left: 0; }
.social-proof-text { font-size: 13px; color: var(--text-muted); }
.social-proof-text strong { color: var(--text-sub); font-weight: 600; }

/* ========================
   TICKER
======================== */
.ticker-wrap {
	width: 100%; display: flex; align-items: center;
	border-top: 1px solid rgba(255,255,255,0.04);
	border-bottom: 1px solid rgba(255,255,255,0.04);
	background: rgba(255,255,255,0.015);
	padding: 11px 0; margin-top: 48px;
	overflow: hidden; position: relative; z-index: 1;
}

.ticker-label {
	white-space: nowrap; padding: 0 20px;
	font-size: 10px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 1.2px; color: var(--green);
	display: flex; align-items: center; gap: 6px;
	border-right: 1px solid rgba(255,255,255,0.06); flex-shrink: 0;
}

.ticker-track-wrap {
	overflow: hidden; flex: 1;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-track {
	display: inline-flex; align-items: center; gap: 20px;
	animation: marquee 35s linear infinite;
	white-space: nowrap; padding-left: 20px;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker-item { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; }
.ticker-name { color: var(--text-sub); }
.ticker-drop { color: var(--green); font-weight: 700; font-size: 12px; font-family: var(--mono); }
.ticker-sep { color: var(--text-muted); opacity: 0.3; }

/* ========================
   PHONE MOCKUP
======================== */
.hero-phone-wrap {
	position: relative; margin-top: 60px;
	display: flex; justify-content: center; align-items: flex-start;
	padding-bottom: 80px;
}

.phone-frame {
	width: 285px; height: 548px;
	background: #0d0d12; border-radius: 40px;
	border: 1.5px solid #252530;
	overflow: hidden; position: relative;
	box-shadow: 0 48px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03) inset, 0 0 60px rgba(34,197,94,0.04);
	z-index: 2;
}
.phone-notch {
	position: absolute; top: 14px; left: 50%;
	transform: translateX(-50%);
	width: 80px; height: 8px;
	background: #000; border-radius: 100px; z-index: 10;
}
.phone-scanline {
	position: absolute; inset: 0;
	background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
	pointer-events: none; z-index: 8; border-radius: 40px;
}
.phone-glow {
	position: absolute; bottom: 50px; left: 50%;
	transform: translateX(-50%);
	width: 260px; height: 60px;
	background: radial-gradient(ellipse, rgba(34,197,94,0.15) 0%, transparent 70%);
	pointer-events: none; z-index: 1;
}
.phone-screen {
	width: 100%; height: 100%;
	display: flex; flex-direction: column;
	padding: 44px 16px 0; background: #08080e;
}
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mock-title { font-size: 15px; font-weight: 700; }
.mock-chip { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; letter-spacing: 0.5px; }
.mock-chip.basic { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }

.mock-card {
	background: #141420; border-radius: 12px; padding: 12px;
	margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
	border: 1px solid #1e1e2e; position: relative;
	transition: border-color 0.3s, background 0.3s;
}
.mock-card.alert { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.04); }
.mock-card.alert.flash { animation: cardFlash 0.4s ease; }
@keyframes cardFlash {
	0%,100% { background: rgba(34,197,94,0.04); }
	50% { background: rgba(34,197,94,0.15); }
}

.mock-card-img {
	font-size: 22px; width: 38px; height: 38px;
	display: flex; align-items: center; justify-content: center;
	background: #1e1e2e; border-radius: 8px; flex-shrink: 0;
}
.mock-card-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.mock-card-name { font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-card-price { font-size: 13px; font-weight: 700; color: var(--text-sub); font-family: var(--mono); transition: color 0.3s; }
.mock-card-price.drop { color: var(--green); }
.mock-card-old { font-size: 10px; color: var(--text-muted); text-decoration: line-through; transition: opacity 0.5s; }
.mock-alert-badge {
	display: flex; align-items: center; gap: 4px;
	font-size: 10px; font-weight: 600; color: var(--green);
	background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.22);
	padding: 3px 8px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
	transition: opacity 0.5s;
}
.mock-tag { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; font-family: var(--mono); }
.mock-tag.stable { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.mock-tag.down { background: rgba(34,197,94,0.1); color: var(--green); }

.mock-nav { margin-top: auto; display: flex; justify-content: space-around; padding: 12px 0 22px; border-top: 1px solid #18182a; }
.mock-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); font-size: 10px; }
.mock-nav-item.active { color: var(--green); }

/* Floating chart card */
.phone-chart-card {
	position: absolute; left: -152px; top: 80px;
	background: #111118; border: 1px solid #22222e;
	border-radius: 14px; padding: 14px; width: 162px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03) inset;
	z-index: 3; animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.chart-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.chart-card-name { font-size: 11px; font-weight: 600; color: var(--text-sub); }
.chart-card-drop { font-size: 11px; font-weight: 700; color: var(--green); font-family: var(--mono); }
.chart-mini { width: 100%; height: 44px; display: block; }
.chart-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.chart-tag { font-size: 10px; font-weight: 600; color: var(--text-muted); background: rgba(255,255,255,0.04); padding: 2px 7px; border-radius: 100px; font-family: var(--mono); }
.chart-min { font-size: 10px; font-weight: 600; color: var(--green); }

/* Simulate button */
.sim-btn {
	position: absolute; bottom: 24px; left: 50%;
	transform: translateX(-50%);
	display: flex; align-items: center; gap: 6px;
	padding: 8px 16px; border-radius: 100px;
	background: rgba(34,197,94,0.08);
	border: 1px solid rgba(34,197,94,0.2);
	color: var(--green); font-size: 12px; font-weight: 600;
	cursor: pointer; font-family: var(--font);
	transition: all 0.2s; white-space: nowrap;
	z-index: 4;
}
.sim-btn:hover { background: rgba(34,197,94,0.15); box-shadow: 0 0 20px rgba(34,197,94,0.15); }
.sim-btn:active { transform: translateX(-50%) scale(0.96); }

/* Notif bubble */
.notif-bubble {
	position: absolute; top: 52px; right: -156px;
	background: #111118; border: 1px solid #22222e;
	border-radius: 14px; padding: 11px 14px;
	display: flex; align-items: center; gap: 10px;
	width: 204px; box-shadow: 0 12px 40px rgba(0,0,0,0.6);
	opacity: 0; transform: translateX(16px);
	transition: opacity 0.4s, transform 0.4s; z-index: 3;
}
.notif-bubble.visible { opacity: 1; transform: translateX(0); }
.notif-icon { font-size: 20px; flex-shrink: 0; }
.notif-text { display: flex; flex-direction: column; gap: 2px; }
.notif-text strong { font-size: 11px; font-weight: 600; }
.notif-text span { font-size: 11px; color: var(--green); font-family: var(--mono); }

/* ========================
   STORES BAR
======================== */
.stores-bar { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.stores-label { text-align: center; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px; }
.stores-list { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.stores-list span { font-size: 14px; font-weight: 600; color: var(--text-muted); opacity: 0.45; transition: opacity 0.2s; }
.stores-list span:hover { opacity: 0.85; }
.stores-dot { opacity: 0.15 !important; }
.stores-more { font-size: 13px !important; font-style: italic; }

/* ========================
   SECTIONS
======================== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-2); }

.section-label {
	display: inline-block; font-size: 11px; font-weight: 700;
	letter-spacing: 1.5px; text-transform: uppercase;
	color: var(--green); margin-bottom: 16px;
}

.section-title {
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 900; letter-spacing: -1.8px;
	line-height: 1.12; margin-bottom: 52px;
}

/* ========================
   STEPS
======================== */
.steps { display: flex; align-items: flex-start; }

.step {
	flex: 1; padding: 32px 28px;
	background: var(--bg-card); border: 1px solid var(--bg-card-border);
	border-radius: var(--radius);
	display: flex; flex-direction: column; gap: 14px;
	position: relative; transition: border-color 0.3s;
}
.step:hover { border-color: rgba(34,197,94,0.2); }

.step-num {
	width: 36px; height: 36px; border-radius: 10px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.07);
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 800; color: var(--text-muted);
	letter-spacing: 0.5px; font-family: var(--mono);
}
.step-num.active { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); color: var(--green); box-shadow: 0 0 16px rgba(34,197,94,0.15); }
.step-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.3px; }
.step-body p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

/* Step 1 interactive input */
.step-demo { margin-top: 12px; display: flex; gap: 8px; align-items: center; }

.step-input {
	flex: 1; padding: 9px 14px; border-radius: 8px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	color: var(--text); font-size: 12px;
	font-family: var(--mono); outline: none;
	transition: border-color 0.2s;
}
.step-input:focus { border-color: rgba(34,197,94,0.4); }
.step-input::placeholder { color: var(--text-muted); }

.step-input-btn {
	width: 32px; height: 32px; border-radius: 8px;
	background: var(--green); border: none;
	color: #000; cursor: pointer; flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	transition: all 0.2s;
}
.step-input-btn:hover { background: var(--green-light); transform: scale(1.05); }
.step-input-btn:active { transform: scale(0.95); }

.step-result {
	margin-top: 10px; font-size: 12px; font-family: var(--mono);
	color: var(--green); min-height: 20px;
}

.step-connector {
	width: 40px; flex-shrink: 0; height: 1px;
	background: linear-gradient(to right, var(--bg-card-border), transparent, var(--bg-card-border));
	margin-top: 50px;
}

/* ========================
   BENTO FEATURES
======================== */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.bento-card {
	background: var(--bg-card); border: 1px solid var(--bg-card-border);
	border-radius: var(--radius); padding: 28px;
	overflow: hidden; position: relative;
	transition: border-color 0.25s, box-shadow 0.25s;
	will-change: transform;
}

.bento-card::before {
	content: ''; position: absolute; inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(34,197,94,0.25), transparent 50%, rgba(34,197,94,0.1));
	opacity: 0; transition: opacity 0.3s; z-index: 0; pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover { border-color: rgba(34,197,94,0.15); box-shadow: 0 4px 32px rgba(34,197,94,0.06); }
.bento-card > * { position: relative; z-index: 1; }

.bento-card-glow {
	position: absolute !important; bottom: -60px; right: -60px;
	width: 200px; height: 200px;
	background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
	pointer-events: none; z-index: 0 !important;
}

.bento-large { grid-column: span 2; }

.bento-icon {
	width: 40px; height: 40px; border-radius: 12px;
	background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.12);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 16px; color: var(--green); flex-shrink: 0;
}
.bento-icon-orange { background: rgba(249,115,22,0.07); border-color: rgba(249,115,22,0.12); color: var(--orange); }
.bento-icon-blue { background: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.12); color: var(--blue); }
.bento-icon-purple { background: rgba(168,85,247,0.07); border-color: rgba(168,85,247,0.12); color: var(--purple); }

.bento-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.bento-card p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

/* Chart */
.bento-chart { margin-top: 22px; }
.bento-chart-labels { display: flex; justify-content: space-between; margin-bottom: 8px; }
.chart-label-price { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.chart-label-now { font-size: 12px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 6px; }
.chart-label-badge { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.18); }

.chart-interactive-wrap { position: relative; }
.bento-sparkline { width: 100%; height: 72px; display: block; cursor: crosshair; }
.sparkline-path { transition: stroke 0.2s; }

.bento-chart-axis { display: flex; justify-content: space-between; margin-top: 6px; }
.bento-chart-axis span { font-size: 11px; color: var(--text-muted); }

.feature-tag {
	display: inline-block; font-size: 11px; font-weight: 600;
	padding: 4px 10px; border-radius: 100px;
	background: rgba(34,197,94,0.07); color: var(--green);
	border: 1px solid rgba(34,197,94,0.12); margin-top: 16px;
}

/* Alerts */
.bento-alert-demo { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.alert-demo-item {
	display: flex; justify-content: space-between; align-items: center;
	padding: 10px 14px;
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 10px; font-size: 13px;
	transition: all 0.3s;
}
.alert-demo-item.alert-active { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.15); }
.alert-demo-item.triggered { background: rgba(34,197,94,0.15) !important; border-color: rgba(34,197,94,0.4) !important; animation: triggerFlash 0.5s ease; }
@keyframes triggerFlash { 0%{transform:scale(1)} 50%{transform:scale(1.02)} 100%{transform:scale(1)} }
.alert-demo-label { color: var(--text-muted); font-size: 12px; }
.alert-demo-value { font-weight: 700; color: var(--green); font-size: 13px; }

/* Update tiers */
.bento-update-grid { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.update-tier { flex: 1; min-width: 70px; padding: 12px 14px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; display: flex; flex-direction: column; gap: 4px; }
.update-tier-highlight { background: rgba(59,130,246,0.05); border-color: rgba(59,130,246,0.12); }
.update-tier-pro { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.12); }
.update-tier-name { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.update-tier-highlight .update-tier-name { color: var(--blue); }
.update-tier-pro .update-tier-name { color: var(--green); }
.update-tier-freq { font-size: 14px; font-weight: 700; color: var(--text-sub); }
.update-tier-pro .update-tier-freq { color: var(--text); }

.update-progress-wrap { margin-top: 20px; }
.update-progress-label { display: flex; justify-content: space-between; margin-bottom: 8px; }
.update-progress-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.update-progress-fill { height: 100%; width: 62%; background: linear-gradient(to right, var(--green-dark), var(--green)); border-radius: 100px; box-shadow: 0 0 8px rgba(34,197,94,0.4); animation: progressGlow 2s ease-in-out infinite; }
@keyframes progressGlow { 0%,100%{box-shadow:0 0 6px rgba(34,197,94,0.3)} 50%{box-shadow:0 0 12px rgba(34,197,94,0.6)} }

/* ========================
   PLANS
======================== */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }

.plan-card {
	background: var(--bg-card); border: 1px solid var(--bg-card-border);
	border-radius: var(--radius); padding: 28px; position: relative;
	transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
	will-change: transform;
}
.plan-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-2px); }
.plan-featured { border-color: rgba(34,197,94,0.3); background: linear-gradient(160deg, rgba(34,197,94,0.05) 0%, var(--bg-card) 50%); }
.plan-featured:hover { border-color: rgba(34,197,94,0.45); box-shadow: 0 8px 40px rgba(34,197,94,0.08); }

.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #000; font-size: 11px; font-weight: 800; padding: 4px 16px; border-radius: 100px; white-space: nowrap; letter-spacing: 0.3px; }
.plan-header { margin-bottom: 24px; }
.plan-name { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 10px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-value { font-size: 34px; font-weight: 900; letter-spacing: -2px; }
.plan-period { font-size: 13px; color: var(--text-muted); }
.plan-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-sub); }
.plan-feature-off { opacity: 0.35; }
.check-icon { color: var(--green); flex-shrink: 0; display: flex; align-items: center; }
.cross-icon { color: var(--text-muted); flex-shrink: 0; display: flex; align-items: center; }
.plan-featured .btn-outline { border-color: rgba(34,197,94,0.3); color: var(--green); }
.plan-featured .btn-outline:hover { background: rgba(34,197,94,0.07); border-color: rgba(34,197,94,0.45); }

/* ========================
   CTA
======================== */
.section-cta { background: var(--bg-2); }
.cta-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 24px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 24px 24px; -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 75%); mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 75%); pointer-events: none; }
.cta-glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(34,197,94,0.07) 0%, transparent 60%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(30px, 4vw, 48px); font-weight: 900; letter-spacing: -2px; line-height: 1.12; margin-bottom: 16px; }
.cta-subtitle { font-size: 16px; color: var(--text-sub); margin-bottom: 36px; }
.cta-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto 14px; flex-wrap: wrap; justify-content: center; }

.email-input {
	flex: 1; min-width: 240px; padding: 15px 20px; border-radius: 100px;
	border: 1.5px solid var(--bg-card-border);
	background: rgba(255,255,255,0.03);
	color: var(--text); font-size: 15px; font-family: var(--font);
	outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.email-input:focus { border-color: rgba(34,197,94,0.45); box-shadow: 0 0 0 3px rgba(34,197,94,0.07); }
.email-input::placeholder { color: var(--text-muted); }

.cta-note { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; margin-bottom: 32px; }
.cta-success { display: none; margin: 16px auto 0; padding: 14px 24px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 12px; color: var(--green); font-size: 15px; font-weight: 500; max-width: 480px; }
.cta-success.show { display: block; }
.form-error { margin-top: 10px; font-size: 13px; color: #f87171; text-align: center; }
.cta-counter { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.cta-counter strong { color: var(--text-sub); }
.cta-avatars { display: flex; }
.cta-avatars .avatar { margin-left: -8px; width: 26px; height: 26px; font-size: 9px; }
.cta-avatars .avatar:first-child { margin-left: 0; }

/* ========================
   FOOTER
======================== */
.footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.04); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; justify-content: center; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--text-sub); }
.footer-copy { font-size: 12px; color: #252530; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 960px) {
	.bento-grid { grid-template-columns: 1fr 1fr; }
	.bento-large { grid-column: span 2; }
	.phone-chart-card { display: none; }
	.notif-bubble { right: -10px; width: 185px; }
}

@media (max-width: 768px) {
	.nav-links { display: none; }
	.hero { padding-top: 80px; }
	.hero-title { letter-spacing: -1.8px; }
	.hero-corner { display: none; }
	.hero-cta { flex-direction: column; align-items: center; }
	.steps { flex-direction: column; gap: 0; }
	.step-connector { width: 1px; height: 24px; background: linear-gradient(to bottom, var(--bg-card-border), transparent); margin: 0 0 0 33px; }
	.bento-grid { grid-template-columns: 1fr; }
	.bento-large { grid-column: span 1; }
	.plans-grid { grid-template-columns: 1fr; }
	.cta-card { padding: 48px 24px; }
	.ticker-label { display: none; }
	.cursor-glow { display: none; }
}

@media (max-width: 480px) {
	.section { padding: 72px 0; }
	.section-title { margin-bottom: 36px; }
	.notif-bubble { display: none; }
	.email-input { min-width: 100%; }
	.btn-cta { width: 100%; justify-content: center; }
	.push-notif { width: calc(100vw - 32px); right: 16px; }
}
