.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(239, 171, 63, 0.18);
  background:
    #07131f
    url("../assets/life-lab-hero-3d-bluehour-v1.png") center / cover no-repeat;
}

@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .hero-section {
    background-attachment: fixed;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 31, 0.98) 0%, rgba(7, 19, 31, 0.94) 36%, rgba(7, 19, 31, 0.68) 66%, rgba(7, 19, 31, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 19, 31, 0.76) 0%, rgba(7, 19, 31, 0.18) 42%, rgba(7, 19, 31, 0.62) 100%),
    radial-gradient(circle at 78% 46%, rgba(43, 199, 189, 0.18), transparent 33%);
  pointer-events: none;
}

.window-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.window-field span {
  position: absolute;
  width: 7px;
  height: 9px;
  background: rgba(239, 171, 63, 0.62);
}

.window-field span:nth-child(1) { left: 9%; top: 75%; opacity: 0.6; }
.window-field span:nth-child(2) { left: 14%; top: 62%; opacity: 0.36; }
.window-field span:nth-child(3) { left: 29%; top: 82%; opacity: 0.28; }
.window-field span:nth-child(4) { left: 48%; top: 34%; opacity: 0.22; }
.window-field span:nth-child(5) { left: 72%; top: 21%; opacity: 0.34; }
.window-field span:nth-child(6) { left: 82%; top: 72%; opacity: 0.46; }
.window-field span:nth-child(7) { left: 91%; top: 37%; opacity: 0.24; }
.window-field span:nth-child(8) { left: 64%; top: 83%; opacity: 0.18; }
.window-field span:nth-child(9) { left: 37%; top: 57%; opacity: 0.2; }
.window-field span:nth-child(10) { left: 18%; top: 35%; opacity: 0.16; }

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 76px;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 16px;
  color: #efab3f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: #fbf5ea;
  font-family: var(--font-serif);
  font-size: 4.65rem;
  font-weight: 600;
  line-height: 0.96;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 26px;
  color: #cbd6df;
  font-size: 1.24rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-section .button-primary {
  background: #efab3f;
  color: #06111b;
}

.hero-section .button-primary:hover {
  background: #f6bd5d;
}

.chronicle-card {
  width: 100%;
  border: 1px solid rgba(239, 171, 63, 0.54);
  border-radius: 8px;
  background: rgba(11, 32, 47, 0.9);
  overflow: hidden;
}

.chronicle-card::before {
  content: "";
  display: block;
  width: 7px;
  height: 9px;
  margin: -16px auto 7px;
  background: rgba(239, 171, 63, 0.28);
}

.chronicle-card blockquote {
  margin: 0;
  padding: 0 20px 18px;
  color: #fbf5ea;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.48;
}

.chronicle-label {
  margin: 0;
  padding: 18px 20px 10px;
  color: #9eabba;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chronicle-data {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 20px 17px;
}

.chronicle-data p {
  margin: 0;
  color: #aebbc7;
  font-size: 0.94rem;
  line-height: 1.5;
}

.chronicle-data strong {
  color: var(--teal);
}

@media (max-width: 860px) {
  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding-top: 150px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: 3.7rem;
  }

  .hero-text {
    font-size: 1.12rem;
  }
}

@media (max-width: 420px) {
  .hero-inner {
    padding-top: 142px;
  }

  .hero-copy h1 {
    font-size: 3.25rem;
  }
}
