.hero {
  display: flex;
  justify-content: center;
  margin-top: -76px;
  padding: 0 0 72px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  width: min(1440px, 100%);
  min-height: 900px;
  margin: 0 auto;
  padding: 104px 96px 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__inner::before,
.hero__inner::after {
  display: none;
}

.hero__center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-36px);
}

.hero__role {
  margin: 0 0 28px;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(241, 241, 237, 0.9);
}

.hero__title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(86px, 9.2vw, 132px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.075em;
  color: #ededeb;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 42px;
}

.hero__button {
  --hero-button-marquee-gap: 40px;

  position: relative;
  min-width: 174px;
  height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(241, 241, 237, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.01);
  color: #ffffff;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.hero__button-size {
  visibility: hidden;
  pointer-events: none;
}

.hero__button-marquee {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  display: inline-block;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.hero__button-text {
  display: block;
  white-space: nowrap;
}

.hero__button-text + .hero__button-text {
  position: absolute;
  left: calc(100% + var(--hero-button-marquee-gap));
  top: 0;
}

.hero__button:hover,
.hero__button:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(57, 232, 212, 0.05);
  transform: translateY(-2px);
}

.hero__button:hover .hero__button-marquee,
.hero__button:focus-visible .hero__button-marquee {
  animation: hero-button-text-run 1.8s linear infinite;
}

.hero__left-rail,
.hero__right-rail {
  position: absolute;
  bottom: 70px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__left-rail {
  left: 36px;
}

.hero__right-rail {
  right: 36px;
}

.hero__arrow {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}

.hero__arrow-bg {
  position: absolute;
  inset: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero__arrow-vector {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  animation: hero-arrow-vector-float 1.45s ease-in-out infinite;
  will-change: transform;
}

.hero__rail-line {
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(57, 232, 212, 0.86) 0%,
    rgba(57, 232, 212, 0.32) 68%,
    rgba(57, 232, 212, 0.08) 100%
  );
}

.hero__left-rail .hero__rail-line {
  height: 224px;
  margin-top: 24px;
}

.hero__right-rail .hero__rail-line {
  height: 188px;
  margin-top: 24px;
}

.hero__rail-label {
  margin-bottom: 28px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  line-height: 1;
  color: rgba(241, 241, 237, 0.96);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.04em;
}

.hero__socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__social-link {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero__social-link--email {
  display: none;
}

.hero__social-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.hero__social-icon--default {
  opacity: 1;
}

.hero__social-icon--hover {
  opacity: 0;
  transform: scale(0.88);
}

.hero__social-link:hover .hero__social-icon--default,
.hero__social-link:focus-visible .hero__social-icon--default {
  opacity: 0;
  transform: scale(0.9);
}

.hero__social-link:hover .hero__social-icon--hover,
.hero__social-link:focus-visible .hero__social-icon--hover {
  opacity: 1;
  transform: scale(1.28);
}

.hero__ticker-wrap {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 28px;
  z-index: 2;

  width: 100vw;
  margin-left: -50vw;

  overflow: visible;
  transform: none;
}

.hero__ticker {
  width: calc(100% + 220px);
  margin-left: -110px;
  padding: 14px 0;
  overflow: hidden;
  background: rgba(225, 232, 230, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);

  transform: rotate(-3.2deg);
  transform-origin: center;
  will-change: transform;
}

.hero__ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 52px;
  animation: hero-ticker-run 22s linear infinite;
}

.hero__ticker-item {
  white-space: nowrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1;
  color: var(--accent);
}

.hero__ticker-dot {
  width: 8px;
  height: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes hero-button-text-run {
  from {
    transform: translate(-50%, -50%) translateX(0);
  }

  to {
    transform: translate(-50%, -50%) translateX(calc(-100% - var(--hero-button-marquee-gap)));
  }
}

@keyframes hero-ticker-run {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-arrow-vector-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(-6px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(6px);
  }
}

@media (max-width: 1180px) {
  .hero {
    padding-bottom: 82px;
  }

  .hero__inner {
    min-height: 790px;
    padding-top: 108px;
    padding-bottom: 146px;
  }

  .hero__center {
    max-width: 780px;
    transform: translateY(-26px);
  }

  .hero__title {
    font-size: clamp(78px, 9.4vw, 112px);
  }

  .hero__role {
    font-size: clamp(21px, 2.7vw, 31px);
  }

  .hero__actions {
    gap: 34px;
  }

  .hero__left-rail .hero__rail-line {
    height: 184px;
  }

  .hero__right-rail .hero__rail-line {
    height: 156px;
  }
}

@media (max-width: 980px) {
  .hero__inner {
    min-height: 760px;
    padding: 110px 56px 142px;
  }

  .hero__left-rail {
    left: 56px;
  }

  .hero__right-rail {
    right: 56px;
  }

  .hero__title {
    font-size: clamp(72px, 10vw, 96px);
  }

  .hero__actions {
    gap: 26px;
    margin-top: 38px;
  }

  .hero__rail-label {
    display: none;
  }

  .hero__social-link--email {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-top: -104px;
    padding-bottom: 68px;
  }

  .hero__inner {
    width: 100%;
    min-height: max(840px, 100svh);
    padding: 0px 10px 160px;
    align-items: center;
  }

  .hero__center {
    max-width: 100%;
    transform: translateY(28px);
  }

  .hero__role {
    margin-bottom: 16px;
    font-size: clamp(20px, 6vw, 24px);
    letter-spacing: 0.08em;
  }

  .hero__title {
    font-size: clamp(42px, 13.4vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.075em;
    white-space: nowrap;
  }

  .hero__actions {
    flex-direction: row;
    gap: clamp(16px, 5.8vw, 24px);
    margin-top: 36px;
  }

  .hero__button {
    width: min(152px, calc((100vw - 64px) / 2));
    min-width: 0;
    height: 47px;
    padding: 0 16px;
    font-size: 15px;
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(57, 232, 212, 0.05);
  }

  .hero__button .hero__button-marquee {
    animation: hero-button-text-run 1.8s linear infinite;
  }

  .hero__button:hover,
  .hero__button:focus-visible {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(57, 232, 212, 0.05);
  }

  .hero__left-rail,
  .hero__right-rail {
    display: flex;
    bottom: 0;
  }

  .hero__left-rail {
    left: 14px;
  }

  .hero__right-rail {
    right: 14px;
  }

  .hero__arrow,
  .hero__arrow-bg {
    width: 42px;
    height: 42px;
  }

  .hero__left-rail .hero__rail-line {
    height: 224px;
    margin-top: 24px;
  }

  .hero__right-rail .hero__rail-line {
    height: 112px;
    margin-top: 26px;
  }

  .hero__rail-label {
    display: none;
  }

  .hero__social-link--email {
    display: inline-flex;
  }

  .hero__socials {
    gap: 12px;
  }

  .hero__social-link {
    width: 26px;
    height: 26px;
  }

  .hero__ticker-wrap {
  left: 50%;
  right: auto;
  bottom: 32px;

  width: 100vw;
  margin-left: -50vw;

  transform: none;
}

.hero__ticker {
  width: calc(100% + 160px);
  margin-left: -80px;
  padding: 13px 0;
  transform: rotate(-3.2deg);
}

  .hero__ticker-track {
    gap: 34px;
  }

  .hero__ticker-item {
    font-size: clamp(18px, 5.3vw, 22px);
  }
}

.hero__inner {
  min-height: 100vh;
  min-height: 100svh;
}

@media (max-width: 1180px) {
  .hero__inner {
    min-height: 100vh;
    min-height: 100svh;
  }
}

@media (max-width: 980px) {
  .hero__inner {
    min-height: 100vh;
    min-height: 100svh;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    min-height: 100svh;
  }
}