/* ============================================================
   INTRA Advisor — Direction 1: Premium Minimal
   intraadvisor.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #060810;
  --bg2:       #0b1020;
  --bg3:       #101428;
  --bg4:       #12172a;
  --green:     #7ED321;
  --green2:    #5da818;
  --green3:    rgba(126, 211, 33, 0.15);
  --green4:    rgba(126, 211, 33, 0.08);
  --green-b:   rgba(126, 211, 33, 0.25);
  --text:      #ffffff;
  --text2:     rgba(255,255,255,0.55);
  --text3:     rgba(255,255,255,0.28);
  --text4:     rgba(255,255,255,0.12);
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(126,211,33,0.2);
  --maxw:      1160px;
  --pad:       clamp(1.5rem, 4vw, 3rem);
  --radius:    2px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Section separators ── */
section {
  border-top: 1px solid rgba(126, 211, 33, 0.07);
}
section:first-of-type { border-top: none; }

/* ── Grid texture ── */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(126,211,33,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,211,33,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 1rem;
}
.eyebrow-line { width: 18px; height: 1px; background: var(--green); flex-shrink: 0; }

/* ── Section title ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; border: none;
  transition: all 0.22s ease;
}
.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 20px rgba(126,211,33,0.2);
}
.btn-primary:hover {
  background: #96e835;
  box-shadow: 0 0 32px rgba(126,211,33,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 20px rgba(126,211,33,0.3);
}

/* ── Badge / pill ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green4); border: 1px solid var(--green-b);
  padding: 0.28rem 0.8rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 5px; height: 5px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
#nav {
  background: rgba(3,4,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #7ED321;
  box-shadow: 0 1px 12px rgba(126,211,33,0.45);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 82px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 64px; width: auto; }
.nav-links {
  display: flex; gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text2); transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 0.42rem 1.2rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 0 10px rgba(126,211,33,0.06);
}
.nav-cta:hover {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 18px rgba(126,211,33,0.25);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text2); transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: rgba(6,8,16,0.98);
  border-bottom: 1px solid rgba(126, 211, 33, 0.18);
  box-shadow: 0 1px 24px rgba(0,0,0,0.6);
  padding: 1.5rem var(--pad);
  gap: 1.25rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 0.88rem; color: var(--text2); font-weight: 500;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0b1020 0%, #060810 18%);
  min-height: calc(100vh - 82px);
  display: flex; flex-direction: column;
}
.hero-glow-1 {
  position: absolute; top: -15%; right: -8%;
  width: 700px; height: 700px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(126,211,33,0.07) 0%, transparent 65%);
}
.hero-glow-2 {
  position: absolute; bottom: -25%; left: -5%;
  width: 500px; height: 500px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(93,168,24,0.05) 0%, transparent 70%);
}
.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  padding: 4rem var(--pad) 5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  position: relative; z-index: 1;
}
.hero-left {}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  letter-spacing: 2px;
  line-height: 0.92;
  margin-bottom: 1.5rem;
}
.hero-h1 .line-dim { color: rgba(255,255,255,0.18); }
.hero-h1 .line-green { color: var(--green); }
.hero-sub {
  font-size: 1rem; color: var(--text2);
  line-height: 1.75; max-width: 500px;
  font-weight: 300; margin-bottom: 2.5rem;
}
.hero-sub strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

/* Stat cards */
.hero-right { display: block; }
.stat-card {
  background: var(--green4);
  border: 1px solid var(--green-b);
  padding: 1.4rem 1.6rem;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: rgba(126,211,33,0.45); }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text3);
  margin-top: 0.2rem;
}
.stat-sub {
  font-size: 0.72rem; color: var(--text3);
  margin-top: 0.2rem; font-weight: 300;
}

/* Ticker bar */
.ticker-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(6,8,16,0.85);
  backdrop-filter: blur(10px);
  padding: 0.6rem var(--pad);
  position: relative; z-index: 1;
  overflow: hidden;
}

/* Scroll-sticky clone — created by JS, fixed below nav when original scrolls out */
.ticker-sticky-clone {
  position: fixed;
  left: 0; right: 0;
  z-index: 998;
  visibility: hidden;          /* hidden by default, JS shows it */
  border-bottom: 1px solid var(--border);
  background: rgba(3,4,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem var(--pad);
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 2.5rem;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tick-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.75rem; white-space: nowrap; flex-shrink: 0;
}
.tick-sym { font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }
.tick-price { color: var(--text3); }
.tick-up { color: var(--green); font-weight: 600; }
.tick-dn { color: #f44336; font-weight: 600; }
.tick-sep { color: var(--border); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how {
  padding: 5rem 0;
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}
.how-card {
  background: var(--bg2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.how-card:hover { background: var(--bg3); }
.how-num {
  font-family: var(--font-head);
  font-size: 4rem; letter-spacing: 2px;
  color: rgba(126, 211, 33, 0.55);
  line-height: 1;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(126, 211, 33, 0.18);
  box-shadow: 0 1px 24px rgba(0,0,0,0.6);
  padding-bottom: 1rem;
}
.how-card:hover .how-num { color: rgba(126, 211, 33, 0.75); }
.how-icon {
  width: 44px; height: 44px;
  background: var(--green4);
  border: 1px solid var(--green-b);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.how-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.5; }
.how-title {
  font-family: var(--font-head);
  font-size: 1.4rem; letter-spacing: 1.5px;
  margin-bottom: 0.6rem; color: var(--text);
}
.how-desc {
  font-size: 0.82rem; color: var(--text2);
  line-height: 1.7; font-weight: 300;
}
.how-tag {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--green4); border: 1px solid var(--green-b);
  color: var(--green); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 0.2rem 0.6rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  padding: 5rem 0;
  background: var(--bg);
  position: relative;
}
.feat-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.feat-intro-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; }
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-b), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.feat-card:hover { background: var(--bg3); border-color: var(--border2); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 42px; height: 42px;
  background: var(--green4); border: 1px solid var(--green-b);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feat-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.5; }
.feat-title {
  font-family: var(--font-head);
  font-size: 1.25rem; letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.feat-desc {
  font-size: 0.8rem; color: var(--text2);
  line-height: 1.7; font-weight: 300;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
#who {
  padding: 5rem 0;
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.who-visual {
  position: relative;
}
.who-score-mock {
  background: var(--green4);
  border: 1px solid var(--green-b);
  padding: 2rem;
  position: relative; overflow: hidden;
}
.who-score-mock::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green2), var(--green));
}
.wsm-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 1px solid var(--border2); padding-bottom: 1rem; margin-bottom: 1.25rem;
}
.wsm-ticker { font-family: var(--font-head); font-size: 1.6rem; letter-spacing: 2px; }
.wsm-score { font-family: var(--font-head); font-size: 3.5rem; letter-spacing: 2px; color: var(--green); line-height: 1; }
.wsm-verdict { font-size: 0.65rem; color: var(--green); letter-spacing: 2px; text-transform: uppercase; margin-top: 0.15rem; }
.wsm-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.wsm-row { display: flex; align-items: center; gap: 0.75rem; }
.wsm-label { font-size: 0.68rem; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; min-width: 80px; }
.wsm-bar { flex: 1; height: 2px; background: rgba(255,255,255,0.06); }
.wsm-fill { height: 100%; background: linear-gradient(90deg, var(--green2), var(--green)); }
.wsm-val { font-size: 0.68rem; color: var(--green); font-weight: 600; min-width: 28px; text-align: right; }
.wsm-footer {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border2);
  font-size: 0.72rem; color: var(--text3);
}
.wsm-footer strong { color: var(--text2); font-weight: 500; }
.who-points { display: flex; flex-direction: column; gap: 1.75rem; }
.who-point { display: flex; gap: 1rem; }
.wp-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--green4); border: 1px solid var(--green-b);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.wp-icon svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 1.5; }
.wp-title { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 0.25rem; }
.wp-desc { font-size: 0.8rem; color: var(--text2); line-height: 1.65; font-weight: 300; }

/* ============================================================
   WAITLIST / CTA
   ============================================================ */
#waitlist {
  padding: 7rem 0;
  background: var(--bg);
  text-align: center;
  position: relative; overflow: hidden;
}
.waitlist-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(126,211,33,0.06) 0%, transparent 60%);
}
.waitlist-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.waitlist-h {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 2px; line-height: 0.95;
  margin-bottom: 1.25rem;
}
.waitlist-h .dim { color: rgba(255,255,255,0.2); }
.waitlist-sub {
  font-size: 0.95rem; color: var(--text2);
  line-height: 1.7; font-weight: 300;
  margin-bottom: 2.5rem;
}
.waitlist-form {
  display: flex; gap: 0; max-width: 440px; margin: 0 auto 1rem;
}
.waitlist-input {
  flex: 1;
  background: var(--bg3); border: 1px solid var(--border); border-right: none;
  padding: 0.9rem 1.25rem;
  color: var(--text); font-size: 0.85rem; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--text3); }
.waitlist-input:focus { border-color: var(--green-b); }
.waitlist-btn {
  background: var(--green); color: #000;
  padding: 0.9rem 1.6rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; border: none;
  box-shadow: 0 0 20px rgba(126,211,33,0.2);
  transition: all 0.2s; white-space: nowrap;
}
.waitlist-btn:hover { background: #96e835; box-shadow: 0 0 30px rgba(126,211,33,0.4); }
.waitlist-note { font-size: 0.7rem; color: var(--text3); }
.waitlist-note a { color: var(--text3); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-main {
  max-width: var(--maxw); margin: 0 auto; padding: var(--pad);
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 1.75rem; padding-bottom: 2rem;
}
.footer-logo-col {}
.footer-logo img { height: 64px; width: auto; margin-bottom: 1.1rem; }
.footer-tagline { font-size: 0.78rem; color: var(--text3); line-height: 1.6; font-weight: 300; }
.footer-col-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text3);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.8rem; color: var(--text3);
  transition: color 0.2s; font-weight: 300;
}
.footer-links a:hover { color: var(--green); }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 34px; height: 34px;
  background: var(--green4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--text3);
}
.social-btn:hover { background: var(--green-b); border-color: var(--green-b); color: var(--green); }
.social-btn svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 1.25rem var(--pad);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.72rem; color: var(--text3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: var(--text3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--green); }
.footer-site-link { font-size: 0.78rem; color: var(--text3); transition: color 0.2s; }
.footer-site-link:hover { color: var(--green); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 280px; gap: 2rem; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid .how-card:last-child { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-right { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }
  .stat-card { flex: 1; min-width: 140px; }
  .hero-h1 { font-size: clamp(3.5rem, 12vw, 5.5rem); }

  .how-grid { grid-template-columns: 1fr; }
  .how-grid .how-card:last-child { grid-column: auto; }

  .feat-intro { grid-template-columns: 1fr; gap: 1rem; }
  .feat-intro-right { align-items: flex-start; }
  .feat-grid { grid-template-columns: 1fr; }

  .who-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-logo-col { grid-column: 1 / -1; }

  .waitlist-form { flex-direction: column; }
  .waitlist-input { border-right: 1px solid var(--border); border-bottom: none; }
  .waitlist-btn { width: 100%; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   INTRASCORE PANEL — who-visual replacement
   ============================================================ */
.isp-card {
  background: linear-gradient(160deg, #0c1f12 0%, #091508 100%);
  border: 1px solid rgba(100, 220, 120, 0.25);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  font-family: 'Share Tech Mono', monospace;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(60, 200, 80, 0.1),
    0 0 80px rgba(60, 200, 80, 0.05),
    inset 0 1px 0 rgba(100,255,120,0.08);
}
.isp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, #00c896 40%, #c8ff00 60%, transparent 95%);
  opacity: 0.7;
}

/* Header */
.isp-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.isp-head-left { display: flex; align-items: center; gap: 0.5rem; }
.isp-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #c8ff00;
  box-shadow: 0 0 6px #c8ff00, 0 0 12px rgba(200,255,0,0.4);
  animation: isp-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes isp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.isp-panel-lbl {
  font-size: 0.62rem; letter-spacing: 2px;
  color: rgba(150,220,160,0.55); text-transform: uppercase;
}
.isp-clock {
  font-size: 0.62rem; letter-spacing: 1.5px;
  color: #c8ff00;
}

/* Ticker row */
.isp-ticker-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 1px solid rgba(100,220,120,0.12);
  padding-bottom: 0.9rem; margin-bottom: 0.5rem;
}
.isp-sym {
  font-size: 2.2rem; font-weight: 700; color: #fff;
  letter-spacing: 2px; line-height: 1;
  font-family: 'DM Sans', sans-serif;
}
.isp-sub {
  font-size: 0.6rem; color: rgba(150,220,160,0.45);
  letter-spacing: 2px; margin-top: 0.3rem; text-transform: uppercase;
}
.isp-price-col { text-align: right; }
.isp-price {
  font-size: 1.9rem; font-weight: 700; color: #fff;
  font-family: 'DM Sans', sans-serif; line-height: 1; letter-spacing: -0.5px;
}
.isp-chg {
  font-size: 0.72rem; color: #c8ff00; margin-top: 0.25rem;
  letter-spacing: 0.5px;
}

/* Gauge */
.isp-gauge-wrap {
  position: relative; display: flex;
  justify-content: center; align-items: flex-end;
  height: 130px; margin: 0.25rem 0 0.5rem;
}
.isp-gauge-halo {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 160px; height: 100px; border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(100,255,120,0.12) 0%,
    rgba(0,200,150,0.06) 40%,
    transparent 70%);
  pointer-events: none;
}
.isp-gauge-svg {
  width: 200px; height: 130px; position: relative; z-index: 1;
}
.isp-gauge-center {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%); text-align: center; z-index: 2;
}
.isp-score-num {
  font-size: 2.8rem; font-weight: 700; color: #c8ff00; line-height: 1;
  font-family: 'DM Sans', sans-serif; letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(200,255,0,0.5), 0 0 40px rgba(200,255,0,0.2);
}
.isp-score-lbl {
  font-size: 0.52rem; letter-spacing: 2px;
  color: rgba(150,220,160,0.45); text-transform: uppercase; margin-top: 0.15rem;
}

/* Metrics */
.isp-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(100,220,120,0.12);
  border-bottom: 1px solid rgba(100,220,120,0.12);
  margin-bottom: 0.85rem;
}
.isp-metric {
  text-align: center; padding: 0.65rem 0.25rem;
  border-right: 1px solid rgba(100,220,120,0.08);
}
.isp-metric:last-child { border-right: none; }
.isp-m-lbl {
  font-size: 0.52rem; letter-spacing: 1.5px;
  color: rgba(150,220,160,0.4); text-transform: uppercase; margin-bottom: 0.3rem;
}
.isp-m-val {
  font-size: 1.1rem; font-weight: 700; color: #c8ff00;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 0 12px rgba(200,255,0,0.3);
}
.isp-low { color: #c8ff00; }

/* AI Reasoning Stream */
.isp-reasoning {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(100,220,120,0.12);
  border-radius: 4px;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.85rem;
  background-image:
    linear-gradient(rgba(100,220,120,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,220,120,0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  position: relative; overflow: hidden;
}
.isp-r-label {
  font-size: 0.55rem; letter-spacing: 2px;
  color: #00c896; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.isp-r-lines { display: flex; flex-direction: column; gap: 0.35rem; }
.isp-r-line {
  font-size: 0.7rem; color: rgba(200,255,180,0.75);
  letter-spacing: 0.3px; line-height: 1.4;
}
.isp-arrow { color: #c8ff00; margin-right: 0.35rem; }
.isp-cursor {
  color: #c8ff00;
  animation: isp-blink 1s step-end infinite;
}
@keyframes isp-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Footer row */
.isp-footer-row {
  display: flex; align-items: center; gap: 0.75rem;
}
.isp-verdict {
  background: #c8ff00; color: #000;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 0.42rem 1rem; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(200,255,0,0.35);
}
.isp-conf {
  border: 1px solid rgba(100,220,120,0.2);
  color: rgba(200,255,180,0.55);
  font-size: 0.68rem; padding: 0.38rem 0.75rem;
  flex-shrink: 0; letter-spacing: 0.5px;
}
.isp-sig {
  margin-left: auto; font-size: 0.62rem;
  color: rgba(150,220,160,0.3); letter-spacing: 0.5px;
}

/* Stat cards column in who-visual */
.stat-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ISP card in hero — slight top alignment tweak */
.hero-right .isp-card {
  margin-top: 0;
}

/* Ticker loading placeholder */
.tick-loading { color: var(--text4); font-size: 0.65rem; }
