
.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  --spotlight-x: 79%;
  --spotlight-y: 30%;
  --spotlight-opacity: 0.85;
  padding: 88px 0 74px;
  border-bottom: 1px solid rgba(173, 178, 182, 0.1);
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 184, 141, 0.22), transparent 40%),
    linear-gradient(180deg, #05070c 0%, #03060b 55%, #06070c 100%);
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-home::before {
  background-image:
    linear-gradient(rgba(173, 178, 182, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 178, 182, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.16;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 100%);
}

.hero-home::after {
  background:
    radial-gradient(circle 240px at var(--spotlight-x) var(--spotlight-y), rgba(200, 184, 141, 0.2), transparent 60%),
    radial-gradient(circle 130px at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.08), transparent 56%);
  opacity: var(--spotlight-opacity);
  transition: opacity 180ms ease;
}

.hero-grid-overlay,
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-overlay {
  opacity: 0.5;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 8px rgba(134, 200, 157, 0.08);
}

.node-1 { top: 24%; right: 14%; }
.node-2 { top: 42%; right: 28%; }
.node-3 { top: 17%; right: 33%; }

.link {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(134, 200, 157, 0.58), transparent);
}

.link-1 {
  top: 28%;
  right: 16%;
  width: 240px;
  transform: rotate(-20deg);
}

.link-2 {
  top: 36%;
  right: 28%;
  width: 170px;
  transform: rotate(22deg);
}

.hero-atmosphere {
  opacity: 0.54;
}

.hero-signal-label {
  position: absolute;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(173, 178, 182, 0.18);
  background: rgba(17, 19, 24, 0.72);
  color: #b9c0c8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-signal-label-1 { top: 18%; left: 6%; }
.hero-signal-label-2 { top: 24%; right: 9%; }
.hero-signal-label-3 { bottom: 24%; right: 20%; }
.hero-signal-label-4 { bottom: 18%; left: 11%; }
.hero-signal-label-5 { top: 50%; right: 34%; }
.hero-signal-label-6 { top: 60%; left: 42%; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.hero-copy-column {
  display: grid;
  gap: 0;
  max-width: 720px;
}

.hero h1 {
  max-width: 9.7ch;
  font-size: clamp(3.4rem, 6.6vw, 6.15rem);
  line-height: 0.98;
}

.hero-intro {
  margin-top: 18px;
  max-width: 40ch;
  color: #d7dce0;
  font-size: 1.08rem;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.quick-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 860px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(9, 19, 37, 0.9);
  box-shadow: var(--shadow);
}

.quick-search input {
  min-height: 54px;
  border-color: rgba(173, 178, 182, 0.24);
  background: #0b0c10;
}

.quick-search .button {
  min-width: 120px;
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.quick-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(173, 178, 182, 0.22);
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.86);
  color: #d7dce0;
  font-size: 0.84rem;
  font-weight: 700;
}

.quick-chip:hover,
.quick-chip:focus-visible {
  border-color: #c8b88d;
  color: #f4f1e9;
  text-decoration: none;
}
