/* ═══════════════════════════════════════════════════════
   §1  HERO  ·  hero.css
   Clean, unit-based layout with proportional scaling.
═══════════════════════════════════════════════════════ */

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.hero__container {
  width: 100%;
  max-width: var(--design-w);
  height: 100%;
  display: flex;
  padding: 0 var(--pad) 0 0; /* Only right padding, top/bottom moved to hero__right */
  position: relative;
}

/* ── Left column: animation ── */
.hero__left {
  position: relative;
  width: 474px;
  height: 100%;
  flex-shrink: 0;
}

.waves-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.waves-svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--c-yellow);
}

.crosshair {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-yellow);
}

.crosshair--top { top: var(--pad); }
.crosshair--bottom { bottom: var(--pad); }

/* ── Right column: info stack ── */
.hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--pad) 40px var(--pad) 48px; /* Vertical padding + safety right padding */
  height: 100%;
  min-width: 0;
}

/* System of dynamic units */
.hero__unit {
  flex-shrink: 0;
}
.hero__unit--1 { flex-grow: 1; min-height: 20px; }
.hero__unit--2 { flex-grow: 2; min-height: 40px; }

/* Elements */
.hero__nav {
  width: 100%; /* Block with buttons on full width */
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.hero__name {
  align-self: flex-start;
  font-family: var(--f-body);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-grey);
  flex-shrink: 0;
}

.hero__title {
  align-self: flex-start;
  font-family: var(--f-display);
  font-size: 180px;
  font-weight: 400;
  line-height: 0.80;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-white);
  flex-shrink: 0;
}

.hero__title .accent {
  color: var(--c-yellow);
}

.hero__roles {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.role-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-grey);
}

.role-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-yellow);
}

.hero__slogan {
  align-self: flex-start;
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero__slogan .slogan-grey { color: var(--c-grey); }
.hero__slogan .slogan-olive { color: var(--c-olive-dark); }