@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
	--tvc-black:        #030304;
	--tvc-black-alt:    #0a0a0c;
	--tvc-panel:        rgba(14, 18, 26, 0.55);
	--tvc-panel-solid:  #101216;
	--tvc-border:       rgba(57, 135, 229, 0.28);
	--tvc-border-strong:rgba(57, 135, 229, 0.55);
	--tvc-blue:         #3987e5;
	--tvc-blue-bright:  #7db4f2;
	--tvc-blue-deep:    #1c5cab;
	--tvc-gold:         #c98500;
	--tvc-gold-bright:  #eda100;
	--tvc-text:         #e8edf3;
	--tvc-text-muted:   #8b93a0;
	--tvc-good:         #0ca30c;
	--tvc-critical:     #d03b3b;
	--tvc-grid:         #2c2c2a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
	margin: 0;
	background: var(--tvc-black);
	color: var(--tvc-text);
	font-family: 'Inter', -apple-system, sans-serif;
	overflow-x: hidden;
}

h1, h2, h3, .display {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	color: #fff;
	letter-spacing: -0.01em;
}

a { color: var(--tvc-blue-bright); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #fff; }

.bg-mesh {
	position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.bg-mesh::before, .bg-mesh::after {
	content: ''; position: absolute; border-radius: 50%;
	filter: blur(90px); opacity: 0.32;
	animation: drift 22s ease-in-out infinite alternate;
}
.bg-mesh::before {
	width: 600px; height: 600px; top: -200px; left: -150px;
	background: radial-gradient(circle, #14294a 0%, transparent 70%);
}
.bg-mesh::after {
	width: 700px; height: 700px; bottom: -250px; right: -200px;
	background: radial-gradient(circle, #3a3a10 0%, transparent 70%);
	animation-delay: -11s;
}
@keyframes drift {
	0%   { transform: translate(0, 0) scale(1); }
	100% { transform: translate(60px, 40px) scale(1.15); }
}

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

.site-nav {
	position: sticky; top: 0; z-index: 20;
	background: rgba(3, 3, 4, 0.72);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #fff; }
.brand img { width: 28px; height: 28px; border-radius: 50%; }
nav { display: flex; align-items: center; gap: 22px; }
nav a { color: var(--tvc-text-muted); font-size: 0.92rem; }
nav a:hover { color: #fff; }
nav a.cta {
	background: var(--tvc-blue); color: #04101f; padding: 8px 16px; border-radius: 8px; font-weight: 600;
}
nav a.cta:hover { background: var(--tvc-blue-bright); color: #04101f; }

.hero { text-align: center; padding: 72px 24px 40px; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--tvc-text-muted); margin-bottom: 22px;
}
.eyebrow .dot {
	width: 8px; height: 8px; border-radius: 50%; background: var(--tvc-good);
	box-shadow: 0 0 0 0 rgba(12,163,12,0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(12,163,12,0.5); }
	70% { box-shadow: 0 0 0 8px rgba(12,163,12,0); }
	100% { box-shadow: 0 0 0 0 rgba(12,163,12,0); }
}
.hero-coin-wrap img { width: 96px; height: 96px; border-radius: 50%; filter: drop-shadow(0 0 24px rgba(57,135,229,0.35)); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08; margin: 0 0 18px; }
.hero .tagline { max-width: 640px; margin: 0 auto; color: var(--tvc-text-muted); font-size: 1.05rem; line-height: 1.6; }
.hero .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.btn {
	display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; border-radius: 100px;
	font-weight: 600; font-size: 0.95rem; transition: all 0.25s ease; border: none; cursor: pointer;
	font-family: 'Inter', sans-serif;
}
.btn-blue { background: linear-gradient(135deg, var(--tvc-blue-bright), var(--tvc-blue)); color: #04101f !important; }
.btn-blue:hover { box-shadow: 0 0 28px rgba(57,135,229,0.55); transform: translateY(-2px); text-decoration: none; }
.btn-outline { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,0.18); }
.btn-outline:hover { border-color: var(--tvc-blue); background: rgba(57,135,229,0.06); text-decoration: none; transform: translateY(-2px); }

.section-title { text-align: center; font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 16px; }
.section-sub { text-align: center; color: var(--tvc-text-muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.65; font-size: 1.02rem; }

.card {
	background: var(--tvc-panel);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 32px;
}

.silver-peg-box {
	background: linear-gradient(145deg, rgba(57,135,229,0.1), rgba(0,0,0,0.2));
	border: 1px solid var(--tvc-border-strong); border-radius: 20px;
	padding: 34px 28px; margin: 30px auto; max-width: 640px; text-align: center;
}
.silver-peg-box .price { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; color: var(--tvc-blue-bright); font-weight: 700; }

.form-panel { max-width: 480px; margin: 0 auto; }
label { display: block; margin: 18px 0 6px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tvc-text-muted); font-weight: 600; }
input[type=text], input[type=email], textarea {
	width: 100%; padding: 13px 16px; border-radius: 10px;
	background: rgba(0,0,0,0.35); border: 1px solid var(--tvc-border);
	color: var(--tvc-text); font-size: 1rem; font-family: inherit;
}
input:focus, textarea:focus { outline: none; border-color: var(--tvc-blue); box-shadow: 0 0 0 3px rgba(57,135,229,0.15); }
.form-note { font-size: 0.8rem; color: var(--tvc-text-muted); margin-top: 10px; line-height: 1.5; }
.form-status { margin-top: 16px; padding: 13px 16px; border-radius: 10px; font-size: 0.9rem; display: none; }
.form-status.ok { display: block; background: rgba(63,185,80,0.12); border: 1px solid rgba(63,185,80,0.4); color: #b7f2c1; }
.form-status.err { display: block; background: rgba(229,83,75,0.12); border: 1px solid rgba(229,83,75,0.4); color: #ffcfcb; }

section { padding: 60px 24px; }
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 1140px; margin: 0 auto; }
.download-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.download-card .platform-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.download-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.download-card p { color: var(--tvc-text-muted); line-height: 1.65; margin: 0; }
.download-card .btn { margin-top: 20px; width: 100%; justify-content: center; }
.download-card .meta { font-size: 0.78rem; color: var(--tvc-text-muted); margin-top: 12px; }

.dash { padding: 44px 24px 80px; }
.dash .section-eyebrow {
	text-align: center; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--tvc-text-muted); margin-bottom: 8px;
}
.dash .section-title { text-align: center; font-size: 1.7rem; margin: 0 0 36px; }

.row { display: grid; gap: 18px; margin-bottom: 18px; }
.row-3 { grid-template-columns: repeat(3, 1fr); }
.row-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
	.row-3, .row-2 { grid-template-columns: 1fr; }
}

.panel {
	background: var(--tvc-panel-solid);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 22px 24px;
}

.stat-label { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tvc-text-muted); margin-bottom: 10px; }
.stat-value { font-size: 2.1rem; font-weight: 600; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.stat-value.gold { color: var(--tvc-gold-bright); }
.stat-value.blue { color: var(--tvc-blue-bright); }
.stat-peg { font-size: 0.82rem; color: var(--tvc-text-muted); margin-top: 6px; }
.stat-delta { font-size: 0.85rem; margin-top: 8px; font-weight: 600; }
.stat-delta.up { color: var(--tvc-good); }
.stat-delta.down { color: var(--tvc-critical); }

.panel.placeholder { border-style: dashed; border-color: rgba(255,255,255,0.16); }
.panel.placeholder .stat-value { color: var(--tvc-text-muted); font-size: 1.6rem; }
.badge-soon {
	display: inline-block; font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase;
	color: var(--tvc-text-muted); background: rgba(255,255,255,0.06); padding: 3px 8px; border-radius: 6px; margin-top: 10px;
}

.live-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.live-dot.on { background: var(--tvc-good); box-shadow: 0 0 8px rgba(12,163,12,0.6); }
.live-dot.off { background: var(--tvc-critical); box-shadow: 0 0 8px rgba(208,59,59,0.6); }
.live-label { font-size: 0.82rem; font-weight: 600; }
.live-label.on { color: var(--tvc-good); }
.live-label.off { color: var(--tvc-critical); }
.stat-sub { font-size: 0.82rem; color: var(--tvc-text-muted); margin-top: 4px; }

.chart-panel h3 { margin: 0 0 2px; font-size: 1.05rem; }
.chart-panel .stat-sub { margin-bottom: 12px; }
.chart-svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-line { fill: none; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.chart-area { opacity: 0.10; }
.chart-grid { stroke: var(--tvc-grid); stroke-width: 1; }
.chart-axis-label { fill: var(--tvc-text-muted); font-size: 10px; font-family: 'Inter', sans-serif; }
.chart-end-dot-ring { fill: var(--tvc-panel-solid); }
.chart-crosshair { stroke: rgba(255,255,255,0.28); stroke-width: 1; }
.chart-tooltip {
	position: absolute; pointer-events: none; background: #0a0a0c; border: 1px solid rgba(255,255,255,0.14);
	border-radius: 8px; padding: 6px 10px; font-size: 0.78rem; color: #fff; white-space: nowrap;
	transform: translate(-50%, -120%); transition: opacity 0.1s ease; opacity: 0;
}
.chart-wrap { position: relative; }

footer { text-align: center; padding: 32px 24px; color: var(--tvc-text-muted); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.08); }
footer a { color: var(--tvc-text-muted); }
footer a:hover { color: #fff; }
