/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 817px;
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  align-items: flex-end;
}

/* Background image + gradients */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__gradient {
  position: absolute;
  inset: 0;
}

.hero__gradient--left {
  background: linear-gradient(to right, #0e0e0e 0%, transparent 50%);
}

.hero__gradient--lime {
  background: linear-gradient(to bottom, rgba(207, 252, 0, 0) 50%, rgba(207, 252, 0, 0.05) 50%);
}

/* Vertical data bar */
.hero__data-bar {
  position: absolute;
  right: 49px;
  top: 0;
  height: 100%;
  border-right: 1px solid rgba(73, 72, 71, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xl);
  padding-left: 12px;
  z-index: 2;
}

.hero__data-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__data-label,
.hero__data-value {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  letter-spacing: 0.5em;
  line-height: 15px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* Main content */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-pad) 70px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero__badge {
  display: inline-block;
  background: var(--color-lime);
  color: var(--color-lime-dark);
  font-size: 16px;
  font-weight: var(--fw-black);
  letter-spacing: -0.05em;
  padding: 4px 16px;
  line-height: 24px;
}

.hero__title {
  font-size: 128px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.05em;
  line-height: 95px;
  color: var(--color-white);
  margin-top: 8px;
}

.hero__meta {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-top: 8px;
}

.hero__project-card {
  display: flex;
  flex-direction: column;
  background: #201f1f;
  border-left: 2px solid var(--color-lime);
  padding: 8px 20px;
  gap: 4px;
  min-width: 216px;
}

.hero__project-label {
  font-size: 12px;
  font-weight: var(--fw-regular);
  color: var(--color-cyan);
  letter-spacing: 0.2em;
  line-height: 16px;
}

.hero__project-name {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 28px;
}

.hero__styles {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
}

.hero__styles li {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: var(--color-white);
  line-height: 15px;
}

/* Credit text */
.hero__credit {
  position: absolute;
  right: 70px;
  bottom: 77px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.08em;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
}
.hero__credit_2 {
  position: absolute;
  right: 0px;
  bottom: 169px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.08em;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
}
