.hero {
  margin-top: 56px;
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.hero-left {
  padding: 72px 56px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-left .eyebrow .line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-left h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 3.8vw, 62px);
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 28px;
}

.hero-left h1 .hl {
  color: var(--accent);
  font-style: normal;
}

.hero-left .lede {
  font-size: 18px;
  line-height: 1.76;
  color: var(--subtle);
  max-width: 48ch;
  margin-bottom: 44px;
}

.cta-group {
  display: flex;
  width: fit-content;
  border: 1px solid var(--border2);
}

.cta-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.cta-group .btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.cta-group .btn-primary:hover {
  opacity: 0.85;
}

.cta-group .btn-ghost {
  background: none;
  color: var(--subtle);
  border-left: 1px solid var(--border2);
}

.cta-group .btn-ghost:hover {
  color: var(--text);
  background: var(--glow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--border);
}

.hero-stats .stat {
  padding: 24px 0;
  border-right: 1px solid var(--border);
}

.hero-stats .stat:nth-child(2),
.hero-stats .stat:nth-child(3) {
  padding-left: 28px;
}

.hero-stats .stat:last-child {
  border-right: none;
}

.hero-stats .val {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 6px;
}

.hero-stats .lbl {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  min-height: 560px;
}

.hero-right svg.network {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1180px) {
  .hero-left {
    padding: 64px 40px;
  }

  .hero-left h1 {
    font-size: clamp(38px, 4.4vw, 56px);
  }

  .hero-right {
    min-height: 520px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 56px 28px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: auto;
  }

  .hero-right {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero-left {
    padding: 44px 20px 36px;
  }

  .hero-left .eyebrow {
    margin-bottom: 28px;
    font-size: 11px;
  }

  .hero-left h1 {
    font-size: clamp(33px, 10vw, 42px);
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 22px;
  }

  .hero-left .lede {
    max-width: none;
    margin-bottom: 32px;
  }

  .cta-group {
    width: 100%;
  }

  .cta-group .btn {
    flex: 1 1 0;
    min-height: 48px;
    padding: 14px 16px;
    font-size: 15px;
    text-align: center;
  }

  .hero-stats {
    margin-top: 40px;
  }

  .hero-stats .stat {
    padding: 20px 0;
  }

  .hero-stats .stat:nth-child(2),
  .hero-stats .stat:nth-child(3) {
    padding-left: 16px;
  }

  .hero-stats .val {
    font-size: 24px;
  }

  .hero-stats .lbl {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-right {
    min-height: 340px;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat,
  .hero-stats .stat:nth-child(2),
  .hero-stats .stat:nth-child(3) {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stats .stat:last-child {
    border-bottom: none;
  }
}
