.avatar-row {
  position: relative;
  display: flex;
  justify-content: center;
  border-top: .05rem solid var(--md-default-fg-color--lightest);
  margin: 4rem 0;
}

.avatar {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: 1px solid var(--md-default-bg-color);
}

.hero {
  min-height: calc(100vh - 10rem);
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
}

.hero-text h1 {
  margin-bottom: 1rem !important;
  font-size: 1.875rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.3 !important;
}

.hero-text p {
  max-width: 24rem;
  margin-bottom: 2rem !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: #e4e4e7 !important;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
}

.hero-buttons a {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none !important;
}

.btn-primary {
  background: #b45309;
}

.btn-primary:hover {
  background: #d97706;
  color: #fff !important;
}

.btn-secondary {
  background: #27272a;
  color: #d4d4d8 !important;
}

.btn-secondary:hover {
  background: #3f3f46;
}

.hero-code {
  width: 100%;
  max-width: 26rem;
  flex-shrink: 0;
  font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #a1a1aa;
}

.t-prompt { color: #d97706; }
.t-cmd { color: #f5f5f5; }
.t-comment { color: #525252; }
.t-key { color: #e5a000; }
.t-str { color: #a3e635; }
.t-brace { color: #737373; }
.t-num { color: #fb923c; }

.hero-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-cursor {
  display: inline-block;
  width: 10px;
  height: 180px;
  margin-right: 0.5rem;
  background: #d97706;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-logo {
  display: block;
  max-height: 200px;
  image-rendering: pixelated;
}

@media (max-width: 960px) {
  .hero-layout {
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-logo-row {
    justify-content: center;
  }

  .hero-code {
    max-width: 100%;
    padding-top: 1rem;
    border-top: 1px solid #27272a;
  }
}
