/* ══════════════════════════════════════════════════════════════════
   STOBOX — Investors v3 (page-specific overrides)
   Loads AFTER /css/v3-system.css.
   ══════════════════════════════════════════════════════════════════ */

/* ── HERO (shared pattern) ───────────────────────────────────── */
.hero{
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: calc(100vh - 52px);
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  color: var(--bg);
}
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 75%, transparent);
  pointer-events: none;
  z-index: 1;
}
.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, transparent 30%, rgba(10,14,44,0.55) 70%, var(--bg-dark) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero .sec-bg-img{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.34; mix-blend-mode: screen;
  pointer-events: none; z-index: 0; display: block;
  animation: bg-drift-a 22s ease-in-out infinite;
}
@keyframes glow-breathe{ 0%,100%{ opacity:.55; filter:blur(70px) } 50%{ opacity:1; filter:blur(90px) } }
.hero-glow{
  position: absolute;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  top: -10%; left: 35%;
  background: radial-gradient(circle at 50% 50%,
    rgba(99,91,255,0.45) 0%, rgba(99,91,255,0.20) 30%,
    rgba(99,91,255,0.05) 60%, transparent 80%);
  pointer-events: none; z-index: 1;
  animation: glow-breathe 7s ease-in-out infinite;
}
.hero-content{
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 80px var(--gutter) 60px;
  position: relative; z-index: 2;
}
.hero-eye{
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-hi);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.hero-eye::before{ content:''; width:24px; height:2px; background:var(--accent-hi) }
.hero h1{
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 6.4vw, 116px);
  line-height: 0.9; letter-spacing: -0.02em;
  color: var(--bg); margin-bottom: 24px; text-transform: uppercase;
}
.hero h1 .line{ display: block; overflow: hidden }
.hero h1 .line span{ display: inline-block; transform: translateY(102%); animation: rise .9s var(--ease) forwards }
.hero h1 .line:nth-child(1) span{ animation-delay: .1s }
.hero h1 .line:nth-child(2) span{ animation-delay: .22s }
.hero h1 .line:nth-child(3) span{ animation-delay: .34s }
.hero h1 em{ font-style: normal; color: var(--accent-hi) }
@keyframes rise{ to { transform: none } }
.hero-sub{
  font-family: var(--body); font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 64ch;
  margin-bottom: 32px;
  opacity: 0; animation: fade .5s var(--ease) .2s forwards;
}
.hero-sub strong{ color: var(--bg); font-weight: 600 }
.hero .btn-g{ border-color: rgba(255,255,255,0.4); color: var(--bg) }
.hero .btn-g:hover{ background: var(--bg); color: var(--ink); border-color: var(--bg) }
@keyframes fade{ to { opacity: 1 } }
.hero-btns{ display: flex; align-items: center; gap: 16px; opacity: 0; animation: fade .5s var(--ease) .35s forwards }
.hero-note{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(165,180,252,0.25);
  background: rgba(99,91,255,0.10);
  display: inline-block;
  max-width: 60ch;
}

.hero-ribbon{
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-dark-2); position: relative; z-index: 3;
  padding: 0 var(--gutter);
}
.ribbon-inner{
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.ribbon-item{
  padding: 26px 28px; border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 8px;
}
.ribbon-item:last-child{ border-right: 0 }
.ribbon-key{ font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.55) }
.ribbon-val{
  font-family: var(--display); font-weight: 800; font-size: 36px;
  color: var(--bg); line-height: 1; letter-spacing: -0.022em;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.ribbon-unit{
  font-family: var(--mono); font-weight: 400; font-size: 10px;
  letter-spacing: .12em; color: rgba(255,255,255,0.55); text-transform: uppercase;
}
@media (max-width: 1100px){
  .ribbon-inner{ grid-template-columns: repeat(3, 1fr) }
  .ribbon-item:nth-child(3n){ border-right: 0 }
  .ribbon-item:nth-child(-n+3){ border-bottom: 1px solid rgba(255,255,255,0.08) }
}
@media (max-width: 600px){
  .ribbon-inner{ grid-template-columns: repeat(2, 1fr) }
  .ribbon-item{ padding: 14px 16px }
  .ribbon-item:nth-child(2n){ border-right: 0 }
  .ribbon-item:nth-child(2n+1){ border-right: 1px solid rgba(255,255,255,0.08) }
  .ribbon-val{ font-size: 22px }
}
@media (max-width: 1024px){ .hero{ min-height: auto } .hero-content{ padding: 60px var(--gutter) 50px } }
@media (min-width: 768px){ .hero h1 .line span{ white-space: nowrap } }

/* ── CONTEXT POEM ────────────────────────────────────────────── */
.ctx-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 50px;
  align-items: start;
}
.ctx-poem p{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.2;
  color: var(--ink-3);
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ctx-poem p:last-child{ margin-bottom: 0 }
.ctx-poem p.accent{ color: var(--accent) }
.ctx-body p{
  font-family: var(--body); font-size: 15.5px; line-height: 1.7;
  color: var(--ink-2); margin-bottom: 18px;
}
.ctx-body p:last-child{ margin-bottom: 0 }
.ctx-body strong{ color: var(--ink); font-weight: 600 }
@media (max-width: 920px){ .ctx-grid{ grid-template-columns: 1fr; gap: 36px } }

/* ── POSITION (dark) ─────────────────────────────────────────── */
.pos-statement{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.022em;
  color: var(--bg);
  text-transform: uppercase;
  margin-bottom: 50px;
  max-width: 22ch;
}
.pos-statement em{ font-style: normal; color: var(--accent-hi) }
.pos-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-top: 40px;
}
.pos-stat{
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.pos-stat:last-child{ border-right: 0 }
.pos-stat-num{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 5vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--accent-hi);
  margin-bottom: 12px;
}
.pos-stat-label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.pos-note{
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-top: 32px;
}
@media (max-width: 920px){
  .pos-stats{ grid-template-columns: 1fr }
  .pos-stat{ border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08) }
  .pos-stat:last-child{ border-bottom: 0 }
}

/* ── INVESTMENT CARDS ────────────────────────────────────────── */
.inv-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 60px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.inv-card{
  background: var(--bg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base) var(--ease),
              transform .45s cubic-bezier(.22,1,.36,1),
              box-shadow .45s cubic-bezier(.22,1,.36,1);
}
.inv-card--dark{
  background: var(--bg-dark-2);
  color: var(--bg);
}
.inv-card:hover{
  background: var(--blue-ice);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -22px rgba(99,91,255,0.22),
              0 6px 14px -4px rgba(10,14,44,0.05);
}
/* Dark card hover: solid blurple-tinted navy (no gradient overlay,
   no translucent wash) + 4px lift + accent-tinted shadow. Earlier
   versions used rgba(99,91,255,0.15) and a linear-gradient sheen,
   both of which read as a "ghosted" lavender wash on hover. Solid
   #1c1c5e keeps all the white text fully legible. */
.inv-card--dark:hover{
  background: #1c1c5e;
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -22px rgba(99,91,255,0.40);
}
.inv-card-badge{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-bd);
  background: var(--accent-bg);
  padding: 5px 10px;
  border-radius: 1px;
  align-self: flex-start;
  margin-bottom: 24px;
}
.inv-card--dark .inv-card-badge{
  color: var(--accent-hi);
  border-color: rgba(165,180,252,0.4);
  background: rgba(99,91,255,0.18);
}
.inv-card-title{
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 18px;
  color: var(--ink);
}
.inv-card--dark .inv-card-title{ color: var(--bg) }
.inv-card-desc{
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.inv-card--dark .inv-card-desc{ color: rgba(255,255,255,0.78) }
.inv-card-checks{
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--rule);
}
.inv-card--dark .inv-card-checks{ border-top-color: rgba(255,255,255,0.10) }
.inv-card-checks li{
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 11px 0 11px 22px;
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
}
.inv-card--dark .inv-card-checks li{ color: rgba(255,255,255,0.78); border-bottom-color: rgba(255,255,255,0.08) }
.inv-card-checks li::before{
  content: '+';
  position: absolute; left: 0; top: 10px;
  color: var(--accent);
  font-weight: 600; font-family: var(--mono); font-size: 14px;
}
.inv-card--dark .inv-card-checks li::before{ color: var(--accent-hi) }
.inv-card-cta{
  font-family: var(--body);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 1px;
  border: 1px solid;
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--t-base) var(--ease), color var(--t-base);
}
.inv-card-cta::after{ content: '→' }
.inv-card-cta--light{
  color: var(--bg); background: var(--accent); border-color: var(--accent);
}
.inv-card-cta--light:hover{ background: var(--accent-lo); border-color: var(--accent-lo) }
.inv-card-cta--dark{
  color: var(--ink); background: var(--bg); border-color: var(--bg);
}
.inv-card-cta--dark:hover{ background: var(--accent-hi); color: var(--ink); border-color: var(--accent-hi) }

@media (max-width: 920px){ .inv-cards{ grid-template-columns: 1fr } }

/* ── COMPARISON ──────────────────────────────────────────────── */
.inv-compare{
  margin-top: 50px;
  border: 1px solid var(--rule);
}
.inv-compare-head, .inv-compare-row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.inv-compare-head{
  background: var(--ink);
  color: var(--bg);
}
.inv-compare-head > div{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.inv-compare-head > div:last-child{ border-right: 0 }
.inv-compare-row{
  border-top: 1px solid var(--rule);
  background: var(--bg);
  transition: background var(--t-fast);
}
.inv-compare-row:hover{ background: var(--bg-2) }
.inv-compare-row > div{
  padding: 18px 20px;
  border-right: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.inv-compare-row > div:last-child{ border-right: 0 }
.inv-compare-topic{
  font-family: var(--mono) !important;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink) !important;
}
.inv-compare-col--accent{
  background: var(--accent-bg);
  color: var(--ink) !important;
  font-weight: 600 !important;
}
.inv-compare-note{
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-3);
  font-style: italic;
}
@media (max-width: 920px){
  .inv-compare-head{ display: none }
  .inv-compare-row{ grid-template-columns: 1fr; padding: 8px 0 }
  .inv-compare-row > div{ border-right: 0; border-bottom: 1px solid var(--rule-soft); padding: 10px 14px }
  .inv-compare-row > div:last-child{ border-bottom: 0 }
}

/* ── VALIDATION (single-column quotes) ───────────────────────── */
.val-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 1px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.val-item{
  background: var(--bg);
  padding: 32px 28px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.008em;
  display: flex;
  align-items: flex-start;
  position: relative;
  transition: background var(--t-base);
}
.val-item:hover{ background: var(--blue-ice) }
.val-item::before{
  content: '★';
  color: var(--accent);
  font-size: 14px;
  margin-right: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}
@media (max-width: 920px){ .val-grid{ grid-template-columns: 1fr } }

/* ── INVESTOR TEAM ───────────────────────────────────────────── */
.inv-team{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.inv-team-card{
  background: var(--bg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base);
}
.sec.alt .inv-team-card{ background: var(--bg-2) }
.inv-team-card:hover, .sec.alt .inv-team-card:hover{ background: var(--blue-ice) }
.inv-team-avatar{
  width: 72px; height: 72px;
  margin-bottom: 18px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-2);
}
.inv-team-avatar img{ width: 100%; height: 100%; object-fit: cover }
.inv-team-name{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.012em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 6px;
}
.inv-team-role{
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-soft);
}
.inv-team-cred{
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 920px){ .inv-team{ grid-template-columns: 1fr } }

/* ── FINAL LEGAL NOTE ────────────────────────────────────────── */
.inv-legal{
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  max-width: 80ch;
}
