/* Investors page hero — aligned with affix-io.com homepage */

.inv-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(34, 211, 238, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 80%, rgba(59, 130, 246, 0.1), transparent 50%),
    linear-gradient(180deg, #0f1e35, #020617);
}

.inv-hero .quantum-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.inv-hero .quantum-field::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  top: -40%;
  left: -20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.12), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255, 79, 0, 0.08), transparent 45%);
  animation: invHeroDrift 18s ease-in-out infinite alternate;
}

@keyframes invHeroDrift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(-2%, 2%) rotate(1deg); }
}

.inv-hero .container {
  position: relative;
  z-index: 1;
}

.inv-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .inv-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.inv-hero-copy .hero-eyebrow {
  font-family: var(--mono, 'DM Mono', monospace);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan, #22d3ee);
  margin-bottom: 0.75rem;
}

.inv-hero-copy h1,
.inv-hero-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw + 0.35rem, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.inv-hero-lead {
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--muted, #94a8bc);
  max-width: 42rem;
}

.inv-hero-outcome {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
  font-family: var(--mono, 'DM Mono', monospace);
  font-size: 0.8rem;
  color: var(--dim, #5c738a);
}

.inv-hero-outcome em {
  font-style: normal;
  color: var(--cyan, #22d3ee);
  font-weight: 600;
}

.inv-hero-ctas {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.inv-hero-visual {
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(34, 211, 238, 0.1), rgba(2, 6, 23, 0.85));
  padding: 1.25rem;
}

.inv-hero-visual__label {
  font-family: var(--mono, 'DM Mono', monospace);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim, #5c738a);
  margin-bottom: 0.75rem;
}

.inv-flow {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.inv-flow__node {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.inv-flow__node strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.inv-flow__node span {
  font-size: 0.8rem;
  color: var(--muted, #94a8bc);
  line-height: 1.45;
}

.inv-flow__node--core {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
}

.inv-flow__node--core strong {
  color: var(--cyan, #22d3ee);
}

.inv-flow__node--pqc {
  border-color: rgba(255, 79, 0, 0.35);
  background: rgba(255, 79, 0, 0.06);
}

.inv-flow__node--pqc strong {
  color: #ff8a5c;
}

.inv-flow__arrow {
  text-align: center;
  color: var(--dim, #5c738a);
  font-size: 0.85rem;
  margin: 0.1rem 0;
}

.inv-hero-pills {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .inv-hero-pills {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .inv-hero-pills {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }
}

.inv-hero-pill {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  color: var(--muted, #94a8bc);
  line-height: 1.4;
}

.inv-hero-pill strong {
  display: block;
  color: var(--text, #f0f6ff);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.inv-hero-pill--pqc {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.06);
}

.inv-hero-pill--pqc strong {
  color: var(--cyan, #22d3ee);
}

.inv-hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .inv-hero-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.inv-metric {
  text-align: center;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.inv-metric strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan, #22d3ee);
}

.inv-metric span {
  font-family: var(--mono, 'DM Mono', monospace);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim, #5c738a);
}

@media (prefers-reduced-motion: reduce) {
  .inv-hero .quantum-field::before {
    animation: none;
  }
}
