#intro-screen {
  position: relative;
  width: 1440px;
  height: 900px;
  overflow: hidden;
}

#intro-screen .logo {
  position: absolute;
  top: 25px;
  left: 155px;
  width: 118px;
  height: 118px;
}

#intro-screen .content {
  position: absolute;
  top: 348px;
  left: 164px;
  right: 164px;
}

#intro-screen .eyebrow {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

#intro-screen .eyebrow-line {
  display: inline-block;
  width: 56px;
  height: 1.5px;
  background: #da1e37;
}

#intro-screen .eyebrow-text {
  font-family: "Iosevka Charon Mono", monospace;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #da1e37;
}

#intro-screen .heading {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.15;
  color: #1a1c20;
  margin-bottom: 64px;
}

#intro-screen .not {
  position: relative;
  display: inline-block;
  color: #bcb8b1;
  margin: 0 2px;
}

#intro-screen .not-strike {
  position: absolute;
  left: -9px;
  top: 56%;
  transform: translateY(-50%);
}

#intro-screen .subtitle {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: #8a8179;
}

@media (max-width: 768px) {
  #intro-screen {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  #intro-screen .logo {
    top: 24px;
    left: 24px;
    width: 80px;
    height: 80px;
  }

  #intro-screen .content {
    position: static;
    max-width: 480px;
    text-align: left;
  }

  #intro-screen .eyebrow {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
  }

  #intro-screen .heading {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.2;
    white-space: normal;
    margin-bottom: 28px;
  }

  #intro-screen .not-strike {
    width: clamp(80px, 22vw, 150px);
    height: auto;
    left: 0;
  }

  #intro-screen .subtitle {
    font-size: 16px;
  }
}
