/* ═══════════════════════════════════════════════════════════════════════════
   HOME — Blue series · Yellow series · Dark
   All classes prefixed v3- so nothing leaks to other pages
═══════════════════════════════════════════════════════════════════════════ */

/* ── PALETTE ─────────────────────────────────────────────────────────────── */
:root {
  /* Blues */
  --b900: #0A1628;
  --b800: #0F2044;
  --b700: #1E3A8A;
  --b600: #1D4ED8;
  --b500: #3B82F6;
  --b400: #60A5FA;
  --b300: #93C5FD;
  --b200: #BFDBFE;

  /* Yellows */
  --y700: #B45309;
  --y600: #D97706;
  --y500: #F59E0B;
  --y400: #FBBF24;
  --y300: #FCD34D;
  --y200: #FDE68A;

  /* Neutrals */
  --black:  #0C111D;
  --dark:   #131B2E;
  --grey9:  #1A2235;
  --grey8:  #232E45;
  --grey6:  #6B7280;
  --grey4:  #A8B5C8;
  --grey2:  #E5E7EB;
  --white:  #FFFFFF;
  --offwh:  #F9FAFB;

  --navy:     var(--b900);
  --teal:     var(--b500);
  --cyan:     var(--b400);
  --off-white: var(--white);
  --warm-grey: var(--grey4);
  --subtle:    var(--grey6);
  --text:      var(--white);
  --border:    rgba(59,130,246,0.15);
  --alt-bg:    var(--dark);

  
}

body { background: var(--black); }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
/* #nav {
  background: rgba(10,16,32,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(16px);
}
.logo-name { color: var(--white); }
.logo-sub  { color: var(--b400); }
.nav-btn   { color: var(--grey4); font-size: 12.5px; letter-spacing: .02em; }
.nav-btn:hover  { color: var(--y400); }
.nav-btn.active { color: var(--white); }
.nav-btn.active::after { background: var(--y500); } */

#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: rgba(10,16,32,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,191,184,0.15);
  transition: all .35s ease;
  display: flex; align-items: center;
}
#nav.scrolled {
  border-bottom-color: rgba(45,191,184,0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-name { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--off-white); letter-spacing: .01em; }
.logo-sub  { font-family: var(--mono); font-size: 9px; color: var(--teal); letter-spacing: .14em; text-transform: uppercase; margin-top: -1px; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-btn {
  padding: 7px 14px; border: none; background: transparent;
  color: var(--warm-grey); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer; border-radius: 3px;
  transition: all .2s; font-family: var(--sans); font-weight: 500;
  border-bottom: 1.5px solid transparent;
}
.nav-btn:hover  { color: var(--teal); }
.nav-btn.active { color: var(--off-white); border-bottom-color: var(--teal); background: rgba(45,191,184,.08); }


/* ── HERO ────────────────────────────────────────────────────────────────── */
.v3-hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #0C1A36 0%, #0A1428 55%, #0C1020 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Subtle blueprint grid */
.v3-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

#particle-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; opacity: .65;
}

.v3-hero-glow {
  position: absolute; top: -160px; right: -100px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(29,78,216,0.28) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
}
.v3-hero-glow2 {
  position: absolute; bottom: 0; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
}

/* Accent stripe below nav */
.v3-top-stripe {
  position: absolute; top: 64px; left: 0; right: 0;
  height: 2px; z-index: 3;
  background: linear-gradient(90deg, transparent 0%, var(--y500) 20%, var(--b500) 70%, transparent 100%);
}

/* ── Main grid ── */
.v3-hero-body {
  flex: 1; position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px 60px;
  width: 100%;
}

/* ── LEFT: Big name treatment ── */
.v3-namestack { margin-bottom: 36px; }

.v3-name-top {
  display: block;
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  font-weight: 200;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}
.v3-name-bot {
  display: block;
  font-family: var(--sans);
  font-size: clamp(3.2rem, 7.5vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #93C5FD 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v3-name-lab {
  display: flex; align-items: center; gap: 14px;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .45em;
  text-transform: uppercase; color: var(--y400);
}
.v3-name-lab::before {
  content: ''; flex: 0 0 48px; height: 1px; background: var(--y500);
}

/* Typewriter strip */
.v3-tstrip {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 24px 0; margin: 0 0 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v3-tpre {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.38); white-space: nowrap;
}
#typewriter {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700; color: var(--y300);
  -webkit-text-fill-color: var(--y300);
}
.cursor {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--y500); -webkit-text-fill-color: var(--y500);
  animation: blink .9s step-end infinite;
}

.v3-sub {
  font-size: 14px; color: var(--grey4);
  line-height: 1.8; max-width: 460px;
  margin-bottom: 32px; font-weight: 300;
}

.v3-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.v3-btn-primary {
  padding: 13px 28px;
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
  color: var(--white); border: none; border-radius: 6px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  cursor: pointer; letter-spacing: .03em;
  transition: box-shadow .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(29,78,216,0.45);
}
.v3-btn-primary:hover {
  box-shadow: 0 4px 36px rgba(59,130,246,0.6);
  transform: translateY(-2px);
}
.v3-btn-ghost {
  padding: 13px 28px; background: transparent;
  color: var(--y400); border: 1px solid rgba(245,158,11,0.45);
  border-radius: 6px; font-family: var(--mono); font-size: 12px;
  cursor: pointer; letter-spacing: .05em;
  transition: background .2s, border-color .2s;
}
.v3-btn-ghost:hover { background: rgba(245,158,11,0.09); border-color: var(--y400); }

/* ── RIGHT: Linux terminal card ── */
.v3-dash {
  background: #0D1117;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

/* Linux terminal title bar */
.v3-dash-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: #1C1C1C;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v3-dash-dot { display: none; }
.v3-dash-bar-title {
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: .04em; margin-left: 0;
  text-transform: none;
}
.v3-dash-bar-right {
  font-family: var(--mono); font-size: 9px;
  color: rgba(255,255,255,0.2); letter-spacing: .06em;
}

/* Terminal prompt line */
.v3-term-prompt {
  display: flex; align-items: center; flex-wrap: wrap;
  padding: 9px 16px 8px;
  background: #0D1117;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: var(--mono); font-size: 12px;
}
.v3-term-user  { color: #4ADE80; font-weight: 600; }
.v3-term-at    { color: rgba(255,255,255,0.3); }
.v3-term-host  { color: #4ADE80; font-weight: 600; }
.v3-term-colon { color: rgba(255,255,255,0.3); }
.v3-term-dir   { color: #60A5FA; }
.v3-term-sym   { color: #FBBF24; font-weight: 700; margin: 0 5px; }
.v3-term-cmd   { color: #F9FAFB; }

/* Research area rows */
.v3-dash-body { padding: 4px 0; }
.v3-dash-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .2s; cursor: pointer;
}
.v3-dash-row:last-child { border-bottom: none; }
.v3-dash-row:hover { background: rgba(255,255,255,0.04); }
.v3-dash-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 15px;
}
.di-b { background: rgba(96,165,250,0.12);  color: #60A5FA; }
.di-y { background: rgba(251,191,36,0.12);  color: #FBBF24; }
.di-g { background: rgba(74,222,128,0.12);  color: #4ADE80; }
.di-p { background: rgba(196,181,253,0.12); color: #C4B5FD; }
.v3-dash-info { flex: 1; }
.v3-dash-title { font-family: var(--mono); font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.v3-dash-row:nth-child(1) .v3-dash-title { color: #60A5FA; }
.v3-dash-row:nth-child(2) .v3-dash-title { color: #FBBF24; }
.v3-dash-row:nth-child(3) .v3-dash-title { color: #4ADE80; }
.v3-dash-row:nth-child(4) .v3-dash-title { color: #C4B5FD; }
.v3-dash-sub   { font-size: 11px; color: var(--grey6); font-family: var(--mono); }

/* Pulsing activity indicator */
.v3-dash-active {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px #4ADE80;
  animation: pulse-dot 2.5s infinite;
  flex-shrink: 0;
}
.v3-dash-active.yellow { background: #FBBF24; box-shadow: 0 0 6px #FBBF24; }

/* Stats mini-grid inside card */
.v3-dash-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.v3-ds {
  padding: 16px 0; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.v3-ds:last-child { border-right: none; }
.v3-ds-num {
  font-family: var(--mono); font-size: 1.6rem;
  font-weight: 700; line-height: 1; margin-bottom: 3px;
}
.v3-ds:nth-child(1) .v3-ds-num { color: var(--y400); }
.v3-ds:nth-child(2) .v3-ds-num { color: var(--b400); }
.v3-ds:nth-child(3) .v3-ds-num { color: var(--b300); }
.v3-ds-lbl { font-family: var(--mono); font-size: 9px; color: var(--grey6); letter-spacing: .1em; text-transform: uppercase; }

/* ── Bottom info bar ── */
.v3-hero-bar {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0 40px;
  display: flex; align-items: stretch;
}
.v3-bar-item {
  flex: 1; padding: 16px 24px;
  font-family: var(--mono); font-size: 11px;
  color: var(--grey4); letter-spacing: .06em;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 3px;
}
.v3-bar-item:last-child { border-right: none; }
.v3-bar-item span { color: var(--b400); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .5; }
}

/* ── RESEARCH ROWS SECTION ───────────────────────────────────────────────── */
.v3-research {
  background: #0F1829;
  padding: 96px 0;
  border-top: 1px solid rgba(59,130,246,0.1);
}

.v3-sec-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--b400);
  margin-bottom: 10px;
}
.v3-sec-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
  margin: 0 0 6px;
}
.v3-sec-rule {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--y500), var(--b500));
  border-radius: 2px;
  margin-bottom: 0;
}

.v3-research-list { margin-top: 56px; }

.v3-rrow {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  position: relative;
  transition: padding-left .2s;
}
.v3-rrow::before {
  content: '';
  position: absolute; left: -40px; top: 0; bottom: 0;
  width: 4px;
  background: var(--b500);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity .2s;
}
.v3-rrow:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.v3-rrow:hover { padding-left: 12px; }
.v3-rrow:hover::before { opacity: 1; }
.v3-rrow:hover .v3-rnum { color: var(--y400); }
.v3-rrow:hover .v3-rtitle { color: var(--b400); }
.v3-rrow:hover .v3-rarrow { color: var(--b400); transform: translateX(4px); }

.v3-rnum {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey6);
  letter-spacing: .12em;
  transition: color .2s;
  font-weight: 500;
}
.v3-rmid { display: flex; align-items: center; gap: 20px; }
.v3-ricon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1);
  border-radius: 8px;
  color: var(--b400);
}
.v3-rtitle {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--offwh);
  margin: 0 0 4px;
  transition: color .2s;
}
.v3-rdesc {
  font-size: 13px;
  color: var(--grey6);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}
.v3-rarrow {
  font-size: 20px;
  color: rgba(255,255,255,0.15);
  transition: color .2s, transform .2s;
  flex-shrink: 0;
}

.v3-research-cta {
  margin-top: 36px;
  display: flex;
  justify-content: flex-end;
}
.v3-link-btn {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--b400);
  border: 1px solid rgba(59,130,246,0.25);
  background: transparent;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: .06em;
  transition: background .2s, border-color .2s;
}
.v3-link-btn:hover { background: rgba(59,130,246,0.08); border-color: var(--b400); }

/* ── YELLOW STATS BAND ───────────────────────────────────────────────────── */
.v3-band {
  background: var(--y500);
  padding: 0;
  overflow: hidden;
}
.v3-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.v3-band-stat {
  padding: 40px 48px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: background .2s;
}
.v3-band-stat:last-child { border-right: none; }
.v3-band-stat:hover { background: rgba(0,0,0,0.05); }
.v3-band-num {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.v3-band-num1 {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.v3-band-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

/* ── HOME RESEARCH TABS ──────────────────────────────────────────────────── */
.v3-rtabs {
  display: flex; gap: 0; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.v3-rtab {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .06em; padding: 11px 18px;
  border: none; border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent; color: var(--grey4);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: color .2s, border-color .2s, background .2s;
}
.v3-rtab:hover { color: var(--y400); }
.v3-rtab.active { color: var(--b300); border-bottom-color: var(--b500); background: rgba(59,130,246,0.06); }

/* Active row state when a tab is selected */
.v3-rrow-active { padding-left: 12px; background: rgba(59,130,246,0.05); }
.v3-rrow-active::before { opacity: 1; }
.v3-rrow-active .v3-rnum { color: var(--y400); }
.v3-rrow-active .v3-rtitle { color: var(--b400); }
.v3-rrow-active .v3-rarrow { color: var(--b400); transform: translateX(4px); }

/* ── FEATURED WORK (replaces PI section) ─────────────────────────────────── */
.v3-highlights {
  background: #0A1628;
  padding: 96px 0;
  border-top: 1px solid rgba(59,130,246,0.1);
}
.v3-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v3-feat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 12px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .2s, background .2s;
  position: relative; overflow: hidden;
}
.v3-feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; opacity: 0; transition: opacity .25s;
}
.v3-feat-card:nth-child(1)::before { background: linear-gradient(90deg, #1D4ED8, #60A5FA); }
.v3-feat-card:nth-child(2)::before { background: linear-gradient(90deg, #B45309, #FBBF24); }
.v3-feat-card:nth-child(3)::before { background: linear-gradient(90deg, #065F46, #4ADE80); }
.v3-feat-card:hover { border-color: rgba(59,130,246,0.3); background: rgba(255,255,255,0.06); }
.v3-feat-card:hover::before { opacity: 1; }
.v3-feat-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
  display: inline-block; width: fit-content;
}
.v3-feat-tag-blue   { background: rgba(59,130,246,0.12); color: #60A5FA; border: 1px solid rgba(59,130,246,0.2); }
.v3-feat-tag-yellow { background: rgba(245,158,11,0.12); color: #FBBF24; border: 1px solid rgba(245,158,11,0.2); }
.v3-feat-tag-green  { background: rgba(74,222,128,0.12); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.v3-feat-title {
  font-family: var(--sans); font-size: 1.4rem;
  font-weight: 700; color: var(--white); margin: 0;
}
.v3-feat-desc {
  font-size: 14px; color: var(--grey4);
  line-height: 1.7; margin: 0; flex: 1;
}

/* ── PI SECTION ──────────────────────────────────────────────────────────── */
.v3-pi {
  background: #0F1E3C;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.v3-pi::before {
  content: 'PI';
  position: absolute;
  right: -20px; top: -40px;
  font-size: 280px;
  font-weight: 700;
  color: rgba(59,130,246,0.04);
  font-family: var(--sans);
  letter-spacing: -.05em;
  pointer-events: none;
  line-height: 1;
}
.v3-pi-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: start;
  position: relative; z-index: 1;
}
.v3-pi-divider { background: rgba(59,130,246,0.15); }
.v3-pi-left { padding-right: 72px; }
.v3-pi-right { padding-left: 72px; }

.v3-pi-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--y500); margin-bottom: 16px;
}
.v3-pi-name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.15;
}
.v3-pi-role {
  font-family: var(--mono); font-size: 12px;
  color: var(--b400); letter-spacing: .06em;
  margin-bottom: 28px;
}
.v3-pi-bio {
  font-size: 14px; color: var(--grey4);
  line-height: 1.8; margin-bottom: 28px;
  font-weight: 300;
}
.v3-pi-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.v3-chip {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .08em;
  padding: 5px 12px; border-radius: 3px;
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--b300);
  background: rgba(59,130,246,0.07);
}
.v3-scholar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--y500);
  color: var(--black);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  border-radius: 5px; text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.v3-scholar-btn:hover { background: var(--y400); transform: translateY(-1px); }

/* Right side — detail cards */
.v3-pi-cards { display: flex; flex-direction: column; gap: 12px; }
.v3-pi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 18px;
  transition: border-color .2s, background .2s;
}
.v3-pi-card:hover { border-color: rgba(59,130,246,0.3); background: rgba(255,255,255,0.06); }
.v3-pi-card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 18px;
}
.v3-pi-card-icon.ic-y { background: rgba(245,158,11,0.12); color: var(--y400); }
.v3-pi-card-icon.ic-b { background: rgba(59,130,246,0.12); color: var(--b400); }
.v3-pi-card-title { font-size: 13px; color: var(--grey4); margin-bottom: 2px; }
.v3-pi-card-val   { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--white); }

/* ── NEWS ────────────────────────────────────────────────────────────────── */
.v3-news {
  background: #111827;
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.v3-news-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.v3-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.v3-news-card {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.v3-news-card:last-child { border-right: none; }
.v3-news-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--y500), var(--b500));
  opacity: 0;
  transition: opacity .25s;
}
.v3-news-card:hover { background: rgba(255,255,255,0.08); }
.v3-news-card:hover::before { opacity: 1; }

.v3-news-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--y500);
  margin-bottom: 16px;
}
.v3-news-tag::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--y500);
  box-shadow: 0 0 6px var(--y500);
}
.v3-news-text {
  font-size: 14px; color: var(--grey4);
  line-height: 1.7; margin: 0;
}
.v3-news-text strong { color: var(--white); font-weight: 500; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: #0C1526 !important;
  border-top: 1px solid rgba(59,130,246,0.1) !important;
}
.footer-brand      { color: var(--white) !important; }
.footer-brand-sub  { color: var(--b500) !important; }
.footer-col-head   { color: var(--b400) !important; }
.footer-link       { color: var(--grey6) !important; }
.footer-link:hover { color: var(--y400) !important; }
.footer-divider    { background: rgba(59,130,246,0.08) !important; }
.footer-bottom     { color: var(--grey6) !important; }

/* ── REVEAL ──────────────────────────────────────────────────────────────── */
.v3-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.v3-reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v3-hero-body { grid-template-columns: 1fr; }
  .v3-hero-right {
    flex-direction: row; padding-left: 0;
    border-left: none; border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px; flex-wrap: wrap; gap: 12px;
  }
  .v3-stat-block { flex: 1; min-width: 140px; }
  .v3-pi-grid { grid-template-columns: 1fr; }
  .v3-pi-divider { display: none; }
  .v3-pi-left { padding-right: 0; margin-bottom: 48px; }
  .v3-pi-right { padding-left: 0; }
  .v3-news-grid { grid-template-columns: 1fr; }
  .v3-news-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .v3-news-card:last-child { border-bottom: none; }
  .v3-band-inner { grid-template-columns: 1fr; }
  .v3-band-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
}
@media (max-width: 640px) {
  .v3-hero-body { padding: 0 20px; padding-top: 100px; padding-bottom: 32px; }
  .v3-rrow { grid-template-columns: 48px 1fr auto; gap: 16px; }
  .v3-rmid { gap: 12px; }
  .v3-rdesc { display: none; }
}
