:root { --bg:#000; --fg:#fff; --muted:#b7b7b7; --gold:#FFD700; --card:#0f0f0f; --line:#222; }
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--fg);font:16px/1.6 'Space Grotesk',system-ui,-apple-system,sans-serif}
a{color:var(--gold);text-decoration:none}
.container{max-width:980px;margin:0 auto;padding:24px}
.header{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.logo{height:120px}
.header-right{display:flex;gap:10px;align-items:center}
.net-tag{font-size:.9rem;color:var(--muted);border:1px solid var(--line);padding:6px 10px;border-radius:8px}
.hero{padding:24px 0;border-bottom:1px solid var(--line)}
h1{margin:0 0 6px 0;font-size:2.2rem}
.gold{color:var(--gold)}
.tagline{color:var(--muted)}
.hero-points{margin:14px 0 0 18px}
.panel{padding:24px 0;border-bottom:1px solid var(--line)}
h2{color:var(--gold);margin:.2rem 0 1rem}
.muted{color:var(--muted);margin-top:-4px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:18px}
@media (max-width:800px){.grid-2{grid-template-columns:1fr}}
.label{display:block;margin:.75rem 0 .35rem;color:var(--muted)}
.input{width:100%;padding:10px 12px;border-radius:10px;border:1px solid var(--line);background:#0b0b0b;color:#fff}
.btn{cursor:pointer;background:#1b1b1b;color:#fff;border:1px solid var(--line);padding:10px 14px;border-radius:10px}
.btn:hover{background:#222}
.btn-outline{background:transparent}
.btn-gold{background:var(--gold);color:#000;border-color:var(--gold)}
.card{background:var(--card);border:1px solid var(--line);border-radius:12px;padding:14px}
.card-title{font-weight:600;margin-bottom:10px;color:var(--gold)}
.kv{display:flex;justify-content:space-between;border-bottom:1px dashed #222;padding:6px 0}
.kv:last-child{border-bottom:0}
.toast{margin-top:10px;padding:10px 12px;border-left:4px solid var(--gold);background:#121212;border-radius:6px;color:#ddd}
.footer{display:flex;justify-content:space-between;gap:10px;padding-top:24px;font-size:.95rem;color:var(--muted)}
.prototype-note {
  font-size: 0.95rem;
  color: #ff6666;
  font-style: italic;
  margin-top: 6px;
}
.demo-notes {
  margin-top: 2rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #b7b7b7;
  border-top: 1px solid #222;
}
.demo-notes strong {
  color: #FFD700;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 24px;
  border-top: 1px solid #222;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-left p {
  margin: 0.25rem 0;
}

.footer-right {
  flex: 1;
}

.demo-notes {
  font-size: 0.9rem;
  color: #b7b7b7;
}

.demo-notes strong {
  color: #FFD700;
}
.hero .btn-gold,
.hero .btn-accent {
  display: inline-block;
  margin-top: 1.2rem;   /* pushes it down from tagline/disclaimer */
  margin-bottom: 1.5rem; /* gives space before bullet list */
}
#valuationCard { transition: box-shadow .2s ease; }
#valuationCard.filled { box-shadow: 0 0 0 1px #333, 0 6px 22px rgba(255,215,0,0.08); }
