/* Hero grid background */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(600px 300px at 10% 20%, rgba(123,175,212,.15), transparent 60%),
    radial-gradient(600px 300px at 90% 10%, rgba(42,110,166,.12), transparent 60%),
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px, 24px 24px;
  animation: grid-drift 40s linear infinite;
  opacity: .7;
  pointer-events: none;
}
@keyframes grid-drift { to { background-position: 0 0, 0 0, 24px 24px, 24px 24px; } }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #7BAFD4; display: inline-block; }

/* KPI cards */
.kpi {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.kpi span { display:block; font-weight: 600; color: #94A3B8; font-size: 12px; margin-top: 4px; }

/* Value table */
.value-table { border-collapse: collapse; background: rgba(255,255,255,.02); border-radius: 16px; overflow: hidden; }
.value-table th, .value-table td { text-align:left; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.value-table thead th { background: rgba(255,255,255,.06); color:#cbd5e1; font-weight: 700; }
.value-table tbody tr:hover { background: rgba(255,255,255,.03); }

/* Timeline */
.timeline { position: relative; }
.time-row { display: grid; grid-template-columns: 64px 1fr; gap: 16px; margin-bottom: 18px; }
.time-col { position: relative; display:flex; flex-direction:column; align-items:center; }
.time-col .num { font-size: 28px; font-weight: 800; color: #cbd5e1; opacity: .9; }
.time-col .tick { flex:1; width:2px; background: linear-gradient(180deg, #7BAFD4 0%, transparent 100%); margin-top: 8px; opacity:.6; }
.time-col .tick.end { background: linear-gradient(180deg, #7BAFD4 0%, #7BAFD4 70%, transparent 100%); }
.tile {
  background: #0F172A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0,0,0,.32); }
.tile h3 { font-weight: 900; }
.tile .hash { color: #7BAFD4; margin-right: 6px; }
.tile .sub { font-style: italic; color: #cbd5e1; margin-top: 2px; }
.tile .bul { margin-top: 8px; color: #cbd5e1; font-size: 14px; }
.tile .bul li { position: relative; padding-left: 18px; margin: 6px 0; }
.tile .bul li::before { content: '▸'; position: absolute; left: 0; color: #7BAFD4; }
.tile .btn {
  display:inline-flex; margin-top: 10px; padding: 10px 14px; border-radius:10px;
  background:#7BAFD4; color:#0B1220; font-weight:700; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 24px rgba(123,175,212,.22); transition: transform .15s ease, background .2s ease;
}
.tile .btn:hover { background:#2A6EA6; transform: translateY(-1px); }

/* Cards */
.card {
  background: #0F172A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* Reviews */
.rev {
  flex: 0 0 auto;
  min-width: 280px;
  background: #0F172A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
  font-size: 14px;
}
.rev span { color:#94A3B8; font-size:12px; margin-left:6px }
#marquee:hover { animation-play-state: paused; }

/* FAQ */
.faq {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin-top: 8px; color: #cbd5e1; font-size: 14px; }

/* Entrance reveal (prefers-reduced-motion respected in JS) */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fadeUp {
  opacity: 1;
  transform: translateY(0);
}

/* Final attempt - Simple bright glow */
@keyframes final-glow {
  0% {
    filter: drop-shadow(0 0 6px #7BAFD4) !important;
  }
  33% {
    filter: drop-shadow(0 0 8px #42A5F5) !important;
  }
  66% {
    filter: drop-shadow(0 0 7px #5CBDEA) !important;
  }
  100% {
    filter: drop-shadow(0 0 6px #7BAFD4) !important;
  }
}
